/* Lakeuden Kutsu — design system. Earthy, airy, Scandinavian farm brand. */

:root {
  --green-900: #1b3a22;
  --green-800: #234d2c;
  --green-700: #2f6238;
  --green-500: #5f8f4a;
  --green-100: #e4eedd;
  --gold-600: #b8891f;
  --gold-500: #d9a52f;
  --gold-400: #e3b53a;
  --gold-200: #f2d57a;
  --gold-100: #fbf1d1;
  --cream: #f7f1e4;
  --cream-2: #efe6d2;
  --paper: #fffdf8;
  --ink: #1f2418;
  --ink-2: #4a5140;
  --ink-3: #7a8070;
  --line: #e2d9c4;
  --sky: #dcecf7;
  --red: #a63a2b;
  --shadow-sm: 0 1px 2px rgb(31 36 24 / 0.06), 0 2px 8px rgb(31 36 24 / 0.05);
  --shadow-md: 0 6px 24px rgb(31 36 24 / 0.1), 0 2px 6px rgb(31 36 24 / 0.06);
  --shadow-lg: 0 24px 60px rgb(31 36 24 / 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }
address { font-style: normal; }
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--ink-3); font-size: 0.95rem; }
.eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 0.75rem;
}
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--green-800); color: #fff; padding: 0.5rem 1rem; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.3rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green-800); color: var(--cream); box-shadow: 0 6px 18px rgb(35 77 44 / 0.25); }
.btn--primary:hover { background: var(--green-700); box-shadow: 0 8px 22px rgb(35 77 44 / 0.32); }
.btn--ghost { background: rgb(255 255 255 / 0.6); border-color: var(--line); color: var(--ink); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; border-color: var(--gold-500); }
.btn--text { background: none; color: var(--ink-3); padding: 0.5rem; }
.btn--text:hover { color: var(--red); }
.btn--lg { padding: 0.9rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.icon-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid transparent; background: transparent; color: var(--ink);
  transition: background 0.15s, border-color 0.15s;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { background: var(--cream-2); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 6px; }

/* Demo ribbon + header */
.demo-ribbon {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--green-900); color: var(--gold-200); font-size: 0.8rem; letter-spacing: 0.02em;
  padding: 0.4rem 1rem; text-align: center;
}
.demo-ribbon__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 3px rgb(227 181 58 / 0.25); }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgb(255 253 248 / 0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--green-800); }
.brand__tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }
.site-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.site-nav a { text-decoration: none; font-weight: 500; color: var(--ink-2); position: relative; padding: 0.25rem 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform 0.2s; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-header__actions { display: flex; align-items: center; gap: 0.25rem; }
.cart-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; position: relative;
  padding: 0.5rem 1rem 0.5rem 0.8rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-weight: 600; transition: border-color 0.15s, box-shadow 0.15s;
}
.cart-btn:hover { border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-btn__badge {
  position: absolute; top: -7px; right: -6px; min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px; background: var(--gold-500); color: var(--green-900); font-size: 0.75rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid var(--paper);
}
.cart-btn__badge[hidden] { display: none; }
.cart-btn.bump .cart-btn__badge { animation: bump 0.35s ease; }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }
#search-toggle { display: none; }

/* Hero */
.hero { position: relative; min-height: clamp(560px, 82vh, 820px); display: flex; align-items: center; overflow: hidden; color: var(--ink); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgb(247 241 228 / 0.94) 0%, rgb(247 241 228 / 0.86) 42%, rgb(247 241 228 / 0.45) 60%, rgb(247 241 228 / 0) 78%),
    linear-gradient(180deg, rgb(247 241 228 / 0) 70%, rgb(255 253 248 / 0.7) 100%);
}
.hero__content { padding-block: 5rem; max-width: 640px; animation: rise 0.7s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero h1 { color: var(--green-900); }
.hero__lead { font-size: 1.12rem; color: var(--ink-2); max-width: 54ch; margin-bottom: 1.75rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.88rem; color: var(--ink-2); }
.hero__trust li { display: flex; align-items: center; gap: 0.5rem; }
.hero__trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }

