/** Shopify CDN: Minification failed

Line 562:0 Unexpected "}"

**/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&family=Great+Vibes&display=swap');
:root {
  --cream: #FDF6EE;
  --bone: #EDE9E3;
  --ink: #1A1814;
  --warm-grey: #9A948C;
  --accent: #C8A882;
  --white: #FDFCFB;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 60px;
  background: rgba(247,244,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
  color: #1A1814;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  opacity: 0.7; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cart {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  opacity: 0.7; transition: opacity 0.2s;
}
.nav-cart:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 60px 80px 80px;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 13px; line-height: 1.9; color: var(--warm-grey);
  max-width: 380px; margin-bottom: 52px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--ink);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
}
.hero-cta-line {
  width: 48px; height: 1px; background: var(--ink);
  transition: width 0.4s ease;
}
.hero-cta:hover .hero-cta-line { width: 80px; }
.hero-image {
  background: var(--bone);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 340px; height: 480px;
  background: linear-gradient(160deg, #E8E2D9 0%, #D4CAB8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  border: 1px solid rgba(200,168,130,0.3);
}
.hero-img-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--warm-grey); text-transform: uppercase;
}
.lash-svg { width: 120px; opacity: 0.35; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--ink); color: var(--cream);
  overflow: hidden; padding: 18px 0;
}
.marquee-track {
  display: flex; animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 0 48px; flex-shrink: 0;
  display: flex; align-items: center; gap: 48px;
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION SHARED ── */
section { padding: 120px 80px; }
.section-label {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 20px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 300;
  line-height: 1.1;
}

/* ── PRODUCTS ── */
.products { background: var(--white); }
.products-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 64px;
}
.products-link {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--warm-grey);
  display: flex; align-items: center; gap: 12px;
  transition: color 0.2s;
}
.products-link:hover { color: var(--ink); }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.collection-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { cursor: pointer; }
.product-img-link { text-decoration: none; }
.product-img {
  aspect-ratio: 3/4; background: var(--bone);
  margin-bottom: 20px; overflow: hidden;
}
.product-img-fill {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s ease;
}
.product-img-fill img { width: 100%; height: 100%; object-fit: cover; }
.product-card:hover .product-img-fill { transform: scale(1.03); }
.product-card:nth-child(1) .product-img { background: #E8E0D5; }
.product-card:nth-child(2) .product-img { background: #DDD7CD; }
.product-card:nth-child(3) .product-img { background: #E4DED5; }
.product-tag {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 8px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; margin-bottom: 6px;
  text-decoration: none; color: var(--ink);
}
.product-price { font-size: 13px; color: var(--warm-grey); }
.product-add {
  margin-top: 16px; width: 100%; padding: 14px;
  background: transparent; border: 1px solid var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s, color 0.25s;
  color: var(--ink);
}
.product-add:hover { background: var(--ink); color: var(--cream); }

/* ── PHILOSOPHY ── */
.philosophy {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.philosophy-visual {
  background: var(--bone); height: 520px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.philosophy-visual::before {
  content: '';
  position: absolute; top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--accent);
  pointer-events: none;
}
.philosophy-visual span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; opacity: 0.08; user-select: none; line-height: 1;
}
.philosophy-img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-body { max-width: 480px; }
.philosophy-body p {
  font-size: 14px; line-height: 2; color: var(--warm-grey); margin-top: 28px;
}
.philosophy-stats {
  display: flex; gap: 48px; margin-top: 52px;
  padding-top: 40px; border-top: 1px solid var(--bone);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-grey); margin-top: 4px;
}

/* ── HOW IT WORKS ── */
.how { background: var(--ink); color: var(--cream); }
.how .section-label { color: var(--accent); }
.how .section-title { color: var(--cream); margin-bottom: 64px; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300;
  color: rgba(255,255,255,0.1); margin-bottom: 20px;
}
.step-title {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px;
}
.step-desc { font-size: 13px; line-height: 1.9; color: rgba(247,244,240,0.55); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials .section-title { margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { padding: 40px; background: var(--cream); border: 1px solid var(--bone); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { width: 12px; height: 12px; fill: var(--accent); }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; line-height: 1.7;
  margin-bottom: 28px; color: var(--ink);
}
.testimonial-name {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--warm-grey);
}

/* ── CTA BANNER ── */
.cta-banner { background: var(--accent); padding: 100px 80px; text-align: center; }
.cta-banner .section-label { color: rgba(26,24,20,0.6); }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px); font-weight: 300;
  line-height: 1.1; color: var(--ink);
  margin: 20px auto 40px; max-width: 700px;
}
.cta-btn {
  display: inline-block; padding: 18px 52px;
  background: var(--ink); color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s; border: none;
}
.cta-btn:hover { background: #2e2b26; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: 80px; display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; letter-spacing: 0.18em; margin-bottom: 20px;
}
.footer-tagline {
  font-size: 12px; line-height: 1.9;
  color: rgba(247,244,240,0.45); max-width: 260px;
}
.footer-col h4 {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 12px; color: rgba(247,244,240,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  background: var(--ink); padding: 24px 80px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.15em;
  color: rgba(247,244,240,0.3);
}
.footer-bottom a { color: rgba(247,244,240,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(247,244,240,0.7); }

/* ── PRODUCT PAGE ── */
.product-page {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding: 120px 80px 80px;
}
.product-page-images { display: flex; flex-direction: column; gap: 16px; }
.product-page-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  opacity: 0.7; cursor: pointer; transition: opacity 0.2s;
}
.product-page-img.active { opacity: 1; }
.product-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; line-height: 1.1;
  margin-bottom: 16px;
}
.product-page-price { font-size: 18px; color: var(--warm-grey); margin-bottom: 24px; }
.product-page-desc { font-size: 14px; line-height: 1.9; color: var(--warm-grey); margin-bottom: 36px; }
.variant-select {
  width: 100%; padding: 14px; border: 1px solid var(--bone);
  background: transparent; font-family: 'Jost', sans-serif;
  font-size: 13px; color: var(--ink); cursor: pointer; margin-bottom: 24px;
}
.product-page-add {
  width: 100%; padding: 18px;
  background: var(--ink); color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.25s; margin-bottom: 32px;
}
.product-page-add:hover { background: #2e2b26; }
.feature-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.1em; color: var(--warm-grey);
  margin-bottom: 14px;
}
.feature-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ── CART PAGE ── */
.cart-page { padding: 140px 80px 80px; }
.cart-form { display: grid; grid-template-columns: 1fr 360px; gap: 80px; margin-top: 48px; }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto auto;
  gap: 24px; align-items: center;
  padding-bottom: 32px; border-bottom: 1px solid var(--bone); margin-bottom: 32px;
}
.cart-item-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; }
.cart-item-price { font-size: 14px; color: var(--warm-grey); margin-top: 8px; }
.qty-input {
  width: 60px; padding: 10px; text-align: center;
  border: 1px solid var(--bone); background: transparent;
  font-family: 'Jost', sans-serif; font-size: 14px; color: var(--ink);
}
.cart-remove {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--warm-grey); text-decoration: none;
}
.cart-summary {
  padding: 40px; background: var(--white); border: 1px solid var(--bone);
  height: fit-content; display: flex; flex-direction: column; gap: 16px;
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-size: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--bone);
}
.cart-shipping-note { font-size: 12px; color: var(--warm-grey); }
.cart-checkout-btn { width: 100%; margin-top: 8px; }
.cart-empty { text-align: center; padding: 80px 0; display: flex; flex-direction: column; gap: 32px; align-items: center; }

