/* ═══════════════════════════════════════════════════════════════
   AURA — QUIET LIVING  |  styles.css
   Palette: Warm cream / charcoal / sand / blue-grey
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --cream:   #F5F2EB;
  --sand:    #EBE7DE;
  --mid-sand:#D6D1C7;
  --stone:   #A8A29E;
  --muted:   #5D5A53;
  --dark:    #2C2A26;
  --darker:  #1A1814;
  --white:   #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --nav-h: 80px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input  { font-family: inherit; }

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--dark); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
}
.cursor-follower {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 1px solid var(--dark); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
body.cursor-hover .cursor { width: 12px; height: 12px; background: var(--stone); }
body.cursor-hover .cursor-follower { width: 56px; height: 56px; border-color: var(--stone); }

/* ── LOADER ──────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; background: var(--darker);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__brand {
  font-family: var(--font-display); font-size: 4rem; font-style: italic;
  color: var(--cream); display: block; margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.loader__bar {
  width: 160px; height: 1px; background: rgba(255,255,255,0.15);
  margin: 0 auto; overflow: hidden;
}
.loader__fill {
  height: 100%; width: 0; background: var(--cream);
  animation: loadFill 1.6s var(--ease-out) forwards 0.3s;
}
@keyframes loadFill { to { width: 100%; } }

/* ── UTILITIES ───────────────────────────────────────────────── */
.container { max-width: 1600px; margin: 0 auto; padding: 0 3rem; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal.visible  { opacity: 1; transform: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn--light { background: var(--cream); color: var(--dark); }
.btn--dark  { background: var(--dark); color: var(--cream); }
.btn--full  { width: 100%; justify-content: center; border-radius: 0; }
.btn__arrow { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.nav.scrolled {
  background: rgba(245,242,235,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--mid-sand);
}
.nav__logo {
  font-family: var(--font-display); font-size: 1.9rem; font-style: italic;
  color: var(--cream); transition: color 0.5s; z-index: 10;
}
.nav.scrolled .nav__logo { color: var(--dark); }
.nav__links { display: flex; gap: 3rem; }
.nav__link {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,235,0.85); transition: color 0.5s, opacity 0.3s;
  position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: currentColor; transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav.scrolled .nav__link { color: var(--muted); }
.nav.scrolled .nav__link:hover { color: var(--dark); }
.nav__actions { display: flex; align-items: center; gap: 1.5rem; }
.nav__cart {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,242,235,0.85); transition: color 0.5s;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav.scrolled .nav__cart { color: var(--muted); }
.nav__cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; background: var(--dark); color: var(--cream);
  border-radius: 50%; font-size: 0.65rem; transition: background 0.5s;
}
.nav.scrolled .nav__cart-count { background: var(--dark); color: var(--cream); }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; width: 24px; z-index: 10;
}
.nav__hamburger span {
  width: 100%; height: 1px; background: var(--cream);
  transition: background 0.5s, transform 0.35s var(--ease), opacity 0.3s;
  display: block;
}
.nav.scrolled .nav__hamburger span { background: var(--dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--cream); z-index: 90;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-20px);
  transition: opacity 0.4s var(--ease), visibility 0.4s, transform 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__link {
  font-family: var(--font-display); font-size: 2.5rem; font-style: italic;
  color: var(--dark); transition: opacity 0.3s;
}
.mobile-menu__link:hover { opacity: 0.5; }
.mobile-menu__cart {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); margin-top: 1rem;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; height: 100svh; min-height: 700px;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { justify-content: center; } }
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) contrast(0.9) brightness(0.92); animation: heroPan 20s ease-in-out infinite alternate; }
@keyframes heroPan { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(67,62,56,0.55) 0%, rgba(49,48,48,0.3) 100%); }
.hero__grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 128px;
}
.hero__content {
  position: relative; z-index: 2; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: flex-start;
}
@media (min-width: 768px) { .hero__content { align-items: center; text-align: center; } }
.hero__badge {
  display: inline-block; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,242,235,0.9);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 100px;
  padding: 0.45rem 1.1rem; margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 300; color: var(--white); line-height: 0.95;
  letter-spacing: -0.02em; margin-bottom: 1.8rem;
}
.hero__title em { font-style: italic; color: var(--cream); }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 300;
  color: rgba(245,242,235,0.88); line-height: 1.7; margin-bottom: 2.8rem; max-width: 34rem;
}
.hero__scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: rgba(245,242,235,0.5); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px; background: rgba(245,242,235,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee {
  overflow: hidden; background: var(--dark); padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone);
}
.marquee__track span { white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PRODUCTS ────────────────────────────────────────────────── */
.products { padding: 8rem 0; }
.products__header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.5rem; margin-bottom: 5rem; }
.products__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.filter {
  padding: 0.5rem 1.4rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); border: 1px solid var(--mid-sand);
  transition: all 0.3s var(--ease);
}
.filter:hover, .filter.active { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.products__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem 2rem;
}

