*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ivory: #f5f0e8;
  --cream: #ede8dc;
  --warm-sand: #d4c5a9;
  --chocolate: #3d2b1f;
  --mocha: #6b4c38;
  --taupe: #9e8a76;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --charcoal: #2a2520;
  --text-body: #4a3f35;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--text-body);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 197, 169, 0.3);
  transition: padding 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  padding: 14px 52px;
  box-shadow: 0 2px 30px rgba(61, 43, 31, 0.08);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mocha);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: var(--chocolate);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chocolate);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-right-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-right-links a {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mocha);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-right-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-right-links a:hover {
  color: var(--chocolate);
}

.nav-right-links a:hover::after {
  width: 100%;
}

.cart-btn {
  cursor: pointer;
  color: var(--mocha);
  transition: color 0.3s;
  position: relative;
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  align-items: center;
}

.cart-btn:hover {
  color: var(--chocolate);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  font-size: 9px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  transition: transform 0.2s;
}

.cart-badge.bump {
  transform: scale(1.4);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  animation: fadeUp 1.2s ease both;
}

.hero-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--chocolate);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--mocha);
}

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}

.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid var(--chocolate);
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chocolate);
  text-decoration: none;
  transition: all 0.4s ease;
  align-self: flex-start;
  background: transparent;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--chocolate);
  color: var(--ivory);
}

.hero-right {
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.6s ease both 0.3s;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-sand) 100%);
}

.hero-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  width: 70%;
  height: 80%;
  background: linear-gradient(150deg, #e8d5b0 0%, rgba(201, 169, 110, 0.2) 40%, var(--cream) 100%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 40px 40px 80px rgba(61, 43, 31, 0.12);
}

.hero-product-float {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: float 6s ease-in-out infinite;
}

.hero-product-float img {
  width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 120px 120px 20px 20px;
  box-shadow: 0 40px 80px rgba(61, 43, 31, 0.25);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(1.02) contrast(1.05);
}

.hero-product-float:hover img {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 50px 100px rgba(61, 43, 31, 0.3);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-product-tag {
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-light);
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mocha);
  box-shadow: 0 10px 30px rgba(61, 43, 31, 0.05);
}

.floating-badge {
  position: absolute;
  top: 22%;
  right: 8%;
  background: var(--chocolate);
  color: var(--gold-light);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  animation: slowSpin 20s linear infinite;
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  animation: fadeUp 2s ease both 1.5s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--chocolate);
  padding: 16px 60px;
  display: flex;
  justify-content: center;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 300;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── SECTION SHARED ── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--chocolate);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
}

.section-deco {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
  position: relative;
}

.section-deco::after {
  content: '✦';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 14px;
}

/* ── SHOP / PRODUCTS ── */
.products {
  padding: 140px 80px;
  background: linear-gradient(to bottom, var(--ivory), white);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--warm-sand), transparent);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 72px;
  flex-wrap: wrap;
  padding: 6px;
  background: rgba(212, 197, 169, 0.1);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 34px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  font-weight: 400;
}

.filter-btn:hover {
  color: var(--chocolate);
}

.filter-btn.active {
  background: white;
  color: var(--chocolate);
  box-shadow: 0 4px 12px rgba(61, 43, 31, 0.05);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  align-items: start;
}

.product-card {
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(61, 43, 31, 0.04);
  border: 1px solid rgba(212, 197, 169, 0.2);
  height: 100%;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.08);
}

.product-card:nth-child(5) {
  transition-delay: 0.08s;
}

.product-card:nth-child(6) {
  transition-delay: 0.16s;
}

.product-card:nth-child(7) {
  transition-delay: 0.24s;
}

.product-card:nth-child(8) {
  transition-delay: 0.32s;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: 12px 12px 0 0;
}

.product-image-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-image-bg {
  transform: scale(1.04);
}

.product-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 5;
}

.product-card:hover .quick-view-overlay {
  opacity: 1;
}

.quick-view-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover .quick-view-img {
  transform: scale(1);
}

.product-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.wishlist-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--taupe);
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
}

