/* HERO */


.btn-primary {
  background: var(--gold);
  color: var(--plum);
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--plum);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn-primary:hover { color: var(--gold); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 400;
  transition: all 0.3s;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(253,252,250,0.3);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); gap: 1.2rem; }

/* MARQUEE */
.marquee-strip {
  background: var(--gold);
  padding: 0.8rem 0;
  overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--plum);
  border-radius: 50%;
  opacity: 0.4;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
section { position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ══════════════════════════════════════════════════════
   PRINTS SPOTLIGHT
   ══════════════════════════════════════════════════════ */
.prints-spotlight {
  padding: 8rem 4rem;
  background: var(--plum);
  overflow: hidden;
}
.prints-spotlight .section-tag { color: var(--gold); }
.prints-spotlight .section-tag::before,
.prints-spotlight .section-tag::after { background: var(--gold); }
.prints-spotlight .section-title { color: var(--cream); }
.prints-spotlight .section-title em { color: var(--soft-lilac); }
.prints-spotlight .section-sub { color: rgba(253,252,250,0.6); }


/* ── Grid Layout ─────────────────────────────────────── */
.prints-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  margin-top: 4rem;
  height: 700px;
}

/* Card 1 — left, spans full height */
.print-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Card 2 — middle top */
.print-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

/* Card 3 — middle bottom */
.print-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

/* Card 4 — right, spans full height */
.print-card:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}


/* ── Card Base ───────────────────────────────────────── */
.print-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.print-swatch {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  object-fit: cover;
}
.print-card:hover .print-swatch { transform: scale(1.06); }


/* ── CSS Fallback Backgrounds ────────────────────────── */
.print-1 {
  background:
    repeating-radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 0px, transparent 40px),
    repeating-radial-gradient(circle at 75% 75%, rgba(201,169,110,0.2) 0px, transparent 50px),
    linear-gradient(135deg, #6B21A8 0%, #9333EA 50%, #7C3AED 100%);
}
.print-2 {
  background:
    repeating-linear-gradient(30deg, transparent, transparent 25px, rgba(255,255,255,0.07) 25px, rgba(255,255,255,0.07) 26px),
    repeating-linear-gradient(-30deg, transparent, transparent 25px, rgba(201,169,110,0.15) 25px, rgba(201,169,110,0.15) 26px),
    linear-gradient(to bottom, #4C1D95, #2D0A4E);
}
.print-3 {
  background:
    radial-gradient(circle at 40% 60%, rgba(232,213,163,0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(168,85,247,0.3) 0%, transparent 30%),
    linear-gradient(to bottom right, #3D1466, #7C3AED);
}
.print-4 {
  background:
    repeating-conic-gradient(rgba(168,85,247,0.15) 0deg 10deg, transparent 10deg 20deg),
    linear-gradient(135deg, #5B21B6, #1A0533);
}


/* ── Overlay & Info ──────────────────────────────────── */
.print-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,4,40,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.print-card:hover .print-card-overlay { opacity: 1; }

.print-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.print-info p {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.print-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: rgba(45,10,78,0.8);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.4rem 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(10px);
}


/* ── CTA ─────────────────────────────────────────────── */
.prints-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.prints-cta .btn-primary {
  min-width: 200px;
  text-align: center;
}



/* CATEGORIES */

.categories {
   padding: 8rem 4rem;
  background: var(--cream);
  overflow: hidden;
}


/* BESTSELLERS */
.bestsellers {
  padding: 8rem 4rem;
  background: var(--warm-white);
}

.bestsellers .products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}



/* BRAND STORY */
.brand-story {
  padding: 10rem 4rem;
  background: var(--plum);
  overflow: hidden;
  position: relative;
}
.brand-story-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(168,85,247,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(201,169,110,0.1) 0%, transparent 40%);
}
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative; z-index: 2;
}
.story-visuals {
  position: relative;
  height: 600px;
}
.story-img {
  position: absolute;
  overflow: hidden;
}
.story-img-main {
  width: 70%; height: 75%;
  top: 0; left: 0;
  z-index: 2;
}
.story-img-accent {
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  z-index: 3;
  border: 4px solid var(--plum);
}
.story-img-bg-1 {
  background: linear-gradient(135deg, #9333EA 0%, #4C1D95 100%);
}
.story-img-bg-2 {
  background: linear-gradient(135deg, #7C3AED 0%, #2D0A4E 100%);
}
.story-gold-line {
  position: absolute;
  bottom: 30px; left: 40%;
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.story-content .section-tag { color: var(--gold); }
.story-content .section-tag::before, .story-content .section-tag::after { background: var(--gold); }
.story-content .section-title { color: var(--cream); text-align: left; }
.story-content .section-title em { color: var(--soft-lilac); }
.story-content p {
  color: rgba(253,252,250,0.7);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(168,85,247,0.2);
}
.stat h4 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.stat p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.5);
  margin-top: 0.3rem !important;
  line-height: 1.5 !important;
}

.pa-btn-wish-home {
  flex: none !important; width: 42px !important; padding: 0 !important;
  background: rgba(253,252,250,0.95) !important;
  color: var(--plum) !important;
  text-decoration: none !important; cursor: none;
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important; /* kill YITH text */
}
.pa-btn-wish-home:hover { background: var(--cream) !important; color: var(--violet) !important; }

/* PROCESS */
.process {
  padding: 8rem 4rem;
  background: var(--pale-lavender);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  counter-reset: steps;
}
.process-step {
  counter-increment: steps;
  position: relative;
}
.process-step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(107,33,168,0.12);
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold); /* SVG inherits */
  flex-shrink: 0;
}

