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

:root {
  --black:   #0d0d0d;
  --white:   #fafafa;
  --ink:     #1a1a2e;
  --brand:   #e63946;
  --brand2:  #f4a261;
  --muted:   #6b7280;
  --surface: #f8f9fa;
  --border:  #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Announcement bar ───────────────────────────────────────────────── */
.announcement-bar {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  position: relative;
  z-index: 200;
}

/* ── Header / Nav ───────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .9rem 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}
.logo span { color: var(--ink); }
.main-nav { display: flex; gap: .15rem; flex: 1; }
.main-nav a {
  padding: .45rem .8rem;
  border-radius: 6px;
  font-size: .88rem; font-weight: 500;
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); background: var(--surface); }
.header-utils { display: flex; align-items: center; gap: .6rem; }
.search-form { display: flex; align-items: center; }
.search-form input {
  padding: .4rem .8rem; border: 1px solid var(--border);
  border-radius: 20px; font-size: .85rem; width: 180px;
  outline: none; transition: border var(--transition);
}
.search-form input:focus { border-color: var(--brand); }
.btn-icon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 1.1rem;
  transition: background var(--transition);
}
.btn-icon:hover { background: var(--surface); }
.cart-badge { position: relative; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--brand); color: #fff;
  font-size: .6rem; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem 1.6rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #c1121f; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,57,70,.35); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }
.btn-full { width: 100%; }
.btn-buy { background: var(--ink); color: #fff; }
.btn-buy:hover { background: #111; }

/* ── Container ──────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Section Headers ────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: .5rem; }
.section-header p  { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.eyebrow {
  display: inline-block; margin-bottom: .6rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  color: var(--brand); text-transform: uppercase;
}

/* ── Product Card ───────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: #fff; border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden; position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-img {
  aspect-ratio: 1/1; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1rem; }
.product-badge {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--brand); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: .2rem .55rem; border-radius: 20px;
}
.product-badge.low  { background: var(--warning); }
.product-badge.new  { background: #6366f1; }
.product-badge.eco  { background: var(--success); }
.product-card-title { font-weight: 600; font-size: .9rem; margin-bottom: .4rem; line-height: 1.3; }
.product-card-rating { display: flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.stars { color: #f59e0b; }
.product-card-price { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.price-now  { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.price-orig { font-size: .85rem; color: var(--muted); text-decoration: line-through; }
.price-save { font-size: .75rem; color: var(--success); font-weight: 600; }
.quick-add  { width: 100%; padding: .6rem; background: var(--ink); color: #fff; border-radius: 8px; font-size: .85rem; font-weight: 600; transition: background var(--transition); }
.quick-add:hover { background: var(--brand); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 60%, #16213e 100%);
  color: #fff;
  padding: 6rem 1.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,57,70,.18) 0%, transparent 60%);
}
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-eyebrow { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--brand2); font-weight: 700; margin-bottom: 1rem; }
.hero h1 { font-family: var(--font-display); font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--brand); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 440px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; aspect-ratio: 4/3;
  font-size: 5rem; color: rgba(255,255,255,.2);
}

/* ── Trust badges ───────────────────────────────────────────────────── */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.2rem 1.5rem; }
.trust-items { max-width: 1280px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--muted); }
.trust-item span:first-child { font-size: 1.2rem; }