.product-card:hover .wishlist-btn {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-btn:hover {
  color: #a04040;
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: #a04040;
  opacity: 1;
  transform: translateY(0);
}

.tag {
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.tag-vegan {
  background: rgba(245, 240, 232, 0.92);
  color: var(--mocha);
  border: 1px solid var(--gold-light);
}

.tag-limited {
  background: var(--chocolate);
  color: var(--gold-light);
}

.tag-derm {
  background: rgba(245, 240, 232, 0.92);
  color: var(--taupe);
  border: 1px solid rgba(158, 138, 118, 0.3);
}

.tag-new {
  background: var(--gold);
  color: var(--charcoal);
}

.tag-best {
  background: var(--mocha);
  color: var(--ivory);
}

.product-info {
  padding: 16px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--mocha);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 13px;
  color: var(--taupe);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(212, 197, 169, 0.2);
  padding-top: 20px;
}

.product-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--chocolate);
  font-weight: 400;
}

.product-card:nth-child(2) {
  transition-delay: 0.1s;
}

.product-card:nth-child(3) {
  transition-delay: 0.2s;
}

.product-card:nth-child(4) {
  transition-delay: 0.3s;
}

.add-to-bag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chocolate);
  text-decoration: none;
  background: var(--ivory);
  border: 1px solid var(--warm-sand);
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  transition: all 0.3s ease;
}

.add-to-bag:hover {
  background: var(--chocolate);
  color: var(--ivory);
  border-color: var(--chocolate);
}

/* ── PRODUCT SVG VISUAL STYLES ── */
.prod-bg-1 {
  background: linear-gradient(150deg, #e8ddd0 0%, #d4c5a9 100%);
}

.prod-bg-2 {
  background: linear-gradient(150deg, #ddd5c5 0%, #c9bba5 100%);
}

.prod-bg-3 {
  background: linear-gradient(150deg, #e2d8ce 0%, #cfc1ae 100%);
}

.prod-bg-4 {
  background: linear-gradient(150deg, #d8cfc4 0%, #c4b49e 100%);
}

.prod-bg-5 {
  background: linear-gradient(150deg, #e5dbd3 0%, #cab8a8 100%);
}

.prod-bg-6 {
  background: linear-gradient(150deg, #dbd2c8 0%, #c2b0a0 100%);
}

.prod-bg-7 {
  background: linear-gradient(150deg, #e0d6cb 0%, #ccbdad 100%);
}

.prod-bg-8 {
  background: linear-gradient(150deg, #d5ccbf 0%, #bfaf9f 100%);
}

/* ── BRAND STORY FULL WIDTH ── */
.brand-story-full {
  padding: 140px 0;
  background: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.story-full-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.story-middle-visual {
  position: relative;
  margin: 60px 0;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(61, 43, 31, 0.1);
}

.story-wide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.story-middle-visual:hover .story-wide-img {
  transform: scale(1.05);
}

.story-badge-floating {
  position: absolute;
  top: 30px;
  right: 30px;
  background: white;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-text-center {
  max-width: 720px;
  margin: 0 auto;
}

.story-text-center .story-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 48px;
  max-width: unset;
}

.story-text-center .story-values {
  justify-content: center;
}

.story-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
}

.story-heading em {
  display: inline;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 80px;
  background: var(--ivory);
}

.testimonials-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonials-scroll:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 340px;
  background: var(--cream);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 24px;
  left: 28px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  margin-top: 16px;
}

.star {
  color: var(--gold);
  font-size: 12px;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--chocolate);
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--chocolate);
  font-style: italic;
  position: relative;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.author-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--chocolate);
  text-transform: uppercase;
}

.author-detail {
  font-size: 11px;
  color: var(--taupe);
  margin-top: 2px;
}

.verified-badge {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 4px 8px;
  border-radius: 20px;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--chocolate);
  padding: 100px 80px;
  text-align: center;
}

.newsletter-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1.2;
}

.newsletter-title em {
  font-style: italic;
}

.newsletter-sub {
  font-size: 13px;
  color: var(--taupe);
  margin-bottom: 48px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-right: none;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  border-radius: 40px 0 0 40px;
}

.newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.newsletter-btn {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--chocolate);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 0 40px 40px 0;
  transition: background 0.3s;
}

.newsletter-btn:hover {
  background: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 60px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--taupe);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  font-family: var(--serif);
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--taupe);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 197, 169, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 11px;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-message {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--taupe);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 197, 169, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 37, 32, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--ivory);
  z-index: 600;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(42, 37, 32, 0.15);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--warm-sand);
}