.process-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--plum);
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}
.process-step + .process-step::after {
  content: '→';
  position: absolute;
  top: 2.5rem; left: -2rem;
  color: var(--soft-lilac);
  font-size: 1.2rem;
}
/* TESTIMONIALS */
.testimonials {
  padding: 8rem 4rem;
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.testi-card {
  background: var(--cream);
  padding: 2.5rem;
  border-top: 2px solid var(--lilac);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(107,33,168,0.1);
}
.testi-stars {
  display: flex; gap: 0.2rem; margin-bottom: 1.5rem;
  color: var(--gold); font-size: 0.85rem;
}
.testi-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-weight: 300;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--plum));
}
.testi-name { font-size: 0.78rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.05em; }
.testi-loc { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.08em; }
.testi-product {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(107,33,168,0.1);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}

/* Scroll wrapper — invisible on desktop */
.testi-scroll-wrap {
  overflow: hidden;
}

/* INSTAGRAM */
.instagram {
  padding: 6rem 0 0;
  background: var(--plum);
  overflow: hidden;
}
.ig-header {
  text-align: center;
  padding: 0 4rem 4rem;
}
.ig-header .section-tag { color: var(--gold); }
.ig-header .section-tag::before, .ig-header .section-tag::after { background: var(--gold); }
.ig-header .section-title { color: var(--cream); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.ig-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.ig-bg {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}
.ig-item:hover .ig-bg { transform: scale(1.08); }
.ig-bg-1 { background: linear-gradient(135deg, #8B5CF6, #4C1D95); }
.ig-bg-2 { background: linear-gradient(135deg, #7C3AED, #2D0A4E); }
.ig-bg-3 { background: linear-gradient(135deg, #A855F7, #6B21A8); }
.ig-bg-4 { background: linear-gradient(135deg, #9333EA, #3D1466); }
.ig-bg-5 { background: linear-gradient(135deg, #6B21A8, #1A0533); }
.ig-bg-6 { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(45,10,78,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-overlay span { font-size: 1.5rem; color: var(--cream); }

.ig-overlay svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ig-item:hover .ig-overlay svg {
  transform: scale(1.15);
}
@media (hover: none) {
  .ig-overlay {
    opacity: 0.75;
    background: rgba(45,10,78,0.5);
  }
}




/* ══════════════════════════════════════════════════════════════
   HERO — FULL WIDTH BACKGROUND SLIDER
   ══════════════════════════════════════════════════════════════ */

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Fix 1: WordPress admin bar offset (32px on desktop, 46px on mobile) ── */
.admin-bar .hero {
  height: calc(100vh - 32px);
  min-height: calc(600px - 32px);
}

@media screen and (max-width: 782px) {
  .admin-bar .hero {
    height: calc(100vh - 46px);
    min-height: calc(600px - 46px);
  }
}

/* ── Orbs (decorative blobs) ────────────────────────────────── */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.25), transparent);
  top: -100px; right: 10%;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.1), transparent);
  bottom: -50px; left: 20%;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(107,33,168,0.3), transparent);
  top: 30%; left: -50px;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ── Slides track ───────────────────────────────────────────── */
.hero-slides-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Full-width background image ────────────────────────────── */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-bg img,
.hero-slide-bg > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s ease;
  display: block;
}

.hero-slide.is-active .hero-slide-bg img,
.hero-slide.is-active .hero-slide-bg > div {
  transform: scale(1);
}

/* ── Overlay layers ─────────────────────────────────────────── */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(20, 4, 50, 0.55);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      to right,
      rgba(20, 4, 50, 0.85) 0%,
      rgba(20, 4, 50, 0.5)  45%,
      rgba(20, 4, 50, 0.1)  75%,
      transparent           100%
    ),
    linear-gradient(
      to top,
      rgba(20, 4, 50, 0.4) 0%,
      transparent 50%
    );
}

.hero-print-pattern {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg,  transparent, transparent 30px, rgba(201,169,110,0.4) 30px, rgba(201,169,110,0.4) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(168,85,247,0.2)  30px, rgba(168,85,247,0.2)  31px);
}

/* ── Fix 2: Slide content — properly centered left on desktop ── */
.hero-slide .hero-content {
  position: absolute;
  z-index: 10;
  left: 6rem;               /* ← was 4rem, pushed in more */
  top: 50%;
  transform: translateY(calc(-50% + 20px));
  max-width: 580px;
  width: calc(50% - 6rem);  /* ← prevents text bleeding into image */
  opacity: 0;
  transition:
    opacity   0.8s ease 0.3s,
    transform 0.8s ease 0.3s;
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(-50%);
}

/* ── Typography ─────────────────────────────────────────────── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-slide .hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);  /* ← slightly smaller clamp */
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-slide .hero-content h1 em {
  font-style: italic;
  color: var(--soft-lilac);
}

.hero-slide .hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(253,252,250,0.8);
  margin-bottom: 2.5rem;
  max-width: 420px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;          /* ← prevents buttons from overflowing */
}

/* ── Fix 3: Navigation — bottom center (not bottom left) ────── */
.hero-slider-nav {
  position: absolute;
  bottom: 3rem;
  left: 50%;                /* ← was left:4rem, overlapping content */
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,169,110,0.5);
  background: rgba(20,4,50,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--plum);
  border-color: var(--gold);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  border: 1px solid rgba(201,169,110,0.6);
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hero-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  width: 26px;
  border-radius: 4px;
}

/* ── Progress bar ───────────────────────────────────────────── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201,169,110,0.12);
  z-index: 20;
}

.hero-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — ALL BREAKPOINTS
   ORDER: 1024 → 768 → 600 → 480 → 380
   ══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────
   ≤ 1024px — Tablet Landscape
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* HERO SLIDER */
  .hero { min-height: 100vh; }

  .hero-slide .hero-content {
    left: 3rem;
  max-width: 560px;
  width: calc(60% - 3rem); 
  }


  .orb-1 { width: 400px; height: 400px; }
  .orb-2 { width: 280px; height: 280px; }
  .orb-3 { width: 200px; height: 200px; }

 /* PRINTS SPOTLIGHT */
  .prints-grid { height: 580px; }
  .prints-spotlight { padding: 6rem 2.5rem; }

  /* BRAND STORY */
  .brand-story { padding: 7rem 2.5rem; }

  .brand-story-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .story-visuals { height: 480px; }

  .story-img-main {
    width: 75%;
    height: 70%;
  }

  .story-img-accent {
    width: 58%;
    height: 50%;
  }

  .stat h4 { font-size: 2rem; }

  /* PROCESS */
  .process { padding: 6rem 2.5rem; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    margin-top: 3rem;
  }

  .process-step + .process-step::after { display: none; }

   /* TESTIMONIALS */
  .testimonials { padding: 6rem 2.5rem; }

  .testi-grid {
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-card { padding: 2rem; }
  .testi-text { font-size: 1rem; }


   .testi-scroll-wrap {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1.5rem;
    margin: 0 -2rem; /* bleed to section edge */
    padding-left: 2rem;
  }
  .testi-scroll-wrap::-webkit-scrollbar { display: none; }

  .testi-scroll-wrap .testi-grid {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-wrap: nowrap;
    width: max-content;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-right: 2rem;
  }
  .testi-scroll-wrap .testi-card {
    flex: 0 0 44vw;
    max-width: 360px;
    scroll-snap-align: start;
  }

   .testimonials::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--warm-white));
    pointer-events: none;
    z-index: 2;
  }
  /* INSTAGRAM */
  .instagram { padding: 5rem 0 0; }

  .ig-header { padding: 0 2.5rem 3rem; }

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

  /* BESTSELLERS */
  .bestsellers { padding: 6rem 2.5rem; }

  .bestsellers .products-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .bestsellers .product-actions {
    transform: translateY(0);
    opacity: 1;
  }

}


