/* =============================================================================
   product.css — UR Perfumes
   WooCommerce single product page
   1. Header override (opaque on product pages)
   2. Product hero layout
   3. Gallery (main, zoom, thumbnails)
   4. Info panel (sticky) + all inner elements
   5. WooCommerce form overrides
   6. Fragrance notes
   7. The story
   8. Product details table
   9. Related products
   10. Lightbox
   11. Mobile sticky CTA
   12. Responsive
============================================================================= */

/* ── 1. Page Banner (slim dark strip, sits behind transparent header) ─────── */
.product-page-banner {
  background: var(--dark);
  padding-block: calc(var(--header-h) + var(--announce-h) + 2rem) 2.6rem;
  position: relative;
  overflow: hidden;
}
/* Subtle gold bloom — same language as shop banner */
.product-page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 120% at 75% 60%, rgba(184,150,90,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.product-banner-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.product-banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}
.product-banner-breadcrumb a:hover { color: var(--gold); }
.product-banner-breadcrumb span[aria-hidden="true"] {
  color: var(--gold);
  opacity: 0.55;
}
/* Current product name at end — full white */
.product-banner-breadcrumb span:not([aria-hidden]) {
  color: rgba(255, 255, 255, 0.95);
}

/* ── 2. Product Hero ──────────────────────────────────────────────────────── */
.product-hero {
  background: var(--cream);
  padding-block: 6.4rem 10rem;
}

.product-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 6.4rem;
}

/* ── 3. Gallery ───────────────────────────────────────────────────────────── */
.product-gallery {
  flex: 0 0 45%;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
}

.product-gallery-main {
  flex: 1;
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
  cursor: zoom-in;
}

/* Scoped to beat body.woocommerce img { height: auto } */
.product-gallery .product-gallery-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease), opacity 0.3s ease;
}
.product-gallery-main:hover .product-gallery-img { transform: scale(1.04); }

/* Fade state during thumbnail switch */
.product-gallery-img.is-switching {
  opacity: 0;
  transform: scale(1.02);
}

/* Zoom / lightbox trigger button */
.pgm-zoom {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 8, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.pgm-zoom:hover {
  background: var(--dark);
  color: var(--gold);
}

/* Badge sits above the main image (inside .product-gallery-main) */
.product-gallery-main .product-badge { z-index: 3; }

/* Thumbnail strip — vertical column on the left */
.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  order: -1;             /* moves column to left of main image */
  width: 7.2rem;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.product-gallery-thumbs::-webkit-scrollbar { display: none; }

.product-thumb {
  flex-shrink: 0;
  width: 7.2rem;
  height: 9rem;          /* 4:5 ratio — matches main image */
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--cream-2);
  cursor: pointer;
  opacity: 0.55;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

/* Scoped to beat WooCommerce */
.product-gallery-thumbs .product-thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.product-thumb:hover { opacity: 1; border-color: var(--border-light); }
.product-thumb.is-active { border-color: var(--gold); opacity: 1; }

/* No-image placeholder */
.product-gallery-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-placeholder img { max-width: 40%; opacity: 0.25; }

/* ── 4. Info Panel (sticky) ───────────────────────────────────────────────── */
.product-info {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: calc(var(--header-h) + var(--announce-h) + 2.4rem);
  align-self: flex-start;
}

/* Breadcrumb */
.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.product-breadcrumb a { color: var(--text-muted); transition: color 0.25s ease; }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb span[aria-hidden="true"] { color: var(--gold); opacity: 0.5; }

/* Category eyebrow */
.product-eyebrow { display: block; margin-bottom: 1rem; }

/* Title */
.product-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.2vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 1.8rem;
}

/* Star rating */
.product-rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  transition: opacity 0.25s ease;
}
.product-rating-row:hover { opacity: 0.75; }
.product-stars { display: flex; gap: 0.2rem; }
.product-stars .star { font-size: 1.3rem; color: var(--border-light); }
.product-stars .star.filled { color: var(--gold); }
.product-stars .star.half   { color: var(--gold-2); }
.product-rating-count {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-muted);
}

/* Price */
.product-price-row { margin-bottom: 2rem; }
.product-price-row .price {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.product-price-row .price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 1.8rem;
  margin-right: 0.8rem;
  opacity: 0.65;
}
.product-price-row .price ins { text-decoration: none; }
.product-price-row .woocommerce-Price-amount { color: var(--gold); }

/* Short description */
.product-short-desc {
  font-size: 1.7rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 2.4rem;
}
.product-short-desc p:last-child { margin-bottom: 0; }

