  .products:nth-child(odd) {
    background: #f9f9f8;
  }

  #ecomm-collections {
    font-family: Muli, helvetica, verdana, arial, sans-serif;
    color: #363636;
    letter-spacing: initial;
    line-height: initial;

    h1 {
      margin: 36px 0 0;
      font-size: 36px;
      text-align: center;
    }
  }

  #ecomm-products,
  .products {
    font-family: Muli, helvetica, verdana, arial, sans-serif;
    color: #363636;
    letter-spacing: initial;
    line-height: initial;
    padding: 70px 0;

    @media (max-width: 767px) {
      padding: 35px 0;
    }

    &.index-products {
      background: #f9f9f8;
    }

    .contain {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    h1, h2 {
      margin: 0;
      font-size: 32px;
      text-align: center;
    }
    p.subtitle {
      margin: 5px 0 0;
      text-align: center;
      font-size: 18px;
      line-height: 28px;

      @media (max-width: 767px) {
        font-size: 16px;
      }
    }

    .products-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      column-gap: 2%;
      row-gap: 30px;
      margin: 15px 0 0;

      .product {
        flex-basis: 32%;

        @media (max-width: 767px) {
          flex-basis: 48%;
        }

        .product-wrapper {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          height: 100%;
          text-decoration: none;
          color: #363636;
          text-align: center;
          font-family: 'Muli', 'helvetica', 'verdana', 'arial', sans-serif;

          .pdp-link {
            display: block;
            text-decoration: none;
            color: #363636;
          }

          .product-img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 0 auto;

            @media (max-width: 767px) {
              max-width: 85%;
            }
          }
          .product-name {
            margin: 0 0 10px;
            font-size: 20px;
          }
          .product-subtitle {
            margin: 0 0 10px;
            font-size: 14px;
          }
          .rating-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 0 15px;

            @media (max-width: 479px) {
              flex-direction: column;
              row-gap: 5px;
            }

            svg {
              display: block;
              width: 140px;
              margin: 0 5px 0 0;

              @media (max-width: 991px) {
                width: 105px;
              }

              path {
                fill: #fbe80a;
              }
            }
            .reviews-count {
              font-size: 16px;
              font-weight: 700;
            }
          }
          .price {
            margin: 5px 0;
            font-size: 16px;
            font-weight: 700;

            &.hide {
              display: none;
            }
          }
          .select-wrapper {
            margin-bottom: 10px;

            .select {
              position: relative;
              padding: 14px 0;
              font-size: 18px;
              border: 1.5px solid #000;
              border-radius: 5px;

              @media (max-width: 767px) {
                font-size: 14px;
              }
              @media (max-width: 479px) {
                padding: 8px 0;
              }

              .option {
                z-index: 2;

                @media (max-width: 479px) {
                  display: block;
                  width: 90px;
                  margin: 0 auto;
                }
              }

              &.sub {
                .option.sub {
                  display: block;
                }
                .option.otp {
                  display: none !important;
                }
              }
              &.otp {
                .option.otp {
                  display: block;
                }
                .option.sub {
                  display: none !important;
                }
              }

              select {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                width: 100%;
                height: 100%;
                appearance: none;
                -webkit-appearance: none;
                z-index: 2;
              }
              svg {
                display: block;
                width: 12px;
                height: 12px;
                position: absolute;
                top: 18px;
                right: 10px;
                z-index: 1;

                path {
                  fill: #363636;
                }
              }
            }
          }
          .buy-btn {
            &.hide {
              display: none;
            }
          }
          button {
            display: block;
            width: 100%;
            height: 60px;
            position: relative;
            outline: 0;
            border: none;
            border-radius: 35px;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
            color: #fff;
            transition: background-color 0.15s ease-in-out;
            background-color: #1e1f49;
            font-family: Muli, helvetica, verdana, arial, sans-serif;
            box-sizing: border-box;

            @media (max-width: 479px) {
              font-size: 14px;
            }
          }
          .select-wrapper-spacer {
            height: 63.5px;

            @media (max-width: 767px) {
              height: 58.5px;
            }
            @media (max-width: 479px) {
              height: 64px;
            }
          }
          .oos-btn {
            button {
              background-color: #696969;
              color: #fff;
              cursor: not-allowed;
            }
          }
        }
      }
    }
  }