/* Product Card */
.product-card { cursor: none; }
.product-card__img-wrap {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand);
  margin-bottom: 1.5rem;
}
.product-card__img { transition: transform 1.2s var(--ease-out); }
.product-card:hover .product-card__img { transform: scale(1.07); }
.product-card__overlay {
  position: absolute; inset: 0; background: rgba(44,42,38,0.04);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__cta {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  color: var(--dark); padding: 0.65rem 1.5rem; border-radius: 100px;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  transform: translateY(8px); transition: transform 0.4s var(--ease-out);
}
.product-card:hover .product-card__cta { transform: none; }
.product-card__info { text-align: center; }
.product-card__name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  margin-bottom: 0.3rem; transition: opacity 0.3s;
}
.product-card:hover .product-card__name { opacity: 0.6; }
.product-card__cat {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 0.5rem;
}
.product-card__price { font-size: 0.85rem; font-weight: 500; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about { background: var(--sand); }
.about__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; padding-top: 8rem; padding-bottom: 8rem; align-items: start; }
@media (max-width: 900px) { .about__intro { grid-template-columns: 1fr; gap: 3rem; } }
.about__intro-right p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; }
.about__studio-img { height: 380px; margin-top: 2.5rem; filter: grayscale(0.1) contrast(0.95) brightness(1.05); }
.about__caption { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-top: 0.8rem; display: block; }
.about__blocks {}
.about__block { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.about__block--reverse .about__block-text { order: -1; }
@media (max-width: 900px) { .about__block { grid-template-columns: 1fr; } .about__block--reverse .about__block-text { order: 0; } }
.about__block-img { overflow: hidden; }
.about__block-img img { width: 100%; height: 100%; transition: transform 2.5s var(--ease); }
.about__block-img:hover img { transform: scale(1.04); }
.about__block-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem;
}
.about__block-text--sand { background: var(--mid-sand); }
.about__block-text--dark { background: var(--dark); color: var(--cream); }
.about__label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); display: block; margin-bottom: 1.5rem;
}
.about__block-text--dark .about__label { color: var(--stone); }
.about__block-text h3 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 2rem;
}
.about__block-text p { font-weight: 300; line-height: 1.8; color: var(--muted); max-width: 28rem; }
.about__block-text--dark p { color: var(--stone); }

