
/* ═══════════════════════════════════════════════════════════════
   about.css  —  fully self-contained
   Targets every class and element in about.html.
   Editorial luxury: Cormorant Garamond + DM Sans.
   Tokens match shopall.css / collections.css exactly.
   No dependency on style.css.
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');


/* ─────────────────────────────────────────────
   RESET & TOKENS
───────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink:       #e8407a;
  --purple:     #7c3aed;
  --pink-light: #fdf2f7;
  --pink-soft:  #fce7f3;
  --ink:        #0d0d12;
  --ink-mid:    #3d3d4a;
  --muted:      #8a8a9a;
  --border:     #ebebf0;
  --white:      #ffffff;
  --bg:         #f8f8fc;
  --gradient:   linear-gradient(135deg, #e8407a, #7c3aed);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.1), 0 24px 64px rgba(0,0,0,0.08);
  --radius:     16px;
  --radius-sm:  10px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --nav-h:      64px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }


/* ─────────────────────────────────────────────
   NAVBAR — matches index.html exactly:
   .logo (left) · .nav-links (centre) · .nav-cart-btn (right)
───────────────────────────────────────────── */
.navbar {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: border-color 0.3s, box-shadow 0.3s, height 0.3s;
}

.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  height: 56px;
}

.navbar-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo ── */
.logo { display: flex; align-items: center; }

.logo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}

.logo-btn em { color: var(--pink); font-style: italic; }

.logo img,
.logo-btn img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── Nav links — centred flex row ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover  { color: var(--ink); background: rgba(0,0,0,0.04); }
.nav-link.active { color: var(--pink); font-weight: 600; }

/* ── Cart button ── */
.nav-cart-btn {
  position: relative;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.nav-cart-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-soft);
  transform: translateY(-1px);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border: 2px solid var(--bg);
}

.cart-count[hidden] { display: none; }


/* ─────────────────────────────────────────────
   HERO
   Large centred serif headline on a gradient.
───────────────────────────────────────────── */
.about-hero {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 32px 108px;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
}

.about-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}


/* ─────────────────────────────────────────────
   MISSION
   Two-column: image left, text right.
───────────────────────────────────────────── */
.mission-section {
  padding: 96px 32px;
  background: var(--white);
}

.mission-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.mission-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--pink-light);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2,0,0,1);
}

.mission-image:hover img { transform: scale(1.04); }

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* .badges — eyebrow label */
.badges {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}

.mission-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.mission-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
}


/* ─────────────────────────────────────────────
   CORE VALUES
   Centred heading + four-card grid.
───────────────────────────────────────────── */
.values-section {
  padding: 96px 32px;
  text-align: center;
  background: var(--bg);
}

.values-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.values-section h4 {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 56px;
  font-family: var(--font-sans);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.2,0,0,1),
              box-shadow 0.3s,
              border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,64,122,0.2);
}

.value-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────
   STATS
   Three numbers side by side on gradient.
───────────────────────────────────────────── */
.stats-section {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  padding: 72px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.stat {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 32px;
  position: relative;
}

/* Dividers between stats */
.stat + .stat {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.stat h3 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}


/* ─────────────────────────────────────────────
   FEATURES
   Centred heading + card grid.
   Note: the HTML has an unclosed features-grid
   div so the social-cta section falls inside it.
   This CSS handles both gracefully.
───────────────────────────────────────────── */
.features-section {
  padding: 96px 32px;
  background: var(--white);
  text-align: center;
}

.features-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.2,0,0,1),
              box-shadow 0.3s,
              border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,64,122,0.15);
}

.feature-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────
   SOCIAL CTA
   Centred strip with three pill links.
───────────────────────────────────────────── */
.social-cta {
  padding: 96px 32px;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}

.social-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.social-cta p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto 40px;
}

/* .social-linkss — note the double-s in the HTML */
.social-linkss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-linkss a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, color 0.2s, background 0.2s,
              transform 0.15s, box-shadow 0.15s;
}

.social-linkss a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}



/* ─────────────────────────────────────────────
   CART SIDEBAR
───────────────────────────────────────────── */
.cart-sidebar-backdrop {
  position: fixed; inset: 0;
  background: rgba(13,13,18,0.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-sidebar-backdrop.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw); background: var(--white);
  z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -16px 0 48px rgba(0,0,0,0.12);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.cart-sidebar-header-left { display: flex; align-items: baseline; gap: 8px; }
.cart-sidebar-title {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400;
  color: var(--ink); letter-spacing: -0.01em;
}
.cart-sidebar-count { font-size: 0.78rem; color: var(--muted); font-weight: 400; }
.cart-sidebar-close {
  width: 32px; height: 32px; border: 1.5px solid var(--border);
  background: none; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid); font-family: inherit;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.cart-sidebar-close:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); }

