:root {
  --bg: oklch(98% 0.002 250);
  --surface: #fff;
  --surface-alt: oklch(96% 0.01 255);
  --text: oklch(20% 0.01 255);
  --text-2: oklch(30% 0.01 255);
  --text-3: oklch(35% 0.01 255);
  --text-muted: oklch(45% 0.01 255);
  --text-faint: oklch(50% 0.01 255);
  --text-faint-2: oklch(60% 0.01 255);
  --border: oklch(91% 0.004 250);
  --border-strong: oklch(88% 0.005 250);
  --primary: oklch(45% 0.16 259);
  --primary-hover: oklch(38% 0.17 259);
  --primary-dark: oklch(30% 0.15 259);
  --badge-bg: oklch(93% 0.02 259);
  --badge-text: oklch(40% 0.16 259);
  --footer-bg: oklch(16% 0.01 255);
  --footer-border: oklch(28% 0.01 255);
  --footer-text: oklch(75% 0.008 255);
  --footer-text-dim: oklch(70% 0.008 255);
  --footer-text-dim2: oklch(65% 0.008 255);
  --success: oklch(45% 0.14 150);
  --danger: oklch(55% 0.14 20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wrap-med { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--border); }
.site-header .inner { max-width: 1180px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; border-radius: 8px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 16px; }
.brand-name { font-weight: 800; font-size: 19px; color: var(--text); letter-spacing: -0.01em; }
.main-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.main-nav a { color: var(--text-2); font-weight: 500; font-size: 15px; }
.main-nav a.active { color: var(--primary); font-weight: 600; }
.cart-link { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 8px; background: var(--surface-alt); border: 1px solid oklch(90% 0.005 250); font-weight: 600; font-size: 15px; color: var(--text); }
.cart-link.is-active { background: var(--badge-bg); border-color: oklch(85% 0.03 259); color: var(--primary-dark); }
.cart-count { min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Buttons */
.btn { display: inline-block; padding: 14px 26px; border-radius: 9px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--border-strong); color: var(--text-3); }
.btn-sm { padding: 9px 0; border-radius: 7px; font-weight: 700; font-size: 13px; width: 100%; background: var(--surface-alt); color: var(--primary-dark); border: none; cursor: pointer; }
.btn-sm[disabled] { background: oklch(93% 0.004 250); color: oklch(60% 0.005 250); cursor: not-allowed; }
.btn-block { width: 100%; text-align: center; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--badge-bg) 0%, var(--bg) 100%); padding: 72px 24px 56px; }
.hero .inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-block; padding: 6px 14px; border-radius: 20px; background: var(--badge-bg); color: var(--badge-text); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.hero h1 { font-size: 44px; line-height: 1.1; font-weight: 800; margin: 20px 0 18px; letter-spacing: -0.02em; color: oklch(18% 0.01 255); }
.hero p { font-size: 18px; line-height: 1.6; color: var(--text-muted); max-width: 520px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 5/4; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Trust bar */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.trust-bar .inner { max-width: 1180px; margin: 0 auto; padding: 22px 24px; display: flex; gap: 36px; flex-wrap: wrap; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); font-weight: 600; }