/* ── JOURNAL ─────────────────────────────────────────────────── */
.journal { padding: 8rem 0; background: var(--cream); }
.journal__header { margin-bottom: 5rem; border-bottom: 1px solid var(--mid-sand); padding-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.journal__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 4rem 3rem; }
.journal-card { cursor: none; }
.journal-card__img-wrap { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 2rem; background: var(--sand); }
.journal-card__img { transition: transform 1.2s var(--ease-out), filter 1s; filter: grayscale(0.2); }
.journal-card:hover .journal-card__img { transform: scale(1.05); filter: grayscale(0); }
.journal-card__date { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.8rem; }
.journal-card__title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  line-height: 1.25; margin-bottom: 1rem; transition: opacity 0.3s;
}
.journal-card:hover .journal-card__title { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.journal-card__excerpt { font-weight: 300; color: var(--muted); line-height: 1.7; font-size: 0.95rem; }

/* ── VIEWS (Product / Journal / Checkout detail pages) ──────── */
.view--hidden { display: none; }
.view { min-height: 100svh; padding-top: var(--nav-h); animation: viewIn 0.6s var(--ease-out) both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* Product Detail */
.product-detail { max-width: 1400px; margin: 0 auto; padding: 3rem 3rem 8rem; }
.back-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 3rem; transition: color 0.3s, gap 0.3s;
}
.back-btn:hover { color: var(--dark); gap: 0.8rem; }
.back-btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.back-btn:hover svg { transform: translateX(-4px); }
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .product-detail__grid { grid-template-columns: 1fr; } }
.product-detail__img { aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.product-detail__cat { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.8rem; }
.product-detail__name { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; margin-bottom: 0.8rem; }
.product-detail__price { font-size: 1.6rem; font-weight: 300; margin-bottom: 2rem; }
.product-detail__desc { font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--mid-sand); }
.product-detail__sizes { margin-bottom: 2rem; }
.product-detail__sizes-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 1rem; }
.size-btns { display: flex; gap: 0.6rem; }
.size-btn {
  width: 44px; height: 44px; border: 1px solid var(--mid-sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: all 0.3s; cursor: none;
}
.size-btn:hover, .size-btn.active { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.product-detail__add { margin-bottom: 2rem; padding: 1.1rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; width: 100%; background: var(--dark); color: var(--cream); transition: background 0.3s; cursor: none; }
.product-detail__add:hover { background: var(--darker); }
.product-detail__features { list-style: none; }
.product-detail__features li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--muted); padding: 0.6rem 0; border-bottom: 1px solid var(--sand); }
.product-detail__features li::before { content: ''; width: 4px; height: 4px; background: var(--dark); border-radius: 50%; flex-shrink: 0; }

/* Journal Detail */
.journal-detail { max-width: 800px; margin: 0 auto; padding: 0 2rem 8rem; }
.journal-detail__hero { height: 55vh; overflow: hidden; margin-bottom: 0; position: relative; }
.journal-detail__hero img { filter: brightness(0.85); }
.journal-detail__hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, var(--cream), transparent); }
.journal-detail__card { background: var(--cream); padding: 3rem; margin-top: -6rem; position: relative; z-index: 2; box-shadow: 0 20px 60px rgba(44,42,38,0.08); }
.journal-detail__meta { display: flex; justify-content: space-between; align-items: center; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--mid-sand); }
.journal-detail__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 400; line-height: 1.15; text-align: center; margin-bottom: 3rem; }
.journal-detail__body p { font-weight: 300; line-height: 1.9; color: var(--muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.journal-detail__body blockquote { border-left: 2px solid var(--dark); padding-left: 1.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--dark); margin: 2.5rem 0; }
.journal-detail__end { text-align: center; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--mid-sand); font-family: var(--font-display); font-style: italic; font-size: 1.8rem; }