/* USP */
.usp { background: var(--green-800); color: var(--cream); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 1.4rem; }
.usp__item { display: flex; gap: 0.85rem; align-items: flex-start; }
.usp__icon { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: rgb(242 213 122 / 0.14); color: var(--gold-200); }
.usp__icon svg { width: 24px; height: 24px; }
.usp__item strong { display: block; font-size: 0.95rem; }
.usp__item span:not(.usp__icon) { font-size: 0.84rem; color: rgb(247 241 228 / 0.72); }

/* Section heads */
section { scroll-margin-top: calc(var(--header-h) + 1rem); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 1.5rem; }
.section-head h2 { margin-bottom: 0.25rem; }
.section-head__lead { color: var(--ink-3); margin: 0; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }

/* Catalogue */
.catalogue { padding-block: 4.5rem 5rem; }
.catalogue__tools { display: flex; gap: 0.75rem; align-items: center; }
.search { display: flex; align-items: center; gap: 0.5rem; padding: 0 0.9rem; height: 44px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; min-width: 260px; transition: border-color 0.15s, box-shadow 0.15s; }
.search:focus-within { border-color: var(--green-500); box-shadow: 0 0 0 4px rgb(95 143 74 / 0.15); }
.search svg { width: 18px; height: 18px; color: var(--ink-3); flex: none; }
.search input { border: 0; outline: 0; background: transparent; width: 100%; }
.select select { height: 44px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; padding: 0 2.2rem 0 1rem; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%234a5140' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.chip {
  padding: 0.5rem 1rem; border-radius: 999px; border: 1.5px solid var(--line); background: #fff;
  font-weight: 500; font-size: 0.92rem; color: var(--ink-2); transition: all 0.15s;
}
.chip:hover { border-color: var(--green-500); color: var(--green-800); }
.chip[aria-selected="true"] { background: var(--green-800); border-color: var(--green-800); color: var(--cream); }
.chip__n { opacity: 0.6; font-size: 0.8em; margin-left: 0.35rem; }
.result-count { font-size: 0.85rem; color: var(--ink-3); margin-bottom: 1rem; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.card {
  position: relative; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease; animation: rise 0.5s ease both;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__art { aspect-ratio: 1; background: var(--sky); cursor: pointer; border: 0; padding: 0; width: 100%; }
.card__art svg { width: 100%; height: 100%; transition: transform 0.4s ease; }
.card:hover .card__art svg { transform: scale(1.04); }
.card__badge {
  position: absolute; top: 12px; left: 12px; padding: 0.25rem 0.65rem; border-radius: 999px;
  background: var(--gold-200); color: var(--green-900); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.card__body { display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem 1.1rem 1.1rem; flex: 1; }
.card__cat { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }
.card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 0; line-height: 1.2; }
.card__title button { all: unset; cursor: pointer; }
.card__title button:hover { color: var(--green-700); }
.card__title button::after { content: ""; position: absolute; inset: 0; } /* whole card opens the modal */
.card__meta { font-size: 0.85rem; color: var(--ink-3); }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; padding-top: 0.75rem; }
.card__price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green-800); }
.card__price small { font-family: var(--font-body); font-size: 0.75rem; color: var(--ink-3); font-weight: 500; margin-left: 0.25rem; }
.card__add { position: relative; z-index: 1; padding: 0.55rem 1rem; }
.card__add svg { width: 16px; height: 16px; }
.empty { text-align: center; padding: 4rem 1rem; border: 1.5px dashed var(--line); border-radius: var(--radius); }

