/* ============================================================
   KALILI — Happy Animals
   Pet items premium · Hawaii vibe
   ============================================================ */

:root {
  --bg: #FBF7F0;
  --bg-soft: #F4ECDF;
  --paper: #FFFFFF;
  --ink: #1F2A26;
  --ink-dim: #5A6661;
  --ink-mute: #9AA39E;
  --line: #ECE4D2;
  --line-strong: #D4C9B2;
  --coral: #E8775B;
  --coral-dark: #C95A3F;
  --coral-soft: #FCDFD3;
  --lagoon: #3D7A6E;
  --lagoon-dark: #245549;
  --lagoon-soft: #C9DDD7;
  --gold: #C49A3F;
  --maxw: 1280px;
  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; font-size: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 400; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.vh { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* ========== ANNOUNCE ========== */
.announce {
  background: var(--lagoon-dark); color: #fff;
  padding: 9px 16px; text-align: center;
  font-size: 12.5px; font-weight: 500;
}
.announce strong { color: var(--coral-soft); font-weight: 700; }
.announce .sep { opacity: .35; margin: 0 14px; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,240,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-left { display: flex; align-items: center; gap: 32px; }
.logo {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 24px; letter-spacing: -.025em;
  color: var(--lagoon-dark);
  white-space: nowrap;
}
.logo .accent { color: var(--coral); font-style: italic; font-weight: 500; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--lagoon); border-bottom-color: var(--lagoon); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; position: relative;
}
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.7; fill: none; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--coral); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.icon-btn.burger { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .icon-btn.burger { display: flex !important; }
  .nav-row { padding: 14px 18px; }
}

/* ========== DRAWER (mobile menu) ========== */
.drawer-bg {
  position: fixed; inset: 0;
  background: rgba(31,42,38,.5);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(88vw, 360px);
  background: var(--paper);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,.15);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.drawer-head .logo { font-size: 22px; }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.drawer-close:hover { background: var(--line); }
.drawer-close svg { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 2; fill: none; }
.drawer-nav { padding: 12px 0; flex: 1; overflow-y: auto; }
.drawer-nav a {
  display: block; padding: 16px 20px;
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; letter-spacing: -.015em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.drawer-nav a:hover { color: var(--lagoon); background: var(--bg-soft); }
.drawer-foot {
  padding: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.drawer-foot .ctas { display: flex; gap: 8px; }
.drawer-foot .ctas .btn { flex: 1; padding: 12px 16px; font-size: 13px; justify-content: center; }
.drawer-foot .meta {
  display: flex; justify-content: space-between;
  padding-top: 4px; font-size: 12px; color: var(--ink-dim);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-weight: 600; font-size: 14.5px; letter-spacing: -.005em;
  border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--lagoon); color: #fff; }
.btn-primary:hover { background: var(--lagoon-dark); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }
.btn .arr { transition: transform .2s; display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }

/* ========== HERO ========== */
.hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232,119,91,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(61,122,110,.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lagoon-soft); color: var(--lagoon-dark);
  padding: 6px 12px; border-radius: 99px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 18px;
}
.hero-kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lagoon);
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(38px, 5vw, 60px); line-height: 1.05;
  letter-spacing: -.025em; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--coral); }
