/* Panskero — shared stylesheet */

:root {
  --navy: #131b2e;
  --navy-hover: #1d2740;
  --bg: #f1f2f4;
  --text: #12151c;
  --muted: #5b6270;
  --muted-2: #9aa2b6;
  --border: #dfe1e6;
  --card-dark: #1a2338;
  --card-dark-2: #20293e;
  --card-light: #f7f7f6;
  --slate: #2c313c;
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--navy); text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Top announcement bar */
.topbar {
  background: var(--navy);
  color: #c9cedb;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 8px 24px;
  text-align: center;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}
.nav a, .nav span { cursor: pointer; color: var(--slate); }
.nav a:hover, .nav span:hover { color: var(--navy); text-decoration: underline; }
.nav a.active { color: var(--navy); text-decoration: underline; }

.cart-btn {
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
}
.cart-btn:hover { background: var(--navy-hover); }

/* Buttons */
.btn {
  cursor: pointer;
  display: inline-block;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-hover); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: rgba(19,27,46,0.05); }
.btn-block { width: 100%; display: block; }
.btn-sm { padding: 9px; font-size: 12px; }

/* Breadcrumb */
.breadcrumb { padding: 16px 0 0; font-size: 13px; color: var(--muted); }
.breadcrumb a, .breadcrumb span.cur { cursor: pointer; }
.breadcrumb span.cur { color: var(--navy); }