/* Story */
.story { background: var(--cream); padding-block: 5rem; }
.story__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.story__figure { margin: 0; }
.story__figure img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 16 / 10; object-fit: cover; }
.story__figure figcaption { font-size: 0.85rem; color: var(--ink-3); margin-top: 0.75rem; font-style: italic; }
.story__text p { color: var(--ink-2); }
.stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.stats dt { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-800); line-height: 1; }
.stats dd { font-size: 0.85rem; color: var(--ink-3); margin-top: 0.25rem; }

/* Seasons */
.seasons { padding-block: 5rem; }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.season-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.season-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.season-card__body { padding: 1rem 1.1rem 1.2rem; }
.season-card h3 { margin-bottom: 0.3rem; }
.season-card p { margin: 0; font-size: 0.9rem; color: var(--ink-2); }

/* Contact */
.contact { padding-block: 0 5rem; }
.contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.contact__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-sm); }
.contact__card--news { background: linear-gradient(135deg, var(--green-800), var(--green-900)); color: var(--cream); border: 0; }
.contact__card--news .eyebrow { color: var(--gold-200); }
.contact__card--news p { color: rgb(247 241 228 / 0.8); }
.news-form { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.news-form input { flex: 1; min-width: 0; height: 48px; border-radius: 999px; border: 1.5px solid rgb(255 255 255 / 0.25); background: rgb(255 255 255 / 0.1); color: #fff; padding: 0 1.1rem; }
.news-form input::placeholder { color: rgb(247 241 228 / 0.55); }
.news-form input:focus { outline: 3px solid var(--gold-500); outline-offset: 1px; }
.news-form .btn--primary { background: var(--gold-400); color: var(--green-900); box-shadow: none; }
.news-form .btn--primary:hover { background: var(--gold-200); }
.news-form__note { font-size: 0.8rem; margin: 0.75rem 0 0; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1.5rem; margin: 1rem 0; }
.hours div { display: contents; }
.hours dt { font-weight: 600; }
.hours dd { color: var(--ink-2); }

/* Footer */
.site-footer { background: var(--green-900); color: rgb(247 241 228 / 0.8); padding-block: 3rem 2.5rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem 3rem; }
.site-footer .brand__name { color: var(--gold-200); font-size: 1.5rem; }
.site-footer__brand p { margin-top: 0.5rem; font-size: 0.92rem; max-width: 36ch; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: flex-start; justify-content: flex-end; }
.site-footer__links a { text-decoration: none; color: var(--cream); font-weight: 500; }
.site-footer__links a:hover { color: var(--gold-200); }
.site-footer__note { grid-column: 1 / -1; font-size: 0.8rem; border-top: 1px solid rgb(255 255 255 / 0.12); padding-top: 1.25rem; margin: 0; color: rgb(247 241 228 / 0.55); }

/* Cart drawer */
.backdrop { position: fixed; inset: 0; background: rgb(27 58 34 / 0.45); backdrop-filter: blur(2px); z-index: 50; animation: fade 0.2s ease; }
.backdrop[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: var(--paper); z-index: 60;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); visibility: hidden;
}
.drawer.open { transform: none; visibility: visible; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--line); }
.drawer__head h2 { margin: 0; font-size: 1.4rem; }
.drawer__count { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-3); font-weight: 500; }
.drawer__ship { padding: 0.9rem 1.25rem; background: var(--gold-100); font-size: 0.85rem; }
.drawer__ship p { margin: 0 0 0.5rem; }
.drawer__ship[hidden] { display: none; }
.progress { height: 6px; border-radius: 999px; background: rgb(184 137 31 / 0.2); overflow: hidden; }
.progress span { display: block; height: 100%; width: 0; background: var(--gold-500); border-radius: 999px; transition: width 0.3s ease; }
.cart-lines { flex: 1; overflow-y: auto; padding: 0.5rem 1.25rem; }
.line { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.line__art { width: 64px; height: 64px; border-radius: 12px; overflow: hidden; background: var(--sky); }
.line__name { font-weight: 600; font-size: 0.95rem; line-height: 1.2; }
.line__unit { font-size: 0.8rem; color: var(--ink-3); }
.line__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.line__price { font-weight: 700; color: var(--green-800); }
.line__remove { all: unset; cursor: pointer; font-size: 0.78rem; color: var(--ink-3); text-decoration: underline; }
.line__remove:hover { color: var(--red); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; height: 36px; }
.qty button { width: 34px; height: 100%; border: 0; background: transparent; font-size: 1.1rem; line-height: 1; border-radius: 999px; }
.qty button:hover { background: var(--cream-2); }
.qty input { width: 38px; text-align: center; border: 0; background: transparent; -moz-appearance: textfield; appearance: textfield; font-weight: 600; }
.qty input::-webkit-inner-spin-button, .qty input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.qty--sm { height: 32px; } .qty--sm button { width: 30px; } .qty--sm input { width: 32px; font-size: 0.9rem; }
.drawer__empty { flex: 1; display: grid; place-content: center; text-align: center; gap: 0.5rem; color: var(--ink-3); }
.drawer__empty[hidden] { display: none; }
.drawer__foot { padding: 1.1rem 1.25rem 1.25rem; border-top: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; gap: 0.6rem; }
.drawer__foot[hidden] { display: none; }
.sum div { display: flex; justify-content: space-between; font-size: 0.92rem; padding: 0.2rem 0; color: var(--ink-2); }
.sum__total { border-top: 1px solid var(--line); margin-top: 0.35rem; padding-top: 0.6rem !important; font-weight: 700; font-size: 1.1rem !important; color: var(--ink) !important; }

/* Modals */
.modal { border: 0; padding: 0; border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-lg); color: var(--ink); max-width: min(960px, calc(100vw - 2rem)); max-height: calc(100vh - 2rem); overflow: auto; }
.modal::backdrop { background: rgb(27 58 34 / 0.5); backdrop-filter: blur(3px); }
.modal[open] { animation: pop 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 12px; right: 12px; background: rgb(255 255 255 / 0.85); z-index: 2; }
.modal--product { display: grid; grid-template-columns: 1fr 1fr; width: 880px; }
.modal--product:not([open]) { display: none; }
.modal__art { background: var(--sky); }
.modal__art svg { width: 100%; height: 100%; }
.modal__body { padding: 2.25rem 2.25rem 2rem; display: flex; flex-direction: column; }
.modal__body h2 { font-size: 1.9rem; }
.modal__meta { color: var(--ink-3); font-size: 0.9rem; }
.modal__desc { color: var(--ink-2); }
.modal__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 0.75rem 0 1.5rem; }
.modal__facts li { background: var(--cream); border-radius: var(--radius-sm); padding: 0.6rem 0.8rem; font-size: 0.85rem; }
.modal__facts strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-600); margin-bottom: 0.15rem; }
.modal__buy { display: flex; gap: 0.75rem; align-items: center; margin-top: auto; flex-wrap: wrap; }
.modal__buy .btn { flex: 1; }

