/* Café del Sol — hoja de estilos principal
   Paleta y tipografía replican el sistema de diseño Claude Design del proyecto. */

:root {
  --bg: #F7F1E6;
  --bg-alt: #F0E6D4;
  --ink: #3A2A21;
  --ink-strong: #2B1A12;
  --ink-darker: #211208;
  --ink-soft: #3B261B;
  --brand: #C4562F;
  --brand-dark: #8E3A1C;
  --accent: #E9A23B;
  --green: #4E6B4A;
  --border: #E2D5BE;
  --border-2: #DCCDB4;
  --muted: #6B5644;
  --muted-2: #8A7256;
  --cream: #F7F1E6;
  --cream-soft: #F0E2CC;
  --tan-text: #E4D6C0;
  --tan-text-2: #D9C8AF;
  --line-dark: #5A4030;

  --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Consolas', 'SFMono-Regular', Menlo, Monaco, 'Liberation Mono', monospace;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }
::selection { background: var(--accent); color: var(--ink-strong); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--ink-strong); margin: 0; }
p { line-height: 1.65; }
ul { line-height: 1.9; }
button { font-family: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink-strong); color: var(--cream); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

img:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 24px; max-width: var(--container); margin: 0 auto; }
.section-tight { padding: 60px 24px 80px; max-width: var(--container); margin: 0 auto; }
@media (max-width: 720px) {
  .section { padding: 56px 20px; }
  .section-tight { padding: 44px 20px 60px; }
}

.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px; display: block;
}
.eyebrow-light { color: var(--accent); }
.eyebrow-green { color: var(--green); }

.btn {
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 15px 28px; font-weight: 700; font-size: 15px; border: 1px solid transparent;
  font-family: var(--font-sans); transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--accent); color: var(--ink-strong); }
.btn-dark { background: var(--ink-strong); color: var(--cream); border-color: var(--ink-strong); }
.btn-dark:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-outline { border-color: var(--line-dark); color: var(--cream); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-ink { border-color: var(--ink); color: var(--ink-strong); }
.btn-outline-ink:hover { border-color: var(--brand); color: var(--brand); }
.btn-accent { background: var(--accent); color: var(--ink-strong); border: none; }
.btn-accent:hover { background: var(--cream); }
.btn-small { padding: 11px 20px; font-size: 14px; }
.btn-block { display: flex; width: 100%; text-align: center; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }
.link-arrow { font-weight: 700; color: var(--brand); font-size: 15px; }

/* Topbar */
.topbar {
  background: var(--ink-strong); color: var(--cream-soft); font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; padding: 9px 24px;
  display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; text-align: center;
}
.topbar a { color: var(--accent); }
.topbar-addr { opacity: .7; color: var(--cream-soft); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(247,241,230,.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; color: inherit; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 32% 30%, var(--accent), var(--brand) 70%);
  display: flex; align-items: center; justify-content: center; color: var(--ink-strong);
  font-family: var(--font-display); font-size: 20px;
}
.brand-text { line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 23px; color: var(--ink-strong); display: block; }
.brand-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-2); margin-top: 4px; display: block;
}
.site-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.site-nav a {
  font-size: 14.5px; font-weight: 500; letter-spacing: .02em; color: var(--ink); padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active { color: var(--brand); border-bottom-color: var(--brand); text-decoration: none; }
.cart-btn {
  cursor: pointer; border: 1px solid var(--ink-strong); background: var(--ink-strong); color: var(--cream);
  border-radius: 999px; padding: 11px 20px; font-size: 14px; font-weight: 700; display: flex; gap: 9px; align-items: center;
}
.cart-btn:hover { background: var(--brand); border-color: var(--brand); }
.cart-count {
  background: var(--accent); color: var(--ink-strong); border-radius: 999px; min-width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12.5px;
}
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 36px;
    border: 1px solid var(--border-2); border-radius: 8px; background: #fff; cursor: pointer; order: 3;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink-strong); margin: 0 8px; }
  .site-nav {
    order: 5; flex-basis: 100%; display: none; flex-direction: column; gap: 4px;
    border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 4px; border-bottom: 1px solid var(--border); }
  .cart-btn { order: 2; }
}

