        /* --------------------- General --------------------- */
body {
  background: #0d0d0d;
  color: #fff;
  font-family: Poppins, sans-serif;
}

.luxury-nav { background: #000; }

/* Smaller hero for inner pages */
.small-hero {
  height: 250px;
}

/* Back button style */
.btn-outline-light {
  border-color: gold;
  color: gold;
}

.btn-outline-light:hover {
  background: gold;
  color: black;
}

/* --------------------- Hero Section --------------------- */
.hero {
  height: 90vh;
  background: url('../images/banner.webp') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* --------------------- Buttons --------------------- */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #b8962e);
  color: #000;
  border: none;
}

/* --------------------- Cards --------------------- */
.section-title { margin-bottom: 30px; font-weight: 600; }

.lux-card, .product-card {
  background: #151515;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.lux-card img, .product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.sub-category .lux-card img { height: 160px; }


.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.product-card .price {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 10px;
}

/* 🔥 Equal height product cards */
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Content wrapper inside card */
.product-card .d-flex {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Fix title height (2 lines max) */
.product-card h5 {
  font-size: 14px;
  min-height: 40px;
  max-height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Push button to bottom */
.product-card .btn {
  margin-top: auto;
}

/* --------------------- Product Detail --------------------- */


.colors-container {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.color-option {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}


#mediaViewer img.show,
#mediaViewer video.show {
  opacity: 1;
}

/* Main Product Image */

/* Image Zoom Container */
.image-zoom-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

/* Media Viewer */
#mediaViewer {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image & Video */
#mediaViewer img,
#mediaViewer video {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

/* Desktop zoom only */
@media (min-width: 577px) {
  .image-zoom-container:hover #mediaViewer img {
    transform: scale(1.4);
    cursor: zoom-in;
  }
}



/* --------------------- Thumbnails & Video --------------------- */
.thumb-img,
.video-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: transform 0.2s ease-in-out, border-color 0.2s;
}


.thumb-img.active,
.video-thumb-wrapper.active .video-thumb {
  border-color: #d4af37;
}


.thumb-img:hover,
.video-thumb:hover {
  transform: scale(1.05);
  border-color: #caa24d;
}
.video-thumb-wrapper:hover::after {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}


/* Video thumbnail wrapper */
.video-thumb-wrapper {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.video-thumb-wrapper img.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.video-thumb-wrapper::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* smaller so it fits */
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  pointer-events: none;
}


/* Thumbnail container */
#thumbContainer {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* --------------------- Product Info --------------------- */
.product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}

/* --------------------- Mobile Styles --------------------- */
@media (max-width: 576px) {
  .product-detail-wrapper { padding: 15px; }

  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Smaller thumbnails on mobile */
  .thumb-img, .video-thumb { width: 50px; height: 50px; }


  .video-thumb-wrapper {
    width: 50px;
    height: 50px;
  }



  #thumbContainer {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  #thumbContainer::-webkit-scrollbar { display: none; }

  /* Disable zoom on mobile */
  .image-zoom-container:hover #mainImage {
    transform: none;
    cursor: default;
  }

  .product-info h2 { font-size: 1.5rem; }
  .product-info .price { font-size: 1.2rem; }
}


/* --------------------- Modal Luxury Theme --------------------- */

.luxury-modal-content {
  background-color: #1e1e1e;
  border-radius: 10px;
  border: none;
}

.luxury-modal-header {
  background-color: #333;
  color: #fff;
  border-bottom: 1px solid #444;
}

.luxury-modal-body {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 20px;
}

.luxury-modal-footer {
  background-color: #333;
  border-top: 1px solid #444;
  text-align: center;
}

.luxury-modal-footer .btn-secondary {
  background-color: #555;
  border: none;
  color: white;
}

.luxury-modal-footer .btn-primary {
  background-color: #28a745;
  border: none;
  color: white;
}

/* --------------------- Color Options --------------------- */

.color-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.color-option:hover {
  border-color: #fff;
  transform: scale(1.1);
}

.color-option.selected {
  border-color: #28a745;
}

/* Disabled WhatsApp button */
.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* 🔥 Skeleton Loader */
.skeleton {
      background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .skeleton-img { width: 100%; height: 400px; }
    .skeleton-title { width: 70%; height: 30px; }
    .skeleton-price { width: 40%; height: 25px; }
    .skeleton-text { width: 100%; height: 15px; }
    .skeleton-btn { width: 100%; height: 45px; }

    .color-option {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: inline-block;
      margin: 5px;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .color-option.selected {
      border: 2px solid #fff;
    }

#productContent {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#productContent.show {
  opacity: 1;
}

/* --------------------- Fix Description Spacing --------------------- */

#productDesc {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #ccc;
}

/* Remove extra spacing from HTML tags */
#productDesc p {
  margin: 0 0 6px 0;
}

#productDesc br {
  display: none; /* remove unwanted line breaks */
}

/* Remove empty paragraphs */
#productDesc p:empty {
  display: none;
}

        /* --------------------- General --------------------- */
