/* Kukas Gorcha — mediteranski dom & dekor
   Design tokens preserved from the source Claude Design file. */

:root {
  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --ink: oklch(25% 0.02 250);
  --ink-dark: oklch(22% 0.02 250);
  --ink-30: oklch(30% 0.02 250);
  --ink-35: oklch(35% 0.02 250);
  --ink-38: oklch(38% 0.02 250);
  --ink-45: oklch(45% 0.02 250);
  --ink-50: oklch(50% 0.02 250);

  --blue: oklch(56% 0.09 231);
  --blue-dark: oklch(45% 0.08 231);
  --blue-darker: oklch(45% 0.07 231);
  --blue-light: oklch(60% 0.07 231);

  --sand-label: oklch(45% 0.07 75);
  --sand-bg: oklch(95% 0.015 80);

  --bg: oklch(98% 0.01 85);
  --bg-card: oklch(99% 0.005 85);
  --bg-near-white: oklch(97% 0.005 85);

  --border: oklch(92% 0.01 85);
  --border-light: oklch(90% 0.01 85);
  --border-input: oklch(85% 0.01 85);
  --border-btn: oklch(88% 0.01 85);

  --footer-bg: oklch(22% 0.02 250);
  --footer-border: oklch(35% 0.02 250);
  --footer-text: oklch(85% 0.01 85);
  --footer-text-soft: oklch(70% 0.01 85);
  --footer-label: oklch(70% 0.06 75);
  --footer-muted: oklch(60% 0.01 85);

  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink-30);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue-light); }

input, textarea, button { font-family: var(--font-sans); }

h1, h2, h3 { font-family: var(--font-serif); }

.page-wrap { flex: 1; }

@keyframes kg-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Top announcement bar */
.topbar {
  background: var(--ink-dark);
  color: oklch(90% 0.01 85);
  text-align: center;
  padding: 7px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink-dark);
  color: var(--bg-near-white);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  animation: kg-fade 0.4s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { max-width: 640px; font-size: 14px; line-height: 1.5; margin: 0; }
.cookie-banner a { color: oklch(80% 0.05 75); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-decline, .cookie-accept {
  border-radius: var(--radius); cursor: pointer; font-family: var(--font-sans); font-size: 13px; padding: 9px 18px; border: none;
}
.cookie-decline { background: transparent; border: 1px solid oklch(60% 0.01 85); color: oklch(90% 0.005 85); }
.cookie-accept { background: var(--blue); color: white; padding: 9px 20px; font-weight: 600; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-near-white);
  flex-wrap: wrap;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.logo-tag { font-size: 10.5px; letter-spacing: 0.18em; color: var(--ink-45); text-transform: uppercase; margin-top: 2px; }

.main-nav { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  color: var(--ink); font-weight: 500; border-bottom: 2px solid transparent; padding-bottom: 4px;
  font-size: 15px; letter-spacing: 0.02em;
}
.main-nav a.active { color: var(--blue-dark); font-weight: 600; border-bottom-color: var(--blue); }

.cart-link {
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--border-btn);
  padding: 9px 16px; border-radius: 3px; position: relative; color: var(--ink);
}
.cart-link span.label { font-size: 13px; letter-spacing: 0.03em; }
.cart-badge {
  background: oklch(56% 0.09 231); color: white; font-size: 11px; font-weight: 600;
  width: 19px; height: 19px; border-radius: 50%; display: none; align-items: center; justify-content: center;
}
.cart-badge.show { display: flex; }

/* Buttons */
.btn {
  display: inline-block; border: none; padding: 15px 34px; font-size: 14px; letter-spacing: 0.04em;
  cursor: pointer; border-radius: var(--radius); font-family: var(--font-sans); font-weight: 600; text-align: center;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-light); color: white; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); font-weight: 400; }
.btn-outline:hover { color: var(--blue-dark); border-color: var(--blue-dark); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-45); color: white; }
.btn-small { padding: 10px 16px; font-size: 12.5px; }
.btn-full { width: 100%; display: block; }

