
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.breadcrumb-shop {
  display: none;
}


#smooth-wrapper {
  overflow: hidden;
  position: relative;
  font-family: "Helvetica Neue";
}

#smooth-content {
  width: 100%;
}

/* Hero */

#hero {
  position: relative;

  #hero-image {
    width: 100%;
    height: 46.83vw;
    object-fit: cover;
  }

  .hero_title_wrapper {
    position: absolute;
    top: 100px;
    width: 100%;

    .hero_title_container {
      max-width: 1400px;
      margin: 0 auto;
      height: 100%;
      padding-left: 20px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
      gap: 10px;

      .hero_title {
        font-size: 65px;
        font-weight: bold;
        text-align: center;
      }

      .hero_sub_title {
        font-size: 26px;
        font-weight: bold;
        text-align: center;
      }
    }
  }
}

@media (max-width: 1080px) {
  #hero {
    position: relative;
    width: 100%;

    #hero-image {
      width: 100%;
      height: 550px;
      object-fit: cover;
    }

    .hero_title_wrapper {
      position: absolute;
      top: 450px;
      width: 100%;
      height: fit-content;

      .hero_title_container {
        color: #fff;
        height: fit-content;
        padding-left: 20px;
        .hero_title {
          font-size: 32px;
          font-weight: bold;
          text-align: center;
        }

        .hero_sub_title {
          font-size: 16px;
          font-weight: bold;
          text-align: center;
        }
      }
    }
  }
}

/* Commit Service */

#commit_service {
  position: relative;

  .commit_service_container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 100px 24px;

    .commit_service_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 100px;

      .commit_service_column {
        display: flex;
        gap: 24px;
        align-items: center;

        .commit_service_column_icon {
          width: 49px;
          height: auto;
          object-fit: cover;
        }

        .commit_service_column_title {
          font-size: 16px;
          line-height: 28px;
          text-align: start;

          p {
            line-height: 24px;
            margin: 0px;
          }
        }
      }
    }
  }
}

@media (max-width: 1080px) {
  #commit_service {
    position: relative;
    width: 100%;

    .commit_service_container {
      max-width: 420px;
      margin: 0 auto;
      height: 100%;
      padding: 52px 24px;

      .commit_service_grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 100px;

        .commit_service_column {
          display: flex;
          flex-direction: column;
          gap: 24px;
          align-items: center;
          text-align: center;

          .commit_service_column_icon {
            width: 72px;
            height: auto;
            object-fit: cover;
          }

          .commit_service_column_title {
            font-size: 16px;
            line-height: 1.5;
            text-align: center;
          }
        }
      }
    }
  }
}

/* About */

#about {
  position: relative;
  width: 100%;

  .about_slide_prev {
    position: absolute;
    top: 50%;
    bottom: 50%;
    transform: translateY(-100%);
    left: 10px;
    width: 32px;
    height: 32px;
    border-radius: 24px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
  }

  .about_slide_next {
    position: absolute;
    top: 50%;
    bottom: 50%;
    transform: translateY(-100%);
    right: 35px;
    width: 32px;
    height: 32px;
    border-radius: 24px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
  }

  .about_container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 42px;

    .about_title_wrapper {
      height: fit-content;
      font-size: 45px;
      text-transform: uppercase;
      color: rgb(1, 80, 89);
      text-align: start;

      .about_title {
        font-weight: bold;
      }

      .about_sub_title {
        font-weight: 400;
      }
    }

    .about_slide_container {
      position: relative;

      .about_slide_column {
        padding-right: 24px;

        .about_slide_column_image {
          width: 100%;
          height: 560px;
          object-fit: cover;
          border-radius: 2px;
        }
      }
      .about_slide_column_title {
        max-width: 360px;
        margin: 0 auto;
        margin-top: 24px;
        font: 18px;
        line-height: 1.5;
        text-align: center;
      }
    }
  }
}