/* ── COLLECTION PAGE ── */
.collection-page { padding: 140px 80px 80px; }
.collection-header { margin-bottom: 64px; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.9s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 20px 28px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 70vw; }
  .hero-text { padding: 60px 28px; }
  section { padding: 80px 28px; }
  .products-grid, .collection-grid { grid-template-columns: 1fr 1fr; }
  .philosophy { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 60px 28px; }
  .footer-bottom { padding: 20px 28px; flex-direction: column; gap: 8px; }
  .cta-banner { padding: 80px 28px; }
  .product-page { grid-template-columns: 1fr; padding: 100px 28px 60px; }
  .cart-form { grid-template-columns: 1fr; }
  .cart-page { padding: 100px 28px 60px; }
  .collection-page { padding: 100px 28px 60px; }
}
@media (max-width: 600px) {
  .products-grid, .collection-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}
  .nav-logo-img {
  height: 140px;
  width: auto;
}
/* ── FAQ ── */
.faq-page { padding: 140px 80px 80px; max-width: 860px; }
.faq-list { margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--bone); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 28px 0;
  background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  color: var(--ink); text-align: left;
}
.faq-icon { font-size: 24px; color: var(--accent); flex-shrink: 0; margin-left: 24px; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p { font-size: 14px; line-height: 2; color: var(--warm-grey); padding-bottom: 28px; }
.faq-answer ul { padding-left: 0; list-style: none; padding-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.faq-answer ul li { font-size: 14px; line-height: 1.9; color: var(--warm-grey); }
.faq-answer ul li::before { content: '— '; color: var(--accent); }
.page-content { font-size: 14px; line-height: 2; color: var(--warm-grey); }
/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--ink); color: var(--cream);
  padding: 140px 80px; text-align: center;
}
.about-hero .section-label { color: var(--accent); margin-bottom: 24px; }
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); max-width: 800px;
  margin: 0 auto;
}
.about-body {
  padding: 80px;
  max-width: 860px;
}
.about-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300;
  line-height: 1.2; margin: 48px 0 20px;
  color: var(--ink);
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  font-size: 14px; line-height: 2;
  color: var(--warm-grey); margin-bottom: 20px;
}
.about-body strong { color: var(--ink); font-weight: 500; }
/* ── POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26,24,20,0.6);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.4s ease;
}
.popup-overlay.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup {
  background: var(--cream); max-width: 480px; width: 90%;
  padding: 60px 52px; text-align: center; position: relative;
}
.popup-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: var(--warm-grey);
}
.popup-label {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 16px;
}
.popup-sub {
  font-size: 13px; line-height: 1.9; color: var(--warm-grey);
  margin-bottom: 32px;
}
.popup-code {
  display: inline-block; padding: 14px 32px;
  border: 1px solid var(--ink); font-size: 13px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 24px;
}
.popup-dismiss {
  display: block; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--warm-grey);
  cursor: pointer; background: none; border: none;
  font-family: 'Jost', sans-serif;
}
.about-top-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-top-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-top-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--cream) 100%
  );
  pointer-events: none;
}
}
/* ── HAMBURGER & MOBILE MENU ── */
.nav-right {
  display: flex; align-items: center; gap: 24px;
}
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; width: 28px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: all 0.3s ease;
}
.mobile-menu {
  position: fixed; top: 0; right: -100%; z-index: 200;
  width: 75%; max-width: 320px; height: 100vh;
  background: var(--cream); padding: 80px 40px 40px;
  transition: right 0.4s ease;
  display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: var(--warm-grey);
}
.mobile-nav-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 0;
}
.mobile-nav-links li {
  border-bottom: 1px solid var(--bone);
}
.mobile-nav-links a {
  display: block; padding: 20px 0;
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink); transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,24,20,0.5); z-index: 199;
}
.mobile-overlay.open { display: block; }
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-cart { display: none; }
  .hero-text { padding: 100px 28px 60px 28px}
}
/* ── QUICK LINKS ── */
.quick-links {
  background: var(--white);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--bone);
}
.quick-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding: 0 52px;
  opacity: 0.7; transition: opacity 0.2s;
}
.quick-link:hover { opacity: 1; }
.quick-link-icon { color: var(--accent); font-size: 16px; }
.quick-link-divider {
  width: 1px; height: 40px;
  background: var(--bone); flex-shrink: 0;
}

