@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Baloo+2:wght@500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  --cream: #fdfaf3;
  --cream-alt: #fff6e8;
  --ink: #2b2b2b;
  --ink-soft: #5c5750;
  --yellow: #f6c453;
  --yellow-deep: #eab13a;
  --sage: #a9c3a4;
  --sage-soft: #dce9da;
  --blush: #f2c9c2;
  --blush-soft: #fbe4df;
  --terracotta: #c9793f;
  --terracotta-deep: #b06531;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(43, 43, 43, 0.08);
}

* { box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
}

body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Baloo 2", cursive;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--ink);
}

.logo-script { font-family: "Caveat", cursive; }

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Baloo 2", cursive;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--terracotta-deep); }
.btn-secondary { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }
.btn-block { width: 100%; }

.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; }

.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.blob { position: absolute; border-radius: 50% 45% 55% 50% / 50% 55% 45% 50%; z-index: 0; opacity: 0.9; }

.grid-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }

.muted { color: var(--ink-soft); }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 18px 24px;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner a { color: var(--yellow); text-decoration: underline; }

table.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
table.legal-table th, table.legal-table td { text-align: left; padding: 10px 12px; border: 1px solid #e5ddcc; font-size: 14px; }
table.legal-table th { background: var(--cream-alt); }

header.site-header { padding: 22px 0; border-bottom: 1px solid #f0e6cf; }
header.site-header .row { display: flex; align-items: center; justify-content: space-between; }
header.site-header nav { display: flex; gap: 24px; align-items: center; font-weight: 600; }
header.site-header nav a { text-decoration: none; }

footer.site-footer { background: var(--ink); color: #f4efe2; margin-top: 80px; }
footer.site-footer .cols { padding: 48px 24px 32px; display: grid; gap: 32px; grid-template-columns: 1.3fr 1fr 1fr; }
footer.site-footer ul { list-style: none; padding: 0; margin-top: 12px; display: grid; gap: 8px; font-size: 14px; }
footer.site-footer .bottom { border-top: 1px solid #453f36; padding: 16px 24px; font-size: 12px; color: #a79f8d; text-align: center; }

.newsletter-form { display: flex; gap: 8px; max-width: 320px; }
.newsletter-form input {
  flex: 1; padding: 10px 12px; border-radius: 8px; border: 1px solid #4a453c; background: #1f1c17; color: #fff;
}

@media (max-width: 780px) {
  footer.site-footer .cols { grid-template-columns: 1fr; }
  header.site-header nav { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 640px) {
  .section { padding: 40px 0; }
}

.product-age {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid #e5ddcc;
  border-radius: 8px;
  background: var(--cream-alt);
  color: var(--ink);
  font-size: 14px;
}
.product-age strong { font-weight: 800; }
.product-age span { color: var(--ink-soft); }
.product-age-large { font-size: 16px; margin: 12px 0; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr); gap: 42px; align-items: start; }
.product-main-photo { background: var(--sage-soft); overflow: hidden; }
.product-main-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 10px; margin-top: 12px; }
.photo-strip a { border: 2px solid #eee2cc; border-radius: 8px; overflow: hidden; background: #fff; }
.photo-strip img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.stack-form { display: grid; gap: 12px; }
.stack-form input[type=email], .stack-form input[type=text], .stack-form select,
.admin-form input, .admin-form textarea, .admin-form select, .currency-form select {
  width: 100%; padding: 10px 12px; border: 1px solid #e0d6c4; border-radius: 8px; background: #fffdf8; font: inherit;
}
.stack-form label, .admin-form label { display: grid; gap: 5px; font-size: 14px; }
.stack-form label:has(input[type=checkbox]), .admin-form label:has(input[type=checkbox]) { display: flex; align-items: center; gap: 8px; }
.consent-line { display: flex; gap: 7px; align-items: start; color: #cfc8b8; font-size: 12px; max-width: 360px; }
.newsletter-form { display: grid; gap: 8px; max-width: 360px; }
.video-wrap { position: relative; aspect-ratio: 16 / 9; background: #111; border-radius: 8px; overflow: hidden; margin-top: 24px; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 22px; }
.article-card { text-decoration: none; color: inherit; }
.article-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.article-card div { padding: 18px; }
.article-hero { width: 100%; max-height: 460px; object-fit: cover; border-radius: 8px; margin: 18px 0 26px; }
.rich-text p { font-size: 17px; }
.faq-item { padding: 18px 20px; margin: 12px 0; }
.faq-item summary { cursor: pointer; font-weight: 800; }
.admin-nav { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; padding: 14px 16px; margin-bottom: 24px; }
.admin-nav a { font-size: 14px; }
.admin-grid { display: grid; grid-template-columns: minmax(320px, 520px) minmax(0, 1fr); gap: 24px; align-items: start; }
.admin-form { padding: 18px; display: grid; gap: 12px; }
.admin-form .two, .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.admin-message { color: #2f7a3d; font-weight: 700; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 20px 0 28px; }
.admin-stats .card { padding: 20px; }
.admin-stats span { display: block; color: var(--ink-soft); font-size: 13px; }
.admin-stats strong { display: block; font-size: 24px; }
@media (max-width: 820px) { .product-detail, .admin-grid { grid-template-columns: 1fr; } }

/* 2026-09 refinements */
.product-age-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid #e7dcc8;
  border-radius: 8px;
  background: var(--cream-alt);
  color: var(--ink);
  font-size: 14px;
}
.product-age-line strong { font-weight: 800; }
.product-age-line span { color: var(--ink-soft); }
.product-age-line-large { margin: 4px 0 8px; font-size: 16px; }
.product-buy-form { display:grid; gap:12px; }
.product-buy-form input,
.product-buy-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #e0d6c4;
  border-radius: 8px;
  background: #fffdf8;
  font: inherit;
}
.product-buy-form label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; margin: 7px 0; }
.product-buy-form label input[type="checkbox"] { width: auto; margin-top: 3px; }
.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.product-preview-grid a { border-radius: 8px; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.product-preview-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.newsletter-form {
  display: grid;
  gap: 8px;
  max-width: 420px;
}
.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}
.newsletter-row input {
  min-width: 0;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #4a453c;
  background: #1f1c17;
  color: #fff;
}
.newsletter-row .btn { padding: 10px 18px; font-size: 13px; border-radius: 999px; }
.consent-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #cfc8b8;
  font-size: 12px;
  line-height: 1.35;
  max-width: 420px;
}
.consent-line input { margin-top: 2px; flex: 0 0 auto; }
.consent-line a { color: var(--yellow); }

.cookie-panel {
  align-items: center;
  justify-content: space-between;
}
.cookie-panel p { margin: 4px 0 0; max-width: 620px; font-size: 13px; color: #f4efe2; }
.cookie-options { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.cookie-options label { display: flex; gap: 7px; align-items: center; font-size: 13px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn:first-child { background: transparent; color: #fff; border: 1px solid #fff; padding: 10px 18px; font-size: 13px; }
.cookie-actions .btn-primary { padding: 10px 18px; font-size: 13px; }

.admin-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.admin-products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}
.admin-product-editor { padding: 0; overflow: hidden; }
.admin-product-editor section { padding: 22px; border-bottom: 1px solid #eee2cc; display: grid; gap: 12px; }
.admin-product-editor h2 { font-size: 22px; margin-bottom: 0; }
.admin-product-editor label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.admin-product-editor input,
.admin-product-editor textarea,
.admin-product-editor select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0d6c4;
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}
.admin-product-editor input[type="file"] { background: #fff; border-style: dashed; }
.admin-product-editor .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.admin-product-editor .check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.admin-product-editor .check-grid label { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.admin-product-editor button[type="submit"] { margin: 20px 22px 24px; justify-self: start; }
.admin-cover-preview { width: 180px; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; border: 1px solid #eee2cc; }
.admin-product-list { display: grid; gap: 12px; }
.admin-product-row { display: grid; grid-template-columns: 82px 1fr; gap: 12px; padding: 10px; text-decoration: none; color: inherit; }
.admin-product-row img { width: 82px; height: 72px; object-fit: cover; border-radius: 8px; background: var(--sage-soft); }
.admin-product-row div { min-width: 0; display: grid; gap: 2px; }
.admin-product-row strong { font-size: 14px; line-height: 1.25; }
.admin-product-row span,
.admin-product-row small { color: var(--ink-soft); font-size: 12px; }
@media (max-width: 900px) {
  .admin-products-layout { grid-template-columns: 1fr; }
  .admin-product-editor .two { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .newsletter-row { grid-template-columns: 1fr; }
  .cookie-panel { align-items: flex-start; }
}

.header-currency-form { margin: 0; }
.header-currency-form select {
  height: 38px;
  padding: 0 28px 0 12px;
  border: 1px solid #eadfcb;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 780px) {
  .header-currency-form { order: 9; }
}

/* Admin polish: uploads, editor toolbar, drag sorting, language picker */
.wysiwyg-toolbar { display:flex; gap:6px; flex-wrap:wrap; margin:2px 0 6px; }
.wysiwyg-toolbar button { min-width:34px; height:32px; border:1px solid #e0d6c4; border-radius:8px; background:#fff; color:var(--ink); font-weight:800; cursor:pointer; }
.upload-box { border:2px dashed #d8c8ae; border-radius:8px; background:#fffdf8; padding:14px; display:grid; gap:7px; }
.upload-box span { font-size:13px; color:var(--ink-soft); font-weight:700; }
.bundle-picker { display:grid; gap:8px; padding:12px; border:1px solid #eadfcb; border-radius:8px; background:#fffdf8; }
.bundle-picker label { display:flex; gap:8px; align-items:center; color:var(--ink); font-weight:700; }
.drag-list { display:grid; gap:10px; }
.drag-list .admin-product-row { cursor:grab; border:1px solid transparent; }
.drag-list .admin-product-row.dragging { opacity:.55; border-color:var(--terracotta); }
.language-select { display:grid; gap:6px; margin:12px 0; font-size:14px; font-weight:800; }
.language-select select { width:100%; padding:11px 12px; border:1px solid #e0d6c4; border-radius:8px; background:#fffdf8; font:inherit; }

/* Real visual editor and readable CMS content */
.wysiwyg-shell { display:grid; gap:0; }
.wysiwyg-toolbar { display:flex; gap:6px; flex-wrap:wrap; margin:2px 0 8px; }
.wysiwyg-toolbar button { min-width:36px; height:34px; border:1px solid #d8c8ae; border-radius:8px; background:#fff; color:var(--ink); font-weight:800; cursor:pointer; }
.wysiwyg-toolbar button:hover { background:var(--cream-alt); }
.wysiwyg-editor { min-height:180px; max-height:480px; overflow:auto; padding:12px; border:1px solid #e0d6c4; border-radius:8px; background:#fffdf8; color:var(--ink); font:inherit; outline:none; }
.wysiwyg-editor:focus { border-color:var(--terracotta); box-shadow:0 0 0 3px rgba(201,121,63,.12); }
.wysiwyg-editor p { margin:0 0 12px; }
.wysiwyg-editor ul, .wysiwyg-editor ol { margin:0 0 12px 22px; padding:0; }
.wysiwyg-html-source { display:none; font-family:ui-monospace, SFMono-Regular, Consolas, monospace; }
.wysiwyg-shell.html-mode .wysiwyg-editor { display:none; }
.wysiwyg-shell.html-mode .wysiwyg-html-source { display:block; }
.rich-text { max-width:78ch; }
.article-page { max-width:920px; }
.article-page h1 { max-width:820px; }
.article-page .rich-text p, .rich-text p { margin:0 0 1em; }
.article-page .rich-text ul, .article-page .rich-text ol, .rich-text ul, .rich-text ol { margin:0 0 1em 1.35em; padding:0; }
.article-page .rich-text li, .rich-text li { margin:.25em 0; }
.article-page .rich-text a, .rich-text a { text-decoration:underline; text-underline-offset:3px; }

.table-actions { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.table-actions form { margin:0; display:inline; }
.table-actions button, .table-actions a { border:1px solid #e0d6c4; border-radius:8px; background:#fffdf8; padding:6px 10px; color:var(--ink); font:inherit; font-size:13px; text-decoration:none; cursor:pointer; }
.table-actions .danger-link { color:#a83232; border-color:#efc8c8; }

/* Mobile navigation and portrait product cards */
.site-logo { font-size:34px; text-decoration:none; color:var(--ink); }
.nav-cta { padding:10px 22px; font-size:14px; }
.mobile-menu-toggle { display:none; width:42px; height:42px; border:1px solid #eadfcb; border-radius:8px; background:var(--white); align-items:center; justify-content:center; flex-direction:column; gap:5px; cursor:pointer; }
.mobile-menu-toggle span { width:20px; height:2px; background:var(--ink); border-radius:2px; transition:transform .18s ease, opacity .18s ease; }
.site-header.menu-open .mobile-menu-toggle span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.site-header.menu-open .mobile-menu-toggle span:nth-child(2) { opacity:0; }
.site-header.menu-open .mobile-menu-toggle span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.product-card { display:flex; flex-direction:column; }
.product-card-cover { display:flex; min-height:330px; align-items:center; justify-content:center; padding:18px; background:var(--sage-soft); text-decoration:none; color:inherit; }
.product-card-cover img { width:100%; height:auto; max-height:440px; aspect-ratio:3/4; object-fit:contain; filter:drop-shadow(0 10px 18px rgba(43,43,43,.12)); }
.product-card-body { padding:22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-card-title { text-decoration:none; color:inherit; }
.product-card-title h3 { font-size:20px; margin-bottom:0; }
.product-card-description { font-size:14px; flex:1; }
.product-card-footer { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.product-card-footer strong { font-size:20px; }
.product-card-footer .btn { padding:10px 18px; font-size:14px; }
.shop-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:34px; }
.product-view-toggle { display:flex; gap:6px; padding:5px; border:1px solid #eadfcb; border-radius:8px; background:var(--white); }
.product-view-toggle button { border:0; border-radius:6px; padding:8px 12px; background:transparent; color:var(--ink-soft); font:inherit; font-weight:800; cursor:pointer; }
.product-view-toggle button.active { background:var(--terracotta); color:var(--white); }

@media (max-width: 780px) {
  header.site-header { padding:14px 0; position:relative; }
  header.site-header .row { align-items:center; }
  .mobile-menu-toggle { display:flex; }
  header.site-header nav.site-nav { position:absolute; top:100%; left:0; right:0; z-index:50; display:none; flex-direction:column; align-items:stretch; gap:0; padding:14px 24px 20px; background:var(--cream); border-bottom:1px solid #f0e6cf; box-shadow:0 18px 26px rgba(43,43,43,.08); }
  header.site-header.menu-open nav.site-nav { display:flex; }
  header.site-header nav.site-nav a { padding:12px 0; border-bottom:1px solid #efe3cd; }
  header.site-header nav.site-nav .nav-cta { margin-top:10px; width:100%; border-bottom:0; }
  .header-currency-form { order:0; padding:12px 0; }
  .header-currency-form select { width:100%; border-radius:8px; }
  .shop-heading { align-items:flex-start; flex-direction:column; margin-bottom:22px; }
  .product-view-toggle { width:100%; }
  .product-view-toggle button { flex:1; }
  .grid-products.product-list-grid { display:grid; grid-template-columns:1fr; gap:22px; overflow:visible; padding:0; margin:0; scroll-snap-type:none; }
  .grid-products.product-list-grid .product-card { flex:auto; }
  .product-card-cover { min-height:300px; padding:16px; }
  .product-card-cover img { max-height:380px; }
  .product-card-footer { align-items:flex-start; flex-direction:column; }
  .product-card-footer .btn { width:100%; }
}

@media (min-width: 781px) {
  .product-view-toggle { display:none; }
}

/* 2026-09 mobile swipe refinement and content spacing */
.product-view-toggle button {
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border-radius:50%;
}
.view-icon { position:relative; display:block; width:22px; height:22px; }
.view-icon-grid::before {
  content:"";
  position:absolute;
  width:7px;
  height:7px;
  left:2px;
  top:2px;
  background:currentColor;
  box-shadow:11px 0 0 currentColor, 0 11px 0 currentColor, 11px 11px 0 currentColor;
}
.view-icon-swipe::before {
  content:"";
  position:absolute;
  left:1px;
  top:8px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:currentColor;
  box-shadow:8px 0 0 currentColor, 16px 0 0 currentColor;
}
.product-detail-page {
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(340px, 1fr);
  gap:48px;
  align-items:start;
}
.product-detail-media {
  background:var(--sage-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.product-detail-media img {
  width:100%;
  max-height:620px;
  object-fit:contain;
  filter:drop-shadow(0 14px 22px rgba(43,43,43,.14));
}
.product-detail-info h1 { margin-top:12px; }
.product-detail-description { font-size:16px; margin:16px 0; }
.product-detail-price { font-size:32px; font-weight:800; margin:20px 0; }
.product-youtube { margin-top:16px; }
.product-delivery-note { font-size:13px; margin-top:16px; }
.product-preview-wrap { padding-bottom:48px; }

@media (max-width: 780px) {
  .container { padding-left:30px; padding-right:30px; }
  .section { padding-top:46px; padding-bottom:46px; }
  .container.section > h1,
  .container.section > .shop-heading,
  .article-page h1,
  .article-page .rich-text,
  .article-page .card,
  .article-page .video-wrap,
  .article-page .article-hero,
  .container > h1,
  .container > h2 { margin-left:0; margin-right:0; }
  .shop-heading { gap:14px; }
  .product-view-toggle { width:auto; align-self:flex-start; border-radius:999px; padding:4px; }
  .product-view-toggle button { width:42px; height:42px; }
  .grid-products.product-list-swipe {
    display:flex;
    grid-template-columns:none;
    gap:18px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:4px 30px 22px;
    margin-left:-30px;
    margin-right:-30px;
    scroll-snap-type:x mandatory;
    scroll-padding-inline:30px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    touch-action:pan-x;
  }
  .grid-products.product-list-swipe::-webkit-scrollbar { display:none; }
  .grid-products.product-list-swipe .product-card {
    flex:0 0 calc(100vw - 72px);
    max-width:360px;
    scroll-snap-align:center;
    scroll-snap-stop:always;
  }
  .grid-products.product-list-grid {
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
    overflow:visible;
    padding:0;
    margin:0;
    scroll-snap-type:none;
  }
  .grid-products.product-list-grid .product-card { max-width:none; flex:auto; }
  .product-detail-page {
    grid-template-columns:1fr;
    gap:26px;
    padding-top:34px;
  }
  .product-detail-media {
    padding:18px;
    border-radius:18px;
  }
  .product-detail-media img { max-height:520px; }
  .product-detail-info h1 { font-size:34px; margin-top:10px; }
  .product-detail-description { max-width:none; }
  .product-detail-price { font-size:30px; margin:16px 0; }
  .product-buy-form { display:grid; gap:12px; }
  .product-buy-form .btn { min-height:50px; }
  .product-preview-wrap { padding-left:30px; padding-right:30px; padding-bottom:32px; }
  .product-preview-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); gap:12px; }
  .article-page { padding-left:30px; padding-right:30px; }
  .article-page .rich-text { max-width:none; }
  .article-card div { padding:18px; }
  .article-grid { grid-template-columns:1fr; }
}


/* Mobile fixes: visible currency and vertical scroll inside swipe sections */
header.site-header .row { gap:16px; }
header.site-header .site-nav { margin-left:auto; }
@media (max-width: 780px) {
  header.site-header .row { gap:10px; }
  .site-logo { margin-right:auto; }
  .header-currency-form { display:block; order:2; padding:0; flex:0 0 auto; }
  .header-currency-form select { width:auto; height:40px; min-width:74px; border-radius:999px; padding-left:12px; padding-right:24px; }
  .mobile-menu-toggle { order:3; flex:0 0 auto; }
  header.site-header nav.site-nav { order:4; }
  .grid-products.product-list-swipe { touch-action:auto; overscroll-behavior-x:contain; }
}
/* Sticky auto-hide header */
.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(253,250,243,.96);
  backdrop-filter:blur(10px);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
  will-change:transform;
}
.site-header.header-hidden { transform:translateY(-110%); }
.site-header.header-scrolled { box-shadow:0 10px 24px rgba(43,43,43,.08); }
.site-header.menu-open { transform:translateY(0); }
@media (max-width: 780px) {
  header.site-header { position:sticky; top:0; }
  header.site-header nav.site-nav { z-index:1001; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header { transition:none; }
}