/* Separator */
.product-sep {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 2.8rem;
}

/* ── 5. WooCommerce Form Overrides ────────────────────────────────────────── */
/* Action row: Qty · Wishlist · ATC · Buy Now · Share — all on one line */
.product-form-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

/* display:contents removes the form box so qty + ATC join the parent flex row */
.product-page form.cart {
  display: contents;
}

/* Visual order: qty(1) · wishlist(2) · ATC(3) · buy-now(4) · share(5) */
.product-form-wrap .quantity                  { order: 1; flex-shrink: 0; }
.product-form-wrap .product-wishlist-btn      { order: 2; }
.product-form-wrap .single_add_to_cart_button { order: 3; }
.product-form-wrap .urp-buy-now-btn           { order: 4; }
.product-form-wrap .product-share-btn         { order: 5; }

/* Quantity wrapper */
.product-page form.cart .quantity {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-light);
  border-radius: 0.4rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.product-page form.cart .quantity:focus-within { border-color: var(--gold); }

/* Hide WC default label */
.product-page form.cart .quantity label.screen-reader-text { display: none; }

/* Number input */
.product-page form.cart .qty {
  width: 5.2rem;
  padding: 0 0.6rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
  -moz-appearance: textfield;
}
.product-page form.cart .qty::-webkit-outer-spin-button,
.product-page form.cart .qty::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Custom ± buttons (injected by product.js) */
.product-qty-btn {
  width: 4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.product-qty-btn:hover { color: var(--dark); background: var(--cream-2); }

/* Add to cart button — high specificity to beat WooCommerce's own .button.alt styles */
body.single-product .product-page form.cart .single_add_to_cart_button,
body.woocommerce-page .product-page form.cart .single_add_to_cart_button {
  flex: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.65rem 2.8rem;
  background: var(--dark) !important;
  border: 1px solid var(--dark) !important;
  border-radius: 0.4rem !important;
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease !important;
}
body.single-product .product-page form.cart .single_add_to_cart_button:hover,
body.woocommerce-page .product-page form.cart .single_add_to_cart_button:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-color: var(--gold) !important;
}
body.single-product .product-page form.cart .single_add_to_cart_button.loading,
body.woocommerce-page .product-page form.cart .single_add_to_cart_button.loading { opacity: 0.6; pointer-events: none; }
body.single-product .product-page form.cart .single_add_to_cart_button.added,
body.woocommerce-page .product-page form.cart .single_add_to_cart_button.added { background: var(--gold) !important; color: var(--dark) !important; }

/* Buy Now button */
.urp-buy-now-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.65rem 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 0.4rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.urp-buy-now-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Variable product — variations table */
.product-page table.variations {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.4rem;
}
.product-page table.variations td,
.product-page table.variations th { padding: 0; border: none; vertical-align: middle; }
.product-page table.variations .label { padding-right: 2rem; padding-bottom: 1.4rem; }
.product-page table.variations .label label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.product-page table.variations .value { padding-bottom: 1.4rem; }
.product-page table.variations .value select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 1rem 3.6rem 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.product-page table.variations .value select:focus { border-color: var(--gold); outline: none; }

.product-page .reset_variations {
  display: inline-block;
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.product-page .reset_variations:hover { color: var(--gold); }

/* Variation price update */
.product-page .woocommerce-variation-price .price { font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.product-page .woocommerce-variation-description { font-size: 1.4rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.65; }

/* ─ Wishlist + Share ─ */
.product-wishlist-btn,
.product-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4.8rem;
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: 0.4rem;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
/* Icon only */
.product-wishlist-label,
#product-share-label { display: none; }

.product-wishlist-btn:hover,
.product-share-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 150, 90, 0.06);
}
.product-wishlist-btn.is-wishlisted {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 150, 90, 0.06);
}
.product-wishlist-btn.is-wishlisted svg { fill: var(--gold); }

/* Share button — "Link copied!" tooltip */
.product-share-btn { position: relative; }
.share-copied-tip {
  position: absolute;
  bottom: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.share-copied-tip.is-visible { opacity: 1; }

/* ─ Category & Tag chips ─ */
.product-meta-chips {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 150, 90, 0.2);
}
.product-meta-chips-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  align-items: start;
  gap: 1.2rem;
  padding: 0.6rem 0;
}
.product-meta-chips-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.45rem;
  flex-shrink: 0;
}
.product-meta-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.product-meta-chip {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-meta-chip:hover { color: var(--gold); }
.product-meta-chips-list .product-meta-chip:not(:last-child)::after {
  content: ',';
  margin-right: 0.35rem;
  color: var(--text-muted);
}

/* ─ Trust bar ─ */
.product-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-light);
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
}
.product-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* On dark background, use the lighter gold variant for better contrast */
.product-notes-section .eyebrow,
.product-related-section .eyebrow { color: var(--gold-2); }