/* Hero */
.hero {
  position: relative;
  padding: 0;
  display: block;
}
.hero-media { position: relative; height: 460px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  max-width: 720px; width: calc(100% - 48px); background: oklch(99% 0.005 85 / 0.93);
  padding: 40px 48px; border-radius: 2px; text-align: center;
}
.eyebrow-mono { font-family: monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--ink-45); margin-bottom: 18px; }
.hero-card h1 { font-size: 40px; font-weight: 700; margin: 0 0 18px; line-height: 1.15; color: oklch(22% 0.03 250); }
.hero-card p { font-size: 16px; line-height: 1.6; color: var(--ink-38); margin: 0 0 26px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Perks strip */
.perks {
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; padding: 36px 48px;
  background: var(--bg-near-white); border-bottom: 1px solid var(--border);
}
.perk { text-align: center; max-width: 190px; }
.perk-icon { font-size: 22px; margin-bottom: 6px; }
.perk-text { font-size: 13px; color: var(--ink-38); }

/* Sections */
.section { padding: 80px 48px; }
.section-tight { padding: 0 48px 80px; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-eyebrow { font-size: 12px; letter-spacing: 0.15em; color: var(--blue-darker); text-transform: uppercase; margin-bottom: 10px; }
.section-eyebrow.sand { color: var(--sand-label); }
.section-title { font-size: 34px; margin: 0; font-weight: 600; }
.section-sub { font-size: 15px; color: var(--ink-45); margin: 0; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; max-width: 1180px; margin: 0 auto; }
.category-tile { cursor: pointer; border-radius: 2px; overflow: hidden; border: 1px solid var(--border); position: relative; display: block; height: 140px; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; }
.category-tile .category-label {
  position: absolute; left: 14px; bottom: 14px; background: oklch(99% 0.005 85 / 0.9);
  font-size: 13px; padding: 6px 12px; border-radius: 2px; font-weight: 500; color: var(--ink);
}

/* Product grid & cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; max-width: 1240px; margin: 0 auto; }
.product-card { border: 1px solid var(--border); border-radius: 2px; overflow: hidden; background: var(--bg-card); display: flex; flex-direction: column; }
.product-media { position: relative; height: 190px; display: block; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11px; color: var(--blue-darker); text-transform: uppercase; letter-spacing: 0.04em; }
.product-name { font-size: 15.5px; font-weight: 500; color: var(--ink-30); }
a.product-name:hover { color: var(--blue-light); }
.product-price { font-size: 15px; color: var(--blue-dark); font-weight: 600; }
.add-to-cart { margin-top: auto; }

/* Filters */
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  background: transparent; color: var(--ink); border: 1px solid var(--border-input); padding: 9px 18px;
  border-radius: 20px; font-size: 13px; cursor: pointer; font-family: var(--font-sans);
}
.filter-btn.active { background: var(--ink); color: white; border-color: var(--ink); }

/* Philosophy / split section */
.split { background: var(--sand-bg); padding: 80px 48px; }
.split-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media img { width: 100%; height: 320px; object-fit: cover; border-radius: 2px; }
.split-content h2 { font-size: 30px; margin: 0 0 16px; font-weight: 600; }
.split-content p { font-size: 15.5px; line-height: 1.7; color: var(--ink-35); margin: 0 0 16px; }
.split-content a { font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--blue-dark); }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; max-width: 1180px; margin: 0 auto; }
.blog-grid.wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1080px; }
.article-card { cursor: pointer; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; background: var(--bg-card); display: block; }
.article-media { height: 150px; overflow: hidden; }
.blog-grid.wide .article-media { height: 170px; }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 18px; }
.blog-grid.wide .article-body { padding: 20px; }
.article-cat { font-size: 11px; color: var(--blue-darker); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.article-title { font-family: var(--font-serif); font-size: 19px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; color: var(--ink); }
.blog-grid.wide .article-title { font-size: 21px; margin-bottom: 10px; }
.article-excerpt { font-size: 13.5px; color: var(--ink-45); line-height: 1.5; }
.blog-grid.wide .article-excerpt { font-size: 14px; line-height: 1.6; }

/* Testimonials */
.testimonials { background: var(--ink-dark); color: oklch(95% 0.005 85); padding: 70px 48px; }
.testimonials-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.testimonials-eyebrow { font-size: 12px; letter-spacing: 0.15em; color: oklch(75% 0.05 75); text-transform: uppercase; margin-bottom: 30px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 34px; }
.testimonial p { font-size: 15px; line-height: 1.7; font-style: italic; margin: 0 0 12px; }
.testimonial span { font-size: 13px; color: oklch(75% 0.01 85); }

/* Newsletter */
.newsletter { padding: 70px 48px; text-align: center; background: var(--sand-bg); }
.newsletter h2 { font-size: 28px; margin: 0 0 12px; font-weight: 600; }
.newsletter > p { font-size: 14.5px; color: var(--ink-38); margin: 0 0 22px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 13px 16px; border: 1px solid var(--border-input); border-radius: 2px; font-size: 14px; }
.success-text { font-size: 14px; color: var(--blue-dark); font-weight: 600; }

/* Forms */
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-stack input, .form-stack textarea {
  padding: 13px 16px; border: 1px solid var(--border-input); border-radius: 2px; font-size: 14px; width: 100%;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--ink-45); margin-bottom: 6px; }
