/* =========================================
   CURVE OFFICIAL — MAIN STYLESHEET
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --mocha:      #7D5745;
  --mocha-dark: #5C3D2E;
  --rose-clay:  #C4967A;
  --nude-sand:  #D4B89A;
  --olive:      #6B7355;
  --off-white:  #F5F0EB;
  --cream:      #FAF8F5;
  --white:      #FFFFFF;
  --dark:       #1A1A1A;
  --gray-dark:  #555;
  --gray:       #888;
  --gray-light: #CCC;
  --border:     #E8E2DC;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --radius:  4px;
  --radius-lg: 8px;
  --shadow:  0 2px 20px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ---- Utilities ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--gray); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
.label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--mocha);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--mocha-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--mocha);
  border: 1.5px solid var(--mocha);
}
.btn-outline:hover {
  background: var(--mocha);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--off-white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #333; }
.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-lg { padding: 18px 48px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Flash Messages ---- */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mocha);
}
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 1px;
}
.logo-image {
  height: 38px;
  width: auto;
  display: block;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-main a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--mocha);
  transition: width var(--transition);
}
.nav-main a:hover, .nav-main a.active { color: var(--mocha); }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icon {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--dark);
  transition: color var(--transition);
}
.header-icon:hover { color: var(--mocha); }
.header-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.user-dot {
  position: absolute;
  top: -2px; right: -4px;
  width: 8px; height: 8px;
  background: var(--mocha);
  border-radius: 50%;
  border: 2px solid var(--cream);
}
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--mocha);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 0;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.mobile-nav.open {
  display: flex;
  animation: navSlideDown 0.22s ease;
}
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a::after {
  content: '→';
  font-size: 14px;
  opacity: 0.3;
  transition: opacity var(--transition), transform var(--transition);
  font-weight: 300;
}
.mobile-nav a:hover { color: var(--mocha); background: var(--off-white); }
.mobile-nav a:hover::after { opacity: 0.7; transform: translateX(4px); }
.mobile-nav a:last-child { border-bottom: none; }

/* Page offset for fixed header */
.page-content { padding-top: 72px; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: var(--off-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--off-white) 0%, #EDE5DC 50%, var(--nude-sand) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: var(--mocha);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 72px);
}
.hero-content { padding: 60px 0; }
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-clay);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic;
  color: var(--mocha);
  display: block;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 15px;
  color: var(--gray-dark);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================
   HOME PAGE
   ========================================= */
