/* ===========================
   KASHMIRIA — MAIN STYLESHEET
   =========================== */

:root {
  --cream: #f7f2ec;
  --warm-white: #faf7f4;
  --ink: #0f0a06;
  --bark: #3a1f0f;
  --copper: #b5652a;
  --gold: #c9a84c;
  --muted: #8a7a6e;
  --light-muted: #c4b8ac;
  --border: rgba(58,31,15,0.12);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --section-pad: clamp(80px, 10vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ========================
   CUSTOM CURSOR
   ======================== */
.cursor {
  width: 8px; height: 8px;
  background: var(--copper);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.15s var(--ease-out), top 0.15s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }

/* ========================
   PAGE LOADER
   ======================== */
.page-loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  overflow: hidden;
}
.loader-k {
  display: inline-block;
  animation: loaderK 0.8s var(--ease-out) forwards;
}
.loader-brand {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  animation: loaderBrand 0.8s var(--ease-out) 0.3s forwards;
}
@keyframes loaderK { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes loaderBrand { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: none; } }

.loader-line {
  width: 0;
  height: 1px;
  background: var(--copper);
  margin-top: 1.5rem;
  animation: loaderLine 1.2s var(--ease-out) 0.5s forwards;
}
@keyframes loaderLine { from { width: 0; } to { width: 200px; } }

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}
@media (min-width: 768px) { .nav-tag { display: block; } }

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream);
  transition: color 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav.scrolled .nav-logo { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.8);
  transition: color 0.3s;
  display: none;
}
@media (min-width: 768px) { .nav-link { display: block; } }
.nav.scrolled .nav-link { color: var(--muted); }
.nav-link:hover { color: var(--copper); }

.nav-cart {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247,242,236,0.9);
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav-cart { color: var(--ink); }
.nav-cart:hover { color: var(--copper); }

.cart-count {
  font-size: 0.7rem;
  background: var(--copper);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: absolute;
  top: -8px; right: -8px;
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
@media (min-width: 768px) { .nav-menu-btn { display: none; } }
.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(247,242,236,0.9);
  transition: background 0.4s, transform 0.3s;
  transform-origin: center;
}
.nav.scrolled .nav-menu-btn span { background: var(--ink); }
.nav-menu-btn.active span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.active span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.mobile-nav-link {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open .mobile-nav-link {
  animation: menuItemIn 0.5s var(--ease-out) forwards;
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { animation-delay: 0.3s; }
.mobile-menu.open .mobile-nav-link:nth-child(7) { animation-delay: 0.35s; }
@keyframes menuItemIn { to { opacity: 1; transform: none; } }
.mobile-nav-link:hover { color: var(--copper); }
.mobile-menu-footer {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu-footer p { margin-bottom: 0.3rem; }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-model-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,6,0.75) 0%, rgba(15,10,6,0.3) 50%, transparent 100%);
  z-index: 2;
}

/* Animated fabric pattern */
.hero-fabric-pattern {
  position: absolute; inset: 0;
  z-index: 1;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.4) 0, rgba(201,168,76,0.4) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(181,101,42,0.3) 0, rgba(181,101,42,0.3) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
  animation: patternShift 20s linear infinite;
}
@keyframes patternShift { to { background-position: 40px 40px; } }