.modal--checkout { width: 960px; }
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; }
.checkout[hidden] { display: none; }
.checkout__form { padding: 2.25rem; }
.checkout__form h2 { font-size: 1.9rem; }
.checkout fieldset { border: 0; padding: 0; margin: 1.5rem 0 0; }
.checkout legend { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 0.75rem; padding: 0; }
.checkout label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; font-weight: 500; color: var(--ink-2); margin-bottom: 0.75rem; }
.checkout input:not([type="radio"]) { height: 44px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); padding: 0 0.9rem; background: #fff; color: var(--ink); font-weight: 400; }
.checkout input:not([type="radio"]):focus { outline: 3px solid rgb(95 143 74 / 0.25); border-color: var(--green-500); }
.checkout input.invalid { border-color: var(--red); background: #fff6f4; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.radio-cards { display: grid; gap: 0.5rem; margin-bottom: 0.75rem; }
.radio-card { display: flex !important; flex-direction: row !important; align-items: center; gap: 0.75rem; padding: 0.75rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; cursor: pointer; margin-bottom: 0 !important; }
.radio-card:has(input:checked) { border-color: var(--green-700); background: var(--green-100); }
.radio-card input { accent-color: var(--green-800); width: 18px; height: 18px; margin: 0; }
.radio-card span { display: flex; flex-direction: column; flex: 1; }
.radio-card strong { font-size: 0.92rem; color: var(--ink); }
.radio-card small { color: var(--ink-3); }
.radio-card b { font-weight: 700; color: var(--green-800); }
#address-fields[hidden] { display: none; }
.form-error { color: var(--red); font-weight: 600; font-size: 0.9rem; margin: 0.5rem 0; }
.form-error[hidden] { display: none; }
.checkout__summary { background: var(--cream); padding: 2.25rem 1.75rem; border-left: 1px solid var(--line); }
.checkout__summary h3 { margin-bottom: 1rem; }
.checkout__summary ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; max-height: 40vh; overflow: auto; }
.checkout__summary li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; }
.checkout__summary li span:last-child { font-weight: 600; white-space: nowrap; }
.checkout__done { padding: 3rem 2.5rem; text-align: center; max-width: 560px; }
.checkout__done[hidden] { display: none; }
.done__mark { width: 72px; margin: 0 auto 1.25rem; }
.checkout__done h2 { font-size: 1.8rem; }