.home-page { background: #f4ebe4; }
.home-page .page-content { padding-top: 72px; }
.home-page .newsletter { display: none; }
.home-page .site-header {
  background: rgba(244, 235, 228, 0.97);
  border-bottom-color: rgba(96, 67, 54, 0.15);
}
.home-page .nav-main a { color: #604336; }
.home-page .nav-main a:hover,
.home-page .nav-main a.active { color: #7d5745; }
.home-page .nav-main a::after { background: #604336; }
.home-page .header-icon { color: #604336; }
.home-shell {
  max-width: 1440px;
  margin: 0 auto;
  background: #f4ebe4;
  color: #604336;
  overflow: hidden;
  --home-hero-crop: 0px;
}
.home-hero-panel {
  position: relative;
  height: calc(min(100vw, 1440px) * 0.46 - var(--home-hero-crop));
  min-height: 0;
  padding-top: 0;
  background: #f4ebe4;
  overflow: hidden;
}
.home-hero-panel::before {
  display: none;
}
.home-hero-panel picture,
.home-hero-image {
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-image {
  object-fit: cover;
  object-position: center top;
  transform: translateY(calc(var(--home-hero-crop) * -1));
}
.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 44vw);
  padding: 235px 0 0 90px;
}
.home-hero-copy h1 {
  font-family: var(--font-sans);
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #604336;
}
.home-hero-copy h1 span,
.home-hero-copy h1 em {
  display: block;
  font-style: normal;
}
.home-hero-copy h1 em { color: #c38377; }
.home-copy-line {
  width: 86px;
  height: 2px;
  background: #b5796f;
  margin: 45px 0 42px;
}
.home-hero-copy p {
  max-width: 430px;
  font-size: 27px;
  line-height: 1.68;
  color: #604336;
}
.home-hero-copy strong { font-weight: 800; }
.home-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 96px;
  margin-top: 73px;
  padding: 0 58px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ca8277, #c79587);
  color: #fff;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-hero-button span {
  font-size: 34px;
  line-height: 1;
}
.home-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 78px 58px;
  background: #f4ebe4;
}
.home-benefit {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 0 22px;
  text-align: center;
  color: #4d362d;
  border-right: 1px solid rgba(96,67,54,.28);
}
.home-benefit:last-child { border-right: 0; }
.home-benefit svg {
  width: 74px;
  height: 74px;
  stroke-width: 1.45;
}
.home-benefit span {
  font-size: 18px;
  line-height: 1.45;
  text-transform: uppercase;
}
.home-bag-banner {
  display: block;
  margin: 16px 60px 56px;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #b08b78;
}
.home-bag-image {
  width: 100%;
  height: auto;
}
.home-moments {
  display: block;
  padding: 0 58px 70px;
}
.home-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
  margin-bottom: 42px;
}
.home-section-title span {
  height: 1px;
  background: rgba(96,67,54,.34);
}
.home-section-title h2 {
  font-family: var(--font-sans);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
  color: #604336;
}
.home-moment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.home-moment-card {
  position: relative;
  min-height: 292px;
  border-radius: 10px;
  overflow: hidden;
  background: #d7c7bd;
  box-shadow: 0 14px 34px rgba(96,67,54,.12);
}
.home-moment-card img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
  transition: transform .35s ease;
}
.home-moment-bag img {
  object-fit: cover;
  object-position: 88% center;
  padding: 0;
  background: #d8c3b4;
}
.home-moment-card:hover img { transform: scale(1.045); }
.home-moment-card strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  background: #8f6d58;
}
.home-moment-rose strong { background: #c6847b; }
.home-moment-olive strong { background: #626844; }
.home-moment-bag strong { background: #a98770; }
.home-final-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 28px 88px 62px;
  background: #f4ebe4;
}
.home-final-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 92px;
  padding: 0 28px;
  border-right: 1px solid rgba(96,67,54,.28);
}
.home-final-benefit:last-child { border-right: 0; }
.home-final-benefit svg {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  stroke-width: 1.35;
  color: #604336;
}
.home-final-benefit span {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #4d362d;
}
.home-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 74px;
  padding: 14px 24px;
  background: linear-gradient(90deg, #c37a6f, #d3988b);
  color: #fff;
  text-align: center;
}
.home-tagline > span {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
}
.home-tagline strong,
.home-tagline small {
  display: block;
  font-family: var(--font-sans);
  text-transform: uppercase;
}
.home-tagline strong {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: .18em;
}
.home-tagline small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .36em;
}
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.hero-image img {
  max-height: calc(100vh - 100px);
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  z-index: 1;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--nude-sand) 0%, var(--rose-clay) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
  gap: 8px;
}

/* =========================================
   FEATURES STRIP
   ========================================= */
.features-strip {
  background: var(--mocha);
  padding: 24px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--off-white); }
.feature-text { color: var(--white); }
.feature-text strong { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }
.feature-text span { font-size: 11px; opacity: 0.7; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; color: var(--dark); }
.section-header p {
  font-size: 15px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}
.section-divider {
  width: 40px; height: 1.5px;
  background: var(--mocha);
  margin: 16px auto;
}

/* =========================================
   CATEGORIES
   ========================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--nude-sand) 0%, var(--mocha) 100%);
  transition: transform var(--transition);
}
.category-card:hover .category-card-bg { transform: scale(1.05); }
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.category-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--white);
}
.category-card-content .label { color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.category-card-content h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.category-card-content span { font-size: 12px; opacity: 0.8; }

/* =========================================
   PRODUCT CARDS
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--off-white);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-sale { background: var(--rose-clay); color: var(--white); }
.badge-new  { background: var(--olive); color: var(--white); }
.badge-out  { background: var(--gray); color: var(--white); }
.product-card-actions {
  position: absolute;
  bottom: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: var(--transition);
  color: var(--dark);
}
.product-action-btn:hover { background: var(--mocha); color: var(--white); }
.product-action-btn svg { width: 18px; height: 18px; stroke-width: 1.5; }
.product-card-body { padding: 16px 20px 20px; }
.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-clay);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-current {
  font-size: 16px;
  font-weight: 700;
  color: var(--mocha);
}
.price-original {
  font-size: 13px;
  color: var(--gray-light);
  text-decoration: line-through;
}
.color-dots {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform var(--transition);
}
.color-dot:hover, .color-dot.active { transform: scale(1.3); box-shadow: 0 0 0 2px var(--mocha); }

/* =========================================
   SHOP PAGE
   ========================================= */