/* Hero */
.hero { position: relative; background: var(--ink-strong); color: var(--cream); overflow: hidden; }
.hero-grid {
  max-width: var(--container); margin: 0 auto; padding: 96px 24px 104px; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: 60px; line-height: 1.05; margin: 0 0 24px; letter-spacing: -.01em; color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.lead { font-size: 19px; line-height: 1.65; color: var(--tan-text); max-width: 520px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 32px; color: var(--accent); }
.hero-stat-label { font-size: 13px; color: #B7A288; font-family: var(--font-mono); }
.hero-media {
  position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--line-dark);
  aspect-ratio: 3 / 4; background: var(--ink-soft);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: auto -1px -1px -1px; height: 70px;
  background: linear-gradient(to top, rgba(43,26,18,.85), transparent);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 56px 20px 60px; }
  .hero h1 { font-size: 42px; }
  .hero-media { order: -1; aspect-ratio: 16/10; }
}

.page-hero { padding: 64px 24px; border-bottom: 1px solid var(--border); }
.page-hero.dark { background: var(--ink-strong); color: var(--cream); border-bottom: none; }
.page-hero.tan { background: var(--bg-alt); }
.page-hero.green { background: var(--green); color: #F4F1E4; border-bottom: none; }
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.page-hero-inner.wide { max-width: 1100px; }
.page-hero h1 { font-size: 48px; margin: 0 0 14px; line-height: 1.1; }
.page-hero.dark h1, .page-hero.green h1 { color: var(--cream); }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 700px; margin: 0; line-height: 1.65; }
.page-hero.dark p, .page-hero.green p { color: var(--tan-text); }
@media (max-width: 640px) { .page-hero h1 { font-size: 34px; } }

/* Promise strip */
.promise-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.promise-grid {
  max-width: var(--container); margin: 0 auto; padding: 34px 24px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.promise-item { display: flex; gap: 14px; align-items: flex-start; }
.promise-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); margin-top: 7px; flex: none; }
.promise-item strong { display: block; font-weight: 700; font-size: 15px; color: var(--ink-strong); }
.promise-item span { font-size: 14px; color: var(--muted); line-height: 1.55; margin-top: 4px; display: block; }
@media (max-width: 900px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promise-grid { grid-template-columns: 1fr; } }

/* Section headers */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; flex-wrap: wrap;
}
.section-title { font-size: 40px; margin: 0; color: var(--ink-strong); }
.section-lead { font-size: 17px; color: var(--muted); margin: 0 0 40px; max-width: 640px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Product card */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .15s ease;
}
.card:hover { border-color: var(--brand); }
.card-media { position: relative; aspect-ratio: 4 / 3.2; background: var(--bg-alt); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; top: 14px; left: 14px; background: var(--green); color: #fff; font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px;
}
.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card-origin {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--green);
}
.card-title { font-family: var(--font-display); font-size: 24px; color: var(--ink-strong); margin: 8px 0; }
.card-desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex: 1; margin: 0; }
.card-specs { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); margin-top: 14px; line-height: 1.7; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 12px; }
.card-price { font-family: var(--font-display); font-size: 24px; color: var(--brand); }

/* Filter chips */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-chip {
  cursor: pointer; padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 700;
  border: 1px solid var(--border-2); background: transparent; color: var(--ink);
}
.filter-chip.active { background: var(--ink-strong); color: var(--cream); border-color: var(--ink-strong); }

/* Info tiles */
.info-tile { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 26px; }
.info-tile strong { display: block; font-weight: 700; font-size: 16.5px; color: var(--ink-strong); margin-bottom: 8px; }
.info-tile p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* Reviews */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.review-stars { color: var(--accent); letter-spacing: .22em; font-size: 15px; }
.review-text { font-size: 16px; line-height: 1.68; color: var(--ink); margin: 14px 0 18px; }
.review-author { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); }