.form-legal { font-size: 12px; color: var(--ink-50); text-align: center; }
.form-error { font-size: 13.5px; color: oklch(50% 0.15 25); font-weight: 600; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: var(--ink-45); margin-bottom: 24px; }

/* Product detail */
.product-detail { padding: 56px 48px 90px; max-width: 1080px; margin: 0 auto; }
.product-detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; }
.product-detail-media { height: 460px; border-radius: 2px; overflow: hidden; }
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info .product-cat { margin-bottom: 10px; display: block; }
.product-detail-info h1 { font-size: 34px; margin: 0 0 14px; font-weight: 700; color: var(--ink); }
.product-detail-price { font-size: 24px; color: var(--blue-dark); font-weight: 600; margin-bottom: 20px; }
.product-detail-desc { font-size: 15px; line-height: 1.7; color: var(--ink-35); margin: 0 0 26px; }
.product-facts { border-top: 1px solid var(--border); padding-top: 18px; font-size: 13.5px; color: var(--ink-45); display: flex; flex-direction: column; gap: 8px; }
.related-heading { font-family: var(--font-serif); font-size: 24px; margin: 80px 0 24px; font-weight: 600; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.related-card { border: 1px solid var(--border); border-radius: 2px; overflow: hidden; background: var(--bg-card); display: block; }
.related-media { height: 150px; overflow: hidden; }
.related-media img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 14px; }
.related-body .product-name { font-size: 14px; display: block; margin-bottom: 6px; }
.related-body .product-price { font-size: 14px; }