.hero p.lead {
  font-size: 17px; color: var(--ink-dim); line-height: 1.55;
  max-width: 460px; margin-bottom: 26px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; font-size: 13px; }
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.hero-trust .label { color: var(--ink-dim); }
.hero-trust .label b { color: var(--ink); font-weight: 600; }
.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(252,223,211,.7) 0%, transparent 60%),
    linear-gradient(160deg, var(--coral-soft) 0%, var(--bg-soft) 60%, var(--lagoon-soft) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .bone {
  width: 60%; aspect-ratio: 5/3;
  background: var(--paper);
  border-radius: 50% / 70%;
  position: relative;
  box-shadow: 0 30px 60px rgba(31,42,38,.15);
}
.hero-visual .bone::before, .hero-visual .bone::after {
  content: ''; position: absolute;
  width: 50%; height: 100%;
  background: var(--paper); border-radius: 50%;
  top: 0;
}
.hero-visual .bone::before { left: -20%; }
.hero-visual .bone::after { right: -20%; }
.hero-visual .pawprint {
  position: absolute;
  width: 30px; height: 30px;
  opacity: .35;
}
.hero-visual .pawprint svg { width: 100%; height: 100%; fill: var(--lagoon); }
.hero-visual .p1 { top: 18%; left: 18%; transform: rotate(-15deg); }
.hero-visual .p2 { top: 28%; right: 22%; transform: rotate(20deg); }
.hero-visual .p3 { bottom: 22%; left: 26%; transform: rotate(45deg); }
.hero-badge {
  position: absolute; background: var(--paper);
  padding: 12px 16px; border-radius: var(--r-md);
  box-shadow: 0 12px 30px rgba(31,42,38,.12);
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge .icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lagoon-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge .icon svg { width: 16px; height: 16px; stroke: var(--lagoon); stroke-width: 2; fill: none; }
.hero-badge .t { font-size: 13px; font-weight: 600; }
.hero-badge .s { font-size: 11px; color: var(--ink-dim); margin-top: 1px; }
.hero-badge.b1 { top: 8%; left: -6%; }
.hero-badge.b2 { bottom: 14%; right: -6%; }
@media (max-width: 900px) {
  .hero { padding: 32px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-badge.b1 { left: 0; }
  .hero-badge.b2 { right: 0; }
}

/* ========== TRUST BAR ========== */
.trust {
  background: var(--bg-soft);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-item .icon svg { width: 16px; height: 16px; stroke: var(--lagoon); stroke-width: 1.8; fill: none; }
.trust-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.trust-item p { font-size: 12.5px; color: var(--ink-dim); }
@media (max-width: 900px) { .trust-inner { grid-template-columns: 1fr 1fr; gap: 20px 16px; } }
@media (max-width: 520px) { .trust-inner { grid-template-columns: 1fr; } }

/* ========== SECTION HEAD ========== */
.sec-head {
  text-align: center;
  padding: 72px 24px 28px;
  max-width: 720px; margin: 0 auto;
}
.sec-head .kicker {
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--lagoon); margin-bottom: 14px;
}
.sec-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 12px;
}
.sec-head h2 em { font-style: italic; color: var(--coral); }
.sec-head p { font-size: 16px; color: var(--ink-dim); line-height: 1.6; }

/* ========== PRODUCTS ========== */
.products {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px 80px;
}
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}
.product:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(31,42,38,.08); }
.product .img {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.product .img .placeholder {
  width: 70%; aspect-ratio: 1;
  background: linear-gradient(160deg, var(--coral-soft) 0%, var(--lagoon-soft) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: var(--lagoon-dark);
}
.product .badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.product .badge.best { background: var(--lagoon); color: #fff; }
.product .badge.new { background: var(--coral); color: #fff; }
.product .info {
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.product .info .cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--lagoon);
}
.product .info h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 18px; letter-spacing: -.02em; line-height: 1.2;
}
.product .info .stars { color: var(--gold); font-size: 12px; letter-spacing: 1.5px; }
.product .info .stars .count { color: var(--ink-dim); margin-left: 6px; letter-spacing: 0; }
.product .info .ftr {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line);
}
.product .info .price {
  font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500;
}
.product .info .price .old {
  font-size: 12px; color: var(--ink-mute);
  text-decoration: line-through;
  margin-right: 6px; font-weight: 400;
  font-family: 'Inter', sans-serif;
}
.product .info .add {
  background: var(--lagoon-soft); color: var(--lagoon-dark);
  padding: 7px 12px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 12px;
  transition: all .2s;
}
.product .info .add:hover { background: var(--lagoon); color: #fff; }

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .product-grid { grid-template-columns: 1fr; } }

/* ========== STORY (about preview) ========== */
.story {
  padding: 80px 0;
  background: var(--lagoon-dark); color: #fff;
}
.story-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.story .visual {
  aspect-ratio: 4/5;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(232,119,91,.25) 0%, transparent 60%),
    linear-gradient(160deg, #2A6055 0%, #163A32 100%);
  position: relative; overflow: hidden;
}
.story .visual::before {
  content: ''; position: absolute; inset: 18% 22%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}
.story .visual::after {
  content: '🌺';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px; opacity: .25;
}
.story .kicker {
  color: var(--coral-soft); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  display: inline-block; margin-bottom: 16px;
}
.story h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
  letter-spacing: -.02em; margin-bottom: 18px;
}
.story h2 em { font-style: italic; color: var(--coral-soft); }
.story p {
  color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.65;
  margin-bottom: 18px; max-width: 480px;
}
.story .btn-coral { margin-top: 8px; }
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 80px 0;
  background: var(--bg-soft);
}
.testi-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.testi {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px;
  display: flex; flex-direction: column;
}
.testi .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testi blockquote {
  font-family: 'Fraunces', serif; font-size: 17px;
  line-height: 1.5; letter-spacing: -.01em;
  margin-bottom: 20px; flex: 1;
}
.testi .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.testi .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--lagoon-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 16px; color: var(--lagoon-dark);
}
.testi .meta .n { font-size: 14px; font-weight: 600; }
.testi .meta .s { font-size: 12px; color: var(--ink-dim); }
.testi .verified {
  margin-left: auto; font-size: 11px;
  color: var(--lagoon); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.testi .verified::before {
  content: '✓'; background: var(--lagoon-soft);
  width: 16px; height: 16px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ========== FAQ ========== */
.faq { padding: 80px 0; }
.faq-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.faq-list {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; margin-top: 28px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 20px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 17px;
  letter-spacing: -.015em;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-family: 'Inter', sans-serif;
  font-size: 22px; color: var(--lagoon);
  transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; }

/* ========== NEWSLETTER ========== */
.news {
  padding: 56px 24px;
  background: var(--paper);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.news-inner { max-width: 720px; margin: 0 auto; }
.news h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 28px; line-height: 1.15;
  letter-spacing: -.015em; margin-bottom: 10px;
}
.news h2 em { font-style: italic; color: var(--coral); }
.news p { color: var(--ink-dim); font-size: 14.5px; max-width: 460px; margin: 0 auto 20px; }
.news form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.news input[type="email"] {
  flex: 1; min-width: 0;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14.5px; color: var(--ink);
  outline: none;
}
.news input[type="email"]:focus { border-color: var(--lagoon); }
.news button { padding: 14px 22px; }
.news .fine { margin-top: 12px; font-size: 11.5px; color: var(--ink-mute); }
@media (max-width: 520px) {
  .news form { flex-direction: column; }
  .news button { width: 100%; }
}

/* ========== FOOTER ========== */
.foot { background: var(--bg); padding: 56px 0 24px; border-top: 1px solid var(--line); }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-brand .big {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 32px; letter-spacing: -.025em;
  color: var(--lagoon-dark);
  margin-bottom: 12px; display: inline-block;
}
.foot-brand .big .accent { color: var(--coral); font-style: italic; font-weight: 500; }
.foot-brand p { color: var(--ink-dim); max-width: 320px; font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.foot-soc { display: flex; gap: 8px; }
.foot-soc a {
  width: 34px; height: 34px;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  transition: all .2s;
}
.foot-soc a:hover { background: var(--lagoon); color: #fff; border-color: var(--lagoon); }
.foot-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 13.5px; color: var(--ink-dim); transition: color .2s; }
.foot-col a:hover { color: var(--lagoon); }

.foot-legal {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11.5px; color: var(--ink-mute); line-height: 1.7;
}
.foot-legal p { margin-bottom: 6px; }
.foot-legal strong { color: var(--ink-dim); }
.foot-legal a { color: var(--ink-dim); text-decoration: underline; text-decoration-color: var(--line); }

.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; margin-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute); font-size: 12px;
  flex-wrap: wrap; gap: 12px;
}
.foot-bot .badges { display: flex; gap: 10px; align-items: center; color: var(--ink-dim); font-weight: 500; }
.foot-bot .legal-links { display: flex; gap: 16px; }
.foot-bot .legal-links a:hover { color: var(--lagoon); }

@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .foot-top { grid-template-columns: 1fr; }
}

