
:root{
  --max-width: 1800px;
  --content-max-width: var(--max-width);
  --gold: #b8862b;
  --gold-dark: #8c5a21;

  --brand-green: #08241c;     /* hero / accent */
  --brand-green-700: #062b1f;
  --muted-bg: #f7f7f7;
  --card-border: rgba(0,0,0,0.06);
  --card-border-strong: rgba(0,0,0,0.10);
  --glass: rgba(255,255,255,0.65);
  --max-body-width: 1200px;

  --header-height: 72px;
  --radius-lg: 14px;
  --radius-md: 10px;
}

*{box-sizing:border-box}
html,body{height:100%;
  margin:0;
  font-family:Inter,
  system-ui,-apple-system,
  "Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  color:#111;background:linear-gradient(180deg,#fbfbfb 0%, #f6f7f8 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale}

html, body {
  overflow-x: hidden;
}
/* --------------------------
   Container utilities
   -------------------------- */
.container{
  max-width:var(--content-max-width);
  margin:0 auto;
  padding:35px 18px 160px;
  width:100%;
}

.section{padding:28px 0}

/* full-bleed helper: use on hero wrapper to let image go edge to edge */
.full-bleed,
.full-bleed-hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100%;               /* <-- use 100% instead of 100vw */
  padding-left: calc((100vw - var(--content-max-width)) / 2);
  padding-right: calc((100vw - var(--content-max-width)) / 2);
  box-sizing: border-box;
}

/* ----------------------------------------------------
   HERO POSTER — CLEAN, FULL-WIDTH, EDGE-TO-EDGE
   ---------------------------------------------------- */
.hero-fullbleed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  box-sizing: border-box;
}

/* track: horizontal flex container we will translate */
.hero-track {
  display: flex;
  transition: transform .6s cubic-bezier(.22,.9,.32,1);
  will-change: transform;
}

/* slide: one per viewport width */
.hero-slide {
  flex: 0 0 100%;
  height: 78vh;
  max-height: 820px;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

/* image must fill the slide fully — important fix (was 80%) */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crops to fill without whitespace */
  display: block;
}

/* indicators (absolute, centered) */
.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 50;
  pointer-events: auto;
}

.hero-ind {
  width: 38px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.36);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.hero-ind.active {
  background: #fff;
  transform: scale(1.06);
}

/* responsive adjustments */
@media (max-width: 900px) {
  .hero-slide { height: 54vh; }
  .hero-ind { width: 28px; height: 7px; }
}
@media (max-width: 520px) {
  .hero-slide { height: 24vh; }
  .hero-ind { width: 22px; height: 6px; }
}

/* make sure parent has pointer-events for pause on hover */
.hero-fullbleed { pointer-events: auto; }

/* --------------------------
   QUICK CATEGORIES — WHITE
   -------------------------- */
.container.section + .container.section {} /* keep structure */

/* category section wrapper uses white background at section level optionally — templates use .container, so we add class */
.category-section, .categories-wrapper, .category-cards-wrap { background: #fff; padding: 22px 0; border-radius: 0; }

/* scroll-row already used; tweak to sit on white */
.scroll-row{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:40px;padding:20px 0}
.cat-card{
  width:250px;text-align:center;text-decoration:none;color:#222;background:#fff;border-radius:var(--radius-lg);padding:12px;border:4px solid var(--card-border-strong);box-shadow:0 8px 22px rgba(0,0,0,0.04);
  transition:transform .18s ease,box-shadow .18s ease;
}
.cat-card img{width:100%;height:250px;border-radius:12px;object-fit:cover;display:block}
.cat-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(0,0,0,0.08)}
.cat-label{margin-top:10px;font-weight:700;font-size:15px;color:#111}

/* ==========================================================
   QUICK CATEGORIES — SMALL CARDS (PERFECT FOR MOBILE)
   ========================================================== */
.quick-cat-section {
  padding: 20px 0 10px;
}

.quick-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.quick-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: .2s ease;
}

