/* ═══════════ ROOT ═══════════ */
:root {
  --saffron: #d4722a;
  --saffron-lt: #f0a44b;
  --gold: #c9a84c;
  --gold-lt: #e8c97e;
  --cream: #fdf6e3;
  --cream-dk: #f5eac8;
  --maroon: #6b1a1a;
  --maroon-lt: #8b2e2e;
  --deep-purple: #2d1b4e;
  --indigo: #3d2670;
  --white: #ffffff;
  --text-dark: #1a0a00;
  --text-mid: #4a2c0a;
  --text-light: #8b6914;
  --border-gold: rgba(201, 168, 76, 0.4);
  --radius-sm: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Crimson Pro", Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dk);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ═══════════ ANNOUNCE BAR ═══════════ */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.announce-bar {
  background: linear-gradient(90deg,
      var(--maroon),
      var(--deep-purple),
      var(--maroon));
  color: var(--gold-lt);
  padding: 8px 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-family: "Cinzel", serif;
  overflow: hidden;
  white-space: nowrap;
}

.announce-track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}

.announce-track:hover {
  animation-play-state: paused;
}

.announce-bar span {
  margin: 0 24px;
  display: inline-block;
}

/* ═══════════ TOPBAR ═══════════ */
.topbar {
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 6px 40px;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.topbar a {
  color: var(--text-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--saffron);
}

.topbar i {
  color: var(--saffron);
}

/* ═══════════ HEADER ═══════════ */
.breadcrumb-bar {
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 28px;
}

.breadcrumb-bar .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-bar a {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-bar a:hover {
  color: var(--saffron);
}

.breadcrumb-bar span {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 600;
}

.breadcrumb-bar i {
  color: var(--border-gold);
  font-size: 0.55rem;
}

/* ═══════════ MAIN CONTAINER ═══════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════ PRODUCT DETAIL SECTION ═══════════ */
.product-detail {
  padding: 40px 24px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ─── GALLERY ─── */
.gallery-col {
  position: sticky;
  top: 90px;
}

.main-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-dk);
  border: 1px solid var(--border-gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/5;
}

.gallery-slider {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.gallery-slider:active {
  cursor: grabbing;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  position: relative;
}

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  z-index: 5;
}

.gallery-dots {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 5px;
  z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.dot.active {
  background: var(--saffron);
  box-shadow: 0 0 8px var(--saffron);
  transform: scale(1.3);
  opacity: 1;
}

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.g-badge {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 3px;
  color: white;
}

.g-badge.bestseller {
  background: var(--saffron);
}

.g-badge.handcrafted {
  background: var(--maroon);
}

.wish-main {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s;
}

.wish-main:hover,
.wish-main.active {
  color: var(--maroon);
  transform: scale(1.1);
}

.wish-main.active {
  background: #fff0f0;
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream-dk);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb:hover {
  border-color: var(--gold);
}

.thumb.active {
  border-color: var(--saffron);
  box-shadow: 0 0 0 2px rgba(212, 114, 42, 0.25);
}

.video-thumb {
  position: relative;
}

.play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-gold);
}

.share-label {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s;
  text-decoration: none;
}

.share-btn:hover {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}

.share-btn.wa {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.share-btn.wa:hover {
  background: #1aad55;
}

/* ─── INFO COL ─── */
/* FIX: min-width:0 stops the grid column from blowing out on mobile */
.info-col {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.product-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  row-gap: 6px;
  margin-bottom: 10px;
}

.ptag {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.ptag.cat {
  background: rgba(212, 114, 42, 0.12);
  color: var(--saffron);
  border: 1px solid rgba(212, 114, 42, 0.25);
}

.ptag.series {
  background: rgba(107, 26, 26, 0.1);
  color: var(--maroon);
  border: 1px solid rgba(107, 26, 26, 0.2);
}

.ptag.instock {
  background: rgba(37, 211, 102, 0.1);
  color: #0f7a3a;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.product-title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.2;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Rating Row */
.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  row-gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-val {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 600;
}

.review-count {
  font-size: 0.82rem;
  color: var(--text-light);
}

.review-count a {
  color: var(--saffron);
  text-decoration: none;
}

.review-count a:hover {
  text-decoration: underline;
}

.divider-dot {
  color: var(--border-gold);
}

/* Short desc */
.product-short-desc {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Key Highlights */
.highlights {
  background: linear-gradient(135deg,
      rgba(212, 114, 42, 0.05),
      rgba(201, 168, 76, 0.05));
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.highlights-title {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--maroon);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlights-title i {
  color: var(--saffron);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.highlight-item i {
  color: var(--saffron);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Variants */
.variant-section {
  margin-bottom: 24px;
}

.variant-label {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  row-gap: 2px;
}

.variant-label span {
  font-weight: 400;
  color: var(--saffron);
  overflow-wrap: break-word;
  word-break: break-word;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-opt {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 14px;
  border: 1.5px solid var(--border-gold);
  border-radius: 4px;
  cursor: pointer;
  background: white;
  color: var(--text-dark);
  transition: all 0.2s;
  white-space: nowrap;
}

.size-opt:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.size-opt.active {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: white;
  border-color: var(--saffron);
}

.finish-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.finish-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.finish-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  transition: all 0.2s;
  position: relative;
}

.finish-opt.active .finish-swatch,
.finish-opt:hover .finish-swatch {
  border-color: var(--saffron);
  transform: scale(1.1);
}

.finish-opt.active .finish-swatch::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.finish-name {
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  color: var(--text-light);
}

/* ── PINCODE FIELD ── */
.pincode-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.pincode-row #pincodeInput {
  width: auto;
}

#pincodeInput {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  min-width: 0;
}

#pincodeInput::placeholder {
  color: var(--text-light);
  letter-spacing: 0.06em;
}

#pincodeInput:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(212, 114, 42, 0.12);
}

#pincodeInput.valid {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

#pincodeInput.invalid {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(107, 26, 26, 0.12);
}

.variant-section .btn-email-cta {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 0.78rem;
}

#deliveryResult {
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  min-height: 20px;
  transition: all 0.3s;
  overflow-wrap: break-word;
  word-break: break-word;
}

#deliveryResult.success {
  color: #0f7a3a;
  display: flex;
  align-items: center;
  gap: 7px;
}

#deliveryResult.error {
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: 7px;
}