/* ========== PAGE HEADER (used on inner pages) ========== */
.page-head {
  padding: 56px 24px 28px;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-head .breadcrumb {
  font-size: 12px; color: var(--ink-mute);
  margin-bottom: 12px;
}
.page-head .breadcrumb a { color: var(--lagoon); }
.page-head h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(34px, 4.5vw, 50px); line-height: 1.05;
  letter-spacing: -.02em; margin-bottom: 10px;
}
.page-head h1 em { font-style: italic; color: var(--coral); }
.page-head p { font-size: 16px; color: var(--ink-dim); max-width: 640px; margin: 0 auto; }

/* ========== PROSE (legal pages) ========== */
.prose {
  max-width: 760px; margin: 0 auto;
  padding: 56px 24px 80px;
}
.prose h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 26px; letter-spacing: -.015em;
  margin: 32px 0 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 17px; font-weight: 600;
  margin: 22px 0 8px;
}
.prose p, .prose li {
  font-size: 15px; color: var(--ink-dim); line-height: 1.7;
  margin-bottom: 12px;
}
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 14px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { color: var(--ink); }
.prose a { color: var(--lagoon); text-decoration: underline; text-decoration-color: var(--line); }
.prose .updated { font-size: 13px; color: var(--ink-mute); margin-bottom: 24px; }