@media (max-width: 900px) {
  .quick-links { flex-direction: column; gap: 0; padding: 40px 28px; }
  .quick-link { padding: 20px 0; width: 100%; border-bottom: 1px solid var(--bone); }
  .quick-link-divider { display: none; }
}
/* ── CONTACT PAGE ── */
.contact-page { padding: 140px 80px 80px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; margin-top: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-info-item { padding-bottom: 40px; border-bottom: 1px solid var(--bone); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.contact-info-text { font-size: 14px; line-height: 1.9; color: var(--warm-grey); }
.contact-form-wrap { display: flex; flex-direction: column; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 16px;
  border: 1px solid var(--bone); background: var(--white);
  font-family: 'Jost', sans-serif; font-size: 13px;
  color: var(--ink); outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; }
.form-submit {
  width: 100%; padding: 18px;
  background: var(--ink); color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.25s;
  margin-top: 8px;
}
.form-submit:hover { background: #2e2b26; }
.form-success {
  padding: 32px; background: var(--white);
  border: 1px solid var(--bone); text-align: center;
}
.form-success p { font-size: 14px; line-height: 1.9; color: var(--warm-grey); }
.form-error {
  padding: 20px; background: #fff0f0;
  border: 1px solid #ffcccc;
}
.form-error p { font-size: 13px; color: #cc0000; }

@media (max-width: 900px) {
  .contact-page { padding: 100px 28px 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}/* ── POLICY PAGES ── */
.policy-page { padding: 140px 80px 80px; }
.policy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px; margin-bottom: 80px;
}
.policy-card {
  padding: 40px; border: 1px solid var(--bone);
  background: var(--white);
}
.policy-card-label {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.policy-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--ink); margin-bottom: 16px;
}
.policy-card-desc {
  font-size: 13px; line-height: 1.9; color: var(--warm-grey);
}
.policy-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; padding-top: 64px;
  border-top: 1px solid var(--bone);
}
.policy-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  margin-bottom: 16px; color: var(--ink);
}
.policy-section p {
  font-size: 14px; line-height: 2; color: var(--warm-grey);
}
.policy-section a {
  color: var(--ink); text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .policy-page { padding: 100px 28px 60px; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-body { grid-template-columns: 1fr; gap: 32px; }
}
/* ── CAROUSEL ── */
.product-img { position: relative; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 20px; }
.carousel-track {
  display: flex; height: 100%; width: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}
.carousel-slide {
  width: 100%; height: 100%;
  flex: 0 0 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.carousel-slide a { display: block; width: 100%; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(253,246,238,0.85); border: none;
  width: 32px; height: 32px; cursor: pointer;
  font-size: 14px; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.carousel-btn:hover { background: var(--cream); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(253,246,238,0.5); cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--cream); }
/* ── PRODUCT PAGE ── */
.product-page {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding: 120px 80px 80px;
}
.product-main-img {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; background: var(--bone);
}
.product-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s ease;
}
.product-thumbnails {
  display: flex; gap: 12px; margin-top: 16px;
}
.product-thumbnail {
  width: 80px; height: 80px; overflow: hidden;
  cursor: pointer; border: 1px solid transparent;
  transition: border-color 0.2s; flex-shrink: 0;
}
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnail.active { border-color: var(--ink); }
.product-thumbnail:hover { border-color: var(--warm-grey); }
.product-page-info { padding-top: 20px; }
.product-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; line-height: 1.1;
  margin-bottom: 16px; margin-top: 8px;
}
.product-page-price {
  font-size: 18px; color: var(--warm-grey); margin-bottom: 28px;
}
.product-page-desc {
  font-size: 14px; line-height: 2; color: var(--warm-grey);
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid var(--bone);
}
.product-variants { margin-bottom: 24px; }
.product-variants label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  display: block; margin-bottom: 10px; color: var(--warm-grey);
}
.variant-select {
  width: 100%; padding: 14px; border: 1px solid var(--bone);
  background: transparent; font-family: 'Jost', sans-serif;
  font-size: 13px; color: var(--ink); cursor: pointer;
  -webkit-appearance: none; margin-bottom: 24px;
}
.product-page-add {
  width: 100%; padding: 18px;
  background: var(--ink); color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.25s;
  margin-bottom: 32px;
}
.product-page-add:hover { background: #2e2b26; }
.product-page-add:disabled { opacity: 0.4; cursor: not-allowed; }
.product-features { display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 900px) {
  .product-page { grid-template-columns: 1fr; padding: 100px 28px 60px; gap: 40px; }
  .product-page-title { font-size: 36px; }
}
.width-note {
  font-size: 11px; color: var(--warm-grey);
  margin-top: 8px; line-height: 1.7;
}
.width-note a { color: var(--ink); }