#deliveryResult.info {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* CTA Buttons */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-wa-cta {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 15px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-email-cta {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: white;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 15px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 114, 42, 0.3);
}

.btn-email-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 114, 42, 0.45);
}

.btn-wish-cta {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-gold);
  border-radius: 6px;
  background: white;
  color: var(--text-mid);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.btn-wish-cta:hover,
.btn-wish-cta.active {
  background: #fff0f0;
  color: var(--maroon);
  border-color: var(--maroon);
}

/* Trust badges */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.trust-item {
  background: white;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 12px 10px;
  text-align: center;
  transition: all 0.2s;
}

.trust-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.trust-item i {
  color: var(--saffron);
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: block;
}

.trust-item p {
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  line-height: 1.4;
}

/* Enquiry note */
.enquiry-note {
  background: linear-gradient(135deg,
      rgba(107, 26, 26, 0.06),
      rgba(45, 27, 78, 0.06));
  border: 1px solid rgba(107, 26, 26, 0.15);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.enquiry-note i {
  color: var(--maroon);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.enquiry-note p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
}

.enquiry-note strong {
  color: var(--maroon);
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
}

/* ═══════════ TABS SECTION ═══════════ */
.tabs-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 20px;
}

.tabs-header {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-gold);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  background: none;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  flex-shrink: 0;
}

.tab-btn:hover {
  color: var(--saffron);
}

.tab-btn.active {
  color: var(--maroon);
  border-bottom-color: var(--saffron);
}

.tab-panel {
  display: none;
  padding: 32px 0;
}

.tab-panel.active {
  display: block;
}

/* Description Tab */
.desc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.desc-text h3 {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desc-text h3 i {
  color: var(--saffron);
}

.desc-text p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

.desc-text ul {
  list-style: none;
  margin-bottom: 14px;
}

.desc-text ul li {
  font-size: 0.94rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.desc-text ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.desc-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.desc-image img {
  width: 100%;
  display: block;
}

/* Specifications Tab */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spec-card {
  background: white;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
}

.spec-card-header {
  background: linear-gradient(135deg, var(--maroon), var(--deep-purple));
  padding: 12px 18px;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 10px 18px;
  font-size: 0.88rem;
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--text-light);
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  width: 45%;
}

.spec-table td:last-child {
  color: var(--text-dark);
  font-weight: 500;
}

.spec-table tr:nth-child(even) td {
  background: rgba(245, 234, 200, 0.3);
}

/* Reviews Tab */
.reviews-summary {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
  background: white;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 28px;
}

.big-rating {
  text-align: center;
}

.big-num {
  font-family: "Cinzel Decorative", serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--maroon);
  line-height: 1;
}

.big-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 8px 0;
}

.big-count {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  color: var(--text-mid);
  width: 40px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--cream-dk);
  border-radius: 4px;
  overflow: hidden;
  min-width: 0;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 4px;
}

.bar-pct {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  color: var(--text-light);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: white;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 22px;
  transition: all 0.2s;
  overflow: hidden;
}

.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel Decorative", serif;
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.reviewer-name {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  overflow-wrap: break-word;
}