/* ─────────────────────────────────────────────────────────────
   ≤ 768px — Tablet Portrait / Large Mobile
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* category section padding — owned here at breakpoint level only */
  .categories { padding: 5rem 1.5rem; }
 /* HERO SLIDER */
  .hero {
    min-height: 100svh;
  }

  /* Bottom-heavy gradient — image shows top, text readable bottom */
  .hero-overlay-gradient {
    background:
      linear-gradient(
        to top,
        rgba(20,4,50,0.92) 0%,
        rgba(20,4,50,0.6)  40%,
        rgba(20,4,50,0.2)  70%,
        transparent        100%
      );
  }

  .hero-slide .hero-content {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 7rem;
    transform: translateY(20px);
    padding: 0 1.75rem;
    max-width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
  }

  .hero-slide.is-active .hero-content {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-tag { justify-content: center; }
  .hero-tag::before { display: none; }

  .hero-slide .hero-content h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
    margin-bottom: 1.25rem;
  }

  .hero-slide .hero-content p {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-slider-nav {
    left: 50%;
    transform: translateX(-50%);
    bottom: 3rem;
    gap: 1.25rem;
  }

  .orb-1 { width: 300px; height: 300px; top: -60px; right: -50px; }
  .orb-2 { width: 220px; height: 220px; }
  .orb-3 { display: none; }

  /* PRINTS SPOTLIGHT */
  .prints-spotlight { padding: 5rem 1.5rem; }
  .prints-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  /* Reset all explicit placements */
  .print-card:nth-child(1),
  .print-card:nth-child(2),
  .print-card:nth-child(3),
  .print-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }
  /* Make card 1 span full width on mobile */
  .print-card:nth-child(1) {
    grid-column: 1 / 3;
    aspect-ratio: 16 / 9;
  }
  /* Always show overlay on touch */
  .print-card-overlay { opacity: 1; }

  .print-info h3 { font-size: 1.1rem; }
  .print-info p  { font-size: 0.65rem; }

  .print-badge {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.55rem;
    padding: 0.3rem 0.6rem;
  }

 
   /* BRAND STORY */
  .brand-story { padding: 5rem 1.5rem; }

  .brand-story-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-content { order: -1; }

  .story-content .section-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .story-content p { font-size: 0.88rem; }

  .story-visuals {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .story-img-main {
    width: 72%;
    height: 72%;
    top: 0;
    left: 0;
  }

  .story-img-accent {
    width: 52%;
    height: 52%;
    bottom: 0;
    right: 0;
    border-width: 3px;
  }

  .story-gold-line {
    height: 80px;
    bottom: 20px;
    left: 35%;
  }

  .story-stats {
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .stat h4 { font-size: 1.8rem; }

  .stat p {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  /* PROCESS */
  .process { padding: 5rem 1.5rem; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    margin-top: 2.5rem;
  }

  .process-step::before {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.25rem;
  }

  .process-icon svg {
    width: 22px;
    height: 22px;
  }

  .process-step h3 { font-size: 1.05rem; }

  .process-step p {
    font-size: 0.83rem;
    line-height: 1.75;
  }

  /* TESTIMONIALS */
  /* TESTIMONIALS */
  .testimonials {
  padding: 7rem 4rem;
  background: var(--warm-white);
  overflow: hidden;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--cream);
  padding: 2rem;
  border-top: 2px solid var(--lilac);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(107,33,168,0.1);
}
.testi-stars {
  display: flex; gap: 0.2rem; margin-bottom: 1.5rem;
  color: var(--gold); font-size: 0.85rem;
}
.testi-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--plum));
}
.testi-name { font-size: 0.78rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.05em; }
.testi-loc { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.08em; }
.testi-product {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(107,33,168,0.1);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}

  .testi-scroll-wrap {
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
  }
  .testi-scroll-wrap .testi-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  /* INSTAGRAM */
  .instagram { padding: 4rem 0 0; }

  .ig-header { padding: 0 1.5rem 2.5rem; }

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

  .ig-overlay {
    opacity: 1;
    background: rgba(45,10,78,0.55);
  }

  .ig-overlay svg { width: 22px; height: 22px; }

  .ig-item:hover .ig-bg { transform: none; }

  /* BESTSELLERS */
  .bestsellers { padding: 5rem 1.5rem; }

  .bestsellers .products-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }

  .bestsellers .product-actions {
    transform: translateY(0);
    opacity: 1;
    bottom: 0.6rem;
    left: 0.6rem;
    right: 0.6rem;
    gap: 0.4rem;
  }

  .bestsellers .pa-btn {
    padding: 0.6rem 0.4rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    gap: 4px;
  }