/* ========== CART PAGE ========== */
.cart-wrap {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px 24px 80px;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}
.cart-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cart-line {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line:last-child { border-bottom: none; }
.cart-line .ph {
  width: 80px; height: 80px;
  background: linear-gradient(160deg, var(--coral-soft) 0%, var(--lagoon-soft) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 26px; color: var(--lagoon-dark);
}
.cart-line .meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-line .name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 17px; }
.cart-line .var { font-size: 12.5px; color: var(--ink-dim); }
.cart-line .price { font-weight: 600; font-size: 15px; }
.cart-line .qty {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; height: 34px;
}
.cart-line .qty button { width: 32px; font-size: 16px; }
.cart-line .qty button:hover { background: var(--bg-soft); }
.cart-line .qty .val {
  min-width: 36px;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.cart-line .actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-line .remove {
  font-size: 12px; color: var(--ink-mute);
  text-decoration: underline; text-decoration-color: var(--line);
}
.cart-line .remove:hover { color: var(--coral-dark); }
.cart-empty {
  padding: 48px 24px; text-align: center;
}
.cart-empty p { color: var(--ink-dim); margin-bottom: 14px; }

.cart-summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  height: fit-content;
  position: sticky; top: 90px;
}
.cart-summary h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; letter-spacing: -.015em;
  margin-bottom: 16px;
}
.cart-summary .row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.cart-summary .row.total {
  margin-top: 12px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500;
}
.cart-summary .row .v { font-weight: 600; }
.cart-summary .promo {
  margin: 16px 0;
  display: flex; gap: 6px;
}
.cart-summary .promo input {
  flex: 1; padding: 10px 12px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-sm); font-size: 13px;
  outline: none;
}
.cart-summary .promo input:focus { border-color: var(--lagoon); }
.cart-summary .promo button {
  padding: 10px 14px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600;
}
.cart-summary .checkout-btn { margin-top: 12px; }
.cart-summary .secure {
  margin-top: 14px; text-align: center;
  font-size: 11.5px; color: var(--ink-mute);
}

@media (max-width: 900px) {
  .cart-wrap { grid-template-columns: 1fr; gap: 24px; }
  .cart-summary { position: static; }
}
@media (max-width: 520px) {
  .cart-line { grid-template-columns: 60px 1fr; }
  .cart-line .ph { width: 60px; height: 60px; font-size: 20px; }
  .cart-line .actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 8px; }
}