@media (max-width: 1080px) {
  #about {
    position: relative;
    width: 100%;

    .about_slide_prev {
      position: absolute;
      top: 50%;
      bottom: 50%;
      transform: translateY(-100%);
      left: 10px;
      width: 32px;
      height: 32px;
      border-radius: 24px;
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
      cursor: pointer;
    }

    .about_slide_next {
      position: absolute;
      top: 50%;
      bottom: 50%;
      transform: translateY(-100%);
      right: 32px;
      width: 32px;
      height: 32px;
      border-radius: 24px;
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
      cursor: pointer;
    }

    .about_container {
      max-width: 1400px;
      margin: 0 auto;
      height: 100%;
      padding: 24px 0 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 42px;

      .about_title_wrapper {
        height: fit-content;
        font-size: 48px;
        text-transform: uppercase;
        color: rgb(1, 80, 89);
        text-align: center;
        padding-right: 24px;

        .about_title {
          font-weight: bold;
          margin-bottom: 10px;
        }

        .about_sub_title {
          font-weight: 400;
          font-size: 30px;
        }
      }

      .slick-slide {
        padding-right: 24px;
      }

      .about_slide_container {
        position: relative;

        .about_slide_column {
          padding-right: 0px;

          .about_slide_column_image {
            width: 100%;
            height: 560px;
            object-fit: cover;
            border-radius: 2px;
          }
        }
        .about_slide_column_title {
          max-width: 360px;
          margin: 0 auto;
          margin-top: 24px;
          font: 18px;
          line-height: 1.5;
          text-align: center;
        }
      }
    }
  }
}

/* Jemmia Diamond */

#jemmia_diamond {
  position: relative;
  width: 100%;

  .jemmia_diamond_slide_prev {
    position: absolute;
    top: 50%;
    bottom: 50%;
    transform: translateY(-100%);
    left: 10px;
    width: 32px;
    height: 32px;
    border-radius: 24px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
  }

  .jemmia_diamond_slide_next {
    position: absolute;
    top: 50%;
    bottom: 50%;
    transform: translateY(-100%);
    right: 35px;
    width: 32px;
    height: 32px;
    border-radius: 24px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
  }

  .jemmia_diamond_container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    gap: 42px;

    .jemmia_diamond_title_wrapper {
      height: fit-content;
      font-size: 45px;
      text-transform: uppercase;
      text-align: start;
      color: rgb(1, 80, 89);

      .jemmia_diamond_title {
        font-weight: bold;

        p {
          line-height: 52px;
        }
      }

      .jemmia_diamond_sub_title {
        font-weight: 400;
      }
    }

    .jemmia_diamond_slide_container {
      position: relative;

      .jemmia_diamond_slide_column {
        padding-right: 24px;

        .jemmia_diamond_slide_column_image {
          width: 100%;
          height: 560px;
          object-fit: cover;
          border-radius: 2px;
        }
      }
      .jemmia_diamond_slide_column_title {
        max-width: 360px;
        margin: 0 auto;
        margin-top: 24px;
        font: 18px;
        line-height: 1.5;
        text-align: center;
      }
    }
  }
}

@media (max-width: 1080px) {
  #jemmia_diamond {
    position: relative;
    width: 100%;

    .jemmia_diamond_slide_prev {
      position: absolute;
      top: 50%;
      bottom: 50%;
      transform: translateY(-100%);
      left: 10px;
      width: 32px;
      height: 32px;
      border-radius: 24px;
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
      cursor: pointer;
    }

    .jemmia_diamond_slide_next {
      position: absolute;
      top: 50%;
      bottom: 50%;
      transform: translateY(-100%);
      right: 32px;
      width: 32px;
      height: 32px;
      border-radius: 24px;
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
      cursor: pointer;
    }

    .jemmia_diamond_container {
      max-width: 1400px;
      margin: 0 auto;
      height: 100%;
      padding: 72px 0 72px 24px;
      display: flex;
      flex-direction: column;
      gap: 42px;

      .jemmia_diamond_title_wrapper {
        height: fit-content;
        font-size: 48px;
        text-transform: uppercase;
        text-align: center;
        padding-right: 24px;
         color: rgb(1, 80, 89);

        .jemmia_diamond_title {
          font-weight: bold;
         

          p {
            line-height: 52px;
          }
        }

        .jemmia_diamond_sub_title {
          font-weight: 400;
          font-size: 30px;
        }
      }

      .jemmia_diamond_slide_container {
        position: relative;

        .jemmia_diamond_slide_column {
          padding-right: 24px;

          .jemmia_diamond_slide_column_image {
            width: 100%;
            height: 560px;
            object-fit: cover;
            border-radius: 2px;
          }
        }
        .jemmia_diamond_slide_column_title {
          max-width: 360px;
          margin: 0 auto;
          margin-top: 24px;
          font: 18px;
          line-height: 1.5;
          text-align: center;
        }
      }
    }
  }
}