.bestsellers .pa-btn-wish-home { width: 36px; }
  .bestsellers .pa-btn-wish-home svg { width: 14px; height: 14px; }

  .bestsellers .product-tags { top: 0.6rem; left: 0.6rem; }

  .bestsellers .tag {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
  }

  .bestsellers .product-info h3    { font-size: 0.9rem; }
  .bestsellers .product-info .product-sub { font-size: 0.62rem; }
  .bestsellers .product-price      { font-size: 0.92rem; }
  .bestsellers .cdot               { width: 10px; height: 10px; }

}


/* ─────────────────────────────────────────────────────────────
   ≤ 600px — Mobile Carousel Breakpoint
   ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {

  /* CATEGORIES CAROUSEL */
.categories { padding: 3.5rem 0 !important; overflow: hidden !important; }


  /* BESTSELLERS CAROUSEL */
  .bs-carousel-outer { overflow: hidden; }

  .bestsellers { padding: 3.5rem 0 !important; }

  .bestsellers .section-header { padding: 0 1.25rem; }

  .bestsellers .products-row {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem !important;
    padding: 0 1.25rem 1rem !important;
    margin-top: 1.75rem !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .bestsellers .products-row::-webkit-scrollbar { display: none; }

  .bestsellers .products-row .product-card {
    flex: 0 0 72vw !important;
    width: 72vw !important;
    max-width: 260px !important;
    scroll-snap-align: start;
  }

  .bestsellers .product-actions {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  /* Bestseller Dots */
  .novus-bs-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.25rem;
    padding: 0 0 0.5rem;
  }

  .novus-bs-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(107,33,168,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    appearance: none;
    -webkit-appearance: none;
  }

  .novus-bs-dots .dot.active {
    background: var(--gold);
    transform: scale(1.4);
  }

}