/* Toasts */
.toasts { position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%); display: flex; flex-direction: column; gap: 0.5rem; z-index: 80; pointer-events: none; }
.toast { background: var(--green-900); color: var(--cream); padding: 0.7rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-md); font-size: 0.9rem; font-weight: 500; animation: toast-in 0.25s ease, toast-out 0.3s ease 2.4s forwards; display: flex; gap: 0.5rem; align-items: center; }
.toast svg { width: 18px; height: 18px; color: var(--gold-200); }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateY(6px); } }

/* Responsive */
@media (max-width: 1000px) {
  :root { --header-h: 112px; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-header__inner { flex-wrap: wrap; height: auto; padding: 0.65rem 0 0.5rem; row-gap: 0.35rem; }
  .brand { order: 1; }
  .site-header__actions { order: 2; margin-left: auto; }
  .site-nav { order: 3; flex: 1 1 100%; margin-left: 0; gap: 1.25rem; overflow-x: auto; font-size: 0.92rem; padding-bottom: 0.15rem; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgb(247 241 228 / 0.82) 0%, rgb(247 241 228 / 0.78) 55%, rgb(247 241 228 / 0.35) 80%, rgb(255 253 248 / 0.75) 100%);
  }
  .modal--product { grid-template-columns: 1fr; width: 560px; }
  .modal__art { aspect-ratio: 16 / 9; }
  .modal__art svg { object-fit: cover; }
  .checkout { grid-template-columns: 1fr; }
  .checkout__summary { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  :root { --header-h: 104px; }
  .brand__tag { display: none; }
  .cart-btn__label { display: none; }
  .cart-btn { padding: 0.5rem 0.7rem; }
  .hero { min-height: 70vh; }
  .hero__content { padding-block: 3.5rem; }
  .section-head { flex-direction: column; align-items: stretch; }
  .catalogue__tools { flex-wrap: wrap; }
  .search { min-width: 0; flex: 1 1 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { padding: 1.5rem; }
  .news-form { flex-direction: column; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__links { justify-content: flex-start; }
  .usp__grid { grid-template-columns: 1fr; gap: 1rem; }
  .season-grid { grid-template-columns: 1fr; }
  .stats { gap: 1.5rem; }
  .modal { max-width: calc(100vw - 1rem); }
  .modal__body, .checkout__form, .checkout__summary { padding: 1.5rem 1.25rem; }
  .modal__facts { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