/* Hero */
.hero {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; }
.hero h1 { font-family: var(--font-heading); font-weight: 800; font-size: 46px; line-height: 1.1; margin: 0 0 20px; color: var(--navy); }
.hero p { font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 480px; margin: 0 0 28px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { width: 100%; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: var(--navy); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Perks strip */
.perks {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.perks .grid { padding: 36px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.perk { text-align: center; }
.perk .t { font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.perk .d { font-size: 13px; color: var(--muted); }

/* Section headers */
.section { padding: 64px 0; }
.section h2 { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--navy); margin: 0 0 8px; }
.section > .container > p.lead { font-size: 15px; color: var(--muted); margin: 0 0 32px; }
.section-dark { background: var(--navy); padding: 64px 0; }
.section-dark h2 { color: #fff; }
.section-dark p { color: var(--muted-2); }
.section-white { background: #fff; border-top: 1px solid var(--border); }
.section-slate { background: var(--slate); padding: 56px 24px; }

/* Category cards */
.grid-cat { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.cat-card { cursor: pointer; background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: block; }
.cat-card .img { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--slate); }
.cat-card .img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card .body { padding: 18px; }
.cat-card .name { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.cat-card .desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Product grids */
.grid-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-products.light { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.grid-products.small { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.product-card { background: var(--card-dark); border-radius: 4px; overflow: hidden; }
.product-card .img { cursor: pointer; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--card-dark-2); }
.product-card .img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 16px; }
.product-card .name { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.product-card .price { font-size: 14px; color: var(--muted-2); margin-bottom: 10px; }
.product-card .price .vat { font-size: 11px; }
.product-card .add {
  cursor: pointer; text-align: center; background: #fff; color: var(--navy);
  padding: 9px; font-size: 12px; font-weight: 700; letter-spacing: 0.03em; border-radius: 2px; border: none; width: 100%;
}

.product-tile { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; position: relative; }
.product-tile .badge {
  position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 9px; border-radius: 2px; z-index: 2;
}
.product-tile .img { cursor: pointer; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--card-dark-2); }
.product-tile .img img { width: 100%; height: 100%; object-fit: cover; }
.product-tile .body { padding: 16px; }
.product-tile .name { cursor: pointer; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.product-tile .sizes { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.product-tile .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-tile .price-row .price { font-size: 15px; font-weight: 700; color: var(--navy); }
.product-tile .price-row .old { font-size: 13px; color: var(--muted-2); text-decoration: line-through; }
.product-tile .price-row .vat { font-size: 11px; color: var(--muted-2); }
.product-tile .add {
  cursor: pointer; text-align: center; background: var(--navy); color: #fff; padding: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.03em; border-radius: 2px; border: none; width: 100%;
}
.product-tile .add:hover { background: var(--navy-hover); }

.mini-card { cursor: pointer; background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: block; }
.mini-card .img { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--card-dark-2); }
.mini-card .img img { width: 100%; height: 100%; object-fit: cover; }
.mini-card .body { padding: 14px; }
.mini-card .name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.mini-card .price { font-size: 13px; color: var(--muted); }

/* About/brand split */
.split { padding: 64px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .photo { width: 100%; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; background: var(--navy); }
.split .photo img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--navy); margin: 0 0 16px; }
.split p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0 0 20px; }
.split .link { cursor: pointer; display: inline-block; color: var(--navy); font-weight: 700; font-size: 14px; border-bottom: 2px solid var(--navy); padding-bottom: 3px; }

/* Reviews */
.grid-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.review { background: var(--card-light); padding: 24px; border-radius: 4px; }
.review .stars { color: var(--navy); font-size: 14px; margin-bottom: 10px; }
.review .text { font-size: 14px; line-height: 1.6; color: var(--slate); margin-bottom: 14px; }
.review .name { font-size: 13px; font-weight: 700; color: var(--muted); }

/* Newsletter */
.newsletter { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-family: var(--font-heading); font-weight: 800; font-size: 24px; color: #fff; margin: 0 0 10px; }
.newsletter p { font-size: 14px; color: #c9cedb; margin: 0 0 22px; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter input[type=email] {
  flex: 1; min-width: 220px; padding: 13px 16px; border-radius: 2px; border: none; font-size: 14px;
}
.newsletter .btn { background: #fff; color: var(--navy); padding: 13px 26px; }

/* Generic form inputs */
.field {
  padding: 13px 14px; border-radius: 2px; border: 1px solid var(--border); font-size: 14px; font-family: inherit; width: 100%;
}
textarea.field { resize: vertical; }
.form-col { display: flex; flex-direction: column; gap: 14px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

.form-msg { padding: 14px 16px; border-radius: 4px; font-size: 14px; margin-bottom: 18px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #eaf3ea; color: #24632c; border: 1px solid #bfe0c2; }
.form-msg.err { background: #fbeaea; color: #8c2a2a; border: 1px solid #f0c4c4; }

/* Generic content pages */
.page-narrow { max-width: 900px; margin: 0 auto; padding: 56px 24px; }
.page-narrow.tight { max-width: 800px; }
.page-narrow h1 { font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--navy); margin: 0 0 14px; }
.page-narrow > p.lead { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0 0 32px; }
.page-narrow h2 { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--navy); margin: 0 0 14px; }

/* Size table */
.size-table { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 36px; }
.size-table .row { display: grid; grid-template-columns: repeat(6, 1fr); font-size: 13px; }
.size-table .row.head { background: var(--navy); color: #fff; font-weight: 700; }
.size-table .row.border { border-bottom: 1px solid var(--border); }
.size-table .row div { padding: 12px; color: var(--slate); }
.size-table .row.head div, .size-table .row div.label { font-weight: 700; }

.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 32px; }
.tip-card { background: var(--card-light); padding: 20px; border-radius: 4px; }
.tip-card .t { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.tip-card .d { font-size: 13px; color: var(--muted); line-height: 1.6; }

.cta-box { background: var(--navy); color: #fff; padding: 28px; border-radius: 4px; text-align: center; }
.cta-box .t { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.cta-box .d { font-size: 14px; color: #c9cedb; margin-bottom: 16px; }
.cta-box .btn { background: #fff; color: var(--navy); padding: 12px 24px; }

.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 36px; }
.care-card { background: #fff; border: 1px solid var(--border); padding: 22px; border-radius: 4px; }
.care-card .t { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.care-card .d { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* About values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; padding: 56px 0; }
.values-grid .t { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.values-grid .d { font-size: 13px; color: var(--muted); line-height: 1.6; }

.grid-articles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.article-card { background: var(--card-light); border-radius: 4px; overflow: hidden; }
.article-card .img { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--border); }
.article-card .img img { width: 100%; height: 100%; object-fit: cover; }
.article-card .body { padding: 18px; }
.article-card .title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.article-card .excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Contact page */
.contact-grid { max-width: 1100px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--slate); margin-bottom: 24px; }
.contact-map { width: 100%; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; background: var(--border); }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-box { background: var(--card-light); padding: 28px; border-radius: 4px; }

/* Product detail page */
.product-detail { max-width: 1240px; margin: 0 auto; padding: 24px 24px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery .main { grid-column: 1 / 3; width: 100%; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: var(--card-dark-2); }
.gallery .thumb { width: 100%; aspect-ratio: 1/1; border-radius: 4px; overflow: hidden; background: var(--card-dark-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.pd-cat { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 8px; }
.pd-title { font-family: var(--font-heading); font-weight: 800; font-size: 30px; color: var(--navy); margin: 0 0 12px; }
.pd-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.pd-price-row .price { font-size: 24px; font-weight: 700; color: var(--navy); }
.pd-price-row .old { font-size: 16px; color: var(--muted-2); text-decoration: line-through; }
.pd-price-row .vat { font-size: 12px; color: var(--muted-2); }
.pd-desc { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0 0 22px; }
.pd-colors { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.pd-sizes { margin-bottom: 22px; }
.pd-sizes .t { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.size-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.size-opt {
  cursor: pointer; padding: 10px 16px; border-radius: 2px; font-size: 13px; border: 1px solid var(--border); background: #fff; color: var(--slate);
}
.size-opt.selected { border-color: var(--navy); background: var(--navy); color: #fff; }
.pd-add {
  cursor: pointer; text-align: center; background: var(--navy); color: #fff; padding: 16px; font-size: 14px;
  font-weight: 700; letter-spacing: 0.03em; border-radius: 2px; margin-bottom: 18px; border: none; width: 100%;
}
.pd-add:hover { background: var(--navy-hover); }
.pd-perks { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); padding: 16px; background: var(--card-light); border-radius: 4px; }
.related { background: #fff; border-top: 1px solid var(--border); }
.related .container { padding: 48px 24px; }
.related h2 { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--navy); margin: 0 0 24px; }

/* Cart page */
.cart-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.cart-empty .msg { font-size: 15px; margin-bottom: 20px; }
.cart-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cart-row {
  display: grid; grid-template-columns: 80px 1fr auto auto; gap: 16px; align-items: center;
  background: #fff; border: 1px solid var(--border); padding: 14px; border-radius: 4px;
}
.cart-row .thumb { width: 80px; height: 96px; border-radius: 2px; overflow: hidden; background: var(--card-dark-2); }
.cart-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .name { font-size: 14px; font-weight: 600; color: var(--navy); }
.cart-row .size { font-size: 12px; color: var(--muted); }
.qty-ctl { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { cursor: pointer; width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 14px; background: #fff; }
.cart-row .line-total { font-size: 14px; font-weight: 700; color: var(--navy); }
.cart-row .remove { cursor: pointer; color: var(--muted-2); font-size: 18px; background: none; border: none; }
.cart-summary { display: flex; justify-content: flex-end; }
.cart-summary .box { width: 100%; max-width: 320px; background: var(--card-light); padding: 22px; border-radius: 4px; }
.cart-summary .row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.cart-summary .note { font-size: 12px; color: var(--muted-2); margin-bottom: 14px; }

/* Checkout page */
.checkout-grid { max-width: 1000px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.checkout-grid h1 { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--navy); margin: 0 0 24px; }
.checkout-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.option-group { margin-bottom: 26px; }
.option-group .t { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.option-list { display: flex; flex-direction: column; gap: 8px; }
.option-item {
  display: flex; justify-content: space-between; cursor: pointer; padding: 13px 14px; border-radius: 2px;
  border: 1px solid var(--border); background: #fff; font-size: 13px; color: var(--slate);
}
.option-item.selected { border-color: var(--navy); background: var(--bg); }
.order-summary { background: var(--card-light); padding: 22px; border-radius: 4px; position: sticky; top: 100px; }
.order-summary .t { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.order-summary .lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.order-summary .line { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.order-summary .totals { border-top: 1px solid var(--border); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); }
.order-summary .totals .row { display: flex; justify-content: space-between; }
.order-summary .grand { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; color: var(--navy); border-top: 1px solid var(--border); margin-top: 10px; padding-top: 10px; }
.order-summary .agree { font-size: 11px; color: var(--muted-2); margin-top: 10px; text-align: center; }
.order-summary .agree a { text-decoration: underline; }

/* Success page */
.success-page { max-width: 600px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.success-page .check { font-size: 40px; color: var(--navy); margin-bottom: 16px; }
.success-page h1 { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--navy); margin: 0 0 12px; }
.success-page p { font-size: 14px; color: var(--muted); margin: 0 0 8px; }

/* Legal pages */
.legal-section { margin-bottom: 22px; }
.legal-section .h { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.legal-section p { font-size: 13px; line-height: 1.7; color: var(--muted); margin: 0 0 8px; }

/* Footer */
.site-footer { background: var(--navy); color: #c9cedb; margin-top: auto; }
.footer-grid { padding: 48px 24px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.footer-grid .brand { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer-grid .about { font-size: 13px; line-height: 1.6; color: var(--muted-2); }
.footer-grid .h { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-grid .links { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-grid .links a, .footer-grid .links span { cursor: pointer; color: #c9cedb; }
.footer-grid .links a:hover { color: #fff; }
.footer-grid .contact-lines { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted-2); }
.footer-bottom {
  border-top: 1px solid #28324a; padding: 18px 24px; max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #7c839a;
}

/* Cart drawer */
.overlay { position: fixed; inset: 0; background: rgba(19,27,46,0.5); z-index: 50; display: none; }
.overlay.open { display: block; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 92vw; background: #fff; z-index: 51;
  box-shadow: -8px 0 24px rgba(0,0,0,0.15); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.2s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.drawer-head .t { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--navy); }
.drawer-head .close { cursor: pointer; font-size: 22px; color: var(--muted); background: none; border: none; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer-empty { text-align: center; color: var(--muted-2); font-size: 13px; padding: 40px 0; }
.drawer-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; margin-bottom: 14px; }
.drawer-item .thumb { width: 56px; height: 68px; border-radius: 2px; overflow: hidden; background: var(--card-dark-2); }
.drawer-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item .name { font-size: 13px; font-weight: 600; color: var(--navy); }
.drawer-item .meta { font-size: 11px; color: var(--muted-2); }
.drawer-item .total { font-size: 13px; font-weight: 700; color: var(--navy); }
.drawer-foot { padding: 20px; border-top: 1px solid var(--border); }
.drawer-foot .row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }

/* Toast */
.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff;
  padding: 13px 24px; border-radius: 2px; font-size: 13px; font-weight: 600; z-index: 60; display: none;
}
.toast.show { display: block; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border);
  padding: 18px 24px; z-index: 55; display: none; justify-content: center;
}
.cookie-banner.show { display: flex; }
.cookie-inner { max-width: 1000px; width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner .txt { font-size: 13px; color: var(--slate); max-width: 640px; }
.cookie-inner .txt a { text-decoration: underline; cursor: pointer; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { cursor: pointer; padding: 11px 20px; font-size: 12px; font-weight: 700; border-radius: 2px; border: 1px solid var(--navy); background: transparent; color: var(--navy); }
.cookie-btn.accept { background: var(--navy); color: #fff; }

/* Responsive */
@media (max-width: 860px) {
  .hero, .split, .contact-grid, .product-detail, .checkout-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .checkout-row2 { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