.cart-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--chocolate);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mocha);
  transition: color 0.3s;
  padding: 4px;
}

.cart-close:hover {
  color: var(--chocolate);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--warm-sand) transparent;
}

.cart-items::-webkit-scrollbar {
  width: 4px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--warm-sand);
  border-radius: 4px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--taupe);
}

.cart-empty-icon {
  font-size: 48px;
  opacity: 0.3;
}

.cart-empty p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.cart-empty small {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 197, 169, 0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cart-item-visual {
  width: 72px;
  height: 90px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chocolate);
  font-weight: 300;
  margin-bottom: 4px;
}

.cart-item-desc {
  font-size: 11px;
  color: var(--taupe);
  margin-bottom: 12px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--chocolate);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--warm-sand);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  color: var(--mocha);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.qty-btn:hover {
  background: var(--chocolate);
  color: var(--ivory);
  border-color: var(--chocolate);
}

.qty-num {
  font-size: 13px;
  color: var(--chocolate);
  min-width: 16px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--taupe);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-top: 8px;
  font-family: var(--sans);
}

.remove-btn:hover {
  color: #a04040;
}

.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--warm-sand);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-subtotal-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

.cart-subtotal-price {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--chocolate);
}

.cart-note {
  font-size: 11px;
  color: var(--taupe);
  margin-bottom: 24px;
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--chocolate);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 40px;
  transition: all 0.35s;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover {
  background: var(--mocha);
}

.cart-continue-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--mocha);
  border: 1px solid var(--warm-sand);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 40px;
  transition: all 0.3s;
}

.cart-continue-btn:hover {
  border-color: var(--chocolate);
  color: var(--chocolate);
}

/* ── PAGE SECTION PANELS ── */
.page-panel {
  display: none;
  padding: 160px 80px 120px;
}

.page-panel.active {
  display: block;
}

/* ── NEW ARRIVALS / BEST SELLERS ── */
#new-arrivals,
#best-sellers {
  background: var(--cream);
}

/* ── ABOUT SECTION ── */
#about-section {
  background: var(--ivory);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-visual {
  height: 500px;
  background: var(--chocolate);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about-text .story-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.about-value-card {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: 4px;
  text-align: center;
}

.about-value-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-value-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--chocolate);
  margin-bottom: 10px;
  font-style: italic;
}

.about-value-text {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.7;
}

/* ── REVIEWS SECTION ── */
#reviews-section {
  background: var(--ivory);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 20px;
  left: 24px;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  margin-top: 14px;
  color: var(--gold);
  font-size: 11px;
}

.review-text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--chocolate);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--chocolate);
  font-style: italic;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.review-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chocolate);
  font-weight: 400;
}

.review-meta {
  font-size: 10px;
  color: var(--taupe);
  margin-top: 2px;
}

.review-verified {
  margin-left: auto;
  font-size: 9px;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--chocolate);
  color: var(--ivory);
  padding: 14px 28px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 32px rgba(42, 37, 32, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 700;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── PRODUCT DETAIL MODAL ── */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 37, 32, 0.5);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.product-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  background: var(--ivory);
  width: 760px;
  max-width: 94vw;
  max-height: 90vh;
  border-radius: 8px;
  z-index: 900;
  overflow: auto;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
  opacity: 0;
}

.product-modal-overlay.open .product-modal {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-visual {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  position: relative;
}

.modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cart-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.modal-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}

.modal-name {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--chocolate);
  font-weight: 300;
  margin-bottom: 8px;
}

.modal-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--mocha);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.modal-add-btn {
  padding: 16px;
  background: var(--chocolate);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 40px;
  transition: background 0.3s;
  margin-top: auto;
}

.modal-add-btn:hover {
  background: var(--mocha);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mocha);
  font-size: 22px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--chocolate);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-right-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 60px 32px 40px;
  }

  .hero-right {
    height: 55vw;
    position: relative;
  }

  .products {
    padding: 80px 24px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brand-story {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding: 60px 32px;
  }

  .testimonials {
    padding: 80px 24px;
  }

  .newsletter {
    padding: 60px 24px;
  }

  footer {
    padding: 48px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-sidebar {
    width: 100vw;
  }

  .page-panel {
    padding: 120px 24px 80px;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .modal-inner {
    grid-template-columns: 1fr;
  }

  .modal-visual {
    border-radius: 8px 8px 0 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }
}