/* Cart */
.cart-page { padding: 56px 48px 90px; max-width: 900px; margin: 0 auto; }
.cart-page h1 { font-size: 34px; margin: 0 0 32px; font-weight: 700; }
.cart-items { display: flex; flex-direction: column; gap: 18px; }
.cart-row { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 20px; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 18px; }
.cart-row img { width: 90px; height: 90px; object-fit: cover; border-radius: 2px; }
.cart-row-name { font-size: 15.5px; font-weight: 500; margin-bottom: 6px; }
.cart-row-unit { font-size: 13.5px; color: var(--ink-45); }
.qty-control { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--border-input); background: white; cursor: pointer; border-radius: 2px; }
.qty-value { font-size: 14px; min-width: 16px; text-align: center; }
.cart-row-total { font-size: 15px; font-weight: 600; }
.cart-remove { cursor: pointer; font-size: 13px; color: var(--ink-50); text-decoration: underline; background: none; border: none; padding: 0; }
.cart-summary { margin-top: 32px; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-summary .ship { font-size: 14px; color: var(--ink-45); }
.cart-summary .total { font-size: 20px; font-weight: 700; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { font-size: 15px; color: var(--ink-45); margin-bottom: 22px; }
[hidden] { display: none !important; }

/* Checkout */
.checkout-page { padding: 56px 48px 90px; max-width: 720px; margin: 0 auto; }
.checkout-page h1 { font-size: 32px; margin: 0 0 30px; font-weight: 700; }
.order-summary-box { background: var(--sand-bg); border-radius: 2px; padding: 18px; margin: 8px 0; font-size: 14px; display: flex; justify-content: space-between; }
.order-mini-list { font-size: 13.5px; color: var(--ink-38); line-height: 1.7; margin: 0 0 6px; }
.pay-methods { font-size: 13px; color: var(--ink-45); margin-bottom: 6px; }
.thanks-block { text-align: center; padding: 60px 20px; }
.thanks-icon { font-size: 40px; margin-bottom: 16px; color: var(--blue-dark); }
.thanks-block h1 { font-size: 30px; margin: 0 0 12px; font-weight: 700; }
.thanks-block p { font-size: 14.5px; color: var(--ink-45); margin: 0 0 26px; }

/* About */
.about-page { padding: 56px 48px 100px; max-width: 900px; margin: 0 auto; }
.about-head { text-align: center; margin-bottom: 50px; }
.about-head h1 { font-size: 40px; margin: 0 0 14px; font-weight: 700; }
.about-head p { font-size: 15.5px; color: var(--ink-45); max-width: 560px; margin: 0 auto; }
.about-media { height: 340px; border-radius: 2px; overflow: hidden; margin-bottom: 50px; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.about-grid h2 { font-size: 24px; margin: 0 0 14px; font-weight: 600; }
.about-grid p { font-size: 15px; line-height: 1.75; color: var(--ink-35); margin: 0 0 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; border-top: 1px solid var(--border); padding-top: 40px; }
.values-grid .value-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.values-grid .value-text { font-size: 13.5px; color: var(--ink-45); line-height: 1.6; }

/* Contact */
.contact-page { padding: 56px 48px 100px; max-width: 1080px; margin: 0 auto; }
.contact-head { text-align: center; margin-bottom: 48px; }
.contact-head h1 { font-size: 40px; margin: 0 0 10px; font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 70px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-darker); margin-bottom: 8px; }
.contact-info-text { font-size: 14.5px; color: var(--ink-35); line-height: 1.6; }
.contact-map { height: 180px; border-radius: 2px; overflow: hidden; margin-top: 8px; position: relative; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-map .contact-map-badge {
  position: absolute; left: 10px; bottom: 10px; font-family: monospace; font-size: 10px;
  background: oklch(99% 0.005 85 / 0.9); padding: 4px 10px; border-radius: 2px;
}
.faq-heading { font-family: var(--font-serif); font-size: 26px; margin: 0 0 24px; font-weight: 600; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 22px; max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding-bottom: 18px; }
.faq-q { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--ink-45); line-height: 1.6; }

/* Legal pages */
.legal-page { padding: 56px 48px 100px; max-width: 760px; margin: 0 auto; }
.legal-page.narrow { max-width: 720px; }
.legal-page h1 { font-size: 34px; margin: 0 0 30px; font-weight: 700; }
.legal-page h3 { font-size: 16px; font-weight: 600; margin: 26px 0 10px; font-family: var(--font-sans); }
.legal-page p { font-size: 15px; line-height: 1.9; color: var(--ink-30); }

/* Blog post */
.post-page { padding: 56px 48px 100px; max-width: 760px; margin: 0 auto; }
.post-eyebrow { font-size: 12px; color: var(--blue-darker); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.post-page h1 { font-size: 38px; margin: 0 0 26px; font-weight: 700; line-height: 1.2; }
.post-media { height: 360px; border-radius: 2px; margin-bottom: 34px; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; }
.post-body { font-size: 16px; line-height: 1.85; color: var(--ink); }
.post-body p { margin: 0 0 20px; }
.post-cta { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }

/* Catalog page */
.catalog-page { padding: 56px 48px 90px; }
.catalog-head { text-align: center; margin-bottom: 40px; }
.catalog-head h1 { font-size: 40px; margin: 0 0 10px; font-weight: 700; }
.catalog-head p { font-size: 15px; color: var(--ink-45); margin: 0; }

/* Blog list page */
.bloglist-page { padding: 56px 48px 90px; max-width: 1080px; margin: 0 auto; }
.bloglist-head { text-align: center; margin-bottom: 48px; }
.bloglist-head h1 { font-size: 40px; margin: 0 0 10px; font-weight: 700; }
.bloglist-head p { font-size: 15px; color: var(--ink-45); margin: 0; }

/* 404 */
.error-page { padding: 100px 48px; text-align: center; max-width: 640px; margin: 0 auto; }
.error-page h1 { font-family: var(--font-serif); font-size: 88px; margin: 0; color: var(--blue-dark); }
.error-page h2 { font-size: 26px; margin: 8px 0 16px; }
.error-page p { font-size: 15px; color: var(--ink-45); margin: 0 0 28px; }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 60px 48px 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; max-width: 1240px; margin: 0 auto 40px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-brand-desc { font-size: 13.5px; line-height: 1.7; color: var(--footer-text-soft); max-width: 260px; margin: 0; }
.footer-col-title { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--footer-label); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: white; }
.footer-contact { font-size: 13.5px; line-height: 1.9; color: var(--footer-text); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; border-top: 1px solid var(--footer-border); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--footer-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .site-header { padding: 16px 20px; }
  .main-nav { gap: 16px; order: 3; width: 100%; justify-content: center; }
  .split-inner, .about-grid, .contact-grid, .product-detail-grid, .form-row-2, .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 28px 24px; }
  .hero-card h1 { font-size: 30px; }
  .section, .section-tight, .split, .catalog-page, .bloglist-page { padding-left: 20px; padding-right: 20px; }
  .product-detail, .cart-page, .checkout-page, .about-page, .contact-page, .legal-page, .post-page { padding-left: 20px; padding-right: 20px; }
  .cart-row { grid-template-columns: 70px 1fr; grid-template-areas: "img name" "img total" "img remove"; }
  .cart-row img { grid-area: img; }
}
