/* ═══════════════════════════════════════
   MADE BY NADIA — STYLES
   ═══════════════════════════════════════ */

/* ── Reset & Variables ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --palm:        #8C997B;
  --wild-rose:   #C9858E;
  --hunter:      #365335;
  --burnt-rose:  #873547;
  --cream:       #FFF8ED;
  --coffee:      #371F05;

  /* legacy aliases used throughout the stylesheet — mapped to brand colours */
  --pink:   var(--burnt-rose);
  --violet: var(--hunter);
  --cyan:   var(--palm);
  --yellow: var(--wild-rose);
  --coral:  var(--burnt-rose);

  --bg:    var(--cream);
  --white: #FFFFFF;
  --dark:  var(--coffee);
  --mid:   #6B6258;
  --light: #E8E1D2;

  --r:      14px;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--sans);
  overflow-x: hidden;
}


/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  height: 34px;
  width: auto;
  cursor: pointer;
  display: block;
}

.ft-logo-mark {
  height: 50px;
  cursor: default;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links a,
.nav-links span.nl {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s;
  display: block;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links span.nl:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.3rem !important;
  font-weight: 500 !important;
  margin-left: 0.4rem;
  transition: background 0.2s !important;
}

.nav-cta-desktop {
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  box-sizing: border-box;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--pink) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
}


/* ════════════════════════════════════════
   PAGE SYSTEM
════════════════════════════════════════ */
.page        { display: none; }
.page.active { display: block; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--light);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 3.5vw, 4.5rem);
  max-width: clamp(1200px, 75vw, 1700px);
  width: 100%;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: clamp(0.75rem, 0.6vw, 0.95rem);
  font-weight: 500;
  margin-bottom: clamp(1.4rem, 1.6vw, 2.2rem);
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.2rem, 1.5vw, 2rem);
  color: var(--dark);
}

.hero-title em {
  font-style: italic;
  color: var(--pink);
}

.hero-sub {
  color: var(--mid);
  font-size: clamp(1.05rem, 1vw, 1.3rem);
  line-height: 1.8;
  max-width: clamp(420px, 32vw, 560px);
  margin-bottom: clamp(2.2rem, 2.5vw, 3.5rem);
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-shop-now {
  position: relative;
  overflow: visible;
}

.ernie-peek-btn {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 60px;
  pointer-events: none;
  transform: translate(-50%, 30%);
}

/* Shared buttons */
.btn-dark {
  background: var(--dark);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: var(--sans);
}

.btn-dark:hover {
  background: var(--pink);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid var(--light);
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: var(--sans);
}

.btn-ghost:hover {
  border-color: var(--dark);
}

/* Hero 3D canvas */
.hero-canvas-wrap {
  flex: 0 1 clamp(380px, 34vw, 760px);
  width: 100%;
  max-width: clamp(380px, 34vw, 760px);
  aspect-ratio: 1 / 1;
  position: relative;
}

/* Large/wide monitors — content fills the full-height hero better when vertically centered */
@media (min-width: 1800px) {
  .hero {
    align-items: center;
  }
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

#hero-canvas:active {
  cursor: grabbing;
}

.canvas-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

/* Floating background blobs */
.blob-hero {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}

.bh1 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  top: -100px;
  right: -80px;
}

.bh2 {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  bottom: -60px;
  left: -60px;
}


/* ════════════════════════════════════════
   SHARED SECTION UTILITIES
════════════════════════════════════════ */
section.pad {
  padding: 6rem 3rem;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.eyebrow-light { color: var(--violet); }
.ey-pink       { color: var(--pink); }
.ey-cyan       { color: var(--cyan); }
.ey-violet     { color: var(--violet); }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.sec-title em      { font-style: italic; color: var(--pink); }
.sec-title-light   { color: var(--dark); margin-bottom: 0.5rem; }

.sec-sub       { color: var(--mid); font-size: 1rem; line-height: 1.75; max-width: 500px; font-weight: 300; }
.sec-sub-light { color: var(--mid); }


/* ════════════════════════════════════════
   COLLECTION TILES
════════════════════════════════════════ */
.coll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 3rem;
}