/* Model silhouette (CSS art) */
.model-silhouette {
  position: absolute;
  bottom: 0;
  right: 8%;
  z-index: 3;
  width: clamp(200px, 30vw, 420px);
  height: 90%;
  display: flex;
  align-items: flex-end;
}
.model-body {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(to top, rgba(90,40,15,0.6) 0%, rgba(180,110,70,0.3) 60%, transparent 100%);
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}
.shawl-drape {
  position: absolute;
  bottom: 0; left: -20%; right: -20%;
  height: 95%;
  background: linear-gradient(160deg, rgba(201,168,76,0.25) 0%, rgba(181,101,42,0.4) 40%, rgba(120,60,20,0.5) 100%);
  border-radius: 80% 80% 0 0;
  animation: shawlFloat 6s ease-in-out infinite;
}
@keyframes shawlFloat {
  0%, 100% { transform: skewX(-2deg) translateX(0); }
  50% { transform: skewX(2deg) translateX(10px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 clamp(1.5rem, 8vw, 8rem);
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.hero-title span { display: block; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title-accent { color: var(--copper); }

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(247,242,236,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 8vw, 8rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(247,242,236,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(247,242,236,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim { to { left: 100%; } }

.hero-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(247,242,236,0.2);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(8px);
  background: rgba(15,10,6,0.3);
}
.badge-1 { right: clamp(1.5rem, 5vw, 4rem); top: 38%; }
.badge-2 { right: clamp(1.5rem, 5vw, 4rem); top: 56%; }
@media (max-width: 767px) { .hero-badge { display: none; } }

.badge-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.6);
  margin-top: 0.3rem;
}

/* ========================
   MARQUEE
   ======================== */
.marquee-strip {
  background: var(--ink);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.5);
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .sep { color: var(--copper); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================
   SECTION HEADERS
   ======================== */
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--copper); }
.section-header {
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ========================
   COLLECTIONS GRID
   ======================== */
.collections {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(4, 1fr); }
}

.coll-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out);
}

.coll-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.coll-bg {
  width: 100%; height: 100%;
  position: relative;
  transition: transform 0.7s var(--ease-out);
}
.coll-card:hover .coll-bg { transform: scale(1.05); }

.coll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,6,0.85) 0%, transparent 60%);
  z-index: 2;
}

/* Fabric animation overlays */
.coll-fabric-anim {
  position: absolute; inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}
.coll-card:hover .coll-fabric-anim { opacity: 0.2; }

.silk-anim { background: repeating-linear-gradient(30deg, rgba(201,168,76,0.6) 0, rgba(201,168,76,0.6) 1px, transparent 0, transparent 8px); animation: fabricMove 4s linear infinite; }
.wool-anim { background: repeating-linear-gradient(90deg, rgba(90,180,120,0.5) 0, rgba(90,180,120,0.5) 2px, transparent 0, transparent 12px); animation: fabricMove 5s linear infinite; }
.kaani-anim { background: repeating-radial-gradient(circle at 50% 50%, rgba(138,106,191,0.4) 0, transparent 8px); animation: fabricPulse 3s ease-in-out infinite; }
.kalam-anim { background: repeating-conic-gradient(rgba(196,135,90,0.3) 0deg 30deg, transparent 30deg 60deg); animation: fabricSpin 10s linear infinite; }

@keyframes fabricMove { to { background-position: 20px 20px; } }
@keyframes fabricPulse { 0%,100% { opacity: 0; } 50% { opacity: 0.25; } }
@keyframes fabricSpin { to { transform: rotate(360deg); } }

/* CSS Model Figures */
.coll-model {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  height: 85%;
  display: flex;
  align-items: flex-end;
}
.model-figure {
  position: relative;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mf-head {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(220,180,150,0.9);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}
.mf-torso {
  width: 60px;
  height: 120px;
  border-radius: 30px 30px 20px 20px;
  background: rgba(200,160,130,0.6);
  position: relative;
  overflow: visible;
}
.mf-shawl {
  position: absolute;
  inset: -15px -20px;
  border-radius: 50% 50% 30% 30%;
  animation: shawlWave 4s ease-in-out infinite;
}
.silk-shawl { background: linear-gradient(160deg, rgba(201,168,76,0.7), rgba(181,101,42,0.8)); }
.wool-shawl { background: linear-gradient(160deg, rgba(90,180,120,0.7), rgba(31,76,42,0.8)); }
.kaani-shawl { background: linear-gradient(160deg, rgba(138,106,191,0.7), rgba(58,32,96,0.8)); }
.kalam-shawl { background: linear-gradient(160deg, rgba(196,135,90,0.7), rgba(92,58,31,0.8)); }
@keyframes shawlWave {
  0%,100% { transform: rotate(-3deg) scaleX(1); }
  50% { transform: rotate(3deg) scaleX(1.05); }
}

.coll-info {
  padding: 1.5rem;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.coll-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
}
.coll-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
.coll-price {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
.coll-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--copper);
  transition: transform 0.3s;
}
.coll-card:hover .coll-arrow { transform: translateX(6px); }

/* ========================
   EDITORIAL SECTION
   ======================== */
.editorial {
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
  background: var(--warm-white);
}
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .editorial-inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 6rem; }
}

.editorial-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--ink);
}
.editorial-title em { font-style: italic; color: var(--copper); }

