@charset "UTF-8";
/* 🧊 Product Details Page */
.product-details-page {
  background-color: #f9fafb;
  padding: 2rem 0;
}

/* 🔍 Main Product Image */
.main-product-img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.main-product-img:hover {
  transform: scale(1.02);
}

/* 📸 Thumbnail images */
.small-preview {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: #fff;
}
.small-preview:hover {
  border-color: #0d6efd;
  transform: scale(1.05);
}
.small-preview.active {
  border-color: #0d6efd;
}

/* 🏷️ Product Info Box */
.product-info-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.8rem;
}
.product-info-box h1 {
  font-size: 1.75rem;
  font-weight: 700;
}
.product-info-box .text-muted {
  color: #6c757d !important;
}
.product-info-box .price {
  font-size: 1.5rem;
  color: #198754;
  font-weight: 700;
}
.product-info-box .bulk-price {
  font-size: 0.95rem;
  color: #6c757d;
}
.product-info-box select#purchaseType {
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
}
.product-info-box .add-to-cart-btn {
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  font-weight: 600;
  transition: 0.3s ease;
}
.product-info-box .add-to-cart-btn:hover {
  background-color: #157347;
  transform: scale(1.05);
}
.product-info-box .btn-outline-success {
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}
.product-info-box .btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
}

/* 🛒 Quantity Input */
#productQty {
  -moz-appearance: textfield;
  text-align: center;
  font-weight: 500;
}
#productQty::-webkit-inner-spin-button, #productQty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-group-sm .btn {
  border-radius: 8px;
}

/* 🌊 Other Products Section */
.other-products-swiper {
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}
.other-products-swiper .swiper-slide {
  transition: transform 0.3s ease;
}
.other-products-swiper .swiper-slide:hover {
  transform: translateY(-5px);
}
.other-products-swiper .product-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
  border: 1px solid #eee;
}
.other-products-swiper .product-card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
.other-products-swiper .product-card:hover .product-image {
  transform: scale(1.05);
}
.other-products-swiper .product-card .product-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.other-products-swiper .product-card .product-image-wrapper .product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.other-products-swiper .product-card .card-body {
  text-align: center;
  padding: 0.9rem;
}
.other-products-swiper .product-card .card-body h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.other-products-swiper .product-card .card-body .fw-semibold {
  color: #198754;
}
.other-products-swiper .product-card .card-body .text-muted {
  font-size: 0.85rem;
}

/* 📱 Responsive Adjustments */
@media (max-width: 992px) {
  .main-product-img {
    aspect-ratio: 4/3;
  }
  .product-info-box {
    padding: 1.2rem;
  }
}
@media (max-width: 576px) {
  .main-product-img {
    aspect-ratio: 1/1;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .product-card .product-image-wrapper {
    aspect-ratio: 4/3;
  }
  .small-preview {
    width: 60px;
    height: 60px;
  }
}
.thumbSwiper {
  width: 100%;
}

.thumbSwiper .swiper-slide {
  width: 80px !important;
  height: 80px !important;
  flex-shrink: 0;
}

.thumb-item {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  display: block;
}

/* Remove Bootstrap thumbnail spacing */
.img-thumbnail {
  padding: 0 !important;
  border: none !important;
}/*# sourceMappingURL=product-details.css.map */