/* BST Section */
#bst {
  padding: 72px 24px;

  .pro-loop {
    padding-right: 24px
  }
  
  .bst_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;

    .bst_item {
      display: flex;
      align-items: center;
      gap: 24px;

      .lg-show {
        display: block;
      }
      .lg-hide {
        display: none;
      }

      .bst_item_right_title_wrapper-mb {
        display: none;
      }

      .bst_item_col_4 {
        width: 40%;
        height: 600px;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .bst_item_col_8 {
        width: 60%;
        display: flex;
        flex-direction: column;
        height: 600px;
        justify-content: space-between;
        position: relative;

        .bst_item_slide_column {
          display: flex;
          flex-direction: column;
          gap: 14px;
          padding-right: 20px;

          .bst_item_slide_column_image {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 2px;
            background-color: #f5f5f5;
            margin-bottom: 12px;
          }

          .bst_item_slide_column_title {
            width: 100%;
            text-align: start;
          }

          a {
            width: 100%;
            height: 35px;
            border-radius: 2px;
            background-color: transparent;
            color: rgb(1, 80, 89);
            border: 1px solid rgb(1, 80, 89);
            cursor: pointer;
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
          }

          a:hover {
            background-color: rgb(1, 80, 89);
            color: #fff;
            transition: all 0.3s ease-in-out;
            animation-duration: 250ms;
          }
        }

        .bst_item_right_title_wrapper {
          height: fit-content;
          padding-top: 38px;
          font-size: 48px;
          text-transform: uppercase;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: start;
          color: rgb(1, 80, 89);

          .bst_item_right_title {
            font-weight: bold;
            margin-bottom: 10px;
          }

          .bst_item_right_sub_title {
            font-weight: 400;
            font-size: 38px;
          }
        }

        .bst_item_slide_nhan_kc_prev, .bst_item_slide_nhan_nam_prev, .bst_item_slide_nhan_nu_prev {
           position: absolute;
           top: 70%;
           bottom: 50%;
           transform: translateY(-100%);
           left: 10px;
           width: 32px;
           height: 32px;
           border-radius: 24px;
           background-color: transparent;
           color: #000;
           cursor: pointer;
           backdrop-filter: blur(12px);
           box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
          
        }
        .bst_item_slide_nhan_kc_next, .bst_item_slide_nhan_nam_next, .bst_item_slide_nhan_nu_next {
           position: absolute;
           top: 70%;
           bottom: 50%;
           transform: translateY(-100%);
           right: 32px;
           width: 32px;
           height: 32px;
           border-radius: 24px;
           background-color: transparent;
           color: #000;
           // border: 2px solid #fff;
           cursor: pointer;
           backdrop-filter: blur(12px);
          box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
          
        }
      }
    }
  }
}

@media (max-width: 1080px) {
  #bst {
    padding: 72px 0px;


    .slick-slider {
    padding: 0 0 0 24px;
    }
    
    .bst_container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 0px;
      display: flex;
      flex-direction: column;
      gap: 32px;

      .bst_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;

        .lg-show {
          display: none;
        }
        .lg-hide {
          display: block;
        }

        .bst_item_right_title_wrapper-mb {
          padding-top: 50px;
          font-size: 48px;
          text-transform: uppercase;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;

          .bst_item_right_title {
            font-weight: bold;
            color: rgb(1, 80, 89);
            margin-bottom: 10px;
          }

          .bst_item_right_sub_title {
            font-weight: 400;
            font-size: 18px;
          }
        }

        .bst_item_col_4 {
          width: 100%;
          height: 500px;

          img {
            width: 100%;
            height: 500px;
            object-fit: cover;
          }
        }
        .bst_item_col_8 {
          display: flex;
          flex-direction: column;
          height: 100%;
          width: 100%;
          justify-content: space-between;

          .bst_item_slide_column {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 0 20px;

            .bst_item_slide_column_image {
              width: 100%;
              aspect-ratio: 1/1;
              object-fit: cover;
              border-radius: 2px;
              background-color: #f5f5f5;
              margin-bottom: 12px;
            }

            .bst_item_slide_column_title {
              max-width: 100%;
              text-align: center;
            }

            a {
              width: 100%;
            }
          }

          .bst_item_right_title_wrapper {
            display: none;
          }

          .bst_item_slide_nhan_kc_prev, .bst_item_slide_nhan_nam_prev, .bst_item_slide_nhan_nu_prev {
           position: absolute;
           top: 50%;
           bottom: 50%;
           transform: translateY(-100%);
           left: 10px;
           width: 32px;
           height: 32px;
           border-radius: 24px;
           background-color: transparent;
           color: #000;
           cursor: pointer;
           backdrop-filter: blur(12px);
           box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
          
        }
        .bst_item_slide_nhan_kc_next, .bst_item_slide_nhan_nam_next, .bst_item_slide_nhan_nu_next {
           position: absolute;
           top: 50%;
           bottom: 50%;
           transform: translateY(-100%);
           right: 10px;
           width: 32px;
           height: 32px;
           border-radius: 24px;
           background-color: transparent;
           color: #000;
           // border: 2px solid #fff;
           cursor: pointer;
           backdrop-filter: blur(12px);
          box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
          
        }
        }
      }
    }
  }
}