/* Newsletter */
.newsletter-box { background: var(--ink-strong); color: var(--cream); border-radius: 8px; padding: 40px; }
.newsletter-box h3 { font-size: 30px; margin: 14px 0 12px; color: var(--cream); }
.newsletter-box p { font-size: 15.5px; line-height: 1.65; color: var(--tan-text-2); margin: 0; }
.newsletter-form { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 200px; padding: 14px 16px; border-radius: 999px; border: 1px solid var(--line-dark);
  background: var(--ink-soft); color: var(--cream); font-family: var(--font-sans); font-size: 15px;
}
.newsletter-form input::placeholder { color: #B7A288; }
.newsletter-note { font-size: 12.5px; color: #A78E71; margin-top: 14px; line-height: 1.5; }
.newsletter-note a { color: var(--accent); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* Timeline */
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 26px; padding: 22px 0; border-top: 1px solid var(--border); }
.timeline-year { font-family: var(--font-display); font-size: 28px; color: var(--brand); }
.timeline-title { font-weight: 700; font-size: 17px; color: var(--ink-strong); margin-bottom: 6px; }
.timeline-body { font-size: 16px; line-height: 1.7; color: var(--muted); }
@media (max-width: 560px) { .timeline-item { grid-template-columns: 1fr; gap: 6px; } }

/* Team */
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.team-media { aspect-ratio: 4/4.3; background: var(--bg-alt); overflow: hidden; }
.team-media img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 20px; }
.team-name { font-family: var(--font-display); font-size: 22px; color: var(--ink-strong); }
.team-role {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin: 6px 0 10px;
}
.team-bio { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Origin rows */
.origin-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--border); }
.origin-media { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1/1; background: var(--bg-alt); }
.origin-media img { width: 100%; height: 100%; object-fit: cover; }
.origin-name { font-size: 34px; margin: 8px 0 14px; }
.origin-body { font-size: 16.5px; line-height: 1.72; color: var(--ink); margin: 0 0 16px; }
.origin-specs { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.origin-specs b { display: block; color: var(--brand); font-size: 16px; font-weight: 500; }
@media (max-width: 800px) { .origin-row { grid-template-columns: 1fr; } }

/* Workshops */
.workshop-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 30px;
  display: grid; grid-template-columns: 1fr 210px; gap: 30px; align-items: center;
}
.workshop-when { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--green); }
.workshop-name { font-size: 27px; margin: 8px 0 10px; }
.workshop-desc { font-size: 16px; line-height: 1.68; color: var(--muted); margin: 0; }
.workshop-price { font-family: var(--font-display); font-size: 28px; color: var(--brand); text-align: right; }
.workshop-duration { font-size: 13.5px; color: var(--muted-2); margin: 4px 0 14px; text-align: right; }
@media (max-width: 640px) {
  .workshop-card { grid-template-columns: 1fr; text-align: left; }
  .workshop-price, .workshop-duration { text-align: left; }
}