/* Hide carousel dots on desktop */
@media (min-width: 601px) {
  .novus-dots    { display: none !important; }
  .novus-bs-dots { display: none !important; }
}


/* ─────────────────────────────────────────────────────────────
   ≤ 480px — Small Mobile
   ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

 /* ── Hero: switch from bottom-anchor to vertical center ── */
  .hero { min-height: 100svh; }

  .hero-slide .hero-content {
    width: 100%;
    padding: 0 1.25rem;
    bottom: auto;                          /* ← remove bottom anchor */
    top: 40%;                              /* ← center vertically */
    transform: translateY(calc(-50% + 15px));
  }

  .hero-slide.is-active .hero-content {
    transform: translateY(-50%);           /* ← stays centered when active */
  }

  /* ── Tighter spacing to fit small screen ── */
  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
  }

  .hero-slide .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem); /* ← smaller than before */
    margin-bottom: 0.75rem;
    line-height: 1.1;
  }

  .hero-slide .hero-content p {
    font-size: 0.8rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  /* ── Nav: tighter to bottom ── */
  .hero-slider-nav { bottom: 1.5rem; }
  .hero-arrow { width: 38px; height: 38px; }
  .hero-dot.is-active { width: 20px; }


  .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 0.68rem;
    max-width: 100%;
  }

  .btn-ghost { font-size: 0.68rem; }

  .orb-1 { width: 220px; height: 220px; }
  .orb-2 { width: 160px; height: 160px; }

  /* PRINTS SPOTLIGHT */

  .prints-spotlight { padding: 4rem 1rem; }

 .prints-grid {
    grid-template-columns: 1fr;
  }
  .print-card:nth-child(1) {
    grid-column: 1;
    aspect-ratio: 3 / 4;
  }

  .print-info h3 { font-size: 1rem; }

  /* CATEGORIES */