/* Video */
#video {
  padding: 72px 24px;
}

.video_container {
  max-width: 1400px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video_title_wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.video_title {
  font-family: "Helvetica Neue", "Playfair Display";
  font-size: 48px;
  font-weight: 700;
  color: rgb(1, 80, 89);
}

.video_sub_title {
  font-family: "Helvetica Neue", "Playfair Display";
  font-size: 32px;
  font-weight: 400;
  color: rgb(1, 80, 89);
}

.video_content {
  width: 100%;

  img {
    width: 100%;
  }
}

@media (max-width: 1080px) {
  #video {
    padding: 24px 0;

    .video_container {
      padding: 24px 0px;
    }

    .video_title {
      font-family: "Helvetica Neue", "Playfair Display";
      font-size: 28px;
      font-weight: 400;
      color: rgb(1, 80, 89);
    }

    .video_sub_title {
      font-family: "Helvetica Neue", "Playfair Display";
      font-size: 20px;
      font-weight: 500;
      color: rgb(1, 80, 89);
    }
  }
}

/* Contact Form */

#contact-form {
  padding: 15px;
}

.contact-form-container {
  display: grid;
  grid-auto-columns: auto;
  background: #085c65;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-image-desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-image-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

@media (max-width: 767px) {
  .contact-form-image-desktop {
    display: none;
  }

  .contact-form-image-mobile {
    display: block;
  }
}

.contact-form-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}

/* Desktop layout for contact form - 720px and above */
@media (min-width: 1080px) {
  #contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1360px;
    flex-direction: row;
    align-items: center;
  }

  .contact-form-content {
    width: 100%;
    padding: 40px;
  }
}

.contact-form-title {
  font-family: "Helvetica Neue", "Playfair Display";
  font-size: 25px;
  color: #e3c38e;
  font-weight: 400;
  text-align: center;
}

.contact-form-subtitle {
  font-family: "Helvetica Neue", "Playfair Display";
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-align: center;
}

@media (min-width: 767px) {
  .contact-form-title {
    font-family: "Helvetica Neue", "Playfair Display";
    font-size: 50px;
    color: #e3c38e;
    font-weight: 400;
  }

  .contact-form-subtitle {
    font-size: 25px;
    font-weight: 400;
    color: white;
    /* margin-bottom: 20px; */
  }
}

/* Contact Form Grid */
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.form-input {
  padding: 16px 8px;
  outline: none;
  font-size: 14px;
  background: white;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #fff;
}

/* Select specific styling */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6, 9 12, 15 18, 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  cursor: pointer;
}

select.form-input option {
  background: #333;
  color: #fff;
  padding: 8px;
}

select.form-input option.ladi-hidden {
  color: #999;
  font-style: italic;
}

.form-input:focus {
  outline: none;
}

.form-input::placeholder {
  color: #999;
}

.span-1 {
  grid-column: span 1;
}

.span-2 {
  grid-column: span 2;
}

.form-submit-btn-wrapper {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-submit-btn {
  background: #e3c38e;
  color: #013a40;
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
}

.chevron-right {
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .chevron-right {
  transform: translateX(2px);
}

@media (min-width: 1080px) {
  /* Popular Products - Filter Buttons */
  .filter-buttons-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1440px;
  }

  /* Popular Products - Products Grid */
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Contact Form - Desktop Layout */
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .span-2 {
    grid-column: span 2;
  }

  .form-submit-btn {
    grid-column: span 2;
  }
}