/* Checkout */
.checkout { max-width: 1200px; margin: 0 auto; padding: 3rem 3rem 8rem; }
.checkout__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
@media (max-width: 900px) { .checkout__grid { grid-template-columns: 1fr; } }
.checkout__title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; margin-bottom: 0.5rem; }
.checkout__note { color: var(--stone); font-size: 0.85rem; margin-bottom: 3rem; }
.form-section { margin-bottom: 3rem; }
.form-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field input {
  width: 100%; padding: 0.9rem 0; background: transparent;
  border: none; border-bottom: 1px solid var(--mid-sand);
  font-size: 0.95rem; color: var(--dark); outline: none;
  transition: border-color 0.3s;
}
.form-field input::placeholder { color: var(--stone); }
.form-field input:focus { border-color: var(--dark); }
.order-summary__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin-bottom: 2rem; }
.order-summary__items { margin-bottom: 2rem; }
.order-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.order-item__img { width: 60px; height: 60px; flex-shrink: 0; overflow: hidden; background: var(--sand); position: relative; }
.order-item__badge { position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; background: var(--dark); color: var(--cream); border-radius: 50%; font-size: 0.6rem; display: flex; align-items: center; justify-content: center; }
.order-item__info { flex: 1; }
.order-item__name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; }
.order-item__cat { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }
.order-item__price { font-size: 0.9rem; color: var(--muted); }
.order-totals { border-top: 1px solid var(--mid-sand); padding-top: 1.5rem; }
.order-totals__row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.8rem; }
.order-totals__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; }
.order-totals__total span:first-child { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.order-totals__total span:last-child { font-family: var(--font-display); font-size: 2rem; font-weight: 300; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--sand); padding: 5rem 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; margin-bottom: 4rem; }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__logo { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; margin-bottom: 0.8rem; }
.footer__brand p { font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 18rem; font-size: 0.9rem; }
.footer__col h5 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.5rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__col a { font-weight: 300; color: var(--muted); font-size: 0.9rem; transition: color 0.3s; }
.footer__col a:hover { color: var(--dark); }
.footer__newsletter h5 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.5rem; }
.newsletter__form { display: flex; flex-direction: column; gap: 0.8rem; }
.newsletter__form input { background: transparent; border: none; border-bottom: 1px solid var(--stone); padding: 0.5rem 0; font-size: 1rem; color: var(--dark); outline: none; transition: border-color 0.3s; }
.newsletter__form input:focus { border-color: var(--dark); }
.newsletter__form button { align-self: flex-start; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--stone); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; cursor: none; }
.newsletter__form button:hover { color: var(--dark); border-color: var(--dark); }
.newsletter__status { font-size: 0.8rem; color: var(--stone); margin-top: 0.5rem; min-height: 1.2rem; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--mid-sand); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); opacity: 0.7; }

/* ── CART DRAWER ─────────────────────────────────────────────── */
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(44,42,38,0.35);
  backdrop-filter: blur(4px); z-index: 200;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.cart-backdrop.open { opacity: 1; visibility: visible; }
.cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw); background: var(--cream);
  z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.5s var(--ease-out);
  border-left: 1px solid var(--mid-sand);
}
.cart.open { transform: none; }
.cart__header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1.8rem; border-bottom: 1px solid var(--mid-sand); }
.cart__header h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.cart__close svg { width: 22px; height: 22px; color: var(--stone); transition: color 0.3s; }
.cart__close:hover svg { color: var(--dark); }
.cart__items { flex: 1; overflow-y: auto; padding: 1.5rem 1.8rem; }
.cart__empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; opacity: 0.4; }
.cart__empty svg { width: 44px; height: 44px; }
.cart__empty p { font-weight: 300; }
.cart-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--sand); animation: viewIn 0.4s var(--ease-out) both; }
.cart-item__img { width: 72px; height: 88px; flex-shrink: 0; overflow: hidden; background: var(--sand); }
.cart-item__details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item__top { display: flex; justify-content: space-between; }
.cart-item__name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; }
.cart-item__price { font-size: 0.85rem; font-weight: 300; }
.cart-item__cat { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }
.cart-item__remove { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; cursor: none; align-self: flex-start; }
.cart-item__remove:hover { color: var(--dark); }
.cart__footer { padding: 1.5rem 1.8rem; border-top: 1px solid var(--mid-sand); background: rgba(235,231,222,0.4); }
.cart__subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.cart__subtotal span:first-child { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.cart__subtotal span:last-child { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.cart__note { font-size: 0.75rem; color: var(--stone); text-align: center; margin-bottom: 1.2rem; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .nav { padding: 0 1.5rem; }
  .nav__links { display: none; }
  .nav__cart { display: none; }
  .nav__hamburger { display: flex; }
  .products__grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; }
  .about__block-text { padding: 3rem 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; align-items: center; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .journal__grid { grid-template-columns: 1fr; }
  .product-detail, .journal-detail, .checkout { padding-left: 1.5rem; padding-right: 1.5rem; }
  .checkout__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