.shop-header {
  background: var(--off-white);
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 48px 0;
}
.shop-sidebar {}
.shop-filters-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 28px; }
.filter-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-dark);
  transition: color var(--transition);
}
.filter-option:hover { color: var(--mocha); }
.filter-option input[type="checkbox"] { accent-color: var(--mocha); width: 14px; height: 14px; }
.filter-color-options { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-color {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.filter-color.active { border-color: var(--mocha); }
.filter-color span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  white-space: nowrap;
  color: var(--gray);
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.shop-count { font-size: 13px; color: var(--gray); }
.shop-sort select {
  border: 1px solid var(--border);
  padding: 8px 32px 8px 12px;
  font-size: 12px;
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 48px;
}
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
}
.page-btn:hover, .page-btn.active {
  border-color: var(--mocha);
  background: var(--mocha);
  color: var(--white);
}

/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 60px 0;
  align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.gallery-main {
  aspect-ratio: 3/4;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
}
.gallery-thumb {
  width: 72px; height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--off-white);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--mocha); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info .label { margin-bottom: 8px; }
.product-info h1 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 12px; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gray);
}
.stars { color: var(--rose-clay); }
.product-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.product-pricing .price-current { font-size: 1.8rem; }
.product-pricing .price-original { font-size: 1rem; }
.product-desc {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 28px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
}
.product-detail-card {
  border: 1px solid var(--border);
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px;
  min-height: 108px;
}
.product-detail-card strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 7px;
}
.product-detail-card span {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray-dark);
}
.variant-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.variant-label span { color: var(--gray); font-weight: 400; text-transform: none; letter-spacing: 0; }
.color-selector { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.color-option.active .color-swatch, .color-option:hover .color-swatch {
  border-color: var(--mocha);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--mocha);
}
.color-option span { font-size: 10px; color: var(--gray); white-space: nowrap; }
.size-selector { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.size-btn {
  min-width: 48px;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.size-btn:hover { border-color: var(--mocha); color: var(--mocha); }
.size-btn.active { background: var(--mocha); border-color: var(--mocha); color: var(--white); }
.size-btn.out-of-stock {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
}
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 24px;
}
.qty-btn {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--off-white); }
.qty-input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 44px;
  font-size: 14px;
  font-weight: 600;
}
.add-to-cart-section { display: flex; gap: 12px; margin-bottom: 28px; }
.add-to-cart-section .btn { flex: 1; }
.product-features {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-accordion {
  border-bottom: 1px solid var(--border);
}
.feature-accordion:last-child { border-bottom: none; }
.feature-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: background var(--transition);
}
.feature-accordion-header:hover { background: var(--off-white); }
.feature-accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.feature-accordion-body.open {
  max-height: 300px;
  padding: 0 20px 16px;
}
.feature-accordion-body p, .feature-accordion-body ul {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.8;
}
.feature-accordion-body ul li { margin-bottom: 4px; }
.feature-accordion-body ul li::before { content: '• '; color: var(--mocha); }

/* =========================================
   CART
   ========================================= */
.cart-page { padding: 60px 0; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.cart-items {}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item-image {
  width: 100px; height: 125px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.cart-item-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
}
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--mocha); }
.cart-item-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--gray-light);
  font-size: 18px;
  line-height: 1;
  transition: color var(--transition);
  padding: 4px;
}
.cart-item-remove:hover { color: #e74c3c; }
.cart-empty {
  text-align: center;
  padding: 80px 0;
}
.cart-empty svg { width: 64px; height: 64px; stroke: var(--gray-light); margin: 0 auto 20px; }
.cart-empty h3 { margin-bottom: 8px; }
.cart-empty p { color: var(--gray); margin-bottom: 24px; }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
}
.summary-row.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 16px;
  font-weight: 700;
  color: var(--mocha);
}
.summary-row .free-shipping { color: var(--olive); font-size: 12px; }
.shipping-notice {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--gray-dark);
  margin: 16px 0;
  line-height: 1.5;
}
.coupon-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.coupon-form input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
}
.coupon-form input:focus { outline: none; border-color: var(--mocha); }