.quick-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.quick-cat-imgwrap {
  width: 100%;
  height: 100px;             /* SMALL card height */
  border-radius: 10px;
  overflow: hidden;
  background: #f7f7f7;
}

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

.quick-cat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-align: center;
}

/* MOBILE TUNING */
@media (max-width: 600px) {
  .quick-cat-grid {
    grid-template-columns: repeat(3, 1fr);  /* 3 per row on small screens */
    gap: 12px;
  }
  .quick-cat-card {
    padding: 8px;
  }
  .quick-cat-imgwrap {
    height: 90px;
  }
  .quick-cat-label {
    font-size: 12px;
  }
}

/* VERY SMALL SCREENS */
@media (max-width: 420px) {
  .quick-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quick-cat-imgwrap {
    height: 80px;
  }
}

/* --------------------------
   COLLECTIONS — WHITE cards + white section
   -------------------------- */
/* ===== Collections & Banner UI (add to end of elexa.css) ===== */
/* ===== Collections: reduced banners + 2-column layout + centered preview tiles ===== */

/* Grid layout: 2 columns on desktop, 1 column on narrow screens */
.collections-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  align-items: start;
}

/* Reduce main card/padding while preserving existing card look */
.collection-card--banner {
  position: relative;
  overflow: visible;
  padding: 16px;
  border-radius: 10px;
  /* keep your existing background/shadow — we don't override them */
}

/* smaller banner size so cards sit side-by-side comfortably */
.banner-single-wrapper {
  width: 100%;
  height: 220px;         /* Reduced height */
  border-radius: 8px;
  overflow: hidden;
  background: #000;      /* fallback */
}
.banner-single {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .32s ease, opacity .28s ease;
}

/* overlay title - subtle */
.collection-banner-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 10;
  pointer-events: none;
}
.collection-title { margin: 0; color: rgba(255,255,255,0.95); font-weight:600; font-size:14px; text-shadow: 0 6px 14px rgba(0,0,0,0.35); }

/* Navigation arrows: hidden by default; visible if template outputs them */
.collection-card--banner .banner-nav {
  display: none; /* default off for single-banner setups */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border: none;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  cursor:pointer;
  z-index: 20;
}
.collection-card--banner .banner-prev { left: 10px; }
.collection-card--banner .banner-next { right: 10px; }

/* Centered preview tiles (kept small and matching screenshot look) */
.collection-preview-tiles {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;        /* overlap amount */
  display: flex;
  gap: 12px;
  z-index: 30;
  align-items: flex-end;
  pointer-events: auto;
}

/* preview tile look */
.preview-tile {
  width: 150px;         /* slightly reduced to match smaller banner */
  height: 130px;
  background: var(--gold);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px;
}
.preview-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  border-radius: 8px;
}

/* subtle grounding shadow under tiles to match screenshot */
.collection-card--banner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: calc(100% - 48px);
  height: 10px;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.06;
}

/* Responsive rules */
/* single column on small screens */
@media (max-width: 920px) {
  .collections-grid.two-col { grid-template-columns: 1fr; gap: 30px;}
  .banner-single-wrapper { height: 200px; }
  .preview-tile { width:110px; height:100px; padding: 4px;}
  .collection-preview-tiles { bottom: -27px; gap:15px; }
  
}
@media (max-width: 480px) {
  .banner-single-wrapper { height: 150px; }
  .preview-tile { width:105px; height:95px; padding: 3px;}
  .collection-preview-tiles { bottom: -25px; gap:13px; }
}

/* --------------------------
   PRODUCT GRID / CARDS
   -------------------------- */