.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-loading { text-align: center; padding: 40px 24px; color: var(--muted); font-size: 0.85rem; font-weight: 300; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty-icon { font-size: 2.5rem; margin-bottom: 16px; opacity: 0.4; }
.cart-empty p { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--ink-mid); margin-bottom: 6px; }
.cart-empty span { font-size: 0.82rem; color: var(--muted); font-weight: 300; }

.cart-line { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-line:last-child { border-bottom: none; }
.cart-line-img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; background: var(--pink-light); border: 1px solid var(--border); }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-title { font-size: 0.88rem; font-weight: 500; color: var(--ink); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-line-variant { font-size: 0.76rem; color: var(--muted); margin-bottom: 6px; font-weight: 300; }
.cart-line-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-line-price { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.cart-line-qty { font-size: 0.74rem; color: var(--muted); background: var(--bg); padding: 2px 8px; border-radius: 999px; border: 1px solid var(--border); }
.cart-line-remove { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.2rem; line-height: 1; padding: 4px; transition: color 0.15s; font-family: inherit; flex-shrink: 0; align-self: flex-start; margin-top: 2px; }
.cart-line-remove:hover { color: #ef4444; }

.cart-sidebar-footer { padding: 20px 24px; border-top: 1px solid var(--border); flex-shrink: 0; background: var(--white); }
.cart-subtotal-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-subtotal-label { font-size: 0.82rem; font-weight: 500; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.cart-subtotal-value { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); letter-spacing: -0.02em; }
.cart-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--ink); color: #fff; border: none;
  border-radius: var(--radius-sm); font-family: var(--font-sans); font-weight: 500;
  font-size: 0.9rem; padding: 15px; text-decoration: none; letter-spacing: 0.03em;
  cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.cart-checkout-btn:hover { background: var(--pink); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,64,122,0.3); }
.cart-checkout-btn svg { transition: transform 0.2s; }
.cart-checkout-btn:hover svg { transform: translateX(3px); }
.cart-continue-btn {
  display: block; width: 100%; background: transparent; color: var(--muted);
  border: 1.5px solid var(--border); font-family: var(--font-sans); font-weight: 500;
  font-size: 0.82rem; padding: 11px; border-radius: var(--radius-sm); cursor: pointer;
  margin-top: 10px; letter-spacing: 0.02em; transition: border-color 0.15s, color 0.15s;
}
.cart-continue-btn:hover { border-color: var(--ink); color: var(--ink); }


/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--ink); margin-top: 120px;
  padding: 72px 32px 32px; color: rgba(255,255,255,0.6);
}
.footer-top {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,0.9); margin-bottom: 16px;
}
.footer-brand .logo img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; opacity: 0.9; }
.footer-brand .logo em { color: var(--pink); font-style: italic; }
.footer-description { font-size: 0.84rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 260px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.social-links a:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.social-links a img { width: 16px; height: 16px; opacity: 0.7; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; display: inline-block; }
.footer-link:hover { color: rgba(255,255,255,0.9); }
.newsletter-form { display: flex; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.newsletter-form input { flex: 1; min-width: 0; background: transparent; border: none; padding: 12px 14px; font-family: var(--font-sans); font-size: 0.82rem; color: rgba(255,255,255,0.8); outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button { background: rgba(255,255,255,0.08); border: none; border-left: 1px solid rgba(255,255,255,0.1); padding: 0 16px; color: rgba(255,255,255,0.65); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; font-family: inherit; }
.newsletter-form button:hover { background: var(--pink); color: #fff; }
.footer-bottom { max-width: 1360px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 6px; flex-wrap: wrap; font-size: 0.76rem; font-weight: 300; color: rgba(255,255,255,0.28); }
.footer-bottom span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.28); }
.footer-bottom img { width: 14px; height: 14px; opacity: 0.55; }


/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .mission-grid  { grid-template-columns: 1fr; gap: 40px; }
  .mission-image { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .navbar-inner    { padding: 0 20px; }
  .nav-links       { display: none; }
  .about-hero      { padding: 72px 20px 80px; }
  .mission-section { padding: 64px 20px; }
  .values-section  { padding: 64px 20px; }
  .features-section { padding: 64px 20px; }
  .social-cta      { padding: 64px 20px; }
  .stats-section   { flex-direction: column; gap: 40px; padding: 56px 20px; }
  .stat + .stat    { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 40px; }
  .site-footer     { padding: 48px 20px 24px; margin-top: 80px; }
  .footer-top      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .values-grid   { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 2.8rem; }
}