.editorial-body {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.editorial-visual {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  height: 560px;
}
.edit-img-main {
  grid-column: 1;
  border-radius: 4px;
  overflow: hidden;
}
.edit-img-inner {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.edit-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.12) 0, rgba(201,168,76,0.12) 1px, transparent 0, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(181,101,42,0.08) 0, rgba(181,101,42,0.08) 1px, transparent 0, transparent 20px);
  background-size: 20px 20px;
  animation: patternShift 15s linear infinite;
}

/* Large editorial model */
.edit-model-lg {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 5;
  height: 90%;
  display: flex; align-items: flex-end;
}
.edit-model-figure {
  display: flex; flex-direction: column; align-items: center;
  width: 120px;
}
.em-head {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(225,190,160,0.95);
  margin-bottom: 4px;
}
.em-neck {
  width: 16px; height: 20px;
  background: rgba(210,175,145,0.9);
  border-radius: 4px;
  margin-bottom: 2px;
}
.em-body {
  width: 90px; height: 200px;
  background: rgba(200,160,130,0.5);
  border-radius: 45px 45px 30px 30px;
  position: relative;
  overflow: visible;
}
.em-shawl-wrap {
  position: absolute; inset: -30px -40px;
}
.em-shawl {
  position: absolute; inset: 0;
  border-radius: 60% 60% 40% 40%;
}
.em-shawl-main {
  background: linear-gradient(160deg, rgba(201,168,76,0.65), rgba(181,101,42,0.8), rgba(120,60,20,0.7));
  animation: shawlWave 5s ease-in-out infinite;
}
.em-shawl-drape {
  background: linear-gradient(200deg, transparent, rgba(201,168,76,0.3), rgba(181,101,42,0.4));
  transform: rotate(15deg) scaleX(1.2);
  animation: shawlWave 5s ease-in-out 1s infinite;
}

.edit-img-accent {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.edit-accent-inner {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.edit-accent-pattern {
  position: absolute; inset: 0;
  background-image: repeating-radial-gradient(circle at 50% 50%, rgba(74,127,168,0.2) 0, transparent 10px);
  background-size: 20px 20px;
}
.edit-quote {
  background: var(--ink);
  padding: 1.5rem;
  border-radius: 4px;
}
.edit-quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.edit-quote span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========================
   FEATURED PRODUCTS
   ======================== */
.featured-products {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Product Card */
.product-card {
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  border-radius: 2px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15,10,6,0.12);
}
.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img-inner {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-img-inner { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--copper);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 5;
}
.product-wishlist {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(247,242,236,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.3s, transform 0.3s;
  opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--copper); transform: scale(1.1); }
.product-wishlist:hover svg { stroke: white; }
.product-wishlist svg { stroke: var(--ink); }

.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 5;
  cursor: pointer;
}
.product-card:hover .product-quick-add { transform: none; }

.product-info {
  padding: 1.2rem 1rem;
}
.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.product-price {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}
.product-price .original { text-decoration: line-through; margin-right: 0.5rem; opacity: 0.5; }
.product-price .sale { color: #c0392b; }

/* ========================
   PROCESS
   ======================== */
.process {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--ink);
}
.process-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}
.ps-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.ps-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: rgba(247,242,236,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.process-divider {
  width: 1px;
  background: rgba(247,242,236,0.08);
  align-self: stretch;
  display: none;
}
@media (min-width: 768px) { .process-divider { display: block; } }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--warm-white);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  background: var(--cream);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,10,6,0.08); }

.testi-featured {
  background: var(--ink);
}
.testi-featured .testi-stars,
.testi-featured .testi-text { color: var(--cream); }
.testi-featured .testi-author strong { color: var(--cream); }
.testi-featured .testi-author span { color: var(--muted); }

.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: 0.1em; }
.testi-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.85rem; font-weight: 500; }
.testi-author span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; }

/* ========================
   NEWSLETTER
   ======================== */