.reviewer-loc {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.reviewer-loc i {
  color: var(--saffron);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-light);
  font-family: "Cinzel", serif;
  margin-left: auto;
  white-space: nowrap;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  overflow-wrap: break-word;
  word-break: break-word;
}

.review-verified {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: #0f7a3a;
}

.review-verified i {
  font-size: 0.75rem;
}

/* Shipping Tab */
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.ship-card {
  background: white;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}

.ship-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.ship-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(212, 114, 42, 0.1),
      rgba(201, 168, 76, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: var(--saffron);
  border: 1px solid rgba(212, 114, 42, 0.2);
}

.ship-card h4 {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 8px;
}

.ship-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.ship-note {
  background: linear-gradient(135deg,
      rgba(107, 26, 26, 0.06),
      rgba(45, 27, 78, 0.06));
  border: 1px solid rgba(107, 26, 26, 0.15);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.ship-note strong {
  color: var(--maroon);
  font-family: "Cinzel", serif;
}

/* ═══════════ RELATED PRODUCTS ═══════════ */
.related-section {
  background: linear-gradient(160deg, #1a0a00 0%, var(--deep-purple) 100%);
  padding: 60px 24px;
}

.related-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--saffron-lt);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin: 0 auto;
  border-radius: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dk);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--saffron);
  color: white;
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 2px;
}

.prod-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
}

.product-card:hover .prod-actions {
  opacity: 1;
  transform: translateX(0);
}

.prod-action-btn {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
  text-decoration: none;
}

.prod-action-btn:hover {
  background: var(--saffron);
  color: white;
}

.prod-info {
  padding: 14px;
}

.prod-cat {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.prod-name {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  word-break: break-word;
}

.prod-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  gap: 8px;
  flex-wrap: wrap;
}

.prod-size {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.prod-size i {
  color: var(--gold);
}

.btn-enq {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 6px 12px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-enq:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* ═══════════ STICKY MOBILE CTA BAR ═══════════ */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: white;
  border-top: 1px solid var(--border-gold);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta-bar a,
.sticky-cta-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 13px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.sticky-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.sticky-email {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: white;
}

.sticky-wish {
  background: white;
  color: var(--text-mid);
  border: 1.5px solid var(--border-gold) !important;
  width: 50px !important;
  flex: none !important;
}

.sticky-wish:hover {
  color: var(--maroon);
  border-color: var(--maroon) !important;
}

/* ═══════════ FLOATING ELEMENTS ═══════════ */
.float-wa {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  background: #25d366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all 0.25s;
  animation: pulse-wa 2.5s infinite;
}

.float-wa:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
  }
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  background: var(--maroon);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--saffron);
}

/* ═══════════ FOOTER ═══════════ */
footer {
  background: #0d0500;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 20px 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand .logo-text .brand {
  color: var(--gold-lt);
}

.footer-brand .logo-text .sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 16px 0 20px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: white;
}

