/* Sladka Pekarna — main stylesheet
   Design tokens carried over 1:1 from the Claude Design source. */

:root {
  --bg: #FBF5EC;
  --text: #3A2318;
  --accent: #8E2C48;
  --accent-hover: #75213A;
  --gold: #C9A227;
  --gold-hover: #E0B93A;
  --surface: #FFFDF8;
  --border: #E6D5BE;
  --section-alt: #F6EEE1;
  --dark: #3A2318;
  --dark-2: #5A3520;
  --footer-bg: #2E1B12;
  --muted-1: #6B4B34;
  --muted-2: #9C7B5B;
  --muted-3: #5A3F2C;
  --muted-4: #4A3020;
  --muted-5: #7A5B41;
  --cream-1: #F6E7D2;
  --cream-2: #E4CDB0;
  --cream-3: #EEDCC2;
  --cream-4: #C1A282;
  --cream-5: #F0D9C0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Karla', system-ui, -apple-system, sans-serif;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --pill: 999px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--gold); }
input, select, button, textarea { font-family: inherit; font-size: 100%; }
button { cursor: pointer; }
h1, h2, h3 { font-family: var(--font-serif); margin: 0; }
input[type=range] { accent-color: var(--accent); }
.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; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--dark); color: var(--cream-1); padding: 10px 16px; border-radius: 8px; z-index: 100; transition: top .15s ease; }
.skip-link:focus { top: 12px; }

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes softPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.rise-in { animation: riseIn .6s ease both; }

.page { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 900px; }
.narrower { max-width: 820px; }
.article-width { max-width: 760px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--dark); color: var(--cream-1); font-size: 13px; letter-spacing: .04em; padding: 9px 0; text-align: center; }
.topbar span { margin: 0 6px; }