.newsletter {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--bark);
  position: relative;
  overflow: hidden;
}
.newsletter-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.06) 0, rgba(201,168,76,0.06) 1px, transparent 0, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(181,101,42,0.04) 0, rgba(181,101,42,0.04) 1px, transparent 0, transparent 40px);
  background-size: 40px 40px;
}
.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.newsletter-title em { font-style: italic; color: var(--gold); }
.newsletter-content > p {
  color: rgba(247,242,236,0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 1rem;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(247,242,236,0.1);
  border: 1px solid rgba(247,242,236,0.2);
  border-right: none;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.newsletter-input::placeholder { color: rgba(247,242,236,0.4); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(247,242,236,0.15); }
.newsletter-note { font-size: 0.72rem; color: rgba(247,242,236,0.4); letter-spacing: 0.05em; }

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--copper);
  color: white;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::after { transform: none; }
.btn-primary:hover { background: var(--bark); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: rgba(247,242,236,0.85);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(247,242,236,0.3);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--copper); background: var(--copper); color: white; }

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--ink);
  color: var(--cream);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; } }

.footer-logo {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--copper); color: var(--copper); }

.footer-nav-group h5 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.4);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.footer-nav-group a {
  display: block;
  font-size: 0.85rem;
  color: rgba(247,242,236,0.6);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.footer-nav-group a:hover { color: var(--copper); }

.footer-trust {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-badge {
  font-size: 0.72rem;
  color: rgba(247,242,236,0.5);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.5rem, 6vw, 5rem);
}
.footer-bottom p { font-size: 0.75rem; color: rgba(247,242,236,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(247,242,236,0.3); transition: color 0.3s; }
.footer-legal a:hover { color: var(--copper); }
.footer-payments { display: flex; gap: 0.5rem; }
.pay-icon {
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.65rem;
  color: rgba(247,242,236,0.4);
  letter-spacing: 0.05em;
  border-radius: 3px;
}

/* ========================
   TOAST
   ======================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 9999;
  transition: transform 0.4s var(--ease-out);
  white-space: nowrap;
  border-left: 3px solid var(--copper);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ========================
   SHOP PAGE STYLES
   ======================== */
.shop-hero {
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 3rem clamp(1.5rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--ink) 0%, var(--bark) 60%, #6b3a2a 100%);
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}
.shop-hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.06) 0, rgba(201,168,76,0.06) 1px, transparent 0, transparent 30px);
  background-size: 30px 30px;
  animation: patternShift 20s linear infinite;
}
.shop-hero-content { position: relative; z-index: 1; }
.shop-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.shop-hero h1 em { font-style: italic; color: var(--gold); }
.shop-hero p { color: rgba(247,242,236,0.6); font-size: 0.85rem; }

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 3rem);
  gap: 3rem;
}
@media (min-width: 900px) {
  .shop-layout { grid-template-columns: 260px 1fr; }
}

/* Filters */
.shop-filters {
  border-right: 1px solid var(--border);
  padding-right: 2rem;
}
.filter-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.filter-group { margin-bottom: 2.5rem; }
.filter-group-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
}
.filter-option:hover { color: var(--copper); }
.filter-option input { cursor: pointer; accent-color: var(--copper); }
.filter-option.active { color: var(--copper); }

.price-range {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.price-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--ink);
  outline: none;
}
.price-input:focus { border-color: var(--copper); }

/* Shop Main */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-count { font-size: 0.8rem; color: var(--muted); }
.shop-sort select {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--ink);
  outline: none;
  cursor: pointer;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ========================
   ABOUT PAGE
   ======================== */
.about-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0a05 0%, #4a2015 40%, #8a5035 70%, #c4855a 90%, #e8c4a0 100%);
}
.about-hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-conic-gradient(rgba(201,168,76,0.06) 0deg 30deg, transparent 30deg 60deg);
  background-size: 60px 60px;
  animation: fabricSpin 40s linear infinite;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,10,6,0.8) 0%, transparent 70%);
}
.about-hero-content {
  position: relative; z-index: 1;
  padding: 0 clamp(1.5rem, 8vw, 8rem);
  max-width: 700px;
}
.about-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.about-hero h1 em { font-style: italic; color: var(--gold); }
.about-hero p { color: rgba(247,242,236,0.7); font-size: 1rem; line-height: 1.7; max-width: 480px; }

.about-section {
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .about-grid.reverse { direction: rtl; }
  .about-grid.reverse > * { direction: ltr; }
}
.about-text-block {}
.about-text-block h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-text-block h2 em { font-style: italic; color: var(--copper); }
.about-text-block p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.about-visual {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-inner {
  width: 100%; height: 100%;
  position: relative;
}

/* Stat row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 0;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(247,242,236,0.2); border-bottom: none; }
  .hero-ctas { flex-direction: column; }
}
