/* product gallery
    .product-gallery {
        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
.products-details-page .box-1-1 .content{
    aspect-ratio: auto !important;
    max-width: 400px !important;
}
    /* Main image container */
/* .products-details-page  .product-images-carousel {
        width: 100%;
        min-height: 400px;
        position: relative;
        border-radius: 8px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    } */

/* Main product image */
/* .products-details-page  .product-images-carousel .carousel-img {
        width: auto !important;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        display: block;
        margin: 0;
        padding: 0;
    } */

/* Thumbnails container */
/* .products-details-page   .product-images-carousel-thumbs {
        display: flex;
        gap: 12px;
        padding: 1rem 0;
        width: 100%;
        margin: 0 -8px;
    } */

/* .products-details-page   .product-images-carousel-thumbs::-webkit-scrollbar-track {
        background: transparent;
    } */

/* Individual thumbnail */
/* .products-details-page   .thumb-slide {
        height: auto;
        min-width: auto;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid transparent;
        cursor: pointer;
        margin-left: 10px;
        padding: 0px !important;
    } */

/* .products-details-page  .thumb-slide:hover {
        border-color: rgba(0, 0, 0, 0.1);
    } */

/* Active thumbnail
    .thumb-slide.slick-current,
    .thumb-slide.active {
        border-color: #FFD665;
    } */

.products-details-page .slick-list {
  height: 100% !important;
}

.image_link_details img,
.products-details-page .slick-slide img {
  height: 500px !important;
  object-fit: cover;
}

.image_link_details img,
.products-details-page .slick-slide img {
  height: 500px !important;
  object-fit: cover;
}

.products-details-page .slick-slide .product-item img {
  height: unset !important;
  object-fit: cover;
}

.products-details-page .slick-slide {
  height: 100%;
}
.products-details-page .slick-vertical .slick-slide {
  max-width: 100%;
}
.products-details-page .product-images-carousel-thumbs .slick-track {
  height: 100% !important;
  display: flex;
  flex-direction: column;
}

.products-details-page .description-paragrah {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--white-color);
}

.products-details-page .description-title {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffd665;
}
/* Thumbnail image */

/* Product title */
.products-details-page .proname {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}
.products-details-page .add-to-wishlist {
  background-color: transparent;
  color: var(--primary-color);
}
/* Product price */
.products-details-page .product-formatted-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color, #ffc62a);
  margin: 1rem 0;
}

/* Product SKU and Quantity labels */
.product-title-sku,
.product-title-quantity {
  color: var(--white-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.8;
}

/* Quantity wrapper */
.quantity-wrapper {
  width: auto;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 198, 42, 0.5);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

/* Quantity input */
.quantity-input {
  width: 50px;
  text-align: center;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.products-details-page .badge-name {
  /* position: unset; */
}

.product-item.badge-name {
  position: absolute;
  right: 10px;
}

/* Quantity buttons */
.minus,
.plus {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 1;
}

.minus:focus,
.plus:focus,
.quantity-input:focus {
  outline: none;
}

.select-quantity-div {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.product-title {
  font-size: 1rem;
  color: white;
  margin: 0;
}
.products-details-page .slick-slide {
  height: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
}

.image_link_details img,
.products-details-page .slick-slide img {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .product-gallery {
    flex-direction: row;
    align-items: flex-start;
  }

  .product-images-carousel-thumbs {
    max-height: 400px;
    margin: 0;
  }

  .thumb-slide {
    margin: 0 0 0.75rem 0;
  }

  .quantity-wrapper {
    width: auto;
  }
}

@media (max-width: 767px) {
  .product-gallery {
    padding: 0;
    max-width: 100%;
    flex-direction: column-reverse;
  }

  .products-details-page .product-images-carousel-thumbs .slick-track {
    flex-direction: row;
    width: 100%;
  }
  .products-details-page .product-images-carousel .carousel-img {
    width: 100%;
  }

  .product-images-carousel {
    border-radius: 8px;
    height: auto;
  }

  .product-images-carousel .carousel-img {
    max-width: 100%;
  }

  .thumb-slide {
    flex: 0 0 70px;
    height: 70px;
  }

  .select-quantity-div {
    flex-direction: column;
    align-items: flex-start;
  }

  .quantity-wrapper {
    width: 100%;
    max-width: 200px;
    justify-content: space-between;
  }
}