/* ---------- Header ---------- */
header.site-header { position: sticky; top: 0; z-index: 40; background: rgba(251,245,236,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.brand { cursor: pointer; display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--gold), var(--accent)); display: flex; align-items: center; justify-content: center; color: var(--bg); font-family: var(--font-serif); font-size: 21px; font-weight: 700; flex: none; }
.brand-name { font-family: var(--font-serif); font-size: 23px; font-weight: 700; line-height: 1; color: var(--text); }
.brand-sub { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }
nav.main-nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
nav.main-nav a { background: none; border: none; cursor: pointer; font-size: 14.5px; padding: 8px 12px; border-radius: 8px; font-weight: 500; color: var(--muted-4); }
nav.main-nav a:hover { color: var(--accent); }
nav.main-nav a[aria-current="page"] { font-weight: 700; color: var(--accent); }
.cart-btn { border: 1px solid var(--dark); background: var(--dark); color: var(--bg); border-radius: var(--pill); padding: 10px 18px; font-size: 13.5px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.cart-btn:hover { background: var(--accent); border-color: var(--accent); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-size: 20px; line-height: 1; color: var(--text); margin-left: auto; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--pill); font-weight: 700; font-size: 15px; padding: 15px 28px; border: none; cursor: pointer; text-align: center; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--text); }
.btn-outline:hover { background: #F3E6D2; color: var(--text); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-dark { background: var(--dark); color: var(--bg); }
.btn-dark:hover { background: var(--accent); }
.btn-sm { padding: 11px 22px; font-size: 14px; font-weight: 600; border-radius: var(--pill); }
.btn-block { width: 100%; }
.btn-link { background: none; border: none; color: var(--accent); font-size: 14px; cursor: pointer; padding: 0; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { padding: 64px 24px 40px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.hero h1 { font-size: 60px; line-height: 1.04; font-weight: 700; margin: 0 0 22px; color: var(--text); }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.lead { font-size: 17.5px; line-height: 1.65; color: var(--muted-1); margin: 0 0 30px; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-serif); font-size: 32px; color: var(--accent); font-weight: 700; }
.hero-stats .lbl { font-size: 13px; color: var(--muted-2); }
.hero-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 520px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Feature strip ---------- */
.feature-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--section-alt); }
.feature-grid { padding: 28px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-grid .ft-title { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.feature-grid .ft-text { font-size: 14px; color: var(--muted-1); line-height: 1.5; }

/* ---------- Section ---------- */
.section { padding: 72px 24px; }
.section-tight { padding: 52px 24px 76px; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-head p { color: var(--muted-1); font-size: 16.5px; max-width: 60ch; margin: 0 auto; line-height: 1.6; }
.section-head h2 { font-size: 44px; margin: 0 0 12px; font-weight: 700; }
.row-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 26px; gap: 16px; flex-wrap: wrap; }
.row-head h2 { font-size: 38px; margin: 0 0 8px; font-weight: 700; }
.row-head p { color: var(--muted-1); margin: 0; font-size: 16px; }
h1.page-title { font-size: 46px; margin: 0 0 10px; font-weight: 700; }
p.page-lead { color: var(--muted-1); font-size: 16.5px; max-width: 70ch; line-height: 1.6; margin: 0 0 28px; }

/* ---------- Cake designer ---------- */
.designer { display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; align-items: start; }
.designer-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.designer-group { margin-bottom: 26px; }
.designer-group .g-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.designer-group .g-title { font-family: var(--font-serif); font-size: 21px; font-weight: 700; }
.designer-group .g-hint { font-size: 12.5px; color: var(--muted-2); }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { border-radius: var(--pill); padding: 10px 16px; font-size: 13.5px; cursor: pointer; font-weight: 600; border: 1px solid var(--border); background: var(--surface); color: var(--muted-4); }
.chip[aria-pressed="true"] { border-color: var(--accent); background: var(--accent); color: var(--bg); }
.guests-row { border-top: 1px dashed #E0CCB2; padding-top: 22px; }
.guests-row .g-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.guests-row .g-title { font-family: var(--font-serif); font-size: 21px; font-weight: 700; }
.guests-row .g-val { font-size: 15px; font-weight: 700; color: var(--accent); }
.guests-row input[type=range] { width: 100%; }
.guests-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); margin-top: 4px; }

.designer-result { background: linear-gradient(165deg, var(--dark), var(--dark-2)); color: var(--cream-1); border-radius: var(--radius-lg); padding: 30px; }
.designer-result .r-eyebrow { font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.designer-result h3 { font-size: 31px; margin: 0 0 6px; line-height: 1.15; color: var(--bg); }
.designer-result .r-summary { font-size: 14.5px; line-height: 1.6; color: var(--cream-5); margin: 0 0 20px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.stat-tile { background: rgba(251,245,236,.08); border-radius: 12px; padding: 13px 15px; }
.stat-tile .st-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.stat-tile .st-val { font-size: 17px; font-weight: 700; margin-top: 4px; }
.section-label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.ing-list { display: grid; gap: 6px; margin-bottom: 22px; }
.ing-list .ing-row { display: flex; justify-content: space-between; font-size: 14px; border-bottom: 1px dotted rgba(246,231,210,.22); padding-bottom: 5px; }
.ing-list .ing-qty { color: var(--gold); font-weight: 600; }
.step-list { margin: 0 0 22px; padding-left: 18px; display: grid; gap: 8px; }
.step-list li { font-size: 14px; line-height: 1.55; color: var(--cream-3); }
.tool-list { display: grid; gap: 8px; margin-bottom: 20px; }
.tool-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: rgba(251,245,236,.08); border-radius: 10px; padding: 10px 13px; }
.tool-row .t-title { font-size: 13.5px; }
.tool-row .t-price { font-size: 13.5px; color: var(--gold); font-weight: 700; }
.kit-total { text-align: center; font-size: 12.5px; color: var(--cream-4); margin-top: 10px; }

/* ---------- Cards / grids ---------- */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.cat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; cursor: pointer; display: block; }
.cat-card:hover { border-color: var(--gold); }
.cat-card .cat-img { height: 96px; border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.cat-card .cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card .cat-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.cat-card .cat-text { font-size: 13px; color: var(--muted-1); line-height: 1.5; }

.recipe-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; cursor: pointer; display: block; }
.recipe-card:hover { border-color: var(--accent); }
.recipe-card .rc-img { height: 170px; overflow: hidden; }
.recipe-card .rc-img img { width: 100%; height: 100%; object-fit: cover; }
.recipe-card .rc-body { padding: 20px; }
.rc-badge { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.rc-title { font-family: var(--font-serif); font-size: 23px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; color: var(--text); }
.rc-excerpt { font-size: 14px; color: var(--muted-1); line-height: 1.55; margin-bottom: 14px; }
.rc-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--muted-2); flex-wrap: wrap; }