/* ── Category grid ──────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.cat-card {
  background: linear-gradient(135deg, var(--ink) 0%, #1a1a2e 100%);
  color: #fff; border-radius: 16px; padding: 2rem 1.5rem;
  text-align: center; transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.cat-card .emoji { font-size: 2.5rem; margin-bottom: .8rem; }
.cat-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.cat-card p  { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── Lookbook ───────────────────────────────────────────────────────── */
.lookbook-hero { background: var(--ink); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.lookbook-hero h1 { font-family: var(--font-display); font-size: 3rem; margin-bottom: .5rem; }
.lookbook-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; }
.lookbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; padding: 2rem 0; }
.lookbook-item {
  position: relative; border-radius: 12px;
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--border);
}
.lookbook-item:nth-child(2n) { aspect-ratio: 1/1; }
.lookbook-item:nth-child(3n) { aspect-ratio: 4/3; }
.lookbook-hotspot {
  position: absolute; inset: 0; background: rgba(0,0,0,.0);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity .3s;
}
.lookbook-item:hover .lookbook-hotspot { opacity: 1; background: rgba(0,0,0,.45); }
.hotspot-card {
  background: #fff; border-radius: 8px; padding: .6rem .8rem;
  display: flex; align-items: center; gap: .6rem;
}
.hotspot-card .h-price { font-weight: 700; font-size: .85rem; color: var(--ink); }
.hotspot-card .h-title { font-size: .78rem; color: var(--muted); }
.hotspot-btn { background: var(--brand); color: #fff; padding: .35rem .7rem; border-radius: 6px; font-size: .75rem; font-weight: 700; }

/* ── Product detail page ────────────────────────────────────────────── */
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 3rem 0; }
.pdp-gallery { position: sticky; top: 90px; }
.pdp-main-img {
  aspect-ratio: 1/1; background: var(--surface); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 6rem; color: var(--border);
  margin-bottom: 1rem; overflow: hidden;
}
.pdp-thumbs { display: flex; gap: .5rem; }
.pdp-thumb {
  width: 64px; height: 64px; border-radius: 8px; border: 2px solid var(--border);
  background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--border); transition: border var(--transition);
}
.pdp-thumb.active { border-color: var(--brand); }
.pdp-info h1 { font-family: var(--font-display); font-size: 1.9rem; line-height: 1.2; margin-bottom: .5rem; }
.pdp-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .88rem; color: var(--muted); }
.pdp-price { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.5rem; }
.pdp-price .now { font-size: 2rem; font-weight: 800; }
.pdp-price .orig { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.pdp-price .save-tag { background: #dcfce7; color: var(--success); font-weight: 700; font-size: .8rem; padding: .2rem .6rem; border-radius: 20px; }
.urgency { display: flex; align-items: center; gap: .4rem; color: var(--brand); font-size: .85rem; font-weight: 600; margin-bottom: 1.2rem; }
.pdp-actions { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pdp-features { margin-bottom: 1.5rem; }
.pdp-features ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.pdp-features li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.pdp-features li { font-size: .9rem; color: var(--muted); }
.pdp-tabs { border-top: 1px solid var(--border); margin-top: 2rem; }
.tab-buttons { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.tab-btn { padding: .8rem 1.2rem; font-size: .88rem; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--transition); }
.tab-btn.active { color: var(--brand); border-bottom-color: var(--brand); }
.tab-panel { padding: 1.5rem 0; display: none; }
.tab-panel.active { display: block; }
.payment-logos { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.payment-logo { padding: .3rem .7rem; border: 1px solid var(--border); border-radius: 6px; font-size: .78rem; font-weight: 700; color: var(--muted); }

/* ── Reviews ────────────────────────────────────────────────────────── */
.review-card { background: var(--surface); border-radius: 12px; padding: 1.2rem; margin-bottom: 1rem; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .4rem; }
.review-author { font-weight: 600; font-size: .9rem; }
.review-date   { font-size: .78rem; color: var(--muted); }
.review-title  { font-weight: 600; font-size: .9rem; margin: .3rem 0; }
.review-body   { font-size: .88rem; color: var(--muted); }

/* ── Cart page ──────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; padding: 3rem 0; }
.cart-empty { text-align: center; padding: 5rem 1.5rem; }
.cart-empty h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: .5rem; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: .6rem 0; border-bottom: 2px solid var(--border); }
.cart-table td { padding: 1rem 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 70px; height: 70px; background: var(--surface); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.cart-item-info { display: flex; gap: 1rem; align-items: center; }
.qty-control { display: flex; align-items: center; gap: .5rem; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 600; transition: background var(--transition); }
.qty-btn:hover { background: var(--surface); }
.qty-val { font-weight: 600; min-width: 24px; text-align: center; }
.order-summary { background: var(--surface); border-radius: 16px; padding: 1.5rem; position: sticky; top: 90px; }
.order-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: .6rem; }
.summary-row.total { font-weight: 700; font-size: 1rem; padding-top: .8rem; border-top: 1px solid var(--border); margin-top: .8rem; }
.free-shipping-bar { background: #fff; border-radius: 8px; padding: .8rem; margin-bottom: 1.2rem; font-size: .82rem; }
.fsb-progress { height: 6px; background: var(--border); border-radius: 3px; margin-top: .4rem; }
.fsb-fill { height: 100%; background: var(--success); border-radius: 3px; }

/* ── Checkout ───────────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; padding: 3rem 0; }
.form-section h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.form-group input, .form-group select {
  padding: .65rem .9rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .9rem; outline: none; transition: border var(--transition);
  background: #fff;
}
.form-group input:focus, .form-group select:focus { border-color: var(--brand); }
.express-checkout { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.express-btn {
  padding: .7rem; border-radius: 8px; font-weight: 700;
  font-size: .88rem; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.express-btn.gpay  { background: #000; color: #fff; border-color: #000; }
.express-btn.appay { background: #000; color: #fff; border-color: #000; }
.divider-text { text-align: center; color: var(--muted); font-size: .82rem; position: relative; margin: 1rem 0; }
.divider-text::before, .divider-text::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--border); }
.divider-text::before { left: 0; } .divider-text::after { right: 0; }

/* ── Thank you ──────────────────────────────────────────────────────── */
.thankyou-hero { background: linear-gradient(135deg, #0d0d0d, #1a1a2e); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.thankyou-hero .check { font-size: 4rem; margin-bottom: 1rem; }
.thankyou-hero h1 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: .5rem; }
.upsell-box { background: #fff; border: 2px solid var(--brand); border-radius: 16px; padding: 2rem; max-width: 600px; margin: 3rem auto; text-align: center; }
.upsell-box .upsell-tag { background: var(--brand); color: #fff; display: inline-block; padding: .25rem .8rem; border-radius: 20px; font-size: .78rem; font-weight: 700; margin-bottom: 1rem; }
.upsell-box h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .5rem; }
.upsell-timer { font-size: 2rem; font-weight: 800; color: var(--brand); margin: .8rem 0; }
.upsell-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.2rem; }

/* ── Utility pages ──────────────────────────────────────────────────── */
.page-hero { background: var(--ink); color: #fff; padding: 4rem 1.5rem; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.65); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; padding: 1.1rem 0; font-weight: 600; cursor: pointer; font-size: .95rem; }
.faq-q .icon { font-size: 1.2rem; transition: transform .2s; color: var(--muted); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { font-size: .9rem; color: var(--muted); padding-bottom: 1rem; display: none; }
.faq-item.open .faq-a { display: block; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.ambassador-hero { background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.ambassador-hero h1 { font-family: var(--font-display); font-size: 3rem; margin-bottom: .5rem; }
.perks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.perk-card { background: var(--surface); border-radius: 14px; padding: 1.5rem; text-align: center; }
.perk-card .icon { font-size: 2rem; margin-bottom: .8rem; }
.perk-card h3 { font-weight: 700; margin-bottom: .3rem; }
.perk-card p  { font-size: .85rem; color: var(--muted); }
.track-box { max-width: 480px; margin: 0 auto; background: var(--surface); border-radius: 16px; padding: 2rem; }
.track-result { margin-top: 1.5rem; }
.track-step { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.track-step .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--border); flex-shrink: 0; margin-top: 3px; }
.track-step.done .dot { background: var(--success); }
.track-step.current .dot { background: var(--brand); box-shadow: 0 0 0 4px rgba(230,57,70,.2); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: .8rem; font-size: 1.4rem; }
.footer-brand p { font-size: .85rem; line-height: 1.6; margin-bottom: 1.2rem; }
.newsletter-form { display: flex; gap: .4rem; }
.newsletter-form input { flex: 1; padding: .6rem .9rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07); color: #fff; font-size: .85rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button { background: var(--brand); color: #fff; padding: .6rem 1rem; border-radius: 8px; font-size: .82rem; font-weight: 700; }
.footer-col h4 { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .85rem; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: .5rem; margin-top: 1rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: background var(--transition); }
.social-btn:hover { background: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a:hover { color: #fff; }

/* ── Toast / Slide-out cart overlay ────────────────────────────────── */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--ink); color: #fff;
  padding: .8rem 1.2rem; border-radius: 10px;
  font-size: .88rem; font-weight: 600;
  transform: translateY(80px); opacity: 0;
  transition: all .3s; z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 380px; background: #fff; z-index: 500;
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
  transform: translateX(100%); transition: transform .3s;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 499; display: none; }
.drawer-overlay.show { display: block; }
.drawer-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.drawer-header h3 { font-size: 1.1rem; font-weight: 700; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; }
.drawer-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pdp-layout { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Animations ─────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }

/* ══════════════════════════════════════════════════════════
   NEW ADDITIONS — Wishlist, Search, Login, Mobile Nav,
   Coupon, Hamburger, product card enhancements
   ══════════════════════════════════════════════════════════ */

/* ── Wishlist button on product cards ──────────────────── */
.product-card { position: relative; }
.wishlist-btn {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 1.5px solid var(--border);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; color: var(--muted);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.wishlist-btn:hover, .wishlist-btn.wished { color: var(--brand); border-color: var(--brand); background: #fff; }
.wishlist-btn.wished { background: #fff1f2; }

/* Wishlist count badge */
.wishlist-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--brand); color: #fff;
  font-size: .65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.header-utils .btn-icon { position: relative; }

/* ── Mobile hamburger ───────────────────────────────────── */
.hamburger { display: none; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .search-form { display: none; }
}

/* ── Mobile nav drawer ──────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: .5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .85rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--surface); color: var(--brand); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── Search page ────────────────────────────────────────── */
.search-bar-big { display: flex; gap: .6rem; }
.search-bar-big input {
  flex: 1; padding: .85rem 1.1rem;
  border: 2px solid var(--border); border-radius: 12px;
  font-size: 1rem; outline: none;
  transition: border-color .2s;
}
.search-bar-big input:focus { border-color: var(--brand); }

/* ── Auth / Login page ──────────────────────────────────── */
.auth-card {
  max-width: 480px; margin: 0 auto;
  background: var(--surface); border-radius: 20px;
  padding: 2.5rem 2rem; box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.auth-tabs { display: flex; gap: 0; margin-bottom: 2rem; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border); }
.auth-tab {
  flex: 1; padding: .75rem; font-size: .92rem; font-weight: 600;
  background: transparent; border: none; cursor: pointer;
  color: var(--muted); transition: all .2s;
}
.auth-tab.active { background: var(--brand); color: #fff; }
.auth-title { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: .3rem; }
.auth-sub { color: var(--muted); font-size: .88rem; margin-bottom: 1.5rem; }
.auth-divider { position: relative; text-align: center; margin: 1.5rem 0; }
.auth-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.auth-divider span { background: var(--surface); padding: 0 .8rem; position: relative; color: var(--muted); font-size: .83rem; }

/* ── Drawer coupon area ─────────────────────────────────── */
.drawer-coupon { padding: .8rem 1.5rem; border-top: 1px solid var(--border); background: var(--surface); }

/* ── Page: wishlist empty state ─────────────────────────── */
.page-wishlist .product-grid { min-height: 200px; }

/* ── Hot badge ──────────────────────────────────────────── */
.product-badge.hot { background: #ff6b35; color: #fff; }

/* ── Improved free-shipping bar ─────────────────────────── */
.free-shipping-bar { margin-bottom: 1rem; }
.free-shipping-bar span { font-size: .78rem; color: var(--muted); display: block; margin-bottom: .4rem; }
.fsb-progress { background: var(--border); border-radius: 99px; height: 5px; overflow: hidden; }
.fsb-fill { background: var(--success); height: 100%; border-radius: 99px; transition: width .4s ease; }

/* ── Lookbook improved hotspot ──────────────────────────── */
.lookbook-hotspot { display: none; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); z-index: 10; margin-bottom: .5rem; min-width: 200px; }
.lookbook-item:hover .lookbook-hotspot { display: block; }

/* ── Cart: quantity +/- buttons ─────────────────────────── */
.qty-btn {
  width: 28px; height: 28px; border-radius: 6px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all .15s;
}
.qty-btn:hover { border-color: var(--brand); color: var(--brand); }

/* ── btn-ghost ───────────────────────────────────────────── */
.btn-ghost {
  background: transparent; border: none;
  color: var(--muted); cursor: pointer;
  font-size: .85rem; padding: .4rem .8rem;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--brand); }

/* ── Responsive fixes ────────────────────────────────────── */
@media (max-width: 480px) {
  .auth-card { padding: 1.5rem 1rem; border-radius: 12px; }
  .cart-drawer { width: 100%; }
  .section { padding: 3rem 1rem; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════════════════════
   COLLAGE HERO — playful scrapbook landing page
   ══════════════════════════════════════════════════════════ */

.collage-hero {
  position: relative;
  min-height: 92vh;
  background: #fef9f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Colour blobs ── */
.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.blob-purple {
  width: 340px; height: 260px;
  background: #7b2d8b;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  top: 4%; left: 2%;
  transform: rotate(-12deg);
}
.blob-green {
  width: 300px; height: 220px;
  background: #3bb54a;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  top: 30%; right: 3%;
  transform: rotate(8deg);
}
.blob-teal {
  width: 260px; height: 190px;
  background: #00b4d8;
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  bottom: 8%; left: 15%;
  transform: rotate(-5deg);
}
.blob-orange {
  width: 90px; height: 90px;
  background: #f4a261;
  border-radius: 50%;
  top: 60%; left: 3%;
}
.blob-yellow {
  width: 110px; height: 110px;
  background: #f9c74f;
  border-radius: 50%;
  bottom: 0; right: 28%;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); /* half circle */
}

/* ── Deco asterisks ── */
.deco-star {
  position: absolute;
  z-index: 1;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Deco SVG curve ── */
.deco-curve {
  position: absolute;
  width: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* ── Floating product cards ── */
.float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 1rem .9rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  min-width: 110px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.float-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.float-emoji { font-size: 2.4rem; line-height: 1; margin-bottom: .4rem; }
.float-label { font-size: .7rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: .3rem; }
.float-price { font-size: .78rem; font-weight: 800; color: var(--brand); }

/* Card positions */
.fc1 { top: 7%;  left: 5%;  transform: rotate(-4deg); }
.fc2 { top: 5%;  right: 12%; transform: rotate(5deg); }
.fc3 { bottom: 24%; left: 7%; transform: rotate(3deg); }
.fc4 { bottom: 8%;  right: 5%; transform: rotate(-6deg); }
.fc5 { top: 48%; left: 1%;  transform: rotate(2deg); }

/* ── Centre hero text ── */
.collage-center {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 560px;
  padding: 2rem;
}
.hero-eyebrow {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.collage-center h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.hero-highlight {
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--brand2);
  border-radius: 2px;
}
.hero-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn-out {
  border-color: var(--ink);
  color: var(--ink);
}
.hero-btn-out:hover { background: var(--ink); color: #fff; }

/* ── Mid-page collage banner ── */
.mid-collage {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.mid-blob {
  position: absolute;
  border-radius: 50%;
}
.mid-blob-red {
  width: 320px; height: 260px;
  background: var(--brand);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  top: -60px; left: -60px;
  opacity: .25;
}
.mid-blob-green {
  width: 260px; height: 220px;
  background: #3bb54a;
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  bottom: -50px; right: -40px;
  opacity: .22;
}
.mid-collage-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.mid-float {
  background: rgba(255,255,255,.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  aspect-ratio: 1;
  backdrop-filter: blur(4px);
  transition: transform .3s;
}
.mid-float:hover { transform: scale(1.06) rotate(-2deg); }
.mid-collage-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: .5rem 0 .8rem;
}
.mid-collage-text p { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.6; }

/* ── Responsive collage ── */
@media (max-width: 900px) {
  .fc1, .fc2, .fc3, .fc4, .fc5 { display: none; }
  .blob-purple, .blob-green, .blob-teal { width: 180px; height: 140px; }
  .collage-hero { min-height: 70vh; }
  .mid-collage-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .mid-float.mf3 { display: none; }
}
@media (max-width: 600px) {
  .blob { opacity: .6; }
  .mid-collage-inner { grid-template-columns: 1fr 1fr; }
  .mid-float { padding: 1rem; }
  .mid-collage-text { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════════
   LOOKBOOK v2 — Enhanced
════════════════════════════════════════════════════════ */
.lb-filter-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: .9rem 1.5rem; position: sticky; top: 56px; z-index: 80; }
.lb-filters { display: flex; gap: .6rem; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; }
.lb-filter-btn { padding: .4rem 1.1rem; border-radius: 20px; border: 1.5px solid var(--border); background: #fff; font-size: .83rem; font-weight: 600; cursor: pointer; transition: all .2s; color: var(--ink); }
.lb-filter-btn:hover, .lb-filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Editorial strip */
.lb-editorial { background: var(--ink); color: #fff; padding: 4rem 1.5rem; }
.lb-editorial-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.lb-ed-text h2 { font-family: var(--font-display); font-size: 2.2rem; line-height: 1.2; margin: .8rem 0 1rem; }
.lb-ed-text p  { color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 1.5rem; }
.lb-ed-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lb-ed-float { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 1.5rem; text-align: center; transition: transform .2s; }
.lb-ed-float:hover { transform: translateY(-4px); }
.lb-ed-float span { font-size: 2.5rem; display: block; margin-bottom: .5rem; }
.lb-ed-float p { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.75); margin: 0; }
.ef1 { animation: floatA 3s ease-in-out infinite; }
.ef2 { animation: floatA 3s ease-in-out infinite .5s; }
.ef3 { animation: floatA 3s ease-in-out infinite 1s; }
.ef4 { animation: floatA 3s ease-in-out infinite 1.5s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Mosaic grid */
.lb-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: .8rem; padding: 1rem 0; }
.lb-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.lb-item:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.lb-item-tall { grid-row: span 2; }
.lb-item-wide { grid-column: span 2; }
.lb-item-sq   { grid-column: span 1; grid-row: span 1; }

/* Colour backgrounds */
.lb-bg-warm  { background: linear-gradient(135deg,#fff5f0,#fde8d8); }
.lb-bg-cool  { background: linear-gradient(135deg,#eef2ff,#dbeafe); }
.lb-bg-sage  { background: linear-gradient(135deg,#f0fdf4,#dcfce7); }
.lb-bg-blush { background: linear-gradient(135deg,#fdf2f8,#fce7f3); }
.lb-bg-slate { background: linear-gradient(135deg,#f8fafc,#e2e8f0); }
.lb-bg-amber { background: linear-gradient(135deg,#fffbeb,#fef3c7); }
.lb-bg-sky   { background: linear-gradient(135deg,#f0f9ff,#e0f2fe); }
.lb-bg-rose  { background: linear-gradient(135deg,#fff1f2,#ffe4e6); }

/* Item visual (no-image state) */
.lb-item-visual { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; }
.lb-emoji { font-size: 3.5rem; }
.lb-item-tall .lb-emoji { font-size: 4.5rem; }
.lb-item-wide .lb-emoji { font-size: 4rem; }
.lb-mood-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); background: rgba(255,255,255,.7); padding: .25rem .7rem; border-radius: 20px; }
.lb-badge { position: absolute; top: .8rem; left: .8rem; background: var(--brand); color: #fff; font-size: .7rem; font-weight: 700; padding: .2rem .6rem; border-radius: 20px; }

/* Overlay on hover */
.lb-overlay { position: absolute; inset: 0; background: rgba(26,26,46,.82); opacity: 0; transition: opacity .28s; display: flex; align-items: flex-end; border-radius: 16px; }
.lb-item:hover .lb-overlay { opacity: 1; }
.lb-overlay-inner { padding: 1.2rem; width: 100%; }
.lb-cat-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand2); margin-bottom: .3rem; }
.lb-title { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: .5rem; line-height: 1.3; }
.lb-item-wide .lb-title { font-size: 1.2rem; }
.lb-price-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.lb-price { font-size: 1.1rem; font-weight: 800; color: #fff; }
.lb-orig  { font-size: .8rem; color: rgba(255,255,255,.5); text-decoration: line-through; }
.lb-save  { font-size: .72rem; background: var(--success); color: #fff; font-weight: 700; padding: .15rem .5rem; border-radius: 20px; }
.lb-actions { display: flex; gap: .5rem; }
.lb-btn-shop { flex: 1; text-align: center; padding: .5rem .8rem; background: var(--brand); color: #fff; border-radius: 8px; font-size: .8rem; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.lb-btn-shop:hover { opacity: .85; }
.lb-btn-cart { padding: .5rem .8rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 8px; font-size: .8rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.lb-btn-cart:hover { background: rgba(255,255,255,.28); }

/* ═══════════════════════════════════════════════════════
   CATEGORIES DROPDOWN NAV
════════════════════════════════════════════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .75em; opacity: .7; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + .5rem); left: 0; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.12); min-width: 200px; padding: .5rem 0; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: flex; align-items: center; gap: .6rem; padding: .55rem 1.1rem; font-size: .88rem; font-weight: 500; color: var(--ink); text-decoration: none; transition: background .15s; }
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--brand); }
.nav-dropdown-menu a span { font-size: 1.1rem; }

/* Lookbook responsive */
@media (max-width: 900px) {
  .lb-mosaic { grid-template-columns: repeat(2, 1fr); }
  .lb-editorial-inner { grid-template-columns: 1fr; }
  .lb-item-wide { grid-column: span 1; }
}
@media (max-width: 520px) {
  .lb-mosaic { grid-template-columns: 1fr; }
  .lb-item-tall, .lb-item-wide { grid-column: span 1; grid-row: span 1; }
  .lb-mosaic { grid-auto-rows: 200px; }
}

/* ═══════════════════════════════════════════════════════
   PDP VARIANTS & QTY
════════════════════════════════════════════════════════ */
.pdp-variants { margin-bottom: 1.2rem; }
.variant-label { font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
.variant-label strong { color: var(--ink); }
.variant-colors { display: flex; gap: .5rem; flex-wrap: wrap; }
.color-swatch { width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--border); cursor: pointer; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: transform .15s, border-color .15s; background: var(--surface); color: var(--ink); }
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(230,57,70,.2); }
.variant-sizes { display: flex; gap: .5rem; flex-wrap: wrap; }
.size-btn { padding: .38rem .9rem; border-radius: 8px; border: 1.5px solid var(--border); background: #fff; font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .15s; color: var(--ink); }
.size-btn:hover { border-color: var(--brand); color: var(--brand); }
.size-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.pdp-qty-row { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.2rem; }
.qty-stepper { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; }
.qty-stepper button { width: 36px; height: 36px; background: var(--surface); border: none; font-size: 1.2rem; cursor: pointer; font-weight: 700; transition: background .15s; color: var(--ink); }
.qty-stepper button:hover { background: #e5e7eb; }
.qty-stepper span { min-width: 36px; text-align: center; font-weight: 700; font-size: .95rem; padding: 0 .5rem; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE ENHANCED
════════════════════════════════════════════════════════ */
.about-hero-full { background: linear-gradient(135deg, var(--ink) 0%, #2d1b69 100%); color: #fff; padding: 6rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.about-hero-full h1 { font-family: var(--font-display); font-size: 3.2rem; margin-bottom: 1rem; }
.about-hero-full p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.about-value-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 2rem 1.5rem; text-align: center; }
.about-value-card .icon { font-size: 2.5rem; margin-bottom: .8rem; }
.about-value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.about-value-card p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0; }
.about-team-section { background: var(--surface); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.team-card { background: #fff; border-radius: 16px; padding: 1.5rem; text-align: center; box-shadow: var(--shadow); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto .8rem; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; background: var(--surface); }
.team-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.team-card p  { font-size: .8rem; color: var(--muted); margin: 0; }
.about-timeline { position: relative; padding: 2rem 0; }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; flex-shrink: 0; }
.timeline-content h4 { font-weight: 700; margin-bottom: .3rem; }
.timeline-content p  { font-size: .88rem; color: var(--muted); line-height: 1.7; margin: 0; }

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