body {
  background: #0d0d0d;
  color: #fff;
  font-family: Poppins, sans-serif;
}

.luxury-nav { background: #000; }

/* Smaller hero for inner pages */
.small-hero {
  height: 250px;
}

/* Back button style */
.btn-outline-light {
  border-color: gold;
  color: gold;
}

.btn-outline-light:hover {
  background: gold;
  color: black;
}

/* --------------------- Hero Section --------------------- */
.hero {
  height: 90vh;
  background: url('../images/banner.webp') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* --------------------- Buttons --------------------- */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #b8962e);
  color: #000;
  border: none;
}

/* --------------------- Cards --------------------- */
.section-title { margin-bottom: 30px; font-weight: 600; }

.lux-card, .product-card {
  background: #151515;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.lux-card img, .product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.sub-category .lux-card img { height: 160px; }


.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.product-card .price {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 10px;
}

/* 🔥 Equal height product cards */
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Content wrapper inside card */
.product-card .d-flex {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Fix title height (2 lines max) */
.product-card h5 {
  font-size: 14px;
  min-height: 40px;
  max-height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Push button to bottom */
.product-card .btn {
  margin-top: auto;
}

/* --------------------- Product Detail --------------------- */


.colors-container {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.color-option {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}


#mediaViewer img.show,
#mediaViewer video.show {
  opacity: 1;
}

/* Main Product Image */

/* Image Zoom Container */
.image-zoom-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

/* Media Viewer */
#mediaViewer {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image & Video */
#mediaViewer img,
#mediaViewer video {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

/* Desktop zoom only */
@media (min-width: 577px) {
  .image-zoom-container:hover #mediaViewer img {
    transform: scale(1.4);
    cursor: zoom-in;
  }
}



/* --------------------- Thumbnails & Video --------------------- */
.thumb-img,
.video-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: transform 0.2s ease-in-out, border-color 0.2s;
}


.thumb-img.active,
.video-thumb-wrapper.active .video-thumb {
  border-color: #d4af37;
}


.thumb-img:hover,
.video-thumb:hover {
  transform: scale(1.05);
  border-color: #caa24d;
}
.video-thumb-wrapper:hover::after {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}


/* Video thumbnail wrapper */
.video-thumb-wrapper {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.video-thumb-wrapper img.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.video-thumb-wrapper::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* smaller so it fits */
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  pointer-events: none;
}


/* Thumbnail container */
#thumbContainer {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* --------------------- Product Info --------------------- */
.product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}

/* --------------------- Mobile Styles --------------------- */
@media (max-width: 576px) {
  .product-detail-wrapper { padding: 15px; }

  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Smaller thumbnails on mobile */
  .thumb-img, .video-thumb { width: 50px; height: 50px; }


  .video-thumb-wrapper {
    width: 50px;
    height: 50px;
  }



  #thumbContainer {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  #thumbContainer::-webkit-scrollbar { display: none; }

  /* Disable zoom on mobile */
  .image-zoom-container:hover #mainImage {
    transform: none;
    cursor: default;
  }

  .product-info h2 { font-size: 1.5rem; }
  .product-info .price { font-size: 1.2rem; }
}


/* --------------------- Modal Luxury Theme --------------------- */

.luxury-modal-content {
  background-color: #1e1e1e;
  border-radius: 10px;
  border: none;
}

.luxury-modal-header {
  background-color: #333;
  color: #fff;
  border-bottom: 1px solid #444;
}

.luxury-modal-body {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 20px;
}

.luxury-modal-footer {
  background-color: #333;
  border-top: 1px solid #444;
  text-align: center;
}

.luxury-modal-footer .btn-secondary {
  background-color: #555;
  border: none;
  color: white;
}

.luxury-modal-footer .btn-primary {
  background-color: #28a745;
  border: none;
  color: white;
}

/* --------------------- Color Options --------------------- */

.color-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.color-option:hover {
  border-color: #fff;
  transform: scale(1.1);
}

.color-option.selected {
  border-color: #28a745;
}

/* Disabled WhatsApp button */
.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* 🔥 Skeleton Loader */
.skeleton {
      background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .skeleton-img { width: 100%; height: 400px; }
    .skeleton-title { width: 70%; height: 30px; }
    .skeleton-price { width: 40%; height: 25px; }
    .skeleton-text { width: 100%; height: 15px; }
    .skeleton-btn { width: 100%; height: 45px; }

    .color-option {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: inline-block;
      margin: 5px;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .color-option.selected {
      border: 2px solid #fff;
    }

#productContent {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#productContent.show {
  opacity: 1;
}

/* --------------------- Fix Description Spacing --------------------- */

#productDesc {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #ccc;
}

/* Remove extra spacing from HTML tags */
#productDesc p {
  margin: 0 0 6px 0;
}

#productDesc br {
  display: none; /* remove unwanted line breaks */
}

/* Remove empty paragraphs */
#productDesc p:empty {
  display: none;
}    