.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--gold); }
.product-card .pc-img { height: 150px; border-radius: 10px; overflow: hidden; margin-bottom: 13px; }
.product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; }
.pc-title { font-size: 15.5px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; color: var(--text); cursor: pointer; }
.pc-cat { font-size: 13px; color: var(--muted-1); line-height: 1.5; margin-bottom: 12px; }
.pc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pc-price { font-family: var(--font-serif); font-size: 23px; font-weight: 700; color: var(--accent); }
.add-btn { background: var(--dark); color: var(--bg); border: none; border-radius: var(--pill); padding: 9px 15px; font-size: 13px; font-weight: 600; cursor: pointer; }
.add-btn:hover { background: var(--accent); }

.bestseller-card { background: var(--bg); color: var(--text); border-radius: var(--radius-md); padding: 16px; display: flex; flex-direction: column; }
.bestseller-card .pc-img { height: 130px; border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.bestseller-card .pc-img img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }

.article-card { border-top: 2px solid var(--gold); padding-top: 18px; cursor: pointer; display: block; }
.article-card .ac-tag { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 9px; }
.article-card .ac-title { font-family: var(--font-serif); font-size: 24px; font-weight: 700; line-height: 1.22; margin-bottom: 10px; color: var(--text); }
.article-card .ac-excerpt { font-size: 14.5px; color: var(--muted-1); line-height: 1.6; }

.article-card-lg { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; cursor: pointer; display: block; }
.article-card-lg:hover { border-color: var(--gold); }
.article-card-lg .ac-tag { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.article-card-lg .ac-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; color: var(--text); }
.article-card-lg .ac-excerpt { font-size: 15px; color: var(--muted-1); line-height: 1.6; }

.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.review-card .stars { color: var(--gold); letter-spacing: .18em; margin-bottom: 12px; font-size: 14px; }
.review-card p { font-size: 15px; line-height: 1.65; color: var(--muted-4); margin: 0 0 16px; font-style: italic; }
.review-card .rv-name { font-size: 13px; font-weight: 700; }
.review-card .rv-city { font-size: 12.5px; color: var(--muted-2); }

/* ---------- Dark bestseller section ---------- */
.section-dark { background: var(--dark); color: var(--cream-1); }
.section-dark .row-head h2 { color: var(--bg); }