.categories { padding: 4rem 0 !important; overflow: hidden !important; }

  /* BRAND STORY */
  .brand-story { padding: 4rem 1rem; }
  .brand-story-inner { gap: 2.5rem; }
  .story-visuals { height: 280px; }

  .story-img-main { width: 70%; height: 70%; }

  .story-img-accent {
    width: 50%;
    height: 48%;
    border-width: 2px;
  }

  .story-gold-line { display: none; }

  .story-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat h4 { font-size: 1.5rem; }

  .stat p {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .story-content p {
    font-size: 0.85rem;
    line-height: 1.8;
  }

  /* PROCESS */
  .process { padding: 4rem 1rem; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-step + .process-step::after {
    display: block;
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 29px;
    width: 1px;
    height: 1.5rem;
    background: linear-gradient(to bottom, transparent, var(--soft-lilac));
    font-size: 0;
  }

  .process-step::before { font-size: 2.4rem; }
  .process-icon { width: 48px; height: 48px; }

   /* TESTIMONIALS */
  .testimonials { padding: 4rem 1rem; }
  .testi-grid { max-width: 100%; gap: 1rem; }
  .testi-card { padding: 1.5rem 1.25rem; }

  .testi-text {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .testi-stars { font-size: 0.78rem; margin-bottom: 1rem; }
  .testi-avatar { width: 36px; height: 36px; flex-shrink: 0; }
  .testi-name { font-size: 0.75rem; }
  .testi-loc  { font-size: 0.65rem; }

  .testi-product {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  /* INSTAGRAM */
  .instagram { padding: 3.5rem 0 0; }
  .ig-header { padding: 0 1rem 2rem; }

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


  .ig-overlay svg { width: 20px; height: 20px; }

  /* BESTSELLERS */
  .bestsellers { padding: 4rem 1rem; }

  .bestsellers .products-row .product-card {
  flex: 0 0 82vw !important;
  width: 82vw !important;
  max-width: 280px !important;
}

  .bestsellers .product-actions {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .bestsellers .pa-btn {
    padding: 0.7rem 0.5rem;
    font-size: 0.62rem;
  }

  .bestsellers .product-info h3 { font-size: 1rem; }

}


/* ─────────────────────────────────────────────────────────────
   ≤ 380px — Extra Small Phones
   ───────────────────────────────────────────────────────────── */
@media (max-width: 380px) {

  /* BESTSELLERS CAROUSEL */
  .bestsellers .products-row .product-card {
    flex: 0 0 82vw !important;
    width: 82vw !important;
  }

}