/* Sections */
.section { max-width: 1180px; margin: 0 auto; padding: 64px 24px 8px; }
.section-tight { padding: 64px 24px; }
.section h2 { font-size: 28px; font-weight: 800; margin: 0 0 8px; color: oklch(18% 0.01 255); }
.section-lead { color: var(--text-muted); margin: 0 0 28px; font-size: 16px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 8px; }
.section-head h2 { margin: 0; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.cat-tile { border: 1px solid var(--border); border-radius: 12px; padding: 22px; background: #fff; }
.cat-tile .icon { font-size: 26px; margin-bottom: 10px; }
.cat-tile .label { font-weight: 700; color: var(--text); font-size: 15px; }

/* Product grid / cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 20px; }
.product-card { border: 1px solid var(--border); border-radius: 12px; background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.product-photo { aspect-ratio: 1/1; position: relative; overflow: hidden; background: var(--surface-alt); }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 6px; }
.product-oos { position: absolute; top: 10px; right: 10px; background: oklch(35% 0.01 255); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 6px; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11.5px; font-weight: 700; color: var(--badge-text); text-transform: uppercase; }
.product-name { font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.35; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.product-price { font-weight: 800; font-size: 17px; color: var(--text); }
.product-price-old { font-size: 13px; color: var(--text-faint-2); text-decoration: line-through; }

/* Category filter buttons */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 9px 18px; border-radius: 20px; font-size: 13.5px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-strong); background: #fff; color: var(--text-2); }
.filter-btn.active { border-color: transparent; background: var(--primary); color: #fff; }

/* Why-us / values */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 28px; }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--badge-bg); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.feature-grid h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.feature-grid p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Blog teasers */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.blog-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--bg); display: block; }
.blog-thumb { height: 130px; overflow: hidden; background: var(--surface-alt); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 16px; }
.blog-tag { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.blog-card h3 { font-size: 16px; font-weight: 700; margin: 8px 0 0; color: var(--text); line-height: 1.4; }
.blog-card p { font-size: 13.5px; color: oklch(48% 0.01 255); line-height: 1.55; margin: 8px 0 0; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.testimonial { border: 1px solid var(--border); border-radius: 12px; padding: 22px; background: #fff; }
.stars { color: var(--primary); font-size: 15px; margin-bottom: 10px; }
.testimonial p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin: 0 0 12px; }
.testimonial .who { font-size: 13px; font-weight: 700; color: var(--text); }

/* Newsletter */
.newsletter { max-width: 1180px; margin: 0 auto 72px; padding: 40px 24px; background: var(--primary); border-radius: 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.newsletter h3 { color: #fff; font-size: 21px; font-weight: 800; margin: 0 0 6px; }
.newsletter p { color: oklch(90% 0.02 259); font-size: 14.5px; margin: 0; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input[type="email"] { padding: 12px 16px; border-radius: 8px; border: none; font-size: 14px; min-width: 220px; }
.newsletter button { padding: 12px 22px; border-radius: 8px; border: none; background: #fff; color: var(--primary); font-weight: 700; font-size: 14px; cursor: pointer; }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 24px 28px; }
.site-footer .grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .brand { margin-bottom: 14px; }
.site-footer .brand .brand-mark { background: oklch(55% 0.16 259); width: 30px; height: 30px; border-radius: 7px; font-size: 14px; }
.site-footer .brand .brand-name { color: #fff; font-size: 16px; }
.site-footer .about { font-size: 13.5px; line-height: 1.7; max-width: 280px; color: var(--footer-text-dim2); }
.site-footer .col-title { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.site-footer .links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.site-footer .links a { color: var(--footer-text-dim); }
.site-footer .contact-block { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: var(--footer-text-dim); }
.site-footer .bottom { max-width: 1180px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid var(--footer-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: oklch(55% 0.008 255); }

.site-footer-slim { background: var(--footer-bg); color: var(--footer-text); padding: 40px 24px 24px; }
.site-footer-slim .inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.site-footer-slim .links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer-slim a { color: var(--footer-text-dim); }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--footer-bg); color: #fff; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; z-index: 100; }
.cookie-banner p { font-size: 13.5px; margin: 0; max-width: 640px; color: oklch(80% 0.008 255); }
.cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-accept { padding: 10px 20px; border-radius: 8px; border: none; background: oklch(55% 0.16 259); color: #fff; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.cookie-settings { padding: 10px 20px; border-radius: 8px; border: 1px solid oklch(40% 0.008 255); color: #fff; font-weight: 600; font-size: 13.5px; }
.cookie-banner.hidden { display: none; }

/* Inner page headers */
.page-header { padding: 44px 24px 8px; }
.page-header h1 { font-size: 32px; font-weight: 800; margin: 0 0 8px; }
.page-header p { color: var(--text-muted); margin: 0 0 28px; font-size: 16px; max-width: 640px; }
main.page-main { flex: 1; width: 100%; }

/* Legal / prose pages */
.legal-main { flex: 1; max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; width: 100%; }
.legal-main h1 { font-size: 30px; font-weight: 800; margin: 0 0 6px; }
.legal-main .updated { font-size: 13.5px; color: var(--text-faint); margin: 0 0 32px; }
.legal-main h2 { font-size: 19px; font-weight: 800; margin: 32px 0 12px; }
.legal-main p { font-size: 15px; line-height: 1.75; color: var(--text-2); }
.legal-callout { background: var(--surface-alt); border-radius: 12px; padding: 20px 24px; margin-bottom: 32px; }
.legal-callout .title { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.legal-callout p { font-size: 14.5px; line-height: 1.7; color: var(--text-2); margin: 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.legal-table th { color: var(--text-muted); font-weight: 700; font-size: 12.5px; text-transform: uppercase; }
.impressum-box { border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; background: #fff; }
.impressum-box table { width: 100%; font-size: 14.5px; line-height: 1.9; }
.impressum-box td:first-child { color: var(--text-faint); padding: 6px 0; width: 200px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-card { border: 1px solid var(--border); border-radius: 12px; padding: 20px; background: #fff; margin-bottom: 22px; }
.contact-card .title { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.contact-card .value { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-form-card { border: 1px solid var(--border); border-radius: 14px; padding: 32px; background: #fff; }
.contact-form-card h2 { font-size: 19px; font-weight: 800; margin: 0 0 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-3); }
.form-field input, .form-field select, .form-field textarea { padding: 11px 14px; border-radius: 8px; border: 1px solid var(--border-strong); font-size: 14px; font-family: inherit; }
.form-field textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--text-muted); margin-bottom: 16px; }
.form-check input { margin-top: 2px; }
.contact-map { margin-top: 56px; border-radius: 14px; overflow: hidden; height: 260px; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* Article */
.article { max-width: 720px; margin: 0 auto; padding: 48px 24px 24px; }
.article .tag { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.article h1 { font-size: 34px; font-weight: 800; margin: 12px 0 14px; line-height: 1.25; }
.article .meta { font-size: 13.5px; color: var(--text-faint); margin-bottom: 28px; }
.article-cover { aspect-ratio: 16/8; border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article p { font-size: 16px; line-height: 1.75; color: var(--text-2); margin: 0 0 18px; }
.article p.lead { font-size: 17px; color: oklch(28% 0.01 255); }
.article h2 { font-size: 22px; font-weight: 800; margin: 36px 0 14px; }
.article blockquote { border-left: 3px solid var(--primary); margin: 32px 0; padding: 4px 0 4px 20px; font-size: 17px; font-style: italic; color: var(--text-2); }
.article-cta { background: var(--surface-alt); border-radius: 12px; padding: 24px; margin: 36px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.article-cta .title { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.article-cta .sub { font-size: 13.5px; color: var(--text-muted); }
.related { max-width: 960px; margin: 16px auto 72px; padding: 0 24px; }
.related h3 { font-size: 18px; font-weight: 800; margin: 0 0 16px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; }
.related-grid a { border: 1px solid var(--border); border-radius: 10px; padding: 16px; background: #fff; font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.4; }

/* Featured blog post */
.featured-post { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; margin-bottom: 36px; }
.featured-post .thumb { min-height: 220px; overflow: hidden; }
.featured-post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured-post .body { padding: 28px 28px 28px 0; display: flex; flex-direction: column; justify-content: center; }
.featured-post .tag { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.featured-post h2 { font-size: 24px; font-weight: 800; margin: 10px 0 10px; line-height: 1.3; }
.featured-post p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* About page */
.about-hero { background: var(--surface-alt); padding: 64px 24px; }
.about-hero .inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-hero h1 { font-size: 36px; font-weight: 800; margin: 0 0 18px; letter-spacing: -0.01em; }
.about-hero p { font-size: 17px; line-height: 1.7; color: oklch(38% 0.01 255); margin: 0; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-story .photo { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; }
.about-story .photo img { width: 100%; height: 100%; object-fit: cover; }
.about-story h2 { font-size: 24px; font-weight: 800; margin: 0 0 14px; }
.about-story p { font-size: 15.5px; line-height: 1.75; color: oklch(32% 0.01 255); margin: 0 0 14px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 28px; text-align: center; }
.values-grid .icon { font-size: 28px; margin-bottom: 12px; }
.values-grid h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.values-grid p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 24px; text-align: center; }
.stats-grid .num { font-size: 32px; font-weight: 800; color: var(--primary); }
.stats-grid .label { font-size: 13.5px; color: var(--text-muted); margin-top: 6px; }

/* Product detail */
.breadcrumb { font-size: 13px; color: var(--text-faint); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-faint); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-photo { aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; position: sticky; top: 96px; }
.product-detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pd-price { font-size: 28px; font-weight: 800; }
.pd-price-old { font-size: 17px; color: var(--text-faint-2); text-decoration: line-through; }
.pd-note { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.pd-desc { font-size: 15.5px; line-height: 1.7; color: var(--text-3); margin: 0 0 24px; }
.stock-ok { display: flex; align-items: center; gap: 6px; color: var(--success); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.stock-no { display: flex; align-items: center; gap: 6px; color: var(--text-faint); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.qty-row { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 9px; overflow: hidden; }
.qty-stepper button { width: 40px; height: 44px; border: none; background: #fff; font-size: 16px; cursor: pointer; }
.qty-stepper span { width: 44px; text-align: center; font-weight: 700; font-size: 15px; }
.pd-add { flex: 1; padding: 14px 0; border-radius: 9px; border: none; background: var(--primary); color: #fff; font-weight: 700; font-size: 15px; cursor: pointer; }
.pd-add[disabled] { background: oklch(80% 0.01 255); cursor: not-allowed; }
.pd-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.pd-perks div { font-size: 13px; color: var(--text-3); }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 32px; align-items: start; }
.cart-line { display: flex; gap: 16px; border: 1px solid var(--border); border-radius: 12px; padding: 16px; background: #fff; align-items: center; }
.cart-line .thumb { width: 76px; height: 76px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .name { font-weight: 700; font-size: 14.5px; color: var(--text); line-height: 1.35; }
.cart-line .unit { font-size: 13px; color: var(--text-faint); margin-top: 4px; }
.cart-line .remove { border: none; background: none; color: var(--danger); font-size: 12.5px; font-weight: 600; padding: 0; margin-top: 8px; cursor: pointer; }
.cart-line .stepper { display: flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 8px; overflow: hidden; }
.cart-line .stepper button { width: 32px; height: 34px; border: none; background: #fff; cursor: pointer; }
.cart-line .stepper span { width: 34px; text-align: center; font-weight: 700; font-size: 13.5px; }
.cart-line .subtotal { width: 80px; text-align: right; font-weight: 800; font-size: 15px; }
.cart-summary { border: 1px solid var(--border); border-radius: 12px; padding: 24px; background: #fff; position: sticky; top: 96px; }
.cart-summary h2 { font-size: 17px; font-weight: 800; margin: 0 0 18px; }
.cart-summary .row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text-muted); }
.cart-summary .total { display: flex; justify-content: space-between; font-size: 17px; font-weight: 800; padding-top: 14px; border-top: 1px solid var(--border); margin-bottom: 20px; }
.cart-summary .fine { font-size: 12px; color: var(--text-faint); margin: 14px 0 0; line-height: 1.5; }
.cart-empty { text-align: center; padding: 72px 0; border: 1px dashed var(--border-strong); border-radius: 14px; }
.cart-empty .icon { font-size: 36px; margin-bottom: 14px; }
.cart-empty p { font-size: 16px; color: var(--text-muted); margin: 0 0 20px; }

/* Form status pages (handler responses) */
.status-wrap { max-width: 560px; margin: 96px auto; padding: 0 24px; text-align: center; }
.status-wrap .icon { font-size: 40px; margin-bottom: 16px; }
.status-wrap h1 { font-size: 26px; font-weight: 800; margin: 0 0 12px; }
.status-wrap p { font-size: 15.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 28px; }

@media (max-width: 860px) {
  .hero .inner, .about-story, .contact-grid, .product-detail, .cart-layout, .featured-post { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-detail-photo, .cart-summary { position: static; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 32px; }
  .site-footer .grid { grid-template-columns: 1fr; }
}