/* ---------- Newsletter ---------- */
.newsletter-box { background: linear-gradient(120deg, var(--accent), var(--dark-2)); border-radius: 22px; padding: 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px; align-items: center; color: var(--cream-1); }
.newsletter-box h2 { font-size: 34px; margin: 0 0 10px; font-weight: 700; color: var(--bg); }
.newsletter-box p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--cream-5); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type=email] { flex: 1; min-width: 180px; border: none; border-radius: var(--pill); padding: 14px 18px; font-size: 14.5px; background: var(--bg); color: var(--text); }
.newsletter-form button { background: var(--gold); color: var(--dark); border: none; border-radius: var(--pill); padding: 14px 24px; font-weight: 700; font-size: 14.5px; cursor: pointer; }
.newsletter-form button:hover { background: var(--gold-hover); }
.form-note { font-size: 12.5px; margin-top: 10px; }
.form-note.ok { color: #DDEFD8; }
.form-note.err { color: #F6C9C9; }

/* ---------- Product / recipe / article detail ---------- */
.breadcrumb { font-size: 13px; color: var(--muted-2); margin: 0 0 14px; }
.breadcrumb a { color: var(--muted-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 6px; }
.back-link { background: none; border: none; color: var(--accent); font-size: 14px; cursor: pointer; padding: 0 0 22px; display: inline-block; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.product-detail .pd-img { height: 440px; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.product-detail .pd-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-cat { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.pd-title { font-family: var(--font-serif); font-size: 40px; margin: 0 0 14px; font-weight: 700; line-height: 1.15; }
.pd-price { font-family: var(--font-serif); font-size: 36px; color: var(--accent); font-weight: 700; margin-bottom: 18px; }
.pd-desc { font-size: 16px; line-height: 1.7; color: var(--muted-3); margin: 0 0 22px; }
.spec-list { display: grid; gap: 8px; margin-bottom: 26px; }
.spec-row { display: flex; justify-content: space-between; border-bottom: 1px dotted #E0CCB2; padding-bottom: 7px; font-size: 14.5px; }
.spec-row .sp-k { color: var(--muted-2); }
.spec-row .sp-v { font-weight: 600; }
.pd-note { margin-top: 18px; font-size: 13.5px; color: var(--muted-1); line-height: 1.7; }

.recipe-detail-media { height: 300px; border-radius: 16px; overflow: hidden; margin-bottom: 30px; }
.recipe-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.recipe-meta-bar { display: flex; gap: 26px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 26px; font-size: 14px; color: var(--muted-1); flex-wrap: wrap; }
.tip-box { background: var(--section-alt); border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; padding: 22px 24px; }
.tip-box .tip-title { font-family: var(--font-serif); font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.tip-box p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted-3); }

.article-hero-media { height: 300px; border-radius: 16px; overflow: hidden; margin: 0 0 28px; }
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.article-body-block h2 { font-family: var(--font-serif); font-size: 27px; margin: 0 0 10px; font-weight: 700; }
.article-body-block p { margin: 0; font-size: 16px; line-height: 1.75; color: var(--muted-4); }
.article-body { display: grid; gap: 22px; }
.article-byline { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 14px; color: var(--muted-2); }

/* ---------- About ---------- */
.about-media { height: 290px; border-radius: 18px; overflow: hidden; margin: 26px 0; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.value-card { background: var(--section-alt); border-radius: var(--radius-md); padding: 22px; }
.value-card .v-title { font-family: var(--font-serif); font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.value-card .v-text { font-size: 14.5px; line-height: 1.6; color: var(--muted-3); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.field-group { display: grid; gap: 14px; }
.field-group input[type=text], .field-group input[type=email], .field-group input[type=tel], .field-group textarea {
  border: 1px solid #E0CCB2; border-radius: var(--radius-sm); padding: 13px 15px; font-size: 15px; background: var(--bg); width: 100%;
}
.field-group textarea { resize: vertical; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted-1); line-height: 1.5; }
.check-row input { margin-top: 3px; }
.contact-info { display: grid; gap: 16px; font-size: 15.5px; line-height: 1.7; color: var(--muted-4); }
.contact-info strong { display: block; font-family: var(--font-serif); font-size: 20px; }
.contact-media { height: 220px; border-radius: 16px; overflow: hidden; margin-top: 20px; border: 1px solid var(--border); }
.contact-media iframe { width: 100%; height: 100%; border: 0; display: block; filter: sepia(8%) saturate(92%); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.faq-q { display: flex; justify-content: space-between; gap: 16px; cursor: pointer; align-items: center; background: none; border: none; width: 100%; text-align: left; padding: 0; font-family: var(--font-serif); font-size: 21px; font-weight: 700; color: var(--text); }
.faq-q .sign { color: var(--gold); font-size: 22px; font-family: var(--font-sans); flex: none; }
.faq-a { margin: 12px 0 0; font-size: 15.5px; line-height: 1.7; color: var(--muted-3); display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- Legal ---------- */
.legal-updated { font-size: 13.5px; color: var(--muted-2); margin-bottom: 26px; }
.legal-sections { display: grid; gap: 22px; }
.legal-sections h2 { font-family: var(--font-serif); font-size: 25px; margin: 0 0 9px; font-weight: 700; }
.legal-sections p { margin: 0; font-size: 15.5px; line-height: 1.75; color: var(--muted-4); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--footer-bg); color: var(--cream-2); margin-top: auto; }
.footer-grid { padding: 56px 24px 30px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--bg); margin-bottom: 10px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin: 0 0 14px; color: var(--cream-4); }
.footer-addr { font-size: 13.5px; line-height: 1.8; color: var(--cream-4); }
.footer-col-title { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 14px; color: var(--cream-2); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #4A3020; }
.footer-bottom-inner { max-width: var(--max); margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: #A98B6A; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 75; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(46,27,18,.5); border: none; padding: 0; cursor: pointer; }
.cart-panel { position: relative; width: 420px; max-width: 100%; background: var(--bg); height: 100%; display: flex; flex-direction: column; box-shadow: -20px 0 50px rgba(46,27,18,.25); }
.cart-head { padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head .ch-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--accent); line-height: 1; }
.cart-body { flex: 1; overflow: auto; padding: 18px 24px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--muted-2); }
.cart-empty .ce-title { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin-bottom: 8px; }
.cart-empty p { font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; }
.cart-lines { display: grid; gap: 14px; }
.cart-line { display: flex; gap: 13px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 13px; }
.cart-line .cl-thumb { width: 62px; height: 62px; border-radius: 9px; flex: none; overflow: hidden; background: var(--section-alt); }
.cart-line .cl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .cl-main { flex: 1; min-width: 0; }
.cart-line .cl-title { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.cart-line .cl-price { font-size: 12.5px; color: var(--muted-2); margin: 3px 0 8px; }
.cl-qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid #E0CCB2; background: var(--bg); cursor: pointer; line-height: 1; }
.cl-remove { margin-left: auto; background: none; border: none; font-size: 12.5px; color: var(--accent); cursor: pointer; }
.cl-sum { font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.cart-foot { border-top: 1px solid var(--border); padding: 20px 24px 26px; background: var(--section-alt); }
.cart-totals-row { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 7px; }
.cart-grand { display: flex; justify-content: space-between; font-family: var(--font-serif); font-size: 25px; font-weight: 700; margin: 12px 0 14px; }
.cart-grand span:last-child { color: var(--accent); }
.cart-legal-note { font-size: 12px; color: var(--muted-5); text-align: center; margin-top: 10px; line-height: 1.55; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 20px; bottom: 20px; right: 20px; z-index: 70; display: none; justify-content: center; }
.cookie-banner.show { display: flex; }
.cookie-box { max-width: 900px; width: 100%; background: var(--surface); border: 1px solid var(--gold); border-radius: var(--radius-md); padding: 20px 24px; box-shadow: 0 18px 40px rgba(46,27,18,.18); display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.cookie-box .cb-text { flex: 1; min-width: 260px; font-size: 14px; line-height: 1.6; color: var(--muted-4); }
.cookie-box .cb-text strong { display: block; font-family: var(--font-serif); font-size: 19px; margin-bottom: 4px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 110px; transform: translateX(-50%); z-index: 80; background: var(--dark); color: var(--cream-1); padding: 13px 24px; border-radius: var(--pill); font-size: 14px; box-shadow: 0 12px 30px rgba(46,27,18,.3); display: none; }
.toast.show { display: block; animation: riseIn .2s ease both; }

/* ---------- Shop filters ---------- */
.filter-row { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 28px; }

/* ---------- Skeleton / no-js note ---------- */
.js-required { display: none; }
.no-js .js-required { display: block; background: var(--section-alt); border: 1px solid var(--gold); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; margin-bottom: 20px; color: var(--muted-3); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 44px 24px 32px; }
  .hero-media { height: 360px; order: -1; }
  .hero h1 { font-size: 44px; }
  .designer { grid-template-columns: 1fr; }
  .designer-result { position: static !important; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail .pd-img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-box { grid-template-columns: 1fr; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; gap: 14px; }
  nav.main-nav { display: none; width: 100%; order: 3; flex-direction: column; gap: 2px; }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 12px 10px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .cart-btn { margin-left: 0; }
  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 16px; }
  .section-head h2, .row-head h2 { font-size: 30px; }
  h1.page-title { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 20px; }
  .section-tight { padding: 36px 20px 52px; }
  .cart-panel { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 20px 24px; }
  .newsletter-box { padding: 24px; border-radius: 16px; }
  .newsletter-box h2 { font-size: 27px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-box { padding: 16px 18px; }
  .designer-form { padding: 20px; }
  .container { padding: 0 18px; }
}
