:root {
  --navbar-product-top: 0;
}

/* PRODUCT HERO start */

.product {
  width: 100%;
  position: relative;
  padding-top: 45px;
}

.product .cover {
  width: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;

  @media screen and (max-width: 550px) {
    height: 190vh;
  }
}

.product .cover .background-ship {
  position: relative;
  height: 40vh;

  background-image: url("../../image/product/ship-bg-product.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position-y: -49vh;
}

.product .cover .background-ship .title-bg-ship {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 48px;

  font-family: "Caladea", serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;

  @media (min-width: 1920px) {
    font-size: 96px;
  }
}

.product .cover .background-content {
  position: relative;
  height: 60vh;
  padding: 35px 55px;
  background: linear-gradient(180deg, #da3556 0%, #ffb7c6 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  @media screen and (max-width: 550px) {
    height: 150vh;
  }
}

.product .cover .background-content .title-content {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 24px;
}

.product .cover .background-content .title-sub-content {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
}

.product .cover .background-content .certified-image {
  position: relative;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.product .cover .background-content .certified-image .card-certified {
  width: 270px;
  height: 65px;

  border: 2px solid transparent;
  border-right: 2px solid #ffffff;

  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 650px) {
  .product .cover .background-content .certified-image {
    gap: 12px;
  }
  .product .cover .background-content .certified-image .card-certified {
    border-right: 2px solid transparent;
  }
}

@media (min-width: 920px) and (max-width: 1190px) {
  .product .cover .background-content .certified-image .card-certified.oem {
    border-right: 2px solid transparent;
  }
}

@media (min-width: 650px) and (max-width: 920px) {
  .product .cover .background-content .certified-image .card-certified.food,
  .product .cover .background-content .certified-image .card-certified.cold {
    border-right: 2px solid transparent;
  }
}

.product
  .cover
  .background-content
  .certified-image
  .card-certified
  .img-certified {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product
  .cover
  .background-content
  .certified-image
  .card-certified
  .img-certified
  img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.product .cover .background-content .certified-image .card-certified p {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

/* PRODUCT HERO end */

/* OUR PRODUCT start*/
.our-product {
  width: 100%;
  z-index: 1;
  position: relative;
  padding: 35px 55px;
  background: #ffffff;

  .container {
    width: 100%;
    position: relative;
  }
}

.our-product h2 {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #da3556;
}

.our-product p {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #121212;
}

.our-product .product-tabs {
  margin: 24px 0 12px 0;
  border-bottom: 2px solid #da3556;

  position: sticky;
  z-index: 2;
  top: var(--navbar-product-top);
  width: 100%;
  background: white;
  padding: 12px 0;

  &.sticky-active {
    animation: slideDown 0.35s ease forwards;
    box-shadow: 0 6px 20px rgba(27, 23, 23, 0.12);
  }

  button {
    margin: 0;
    padding: 9px;
    border: 1px solid #da3556;
    background: #ffffff;

    font-family: "Caladea", serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #616161;

    transition:
      transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
      box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
      background-color 0.25s;

    &.active {
      background: #da3556;
      color: #ffffff;
    }

    &:hover {
      cursor: pointer;
      background: #da3556;
      color: #ffffff;
      border-left: 1px solid white;
      border-right: 1px solid white;
      transform: translateY(-4px);

      &.active {
        background: #e4526f;
        transform: translateY(0);
      }
    }
  }
}

.our-product .banner {
  position: relative;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 510px) {
  .our-product .banner {
    height: 300px;
  }
}

.our-product .banner .banner-text {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;

  display: grid;
  align-items: center;
  justify-content: start;
  gap: 16px;
  padding: 0 0 36px 36px;

  h2 {
    font-family: "Caladea", serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;
  }

  h3 {
    font-family: "Caladea", serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    color: #ffffff;

    padding: 0 24px;
    border-left: 1px solid #ffffff;
  }

  p {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;

    border: 1px solid #ffffff;
    border-radius: 100px;
    background: #ffffff33;
    padding: 12px;
  }

  @media screen and (max-width: 628px) {
    h2 {
      font-size: 32px;;
    }

    p {
      font-size: 11px;
    }
  }
}

.our-product .product-grid {
  margin: 24px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 24px;
  transition: all 0.3s ease-in-out;
}

.our-product .product-grid .card {
  border: 1px solid #bdbdbd;

  width: 440px;
  height: 745px;
  border-radius: 20px;
  border-width: 1px;

  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);

  &.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .card-body {
    padding: 24px;

    h3 {
      font-family: "Caladea", serif;
      font-weight: 700;
      font-size: 22px;
      line-height: 100%;
      letter-spacing: 0;

      color: #da3556;
    }

    .description-list {
      height: 14vh;
      overflow-y: auto;
      padding: 12px 0 12px 12px;

      li {
        margin: 0 0 6px 0;
        display: flex;
        align-items: center;
        gap: 12px;

        font-family: "Caladea", serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0;

        color: #121212;

        img {
          width: 10px;
          height: 10px;
        }
      }
    }

    hr {
      margin: 24px 0;
      border-width: 1px;
      border-radius: 0;
      border-color: #bdbdbd;
    }

    strong {
      font-family: "Cairo", sans-serif;
      font-weight: 700;
      font-size: 10px;
      line-height: 100%;
      letter-spacing: 0;
      text-transform: uppercase;

      color: #bdbdbd;
      background: transparent;
    }

    .sizes-list {
      padding: 12px 0 12px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;

      li {
        margin: 0 0 6px 0;
        padding: 6px 12px;
        border: 1px solid #b6f1d466;
        border-radius: 100px;

        font-family: "Caladea", serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0;

        color: #4aa277;
        background: #b6f1d466;
      }
    }

    .packaging-list {
      padding: 12px 0 12px 24px;

      li {
        margin: 0 0 6px 0;
        padding: 0;
        border-radius: 100px;

        list-style: disc;

        font-family: "Caladea", serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0;

        color: #121212;
        background: transparent;
      }
    }
  }
}

@media screen and (max-width: 510px) {
  .our-product .product-grid .card {
    width: 300px;

    img {
      width: stretch;
    }
  }
}
/* OUR PRODUCT end*/