/* =========================================
   CHECKOUT
   ========================================= */
.checkout-page { padding: 48px 0 80px; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}
.checkout-steps::before {
  content: '';
  position: absolute;
  top: 18px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: var(--transition);
}
.step.active .step-num, .step.done .step-num {
  background: var(--mocha);
  color: var(--white);
}
.step-label { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }
.form-section { margin-bottom: 32px; }
.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.form-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  background: var(--white);
  transition: border-color var(--transition);
  color: var(--dark);
}
.form-input:focus { outline: none; border-color: var(--mocha); }
.form-input::placeholder { color: var(--gray-light); }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-option {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-option:hover, .payment-option.active { border-color: var(--mocha); background: #FBF7F4; }
.payment-option input { accent-color: var(--mocha); }
.payment-option-icon { font-size: 24px; }
.payment-option-label { font-size: 13px; font-weight: 600; }
.payment-option-desc { font-size: 11px; color: var(--gray); }

.order-summary-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }
.order-summary-widget h4 { margin-bottom: 20px; font-size: 1.1rem; }
.order-item-row { display: flex; gap: 12px; margin-bottom: 12px; align-items: center; }
.order-item-img { width: 56px; height: 70px; border-radius: var(--radius); overflow: hidden; background: var(--off-white); flex-shrink: 0; }
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-info { flex: 1; }
.order-item-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.order-item-meta { font-size: 11px; color: var(--gray); }
.order-item-price { font-size: 14px; font-weight: 700; color: var(--mocha); }

/* =========================================
   AUTH PAGES (Login / Register)
   ========================================= */
.auth-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--off-white);
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 440px;
}
.auth-brand {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--mocha);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.auth-brand p {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.06em;
}
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-terms {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.auth-terms a { color: var(--mocha); text-decoration: underline; }
.auth-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.auth-footer a { color: var(--mocha); font-weight: 600; }

/* =========================================
   ACCOUNT DASHBOARD
   ========================================= */
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.account-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: sticky;
  top: 90px;
  text-align: center;
}
.account-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mocha) 0%, var(--rose-clay) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 16px;
}
.account-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.account-email {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
  word-break: break-all;
}
.account-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.account-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 12px;
}
.account-stat:not(:last-child) { border-right: 1px solid var(--border); }
.account-stat strong { font-size: 15px; font-weight: 700; color: var(--mocha); }
.account-stat span { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav a {
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  text-align: left;
}
.account-nav a:hover, .account-nav a.active {
  background: var(--off-white);
  color: var(--mocha);
}
.account-logout { color: #c0392b !important; margin-top: 8px; }
.account-logout:hover { background: #fdf0ee !important; }
.account-section-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--dark);
}
.account-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.account-empty svg {
  width: 48px; height: 48px;
  stroke: var(--gray-light);
  margin: 0 auto 16px;
}
.account-empty p { color: var(--gray); margin-bottom: 20px; }
.order-list { display: flex; flex-direction: column; gap: 16px; }
.order-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.order-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--mocha);
  letter-spacing: 0.06em;
  display: block;
}
.order-date {
  font-size: 11px;
  color: var(--gray);
  display: block;
  margin-top: 2px;
}
.order-status-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.order-card-body { padding: 16px 20px; }
.order-totals {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  font-size: 13px;
  color: var(--gray-dark);
  margin-bottom: 10px;
}
.order-total-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: var(--mocha);
}
.order-card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray);
}

@media (max-width: 768px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .auth-card { padding: 32px 24px; }
}

/* =========================================
   ORDER SUCCESS
   ========================================= */