/* ========== CHECKOUT PAGE ========== */
.checkout-wrap {
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.checkout-form {
  display: flex; flex-direction: column; gap: 28px;
}
.checkout-form fieldset {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.checkout-form legend {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 20px; letter-spacing: -.015em;
  padding: 0 8px;
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px; font-weight: 600; color: var(--ink-dim);
}
.field input, .field select {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14.5px; color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.field input:focus, .field select:focus { border-color: var(--lagoon); }
.field input.invalid { border-color: var(--coral-dark); }
.field .hint { font-size: 11.5px; color: var(--ink-mute); }
.field .err {
  font-size: 11.5px; color: var(--coral-dark); display: none;
}
.field input.invalid + .err { display: block; }

.payment-options { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.payment-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.payment-option:hover { background: var(--bg-soft); }
.payment-option input[type="radio"] { accent-color: var(--lagoon); }
.payment-option .label { flex: 1; font-weight: 500; font-size: 14px; }
.payment-option .badges { display: flex; gap: 4px; }
.payment-option .pay-badge {
  display: inline-block;
  padding: 2px 6px;
  background: var(--bg-soft); color: var(--ink-dim);
  font-size: 10px; font-weight: 600;
  border-radius: 3px;
  letter-spacing: .03em;
}

.card-fields { margin-top: 16px; display: none; }
.card-fields.show { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-fields .field.full { grid-column: 1 / -1; }

.checkout-summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  height: fit-content;
  position: sticky; top: 90px;
}
.checkout-summary h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 20px; letter-spacing: -.015em;
  margin-bottom: 16px;
}
.checkout-summary .lines { display: flex; flex-direction: column; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.checkout-summary .line { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.checkout-summary .line .name { color: var(--ink); }
.checkout-summary .line .name small { color: var(--ink-mute); margin-left: 4px; }
.checkout-summary .line .v { font-weight: 600; white-space: nowrap; }
.checkout-summary .row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.checkout-summary .row.total {
  margin-top: 8px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500;
}
.checkout-submit { width: 100%; margin-top: 20px; padding: 16px; }
.checkout-secure {
  margin-top: 14px; text-align: center;
  font-size: 11.5px; color: var(--ink-mute);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

@media (max-width: 900px) {
  .checkout-wrap { grid-template-columns: 1fr; gap: 24px; }
  .checkout-summary { position: static; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ========== CONFIRMATION ========== */
.confirm {
  max-width: 560px; margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.confirm .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--lagoon-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.confirm .check svg { width: 32px; height: 32px; stroke: var(--lagoon-dark); stroke-width: 3; fill: none; }
.confirm h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 36px; line-height: 1.1; margin-bottom: 14px;
}
.confirm h1 em { font-style: italic; color: var(--coral); }
.confirm p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; margin-bottom: 12px; }
.confirm .order-num {
  display: inline-block;
  margin: 16px 0 24px;
  padding: 10px 18px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  font-family: monospace; font-size: 14px; font-weight: 600;
  letter-spacing: .04em;
}
.confirm .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT FORM ========== */
.contact-wrap {
  max-width: 920px; margin: 0 auto;
  padding: 56px 24px 80px;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.contact-info {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact-info h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; letter-spacing: -.015em;
  margin-bottom: 18px;
}
.contact-info .item { margin-bottom: 20px; }
.contact-info .item h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--lagoon); margin-bottom: 4px;
}
.contact-info .item p { font-size: 14px; color: var(--ink); line-height: 1.5; }
.contact-info .item a { color: var(--lagoon); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 14.5px; color: var(--ink);
  outline: none; resize: vertical; min-height: 120px;
}
.contact-form textarea:focus { border-color: var(--lagoon); }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 24px; }
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--ink); color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 13.5px; font-weight: 500;
  z-index: 300;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(120%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  max-width: 320px;
}
.toast.show { transform: translateY(0); }
.toast .ico {
  width: 22px; height: 22px;
  border-radius: 50%; background: var(--lagoon);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toast .ico svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; fill: none; }

.product .img img { width:100%; height:100%; object-fit:cover; display:block; }
.product .img { overflow:hidden; }
.foot-soc { display:none; }