.coll-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--light);
}

.coll-tile.big   { grid-column: span 2; height: 500px; }
.coll-tile.small { height: 320px; }

.tile-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.coll-tile:hover .tile-fill {
  transform: scale(1.04);
}

.tf-bags     { background: linear-gradient(135deg, #FBEDEF 0%, #E3B9BF 100%); }
.tf-trinkets { background: linear-gradient(135deg, #EEF1E7 0%, #C7D3B8 100%); }
.tf-digital  { background: linear-gradient(135deg, #F2EAE0 0%, #D9C3A8 100%); }

.tile-emoji {
  font-size: 7rem;
  opacity: 0.6;
  user-select: none;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
  transition: background 0.3s;
}

.coll-tile:hover .tile-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.tile-cat {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
}

.tile-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.tile-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--dark);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.coll-tile:hover .tile-btn {
  background: var(--pink);
  color: #fff;
}


/* ════════════════════════════════════════
   HOW IT WORKS — FAIRY TIMELINE
════════════════════════════════════════ */
.how-strip {
  background: linear-gradient(135deg, #F7E9EA 0%, #EBC9CD 50%, #F4E2DC 100%);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}


.how-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 4rem;
  padding-top: 0.5rem;
}

.timeline-svg {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  z-index: 1;
}

.t-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Dots */
.t-dot {
  position: relative;
  overflow: visible;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  cursor: default;
  user-select: none;
}

.t-step:hover .t-dot {
  transform: translateY(-8px) scale(1.06) rotate(-4deg);
}

.t-dot-icon {
  position: relative;
  z-index: 1;
  width: 70%;
  height: auto;
}

.t-dot-icon-trolley {
  position: relative;
  z-index: 1;
  width: 80%;
  height: auto;
}

.t-dot {
  cursor: pointer;
  outline: none;
}

.t-d1 { border-color: var(--hunter);     background: var(--hunter);     box-shadow: 0 0 0 6px rgba(54, 83, 53, 0.18); }
.t-d2 { border-color: var(--palm);       background: var(--palm);       box-shadow: 0 0 0 6px rgba(140, 153, 123, 0.22); }
.t-d3 { border-color: var(--burnt-rose); background: var(--burnt-rose); box-shadow: 0 0 0 6px rgba(135, 53, 71, 0.18); }
.t-d4 { border-color: var(--coffee);     background: var(--coffee);     box-shadow: 0 0 0 6px rgba(55, 31, 5, 0.18); }

.t-step:hover .t-d1 { box-shadow: 0 0 0 10px rgba(54, 83, 53, 0.3); }
.t-step:hover .t-d2 { box-shadow: 0 0 0 10px rgba(140, 153, 123, 0.35); }
.t-step:hover .t-d3 { box-shadow: 0 0 0 10px rgba(135, 53, 71, 0.3); }
.t-step:hover .t-d4 { box-shadow: 0 0 0 10px rgba(55, 31, 5, 0.3); }

.t-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.t-step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.t-step p {
  color: var(--mid);
  font-size: 0.85rem;
  line-height: 1.65;
  font-weight: 300;
  max-width: 220px;
  margin: 0 auto;
}

.how-heading {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.how-heading-logo {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   REUSABLE: cursor-tracking Ernie eyes
   Not currently used anywhere — was on the how-heading logo,
   removed since per-dot Ernie icons made it redundant there.
   To reuse on another logo image:
   1. Wrap the <img> in a `position:relative; display:inline-block;` container
   2. Add inside it: <div class="ernie-eye ernie-eye-l"><div class="ernie-pupil"></div></div>
      and the same with ernie-eye-r
   3. Adjust the left/top % below to match that image's eye positions
   4. initErnieEyes() in script.js auto-detects any .ernie-pupil on the page
════════════════════════════════════════ */
.ernie-eye {
  position: absolute;
  width: 11%;
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

.ernie-eye-l { left: 50%; top: 19%; transform: translate(-50%, -50%); }
.ernie-eye-r { left: 67%; top: 16%; transform: translate(-50%, -50%); }

.ernie-pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 90%;
  background: var(--coffee);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Paw print trail */
.paw-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.paw-print {
  position: absolute;
  font-size: 1.3rem;
  opacity: 0.55;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Cream paw-print wave — Drop section heading accent */
.drop-paw-wave {
  position: relative;
  width: 220px;
  height: 30px;
  margin-bottom: 0.75rem;
}

.drop-paw-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.paw-trail-cream {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.paw-print-cream {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0.75;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='16' r='6' fill='%23FFF8ED'/%3E%3Ccircle cx='5' cy='8' r='2.4' fill='%23FFF8ED'/%3E%3Ccircle cx='11' cy='4' r='2.4' fill='%23FFF8ED'/%3E%3Ccircle cx='17' cy='4' r='2.4' fill='%23FFF8ED'/%3E%3Ccircle cx='21' cy='9' r='2' fill='%23FFF8ED'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}


/* ════════════════════════════════════════
   VIDEO CAROUSEL
════════════════════════════════════════ */
.video-section {
  padding: 6rem 3rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.video-section .inner {
  position: relative;
  z-index: 1;
}

/* Soft fade at the top — matches the seam treatment used elsewhere */
.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
  z-index: 0;
}

.video-header-heading {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.eyebrow-row {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin-bottom: 10px;
}

.ernie-in-grass {
  width: 100px;
  flex-shrink: 0;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light);
  color: var(--dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
}

.video-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

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

.video-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
}

.video-placeholder {
  width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  border: 1px solid var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

/* Play button overlay on hover */
.video-placeholder::before {
  content: '▶';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.25s;
}

.video-placeholder:hover { transform: translateY(-4px); }
.video-placeholder:hover::before { opacity: 1; }

.video-emoji {
  font-size: 5rem;
  opacity: 0.55;
}

.video-label {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.vp1 { background: linear-gradient(135deg, #FBEDEF, #E3B9BF); }
.vp2 { background: linear-gradient(135deg, #F2EAE0, #D9C3A8); }
.vp3 { background: linear-gradient(135deg, #EEF1E7, #C7D3B8); }
.vp4 { background: linear-gradient(135deg, #FFF6E2, #F0DDB0); }
.vp5 { background: linear-gradient(135deg, #FBE9E3, #E8B9A8); }

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--mid);
}


/* ════════════════════════════════════════
   HOME CONTACT
════════════════════════════════════════ */
.home-contact {
  padding: 6rem 3rem;
  border-top: 1px solid var(--light);
  background: var(--white);
}

.home-contact .contact-info p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}


/* ════════════════════════════════════════
   COLLECTION PAGES
════════════════════════════════════════ */
.coll-page-header {
  padding: 5rem 3rem 2.5rem;
  border-bottom: 1px solid var(--light);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--mid);
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 1.75rem;
  transition: color 0.2s;
  font-family: var(--sans);
}

.back-btn:hover { color: var(--pink); }

.coll-page-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.coll-page-sub {
  color: var(--mid);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
}

.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--light);
  color: var(--mid);
  padding: 0.32rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(135, 53, 71, 0.05);
}


/* ════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
  padding: 2.5rem 3rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prod-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--light);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.prod-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.pi1 { background: linear-gradient(135deg, #FBEDEF, #E3B9BF); }
.pi2 { background: linear-gradient(135deg, #EEF1E7, #C7D3B8); }
.pi3 { background: linear-gradient(135deg, #F2EAE0, #D9C3A8); }
.pi4 { background: linear-gradient(135deg, #FFF6E2, #F0DDB0); }
.pi5 { background: linear-gradient(135deg, #ECF0E3, #C3D6B0); }
.pi6 { background: linear-gradient(135deg, #FBE9E3, #E8B9A8); }

.prod-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.prod-info { padding: 1.1rem 1.2rem; }

.prod-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.prod-desc {
  color: var(--mid);
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
  line-height: 1.55;
  font-weight: 300;
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-price {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
}

.add-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.38rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--sans);
}

.add-btn:hover { background: var(--pink); }


/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-page {
  padding: 6rem 3rem;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-img {
  flex: 0 0 320px;
  height: 380px;
  border-radius: 24px;
  background: linear-gradient(135deg, #FBEDEF, #F2EAE0);
  border: 1px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.about-img::after {
  content: '✦';
  position: absolute;
  font-family: var(--serif);
  font-size: 10rem;
  color: rgba(135, 53, 71, 0.08);
  bottom: -20px;
  right: -10px;
  pointer-events: none;
}

.about-copy { flex: 1; min-width: 260px; }

.about-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.about-copy h1 em { font-style: italic; color: var(--pink); }

.about-copy p {
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.97rem;
  font-weight: 300;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  background: var(--white);
  border: 1px solid var(--light);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 300;
}


/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-page { padding: 6rem 3rem; }

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-info { flex: 1; min-width: 240px; display: flex; flex-direction: column; }

.heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 60px;
  gap: 1rem;
}

.ernie-wave {
  width: 120px;
  flex-shrink: 0;
}

.contact-info h1,
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-info h1 em,
.contact-info h2 em { font-style: italic; color: var(--pink); }

.contact-info p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.c-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--mid);
  font-size: 0.9rem;
}

.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cd1 { background: var(--pink); }
.cd2 { background: var(--cyan); }
.cd3 { background: var(--yellow); }

.contact-form { flex: 1; min-width: 280px; }

.fg { margin-bottom: 1.1rem; }

.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fg input,
.fg textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--dark);
  font-size: 0.92rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}

.fg input:focus,
.fg textarea:focus { border-color: var(--pink); }

.fg textarea {
  height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 0.5rem;
  font-weight: 300;
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--light);
  padding: 3.5rem 3rem 2rem;
  background: var(--white);
}

.ft-inner { max-width: 1200px; margin: 0 auto; }

.ft-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}


.ft-brand p {
  color: var(--mid);
  font-size: 0.83rem;
  margin-top: 0.4rem;
  max-width: 200px;
  line-height: 1.65;
  font-weight: 300;
}

.ft-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ft-col a,
.ft-col span.fl {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: 300;
}

.ft-col a:hover,
.ft-col span.fl:hover { color: var(--pink); }

.newsletter input {
  background: var(--bg);
  border: 1px solid var(--light);
  border-radius: 50px;
  padding: 0.5rem 0.9rem;
  color: var(--dark);
  font-size: 0.82rem;
  outline: none;
  font-family: var(--sans);
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  transition: border-color 0.2s;
}

.newsletter input:focus { border-color: var(--pink); }

.newsletter button {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}

.newsletter button:hover { background: var(--pink); }

.ft-bottom {
  border-top: 1px solid var(--light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--mid);
  font-size: 0.78rem;
  font-weight: 300;
}

.stripe-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--light);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--mid);
}

.s-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #635BFF;
}


/* ════════════════════════════════════════
   TOAST
════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════ */
@media (max-width: 760px) {
  nav,
  .hero,
  section.pad,
  footer,
  .about-page,
  .contact-page,
  .coll-page-header,
  .video-section,
  .home-contact,
  .how-strip {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .prod-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-sub  { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }

  .hero-canvas-wrap {
    width: 100%;
    flex: none;
  }

  /* Collections */
  .coll-grid { grid-template-columns: 1fr; }

  .coll-tile.big,
  .coll-tile.small {
    grid-column: span 1;
    height: 280px;
  }

  /* About */
  .about-img {
    width: 100%;
    flex: none;
  }

  /* Nav */
  .hamburger { display: flex; }
  .nav-cta-desktop { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open { display: flex; }

  /* Timeline — vertical */
  .timeline-svg { display: none; }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
  }

  .timeline-row::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 50px;
    bottom: 50px;
    width: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='6' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='5' cy='16' r='2.4' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='11' cy='20' r='2.4' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='17' cy='20' r='2.4' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='21' cy='15' r='2' fill='%23365335' fill-opacity='0.45'/%3E%3C/svg%3E");
    background-repeat: repeat-y;
    background-size: 18px 22px;
    background-position: top center;
  }

  .t-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .t-dot {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 84px;
    height: 84px;
    font-size: 1.7rem;
  }

  .t-step p { margin: 0; }

  /* Video carousel */
  .video-header { flex-direction: column; align-items: flex-start; }

  .video-card,
  .video-placeholder { width: 240px; }
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--sans);
  overflow-x: hidden;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  height: 34px;
  width: auto;
  cursor: pointer;
  display: block;
}

.ft-logo-mark {
  height: 28px;
  cursor: default;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}

.nav-links a,
.nav-links span.nl {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s;
  display: block;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links span.nl:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.3rem !important;
  font-weight: 500 !important;
  margin-left: 0.4rem;
  transition: background 0.2s !important;
}

.nav-cta-desktop {
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  box-sizing: border-box;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--pink) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
}

/* ── Page System ── */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--light);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 3.5vw, 4.5rem);
  max-width: clamp(1200px, 75vw, 1700px);
  width: 100%;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: clamp(0.75rem, 0.6vw, 0.95rem);
  font-weight: 500;
  margin-bottom: clamp(1.4rem, 1.6vw, 2.2rem);
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.2rem, 1.5vw, 2rem);
  color: var(--dark);
}

.hero-title em {
  font-style: italic;
  color: var(--pink);
}

.hero-sub {
  color: var(--mid);
  font-size: clamp(1.05rem, 1vw, 1.3rem);
  line-height: 1.8;
  max-width: clamp(420px, 32vw, 560px);
  margin-bottom: clamp(2.2rem, 2.5vw, 3.5rem);
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--dark);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: var(--sans);
}

.btn-dark:hover {
  background: var(--pink);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid var(--light);
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: var(--sans);
}

.btn-ghost:hover {
  border-color: var(--dark);
}

/* ── Hero 3D Canvas ── */
.hero-canvas-wrap {
  flex: 0 1 clamp(380px, 34vw, 760px);
  width: 100%;
  max-width: clamp(380px, 34vw, 760px);
  aspect-ratio: 1 / 1;
  position: relative;
}

/* Large/wide monitors — content fills the full-height hero better when vertically centered */
@media (min-width: 1800px) {
  .hero {
    align-items: center;
  }
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

#hero-canvas:active {
  cursor: grabbing;
}

.canvas-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

/* Floating colour blobs */
.blob-hero {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}

.bh1 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  top: -100px;
  right: -80px;
}

.bh2 {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  bottom: -60px;
  left: -60px;
}

/* ── Section Defaults ── */
section.pad {
  padding: 6rem 3rem;
}

/* Current Drop section — solid sage green */
#coll-anchor {
  background: #C6C9B4;
  position: relative;
  overflow: hidden;
}


#coll-anchor .inner {
  position: relative;
  z-index: 1;
}

/* Wave divider — a green dome bulging down over the pink section below */
.drop-wave-divider {
  position: relative;
  height: 0;
}

.drop-wave-divider svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
  z-index: 5;
  pointer-events: none;
  transform: scaleY(-1);
}


/* Wave divider — pink how-it-works straddling the seam into the cream section below */
.how-wave-divider {
  position: relative;
  height: 0;
}

.how-wave-divider svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
  z-index: 5;
  pointer-events: none;
  transform: scaleY(-1);
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.eyebrow-light {
  color: var(--violet);
}

.ey-pink   { color: var(--pink); }
.ey-cyan   { color: var(--cyan); }
.ey-violet { color: var(--violet); }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.sec-title em {
  font-style: italic;
  color: var(--pink);
}

.sec-title-light {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.sec-sub {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
  font-weight: 300;
}

.sec-sub-light {
  color: var(--mid);
}

/* ── Collection Tiles ── */
.coll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 3rem;
}

.coll-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--light);
}

.coll-tile.big   { grid-column: span 2; height: 500px; }
.coll-tile.small { height: 320px; }

.tile-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.coll-tile:hover .tile-fill {
  transform: scale(1.04);
}

.tf-bags     { background: linear-gradient(135deg, #FBEDEF 0%, #E3B9BF 100%); }
.tf-trinkets { background: linear-gradient(135deg, #EEF1E7 0%, #C7D3B8 100%); }
.tf-digital  { background: linear-gradient(135deg, #F2EAE0 0%, #D9C3A8 100%); }

.tile-emoji {
  font-size: 7rem;
  opacity: 0.6;
  user-select: none;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
  transition: background 0.3s;
}

.coll-tile:hover .tile-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.tile-cat {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
}

.tile-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.tile-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--dark);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.coll-tile:hover .tile-btn {
  background: var(--pink);
  color: #fff;
}

/* ── How It Works — Fairy Timeline ── */
.how-strip {
  background: linear-gradient(135deg, #F7E9EA 0%, #EBC9CD 50%, #F4E2DC 100%);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}


.how-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Timeline layout */
.timeline {
  position: relative;
  margin-top: 4rem;
  padding-top: 0.5rem;
}

.timeline-svg {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  z-index: 1;
}

.t-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Dot circles — fill colour set per-step by .t-d1..4 below */
.t-dot {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  border: 2px solid;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  cursor: default;
  user-select: none;
}

.t-step:hover .t-dot {
  transform: translateY(-8px) scale(1.06) rotate(-4deg);
}

.t-d1 { border-color: var(--hunter);     box-shadow: 0 0 0 6px rgba(54, 83, 53, 0.18); }
.t-d2 { border-color: var(--palm);       box-shadow: 0 0 0 6px rgba(140, 153, 123, 0.22); }
.t-d3 { border-color: var(--burnt-rose); box-shadow: 0 0 0 6px rgba(135, 53, 71, 0.18); }
.t-d4 { border-color: var(--coffee);     box-shadow: 0 0 0 6px rgba(55, 31, 5, 0.18); }

.t-step:hover .t-d1 { box-shadow: 0 0 0 10px rgba(54, 83, 53, 0.3); }
.t-step:hover .t-d2 { box-shadow: 0 0 0 10px rgba(140, 153, 123, 0.35); }
.t-step:hover .t-d3 { box-shadow: 0 0 0 10px rgba(135, 53, 71, 0.3); }
.t-step:hover .t-d4 { box-shadow: 0 0 0 10px rgba(55, 31, 5, 0.3); }

.t-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.t-step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.t-step p {
  color: var(--mid);
  font-size: 0.85rem;
  line-height: 1.65;
  font-weight: 300;
  max-width: 220px;
  margin: 0 auto;
}

/* Fairy & sparkle filters */
.fairy {
  filter: drop-shadow(0 0 5px rgba(180, 100, 255, 0.6));
}

.sparkle-trail circle {
  filter: drop-shadow(0 0 3px rgba(180, 100, 255, 0.8));
}

.dot-burst circle {
  filter: drop-shadow(0 0 4px rgba(180, 100, 255, 0.6));
}

/* ── Video Carousel ── */
.video-section {
  padding: 6rem 3rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.video-section .inner {
  position: relative;
  z-index: 1;
}

/* Soft fade at the top — matches the seam treatment used elsewhere */
.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
  z-index: 0;
}

.video-header-heading {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light);
  color: var(--dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
}

.video-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

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

.video-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
}

.video-placeholder {
  width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  border: 1px solid var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-placeholder::before {
  content: '▶';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.25s;
}

.video-placeholder:hover {
  transform: translateY(-4px);
}

.video-placeholder:hover::before {
  opacity: 1;
}

.video-emoji {
  font-size: 5rem;
  opacity: 0.55;
}

.video-label {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.vp1 { background: linear-gradient(135deg, #FBEDEF, #E3B9BF); }
.vp2 { background: linear-gradient(135deg, #F2EAE0, #D9C3A8); }
.vp3 { background: linear-gradient(135deg, #EEF1E7, #C7D3B8); }
.vp4 { background: linear-gradient(135deg, #FFF6E2, #F0DDB0); }
.vp5 { background: linear-gradient(135deg, #FBE9E3, #E8B9A8); }

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 400;
}

/* ── Home Contact ── */
.home-contact {
  padding: 6rem 3rem;
  border-top: 1px solid var(--light);
  background: var(--white);
}

.home-contact .contact-info p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* ── Collection Pages ── */
.coll-page-header {
  padding: 5rem 3rem 2.5rem;
  border-bottom: 1px solid var(--light);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--mid);
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 1.75rem;
  transition: color 0.2s;
  font-family: var(--sans);
}

.back-btn:hover {
  color: var(--pink);
}

.coll-page-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.coll-page-sub {
  color: var(--mid);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
}

.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--light);
  color: var(--mid);
  padding: 0.32rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(135, 53, 71, 0.05);
}

/* ── Product Cards ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
  padding: 2.5rem 3rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prod-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--light);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.prod-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.pi1 { background: linear-gradient(135deg, #FBEDEF, #E3B9BF); }
.pi2 { background: linear-gradient(135deg, #EEF1E7, #C7D3B8); }
.pi3 { background: linear-gradient(135deg, #F2EAE0, #D9C3A8); }
.pi4 { background: linear-gradient(135deg, #FFF6E2, #F0DDB0); }
.pi5 { background: linear-gradient(135deg, #ECF0E3, #C3D6B0); }
.pi6 { background: linear-gradient(135deg, #FBE9E3, #E8B9A8); }

.prod-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.prod-info {
  padding: 1.1rem 1.2rem;
}

.prod-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.prod-desc {
  color: var(--mid);
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
  line-height: 1.55;
  font-weight: 300;
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-price {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
}

.add-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.38rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--sans);
}

.add-btn:hover {
  background: var(--pink);
}

/* ── About Page ── */
.about-page {
  padding: 6rem 3rem;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-img {
  flex: 0 0 320px;
  height: 380px;
  border-radius: 24px;
  background: linear-gradient(135deg, #FBEDEF, #F2EAE0);
  border: 1px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.about-img::after {
  content: '✦';
  position: absolute;
  font-family: var(--serif);
  font-size: 10rem;
  color: rgba(135, 53, 71, 0.08);
  bottom: -20px;
  right: -10px;
  pointer-events: none;
}

.about-copy {
  flex: 1;
  min-width: 260px;
}

.about-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.about-copy h1 em {
  font-style: italic;
  color: var(--pink);
}

.about-copy p {
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.97rem;
  font-weight: 300;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  background: var(--white);
  border: 1px solid var(--light);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 300;
}

/* ── Contact ── */
.contact-page {
  padding: 6rem 3rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 240px;
}

.contact-info h1,
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-info h1 em,
.contact-info h2 em {
  font-style: italic;
  color: var(--pink);
}

.contact-info p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.c-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--mid);
  font-size: 0.9rem;
}

.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cd1 { background: var(--pink); }
.cd2 { background: var(--cyan); }
.cd3 { background: var(--yellow); }

.contact-form {
  flex: 1;
  min-width: 280px;
}

.fg {
  margin-bottom: 1.1rem;
}

.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fg input,
.fg textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--dark);
  font-size: 0.92rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}

.fg input:focus,
.fg textarea:focus {
  border-color: var(--pink);
}

.fg textarea {
  height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 0.5rem;
  font-weight: 300;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--light);
  padding: 3.5rem 3rem 2rem;
  background: var(--white);
}

.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ft-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}


.ft-brand p {
  color: var(--mid);
  font-size: 0.83rem;
  margin-top: 0.4rem;
  max-width: 200px;
  line-height: 1.65;
  font-weight: 300;
}

.ft-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ft-col a,
.ft-col span.fl {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: 300;
}

.ft-col a:hover,
.ft-col span.fl:hover {
  color: var(--pink);
}

.newsletter input {
  background: var(--bg);
  border: 1px solid var(--light);
  border-radius: 50px;
  padding: 0.5rem 0.9rem;
  color: var(--dark);
  font-size: 0.82rem;
  outline: none;
  font-family: var(--sans);
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  transition: border-color 0.2s;
}

.newsletter input:focus {
  border-color: var(--pink);
}

.newsletter button {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}

.newsletter button:hover {
  background: var(--pink);
}

.ft-bottom {
  border-top: 1px solid var(--light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--mid);
  font-size: 0.78rem;
  font-weight: 300;
}

.stripe-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--light);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--mid);
}

.s-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #635BFF;
}

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* ── Responsive ── */
@media (max-width: 760px) {
  nav {
    padding: 0 1.5rem;
  }

  .hero,
  section.pad,
  footer,
  .about-page,
  .contact-page,
  .coll-page-header,
  .video-section,
  .home-contact,
  .how-strip {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .prod-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-sub {
    margin: 0 auto 2rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-canvas-wrap {
    width: 100%;
    flex: none;
  }

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

  .coll-tile.big,
  .coll-tile.small {
    grid-column: span 1;
    height: 280px;
  }

  .about-img {
    width: 100%;
    flex: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  /* Timeline — vertical on mobile */
  .timeline-svg {
    display: none;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
  }

  .timeline-row::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 50px;
    bottom: 50px;
    width: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='6' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='5' cy='16' r='2.4' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='11' cy='20' r='2.4' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='17' cy='20' r='2.4' fill='%23365335' fill-opacity='0.45'/%3E%3Ccircle cx='21' cy='15' r='2' fill='%23365335' fill-opacity='0.45'/%3E%3C/svg%3E");
    background-repeat: repeat-y;
    background-size: 18px 22px;
    background-position: top center;
  }

  .t-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .t-dot {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 84px;
    height: 84px;
    font-size: 1.7rem;
  }

  .t-step p {
    margin: 0;
  }

  /* Video carousel on mobile */
  .video-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-card,
  .video-placeholder {
    width: 240px;
  }
}


/* ════════════════════════════════════════
   CART NAV BUTTON
════════════════════════════════════════ */
.cart-btn {
  background: none;
  border: 1px solid var(--light);
  border-radius: 50px;
  padding: 0 0.9rem;
  height: 44px;
  box-sizing: border-box;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  transition: border-color 0.2s, background 0.2s;
}

.cart-btn:hover {
  border-color: var(--pink);
  background: rgba(135, 53, 71, 0.05);
}

.cart-icon {
  width: 32px;
  height: auto;
  display: block;
}

.cart-count {
  background: var(--pink);
  color: #fff;
  border-radius: 50px;
  padding: 0.1rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}


/* ════════════════════════════════════════
   PRODUCT PAGE
════════════════════════════════════════ */
.product-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.product-img-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  border: 1px solid var(--light);
}

.product-detail { }

.product-detail .prod-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.product-detail h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.product-detail .product-price-lg {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.product-detail .product-desc-full {
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.97rem;
  margin-bottom: 1.75rem;
}

/* Colour picker */
.colour-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.colour-swatches {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.swatch:hover,
.swatch.active {
  transform: scale(1.15);
  border-color: var(--dark);
}

/* Quantity selector */
.qty-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.75rem;
  width: fit-content;
  border: 1px solid var(--light);
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s;
  font-family: var(--sans);
}

.qty-btn:hover { background: var(--light); }

.qty-val {
  min-width: 36px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}

.product-add-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background: var(--dark);
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.product-add-btn:hover { background: var(--pink); }

/* Similar products */
.similar-section { margin-top: 3rem; }

.similar-section h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}


/* ════════════════════════════════════════
   CART PAGE
════════════════════════════════════════ */
.cart-page {
  padding: 4rem 3rem 6rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mid);
}

.cart-empty .cart-empty-icon { width: 160px; height: auto; margin: 0 auto 1rem; display: block; }
.cart-empty h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; }

.cart-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  border: 1px solid var(--light);
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cart-item-colour {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--light);
  border-radius: 50px;
  overflow: hidden;
}

.cart-item-price {
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: auto;
  padding-left: 1rem;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--mid);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s;
  font-family: var(--sans);
  margin-left: 0.5rem;
}

.cart-remove:hover { color: var(--pink); }

.cart-summary-box {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r);
  padding: 1.75rem;
  position: sticky;
  top: 84px;
}

.cart-summary-box h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.cart-summary-row.muted { color: var(--mid); font-size: 0.85rem; }

.cart-summary-divider {
  border: none;
  border-top: 1px solid var(--light);
  margin: 1rem 0 1.25rem;
}

.checkout-btn { opacity: 0.6; cursor: not-allowed; }

/* Responsive additions */
@media (max-width: 760px) {
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .similar-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .product-page-inner,
  .cart-page { padding-left: 1.5rem; padding-right: 1.5rem; }
}