.success-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.success-icon {
  width: 72px; height: 72px;
  background: #d4edda;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { width: 36px; height: 36px; stroke: #28a745; }
.success-card h2 { margin-bottom: 8px; }
.success-card p { color: var(--gray); margin-bottom: 8px; }
.order-number { font-size: 13px; color: var(--mocha); font-weight: 700; margin-bottom: 24px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   ABOUT / BRAND SECTION
   ========================================= */
.brand-section {
  background: var(--mocha);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.brand-section::before {
  content: 'CURVE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 20vw;
  font-weight: 600;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
}
.brand-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.brand-content .label { color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.brand-content h2 { color: var(--white); margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 4rem); }
.brand-content p { font-size: 16px; line-height: 1.9; opacity: 0.85; margin-bottom: 40px; }
.brand-values {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brand-value { text-align: center; }
.brand-value strong { display: block; font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 4px; }
.brand-value span { font-size: 11px; opacity: 0.6; letter-spacing: 0.12em; text-transform: uppercase; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { color: var(--rose-clay); font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--nude-sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--mocha);
}
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-date { font-size: 11px; color: var(--gray); }

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter {
  background: var(--off-white);
  padding: 80px 0;
  text-align: center;
}
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { color: var(--gray); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 14px 20px;
  font-size: 14px;
}
.newsletter-form input:focus { outline: none; border-color: var(--mocha); }
.newsletter-form .btn { border-radius: 0 var(--radius) var(--radius) 0; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #34241f;
  color: rgba(255,255,255,0.78);
  padding: 0;
}
.footer-topline {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 36px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-kicker,
.footer-mini-title {
  display: block;
  margin-bottom: 10px;
  color: #d5a094;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-topline h2 {
  max-width: 620px;
  color: #f7eee8;
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: .04em;
}
.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.footer-newsletter input {
  width: 100%;
  min-height: 52px;
  border: 0;
  padding: 0 18px;
  color: #fff;
  background: transparent;
  font-size: 13px;
}
.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.52);
}
.footer-newsletter input:focus {
  outline: none;
}
.footer-newsletter button {
  min-height: 52px;
  border: 0;
  padding: 0 22px;
  background: #c98779;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.footer-newsletter button:hover {
  background: #d79a8d;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 1fr));
  gap: 48px;
  padding: 46px 0;
}
.footer-logo {
  display: inline-block;
  width: 178px;
}
.footer-logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 360px;
  margin-top: 20px;
  opacity: 0.72;
}
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-link:hover { border-color: var(--rose-clay); color: var(--rose-clay); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer-col ul li span {
  font-size: 13px;
  opacity: 0.6;
}
.footer-col ul li a:hover { opacity: 1; color: var(--rose-clay); }
.footer-secure {
  margin-top: 22px;
}
.footer-mini-title {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.38);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; opacity: 0.4; }
.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 12px;
  opacity: .45;
  transition: opacity var(--transition), color var(--transition);
}
.footer-legal a:hover {
  color: var(--rose-clay);
  opacity: 1;
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}

/* =========================================
   404 PAGE
   ========================================= */
.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-page .error-code {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 { margin-bottom: 12px; }
.error-page p { color: var(--gray); margin-bottom: 32px; }

/* =========================================
   MINI CART DRAWER
   ========================================= */
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.drawer-header h3 { font-size: 1.1rem; }
.drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.drawer-close:hover { background: var(--off-white); }
.drawer-close svg { width: 20px; height: 20px; }
.drawer-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.drawer-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.drawer-total span { font-size: 13px; color: var(--gray); }
.drawer-total strong { font-size: 18px; font-weight: 700; color: var(--mocha); }

/* =========================================
   LOADING SPINNER
   ========================================= */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .footer-topline {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 60px 0; }
  .hero-image { display: none; }
  .hero-bg::after { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .feature-item:nth-child(even) { padding-left: 24px; }

  .product-page { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }

  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .cart-drawer { width: 100%; right: -100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .add-to-cart-section { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1.5px solid var(--border); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form .btn { border-radius: 0 0 var(--radius) var(--radius); }
  .footer-topline {
    padding: 34px 0;
  }
  .footer-newsletter {
    grid-template-columns: 1fr;
  }
  .footer-newsletter button {
    width: 100%;
  }
  .footer-grid {
    padding: 34px 0;
  }
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .home-hero-panel {
    height: calc(100vw * 0.46 - var(--home-hero-crop));
    min-height: 0;
    padding-top: 0;
  }
  .home-hero-copy {
    width: 52vw;
    padding: 150px 0 0 48px;
  }
  .home-hero-copy h1 {
    font-size: 44px;
  }
  .home-hero-copy p {
    font-size: 20px;
  }
  .home-hero-button {
    min-height: 70px;
    margin-top: 42px;
    padding: 0 36px;
    font-size: 15px;
  }
  .home-benefits {
    padding: 20px 36px 44px;
  }
  .home-bag-banner {
    margin: 0 28px 44px;
  }
  .home-moments {
    padding: 0 28px 52px;
  }
  .home-moment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-final-benefits {
    padding: 24px 36px 48px;
  }
}

@media (max-width: 680px) {
  .site-footer .container {
    padding: 0 24px;
  }
  .footer-topline {
    gap: 24px;
    padding: 34px 0;
  }
  .footer-topline h2 {
    font-size: 24px;
  }
  .footer-newsletter {
    grid-template-columns: 1fr;
  }
  .footer-newsletter button {
    width: 100%;
  }
  .footer-logo {
    width: 164px;
  }
  .home-shell,
  .home-hero-panel {
    width: 100vw;
    max-width: 100vw;
  }
  .home-hero-panel {
    height: auto;
    min-height: 0;
    padding-top: 0;
  }
  .home-shell {
    --home-hero-crop: 0px;
  }
  .home-hero-panel picture,
  .home-hero-image {
    width: 100vw;
    max-width: 100vw;
    height: auto;
  }
  .home-hero-panel::before {
    display: none;
  }
  .home-hero-image {
    object-position: center top;
    object-fit: contain;
    transform: none;
  }
  .home-hero-copy {
    width: auto;
    max-width: 340px;
    padding: 370px 24px 0;
  }
  .home-hero-copy h1 {
    font-size: 26px;
    line-height: 1.32;
    letter-spacing: .1em;
  }
  .home-copy-line {
    width: 54px;
    margin: 24px 0 20px;
  }
  .home-hero-copy p {
    max-width: 265px;
    font-size: 14px;
    line-height: 1.65;
  }
  .home-hero-button {
    min-height: 52px;
    margin-top: 26px;
    padding: 0 22px;
    font-size: 11px;
    letter-spacing: .1em;
  }
  .home-hero-button span {
    font-size: 20px;
  }
  .home-benefits {
    display: block;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 72px;
    margin-left: calc(50% - 50vw);
    padding: 14px 2px 18px;
  }
  .home-benefit {
    position: absolute;
    top: 14px;
    width: 25vw;
    gap: 6px;
    min-width: 0;
    padding: 0 3px;
    border-right: 1px solid rgba(96,67,54,.22);
  }
  .home-benefit:nth-child(1) { left: 0; }
  .home-benefit:nth-child(2) { left: 25vw; }
  .home-benefit:nth-child(3) { left: 50vw; }
  .home-benefit:nth-child(4) { left: 75vw; }
  .home-benefit:last-child {
    border-right: 0;
  }
  .home-benefit svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.35;
  }
  .home-benefit span {
    font-size: 5.8px;
    line-height: 1.45;
    letter-spacing: 0;
    white-space: normal;
  }
  .home-bag-banner {
    display: block;
    margin: 0 14px 36px;
    border-radius: 16px;
  }
  .home-moments {
    display: block;
    width: 100%;
    max-width: 100vw;
    padding: 0 5px 24px;
    overflow: hidden;
  }
  .home-section-title {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }
  .home-section-title h2 {
    font-size: 10.5px;
    letter-spacing: .07em;
    white-space: nowrap;
  }
  .home-section-title span {
    display: block;
  }
  .home-moment-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .home-moment-card,
  .home-moment-card img {
    min-width: 0;
    min-height: 92px;
  }
  .home-moment-card {
    border-radius: 6px;
  }
  .home-moment-bag img {
    padding: 0;
    object-position: 88% center;
  }
  .home-moment-card strong {
    min-height: 21px;
    padding: 4px 1px;
    font-size: 5.8px;
    letter-spacing: .01em;
  }
  .home-final-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 16px 12px 28px;
    gap: 0;
  }
  .home-final-benefit {
    justify-content: center;
    gap: 8px;
    border-right: 1px solid rgba(96,67,54,.22);
    min-height: 42px;
    min-width: 0;
    padding: 0 6px;
  }
  .home-final-benefit:last-child {
    border-right: 0;
  }
  .home-final-benefit svg {
    width: 28px;
    height: 28px;
  }
  .home-final-benefit span {
    font-size: 8px;
    line-height: 1.35;
  }
  .home-tagline {
    display: flex;
    gap: 12px;
    min-height: 58px;
    padding: 10px 16px;
  }
  .home-tagline > span {
    font-size: 26px;
  }
  .home-tagline strong {
    font-size: 10.5px;
    line-height: 1.35;
    letter-spacing: .16em;
  }
  .home-tagline small {
    margin-top: 3px;
    font-size: 7px;
    letter-spacing: .24em;
  }
}