.footer-col h4 {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gold-lt);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--saffron-lt);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-item i {
  color: var(--saffron);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--saffron-lt);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav-links a {
    padding: 8px 8px;
    font-size: 0.72rem;
  }

  .btn-enquire-nav {
    padding: 9px 13px;
    font-size: 0.68rem;
  }

  .detail-grid {
    gap: 36px;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .gallery-col {
    position: static;
  }

  .main-image-wrap {
    max-width: 560px;
    margin: 0 auto;
  }

  .thumbnails {
    max-width: 560px;
    margin: 14px auto 0;
  }

  .share-row {
    max-width: 560px;
    margin: 14px auto 0;
  }

  .desc-content {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .shipping-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .float-wa {
    bottom: 90px;
  }

  .scroll-top {
    bottom: 150px;
  }
}

/* ─────────────────────────────────────────────────
   768px — PRIMARY MOBILE FIXES
   ① info-col grid blowout   → min-width: 0
   ② all 8 highlights hidden → single column
   ③ review cards overflow   → flex-wrap + stack
   ④ trust badges cut off    → compact 3-col
   ⑤ cta row                 → full-width stack
   ⑥ rating-row wraps        → row-gap added
───────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* NAV */
  .topbar {
    display: none;
  }

  .nav-links,
  .btn-enquire-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ① FIX — info-col never overflows its grid cell */
  .info-col {
    min-width: 0;
    width: 100%;
  }

  /* ② FIX — highlights: single column so all 8 items show */
  .highlights {
    padding: 14px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* ③ FIX — reviews summary stacks, cards don't overflow */
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
    margin-bottom: 24px;
  }

  .big-rating {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .big-num {
    font-size: 2.8rem;
  }

  .rating-bars {
    width: 100%;
  }

  .review-header {
    flex-direction: column;
    gap: 8px;
  }

  .review-date {
    margin-left: 0;
  }

  .review-card {
    padding: 16px;
  }

  /* ④ FIX — trust row stays 3-col but compact */
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .trust-item {
    padding: 10px 6px;
  }

  .trust-item i {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .trust-item p {
    font-size: 0.55rem;
    letter-spacing: 0.02em;
  }

  /* ⑤ FIX — cta row full-width stacked */
  .cta-row {
    flex-direction: column;
  }

  .btn-wa-cta,
  .btn-email-cta {
    min-width: unset;
    width: 100%;
  }

  .btn-wish-cta {
    width: 100%;
    height: 48px;
  }

  /* ⑥ FIX — rating-row wraps cleanly */
  .rating-row {
    gap: 8px;
    row-gap: 6px;
  }

  /* Shipping */
  .shipping-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 540px) {
  .product-detail {
    padding: 20px 14px 14px;
  }

  .tabs-section {
    padding: 20px 14px 14px;
  }

  /* Trust: 2-col at very small so text stays readable */
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item p {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .thumbnails {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .thumbnails::-webkit-scrollbar {
    display: none;
  }

  .thumb {
    flex: 0 0 calc(25% - 9px);
    scroll-snap-align: start;
    aspect-ratio: 1 / 1;
  }

  .tab-btn {
    padding: 11px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 400px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-title {
    font-size: clamp(1rem, 7vw, 1.3rem);
  }

  .size-opt {
    font-size: 0.66rem;
    padding: 7px 10px;
  }
}

/* ═══════════ WRITE A REVIEW SECTION ═══════════ */
.write-review-section {
  margin-top: 32px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
}

.write-review-title {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.write-review-title i {
  color: var(--gold);
}

.write-review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-form-top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.star-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.stars-input {
  display: flex;
  gap: 6px;
}

.stars-input i {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}

.stars-input i:hover {
  transform: scale(1.2);
}

.review-form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rf-row {
  display: flex;
  gap: 16px;
}

.rf-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rf-col.full {
  flex: unset;
  width: 100%;
}

.rf-col label {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.rf-col input,
.rf-col textarea {
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Crimson Pro", serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
  width: 100%;
}

.rf-col input:focus,
.rf-col textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(212, 114, 42, 0.1);
}

.review-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  margin-top: 10px;
  border: 1px solid #c8e6c9;
}

.review-success i {
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .rf-row {
    flex-direction: column;
  }

  .write-review-section {
    padding: 18px;
  }
}

/* Related Products Carousel */
.related-carousel {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 15px;
  padding-bottom: 20px;
}

.related-carousel::-webkit-scrollbar {
  display: none;
}

.related-carousel .product-card {
  flex: 0 0 calc(50% - 7.5px);
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .related-carousel .product-card {
    flex: 0 0 calc(33.333% - 10px);
  }
}

@media (min-width: 1024px) {
  .related-carousel .product-card {
    flex: 0 0 calc(25% - 11.25px);
  }
}

/* Fix mobile scaling for the smaller card format in product details */
@media (max-width: 500px) {
  .related-carousel .product-img-wrap {
    aspect-ratio: 1 / 1 !important;
  }

  .related-carousel .prod-info {
    padding: 10px 8px !important;
  }

  .related-carousel .prod-name {
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .related-carousel .btn-enq {
    font-size: 0.65rem !important;
    padding: 5px 8px !important;
  }
}

/* ── REVIEW MEDIA GALLERIES ── */
.review-media-grid {
  display: flex;
  gap: 10px;
  margin: 14px 0;
  flex-wrap: wrap;
}

.r-media-item {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  cursor: zoom-in;
  border: 1px solid var(--border-gold);
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  background: var(--cream-dk);
}

.r-media-item:hover {
  transform: scale(1.05);
  border-color: var(--gold);
}

.r-media-item.video {
  cursor: pointer;
}

.r-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  pointer-events: none;
  z-index: 2;
}

.r-media-preview-container .preview-thumb {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}


/* Fix for spacing under pincode */
#deliveryResult:empty {
  margin-top: 0 !important;
  min-height: 0 !important;
  display: none !important;
}

/* Mobile CTA button layout */
@media (max-width: 768px) {
  .cta-row {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .btn-add-cart {
    flex: 0 0 auto !important;
    min-width: auto !important;
    padding: 15px !important;
  }

  .btn-add-cart .mobile-hide-text {
    display: none;
  }

  .btn-add-cart i {
    margin: 0;
  }

  .btn-buy-now,
  .btn-enquiry {
    flex: 1 !important;
    min-width: 0 !important;
    font-size: 0.75rem !important;
    padding: 15px 10px !important;
  }

  .mobile-hide-icon {
    display: none !important;
  }
}