/* Blog */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.blog-media { aspect-ratio: 3/2; background: var(--bg-alt); overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.blog-title { font-size: 26px; margin: 10px 0 10px; line-height: 1.22; }
.blog-excerpt { font-size: 15.5px; line-height: 1.68; color: var(--muted); margin: 0; flex: 1; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }
.article-body { max-width: 760px; margin: 0 auto; padding: 60px 24px 90px; }
.article-body p { font-size: 18px; line-height: 1.8; color: var(--ink); }
.article-body h2 { font-size: 30px; margin: 40px 0 16px; }
.article-cover { border-radius: 8px; overflow: hidden; margin-bottom: 34px; border: 1px solid var(--border); }
.article-cover img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.article-meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); margin-bottom: 10px; }
.article-back { display: inline-block; margin-top: 30px; font-weight: 700; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q {
  cursor: pointer; display: flex; gap: 18px; align-items: baseline; width: 100%; text-align: left;
  background: none; border: none; padding: 0; font-size: 19px; font-weight: 700; color: var(--ink-strong);
}
.faq-q span.q-text { flex: 1; }
.faq-q span.q-icon { font-family: var(--font-mono); font-size: 20px; color: var(--brand); }
.faq-a { font-size: 16.5px; line-height: 1.72; color: var(--muted); margin: 14px 0 0; max-width: 720px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-item { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.contact-item .eyebrow { margin-bottom: 8px; color: var(--muted-2); font-size: 11.5px; letter-spacing: .2em; }
.contact-item div.val { font-size: 17px; line-height: 1.65; color: var(--ink-strong); }
.contact-media { border-radius: 6px; overflow: hidden; margin-top: 28px; border: 1px solid var(--border); aspect-ratio: 16/9; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.map-link { display: inline-block; margin-top: 14px; font-weight: 700; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 34px; }
.form-card h2 { font-size: 30px; margin: 0 0 6px; }
.form-card > p { font-size: 15px; color: var(--muted); margin: 0 0 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2);
}
.field input, .field textarea, .field select {
  padding: 14px 16px; border: 1px solid var(--border-2); border-radius: 6px; font-family: var(--font-sans);
  font-size: 15px; background: #FDFAF4; color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 4px 0 16px; }
.field-check input { margin-top: 3px; }
.field-check a { color: var(--brand); text-decoration: underline; }
.form-msg { border-radius: 6px; padding: 14px 16px; font-size: 14.5px; margin-bottom: 18px; }
.form-msg.ok { background: #E6EEE3; color: var(--green); border: 1px solid #C7DAC0; }
.form-msg.error { background: #F7E3DA; color: var(--brand-dark); border: 1px solid #EFC3AE; }

/* Legal */
.legal-block { margin-bottom: 34px; }
.legal-block h2 { font-size: 27px; color: var(--ink-strong); margin: 0 0 12px; }
.legal-block p { font-size: 16.5px; line-height: 1.78; color: var(--ink); margin: 0 0 14px; }
.legal-resp { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 26px; font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.legal-updated { font-family: var(--font-mono); font-size: 13px; color: #A78E71; margin-top: 6px; }

/* Footer */
.site-footer { background: var(--ink-darker); color: var(--tan-text-2); padding: 66px 24px 30px; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand { font-family: var(--font-display); font-size: 26px; color: var(--cream); }
.footer-about p { font-size: 15px; line-height: 1.7; margin: 14px 0 0; }
.footer-legalid { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); margin-top: 18px; line-height: 1.8; }
.footer-heading { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 15px; color: var(--tan-text-2); }
.footer-col a:hover { color: var(--accent); }
address { font-style: normal; font-size: 15px; line-height: 1.8; }
address a { color: var(--cream); }
.footer-hours { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); margin-top: 14px; line-height: 1.8; }
.footer-bottom {
  max-width: var(--container); margin: 44px auto 0; padding-top: 22px; border-top: 1px solid var(--ink-soft);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; background: rgba(33,18,8,.55); z-index: 60; display: none; }
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--bg);
  z-index: 61; display: flex; flex-direction: column; box-shadow: -20px 0 50px rgba(33,18,8,.3);
  transform: translateX(100%); transition: transform .28s ease;
}
.cart-drawer.open { transform: none; }
.cart-head {
  padding: 24px 26px; border-bottom: 1px solid var(--border); display: flex; align-items: center;
  justify-content: space-between; font-family: var(--font-display); font-size: 26px; color: var(--ink-strong);
}
.cart-head button { background: none; border: none; cursor: pointer; font-size: 22px; color: var(--muted-2); }
.cart-body { flex: 1; overflow: auto; padding: 18px 26px; }
.cart-empty { padding: 60px 0; text-align: center; color: var(--muted-2); font-size: 15.5px; line-height: 1.7; }
.cart-line { display: grid; grid-template-columns: 74px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-line-media { height: 74px; width: 74px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-alt); }
.cart-line-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-weight: 700; font-size: 15.5px; color: var(--ink-strong); }
.cart-line-price { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); margin: 4px 0 10px; }
.cart-line-actions { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  cursor: pointer; width: 28px; height: 28px; border: 1px solid var(--border-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: #fff; font-size: 16px;
}
.cart-line-remove { cursor: pointer; margin-left: auto; font-size: 13px; color: var(--brand); text-decoration: underline; background: none; border: none; }
.cart-foot { border-top: 1px solid var(--border); padding: 22px 26px 26px; background: var(--bg-alt); }
.cart-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted); margin-bottom: 7px; }
.cart-total { font-family: var(--font-display); font-size: 26px; color: var(--ink-strong); margin-bottom: 6px; }
.cart-note { font-size: 12.5px; color: var(--muted-2); margin-bottom: 16px; }
.cart-secure { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-2); text-align: center; margin-top: 12px; line-height: 1.7; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 70; background: var(--ink-strong); color: var(--cream);
  border-radius: 10px; padding: 22px 26px; display: flex; gap: 26px; align-items: center; flex-wrap: wrap;
  box-shadow: 0 18px 50px rgba(33,18,8,.35); max-width: 1100px; margin: 0 auto;
}
.cookie-text { flex: 1; min-width: 240px; font-size: 14.5px; line-height: 1.65; color: var(--tan-text-2); }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