.product-grid-header{display:flex;justify-content:space-between;align-items:center}
.product-mini{width:160px;flex:0 0 auto;text-decoration:none;color:#222}
.product-mini img{width:160px;height:160px;border-radius:14px;object-fit:cover}
.product-mini-title{margin-top:6px;font-weight:600}
.product-mini-price{color:var(--gold-dark);font-weight:700}

/* generic card style used across site */
.card, .testimonial-card, .product-grid-card, aside, .collection-card, .product-mini {
  border:4px solid var(--card-border);
  background:#fff;
  border-radius:12px;
  padding:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.04);
}

/* aside (cart / summary) refinement */
aside{background:#fff;border:4px solid var(--card-border-strong);padding:18px;border-radius:12px}

/* CTA buttons */
.cta-btn, .hero-cta{background:var(--gold);color:#fff;font-weight:700;border:0;padding:10px 14px;border-radius:10px;cursor:pointer;text-decoration:none;display:inline-block}
.price-btn, .price-banner-btn{background:#fafafa;border:1px solid #e6e6e6;padding:8px 10px;border-radius:8px;cursor:pointer}

/* footer — keep darker for contrast with white sections */
.footer{background:linear-gradient(180deg,#0b1e18,#07120f);color:#fff;padding:28px 0}
.footer a{color:rgba(255,255,255,0.9);text-decoration:none}

/* --------------------------
   Accessibility & contrast tweaks
   -------------------------- */
h1,h2,h3,h4,h5,h6{color:#111}
a{color:var(--brand-green);}

/* small helper: ensure titles on white sections are dark */
.section-title, .collection-title, .cat-label, h3, h2, h1 { color:#111; }

/* --------------------------
   Responsive adjustments
   -------------------------- */
@media (max-width:1200px){
  .hero-slide-img{height:480px}
  .hero-title{font-size:36px}
  .logo{font-size:24px; margin-left:10px}
}

@media (max-width:900px){
  .hero-slide{min-width:calc(100% - 32px);border-radius:0px}
  .hero-slide-img{height:280px}
  .hero-title{font-size:26px}
  .search-box{width:92%}
  .container{padding: 14px 15px}
  .product-grid-header{flex-direction:column;align-items:flex-start;gap:14px}
  .product-mini{width:140px}
  .cat-card{width:45%}
  .collections-track{gap:18px;padding-bottom:40px}
  .collection-card--banner{flex:0 0 86%}
  .collections-section.container {
  margin: 0 auto 50px;
}

}

@media (max-width:600px){
  .hero-slide-img{height:210px}
  .hero-title{font-size:20px}
  .logo{font-size:20px; margin-left:8px}
  .cat-card{width:48%}
  .product-mini{width:48%}
}

/* --------------------------
   Minor polish & utility classes
   -------------------------- */
.top-border{height:4px;background:linear-gradient(90deg,var(--gold),var(--gold-dark))}
.loading{padding:30px;text-align:center;color:#666}
.price-banner-fallback{background:linear-gradient(135deg, rgba(184,134,43,0.06), rgba(184,134,43,0.02));border:1px solid rgba(184,134,43,0.06);border-radius:12px;padding:8px}
.hidden{display:none}
.center{display:flex;justify-content:center;align-items:center}

/* ensure clickable CTAs inside hero overlay are interactive */
.hero-overlay .cta-btn, .hero-overlay .hero-cta { pointer-events:auto }

/* ensure form inputs are usable and visible on white backgrounds */
input,select,textarea{font-family:inherit;font-size:14px;padding:8px;border:1px solid #e6e6e6;border-radius:8px}

/* ---- Shop by Price — full-bleed 4-up row ---- */
.price-filters-bleed { 
  /* small visual separation from other full-bleed areas */
  padding-top: 18px;
  padding-bottom: 55px;
  background: var(--brand-green); /* keep white look */
}
/* MOBILE: Reduce padding for Shop by Price section */
@media (max-width: 900px) {
  .price-filters-bleed {
    padding-top: 18px !important;
    padding-bottom: 15px !important;
  }
}
.price-banner-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* four equal columns */
  gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 14px;
}

/* Each button becomes a card that fills the grid cell */
.price-banner-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  text-align: left;
  border: 5px solid var(--gold);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  min-height: 160px; /* visual height for desktop */
  transition: transform .18s ease, box-shadow .18s ease;
}

/* hover/focus affordance */
.price-banner-btn:hover,
.price-banner-btn:focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  outline: none;
}

/* image fills top area */
.price-banner-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* caption area inside the card—keeps label readable */
.price-banner-caption {
  padding: 12px 14px;
  font-weight: 700;
  color: #111;
  background: linear-gradient(180deg, rgba(255,255,255,0.00), rgba(255,255,255,0.96));
}

/* fallback block when image missing */
.price-banner-fallback {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  min-height:160px;
}

/* Inside fallback, make label prominent */
.price-banner-label {
  font-weight:700;
  font-size:15px;
}

/* Ensure the whole button is accessible on small screens */
.price-banner-btn:active { transform: translateY(-2px); }

/* RESPONSIVE: collapse grid at tablet/mobile breakpoints */
@media (max-width: 1100px) {
  .price-banner-row {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    gap: 14px;
  }
  .price-banner-img { height: 100px; }
}

@media (max-width: 600px) {
  .price-banner-row {
    grid-template-columns: 1fr; /* stack on phones */
    gap: 12px;
  }
  .price-banner-img { height: 140px; } /* make heroish on mobile */
  .price-banner-btn { min-height: auto; }
}

/* ---- New Arrivals grid (tight) ---- */
.new-arrivals-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:14px; }
.new-arrival-card { display:block; overflow:hidden; border-radius:10px; background:#fff; text-decoration:none; color:inherit; border:1px solid rgba(0,0,0,0.06); padding:8px; box-shadow:0 6px 18px rgba(0,0,0,0.04); transition:transform .18s ease, box-shadow .18s ease; }

.na-media { position:relative; width:100%; padding-top:80%; overflow:hidden; border-radius:8px; background:#f7f7f7; }
.na-media-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transform:scale(1.03); transition:opacity .45s ease, transform .6s ease; will-change:opacity,transform; }
.na-media-img.visible { opacity:1; transform:scale(1); }

/* 3-indicator container (bottom center) */
.na-3indicators { position:absolute; left:50%; transform:translateX(-50%); bottom:8px; display:flex; gap:8px; align-items:center; z-index:25; pointer-events:auto; }

/* individual indicator pill */
.na-ind {
  width:36px;
  height:8px;
  border-radius:999px;
  background: rgba(255,255,255,0.6);
  border:none;
  padding:0;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, opacity .12s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  opacity:0.85;
}

/* smaller for prev/next; center is emphasized */
.na-ind.prev, .na-ind.next { width:12px; border-radius:6px; height:6px; }
.na-ind.center { width:36px; height:8px; }
.na-ind.active { background: rgba(255,255,255,0.98); transform:scale(1.02); opacity:1; }

/* hide indicators when a card has only one image */
.new-arrival-card.single .na-3indicators { display:none !important; }

/* hover/keyboard focus affordance */
.na-ind:focus { outline:3px solid rgba(184,134,43,0.18); outline-offset:4px; }

/* info text */
.na-info { padding:10px 6px 4px; }
.na-title { font-weight:700; font-size:14px; margin-bottom:6px; }
.na-price { color:var(--gold-dark); font-weight:800; font-size:13px; }

/* hover lift */
.new-arrival-card:hover { transform: translateY(-6px); box-shadow:0 18px 40px rgba(0,0,0,0.08); }

.view-more-btn {
  background: var(--gold);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight:700;
  text-decoration:none;
}

/* responsive */
@media (max-width:1100px) { .new-arrivals-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:780px)  { .new-arrivals-grid{grid-template-columns:repeat(2,1fr); gap:10px;} .na-media{padding-top:75%;} }
@media (max-width:480px)  { .new-arrivals-grid{grid-template-columns:1fr;} .na-media{padding-top:66%;} }

/* ---- Mobile: make New Arrivals 2-up (phones) ----
   Paste this AFTER the existing responsive rules so it overrides them
*/
@media (max-width: 480px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* two cards per row */
    gap: 12px !important; /* slightly tighter gap for phones */
  }

  /* slightly taller media area for better visuals on narrow cards */
  .na-media { padding-top: 72%; } /* controls aspect ratio of image area */

  /* keep indicator layout usable on phones */
  .na-3indicators { bottom: 6px; gap: 6px; }

  /* adjust card padding / label sizes */
  .new-arrival-card { padding: 6px; }
  .na-title { font-size: 13px; }
  .na-price { font-size: 12px; }
}

/* Very small narrow phones — keep same 2-up but reduce padding */
@media (max-width: 380px) {
  .new-arrivals-grid { gap: 10px; }
  .na-media { padding-top: 76%; }
  .na-title { font-size: 12px; }
  .na-price { font-size: 12px; }
}

/* ---- All Jewellery full-bleed green preview ---- */
.all-jewellery-bleed {
  width:100vw;
  position:relative;
  left:50%; margin-left:-50vw; margin-right:-50vw; right:50%;
  background: var(--brand-green);
  padding: 34px 0 46px;
  box-sizing: border-box;
}

/* inner container uses existing .hero-inner container spacing */
.all-jewellery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns desktop */
  gap: 14px;
  margin-top: 8px;
}

/* reuse new-arrival-card visual but ensure whitened cards on green bg */
.all-jewellery-grid .new-arrival-card {
  background: #fff;
  color: #111;
  padding: 8px;
  border-radius: 10px;
  border: 5px solid var(--gold);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-decoration: none;
}

/* make sure the media area keeps the same ratio & visuals */
.all-jewellery-grid .na-media { padding-top:80%; border-radius:8px; overflow:hidden; position:relative; background:#f7f7f7; }
.all-jewellery-grid .na-media-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transform:scale(1.03); transition:opacity .45s ease, transform .6s ease; }
.all-jewellery-grid .na-media-img.visible { opacity:1; transform:scale(1); }

/* reuse indicator styling (no changes needed) */

/* responsive */
@media (max-width:1100px) {
  .all-jewellery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:780px) {
  .all-jewellery-grid { grid-template-columns: repeat(2, 1fr); }
  .all-jewellery-bleed { padding:24px 0; }
}
@media (max-width:480px) {
  .all-jewellery-grid { grid-template-columns: 1fr; }
  .all-jewellery-bleed { padding:18px 0; }
}

/* tweak View More button colors when placed on green background */
.all-jewellery-bleed .view-more-btn { background:rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.12); padding:8px 12px; border-radius:10px; }

/* ---- Mobile: All Jewellery → 2 cards per row ---- */
@media (max-width: 480px) {
  .all-jewellery-grid {
    grid-template-columns: repeat(2, 1fr) !important;  /* two cards per row */
    gap: 12px !important;                              /* tighter, clean gap */
  }

  /* slightly taller ratio so product image looks correct in 2-up layout */
  .all-jewellery-grid .na-media {
    padding-top: 72% !important;
  }

  /* adjust title & price for smaller width */
  .all-jewellery-grid .na-title { font-size: 13px; }
  .all-jewellery-grid .na-price { font-size: 12px; }

  /* tighten padding so cards look premium on mobile */
  .all-jewellery-grid .new-arrival-card {
    padding: 6px !important;
  }
}

/* -----------------------------
   Testimonials / Customer Stories (improved)
   ----------------------------- */
/* -----------------------------
   Testimonials — small circular mobile card, auto-play
   ----------------------------- */
.testimonials-section { padding-bottom: 6px; }

/* Ensure name always shows */
.testimonial-name {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: initial !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 0 0 2px 0 !important;
  color: #111 !important;
}

/* Ensure name column can grow */
.testimonial-right {
  min-width: 0;
  width: 100%;
}

/* Remove any hiding rules from desktop logic */
.testimonial-card .testimonial-name-placeholder {
  display: none !important;
}


/* Shell & track */
.testimonials-shell { position: relative; margin-top: 14px; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 18px;
  padding: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  align-items: center;
  justify-content: flex-start; /* important: don't center on desktop so multiple are visible */
  scroll-snap-type: x mandatory;
}

/* Card (compact) */
.testimonial-card {
  scroll-snap-align: center;
  flex: 0 0 86%;
  max-width: 86%;
  min-width: 86%;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display:flex;
  gap:12px;
  align-items:center;
  box-shadow: 0 8px 20px rgba(10,10,10,0.06);
  border:1px solid rgba(0,0,0,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}

/* WebKit browsers (Chrome, Safari, Edge, Opera) */
.testimonials-track::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* Firefox */
.testimonials-track {
  scrollbar-width: none !important; /* hides scrollbar */
}

/* For completeness (old browsers) */
.testimonials-track {
  -ms-overflow-style: none !important; /* IE + Edge legacy */
}
/* active visual emphasis */
.testimonial-card.is-active {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
/* Left: circular avatar */
.testimonial-left { flex: 0 0 auto; display:flex; align-items:center; justify-content:center; }
.testimonial-photo-wrap {
  width: 56px; height: 56px; border-radius: 999px; overflow: hidden;
  border: 3px solid rgba(0,0,0,0.06); background: linear-gradient(180deg,#fff,#fbfbfb);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}
.testimonial-photo { width: 100%; height: 100%; object-fit: cover; display:block; }

/* Right: name, stars, quote */
.testimonial-right { display:flex; flex-direction:column; gap:6px; min-width:0; }
.testimonial-top { display:flex; gap:10px; align-items:center; justify-content:flex-start; }
.testimonial-name { font-weight:700; font-size:14px; color:#111; white-space:nowrap; text-overflow:ellipsis; overflow:hidden; max-width:170px; }
.testimonial-stars { color:#e0a03a; font-weight:700; font-size:14px; }

.testimonial-quote { font-size:13px; color:#444; margin:0; line-height:1.4; max-width: 600px; overflow:hidden; text-overflow:ellipsis; }

/* Hide scrollbar for cleaner look (non-essential) */
.testimonials-track::-webkit-scrollbar { height:8px; }
.testimonials-track { scrollbar-width: thin; }
.testimonials-track::-webkit-scrollbar { display: none; }

/* Responsive: mobile single-card view */
@media (max-width: 820px) {
  .testimonial-card { flex: 0 0 86%; max-width: 86%; min-width: 86%; padding: 14px; border-radius: 12px; }
  .testimonial-photo-wrap { width:56px; height:56px; }
  /* ensure only one visible at a time: center cards, gap reduced */
  .testimonials-track { gap: 10px; padding: 10px; }
}

/* Desktop tweaks: show slightly larger set (3 across on wide screens) */
@media (min-width: 1100px) {
  .testimonial-card { flex: 0 0 300px; max-width:300px; }
  .testimonials-track { gap: 20px; padding: 18px; }
}

/* tablet: show 2 cards */
@media (min-width: 621px) and (max-width: 1099px) {
  .testimonial-card { flex: 0 0 48%; max-width: 48%; min-width: 48%; }
  .testimonials-track { justify-content: center; gap: 16px; padding: 14px; }
}

/* desktop: show 3 cards */
@media (min-width: 1100px) {
  .testimonial-card { flex: 0 0 calc((100% - 36px) / 3); max-width: calc((100% - 36px) / 3); min-width: calc((100% - 36px) / 3); }
  .testimonials-track { gap: 18px; padding: 18px; justify-content: flex-start; }
}

/* hide scrollbar on all browsers (clean look) */
.testimonials-track::-webkit-scrollbar { display:none; width:0; height:0; }
.testimonials-track { scrollbar-width: none; -ms-overflow-style: none; }

/* ensure name visible and truncated nicely */
.testimonial-name { display:block; font-weight:700; font-size:14px; color:#111; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:180px; }

/* keep quote readable */
.testimonial-quote { font-size:13px; color:#444; line-height:1.4; max-height:4.2em; overflow:hidden; }

/* focus style for keyboard users */
.testimonial-card:focus { outline: 3px solid rgba(8,36,28,0.06); outline-offset:3px; transform: translateY(-6px); }
/* Focus styles for keyboard users */
.testimonial-card:focus { box-shadow: 0 12px 30px rgba(0,0,0,0.10); transform: translateY(-6px); outline: 3px solid rgba(8,36,28,0.06); outline-offset: 4px; }


/* -------------------------
   Wishlist button — scoped & safe
   ------------------------- */

/* Keep New Arrivals as before (restore default behavior) */
.new-arrival-wrap {
  position: relative;
  overflow: visible; /* ensure no clipping */
}

.all-jewellery-wrap { position: relative; overflow: visible; }

/* Ensure full-bleed container doesn't clip children (only relax overflow) */
.all-jewellery-bleed,
.hero-inner,
.full-bleed {
  overflow: visible; /* do not force stacking context changes here */
}

/* Default placeholder/form position (used by both sections) */
/* We keep moderate z-index so it sits above the card but does not break other overlays */
.wish-target,
.wish-form {
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: auto;
  z-index: 120; /* safe default above cards */
}

.all-jewellery-wrap > .wish-target,
.all-jewellery-wrap > .wish-form {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 999 !important;
  pointer-events: auto !important;
}

/* Button visual: white circular background, grey heart by default */
.wish-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;         /* circular */
  background: #ffffff;          /* white circle */
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(8,36,28,0.06);
  padding: 6px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, color .14s ease;
  color: #9CA3AF;              /* grey heart (Tailwind text-gray-400) */
}

/* Icon size */
.wish-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* Hover subtle lift */
.wish-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8,36,28,0.08);
}

/* Active state - keep the circle white and only turn the heart green */
.wish-btn.active {
  background: #ffffff;          /* keep white circle */
  color: #f00606;               /* green heart color */
  border-color: rgba(15,157,88,0.12);
  box-shadow: 0 8px 22px rgba(15,157,88,0.06);
}

/* Accessibility focus */
.wish-btn:focus {
  outline: 3px solid rgba(15,157,88,0.12);
  outline-offset: 3px;
}

/* Small screens */
@media (max-width:480px) {
  .wish-btn { width: 32px; height: 32px; padding: 5px; }
  .wish-icon { width: 17px; height: 17px; }
  .wish-target, .wish-form { top: 8px; right: 8px; }
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
  margin-right: 6px;
  font-size: 12px;
}

.new-price {
  color: var(--gold-dark, #8c5a21);
  font-weight: 800;
  font-size: 13px;
}

/* Row containing price + cart button */
.na-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -4px;
}

/* Add-to-cart button */
.add-cart-btn {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* SVG icon */
.add-cart-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-dark, #8c5a21);
}

@media (max-width:480px) {
  .add-cart-icon {
    width: 20px;
    height: 20px;
  }
  .add-cart-btn {
    padding: 5px 6px;
  }
}


/* Signup form small polish (optional) */
input#id_email, input#id_username, input#id_password1, input#id_password2 {
  font-family: inherit;
  font-size: 14px;
}
.cta-btn { background: var(--gold); color:#111; border:0; font-weight:800; }
.field-errors { background: rgba(244, 67, 54, 0.06); padding:8px; border-radius:8px; }