/* ── 6. Fragrance Notes ───────────────────────────────────────────────────── */
.product-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 6rem;
}

/* Adjust column count when fewer than 3 notes */
.product-notes-grid:has(.product-note-col:only-child) { grid-template-columns: 1fr; }
.product-notes-grid:has(.product-note-col:nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }

.product-note-col {
  padding: 4.8rem 4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.product-note-col:last-child { border-right: none; }

.product-note-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  user-select: none;
  pointer-events: none;
}

.product-note-label {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.product-note-role {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.8rem;
  line-height: 1.3;
}

.product-note-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-note-list li {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}
.product-note-list li:last-child { border-bottom: none; padding-bottom: 0; }
.product-note-col:hover .product-note-list li { color: rgba(255, 255, 255, 0.95); }

/* ── 7. The Story ─────────────────────────────────────────────────────────── */
.product-story-section { background: var(--cream); }

.product-story-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.product-story-text .eyebrow { margin-bottom: 1.4rem; display: block; }
.product-story-text .gold-line { margin-block: 2rem; }

.product-story-content {
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.85;
  color: var(--text);
}
.product-story-content p { margin-bottom: 1.6rem; }
.product-story-content p:last-child { margin-bottom: 0; }

.product-story-img-wrap {
  aspect-ratio: 4 / 5;
  max-height: 52rem;
  overflow: hidden;
  background: var(--cream-2);
  align-self: start;
}
/* Scoped for WooCommerce specificity */
.product-story-img-wrap .product-story-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.product-story-img-wrap:hover .product-story-img { transform: scale(1.04); }

/* ── 8. Specs Strip ───────────────────────────────────────────────────────── */
.product-specs-strip {
  background: var(--dark);
  position: relative;
}
/* Subtle gold gradient line at top */
.product-specs-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,90,0.6) 30%, rgba(184,150,90,0.6) 70%, transparent);
}

.product-specs-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.product-spec-item {
  flex: 1;
  min-width: 14rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  padding: 3.2rem 2.4rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}
.product-spec-item:last-child { border-right: none; }
.product-spec-item:hover { background: rgba(184,150,90,0.05); }

/* Gold accent line above each item on hover */
.product-spec-item::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.product-spec-item:hover::after { transform: scaleX(1); }

.product-spec-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0.85;
}

.product-spec-value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin: 0;
  line-height: 1.3;
}

/* ── 9. Related Products ──────────────────────────────────────────────────── */
.product-related-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* ── 10. Lightbox ─────────────────────────────────────────────────────────── */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-lightbox[hidden] { display: none; }

.product-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.96);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.product-lightbox-close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  z-index: 1;
  transition: background 0.25s ease, color 0.25s ease;
}
.product-lightbox-close:hover { background: rgba(255, 255, 255, 0.16); color: var(--white); }

.product-lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
}

/* Scoped for WooCommerce specificity */
.product-lightbox-inner .product-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Lightbox nav arrows */
.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5.2rem;
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.product-lightbox-nav:hover {
  background: rgba(184, 150, 90, 0.18);
  border-color: rgba(184, 150, 90, 0.45);
  color: var(--gold);
}
.plb-nav-prev { left: 2.4rem; }
.plb-nav-next { right: 2.4rem; }
.plb-nav-prev:hover { transform: translateY(-50%) translateX(-3px); }
.plb-nav-next:hover { transform: translateY(-50%) translateX(3px); }

/* Lightbox counter */
.plb-counter {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

/* ── 11. Mobile Sticky CTA ────────────────────────────────────────────────── */
.product-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(245, 240, 232, 0.97);
  border-top: 1px solid var(--border-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  display: none; /* only on mobile via media query below */
}
.product-sticky-cta.is-visible { transform: translateY(0); }

.product-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.2rem 0;
}
.product-sticky-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.product-sticky-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-sticky-price .price {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.product-sticky-price .woocommerce-Price-amount { color: var(--gold); }
.product-sticky-btn {
  flex-shrink: 0;
  padding: 1.2rem 2.4rem;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.product-sticky-btn:hover { background: var(--gold); color: var(--dark); }
