:root {
  --ink: #101c19;
  --ink-soft: #33423e;
  --muted: #6d7b77;
  --line: #dce4e1;
  --line-strong: #c8d3cf;
  --surface: #f4f7f5;
  --surface-warm: #f7f5ef;
  --paper: #ffffff;
  --brand: #086657;
  --brand-dark: #06483e;
  --brand-pale: #e5f1ed;
  --accent: #c89542;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(15, 35, 30, 0.07);
  --shadow-lg: 0 28px 80px rgba(9, 28, 23, 0.18);
  --content: 1680px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand-name, .price { font-family: "Manrope", "DM Sans", sans-serif; }

.notice-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 34px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: #0e2520;
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  font-weight: 600;
}
.notice-bar span { color: #fff; text-transform: uppercase; }
.notice-bar p { margin: 0; }
.notice-bar a { justify-self: end; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(220,228,225,.8);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: transparent;
  font: 800 1.05rem/1 "Manrope", sans-serif;
}
.brand-mark img { width: 42px; height: 42px; object-fit: contain; }
.brand-name { font-size: 1.12rem; font-weight: 800; }
.brand small {
  margin-left: 2px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
}
.desktop-nav { display: flex; gap: 32px; color: var(--ink-soft); font-size: .88rem; font-weight: 600; }
.desktop-nav a { position: relative; padding: 27px 0; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transition: transform .18s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 20px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.language-switcher select { min-width:58px; min-height:38px; border:1px solid var(--line); border-radius:5px; padding:0 24px 0 9px; background-color:white; color:var(--ink); font:700 .72rem "DM Sans",sans-serif; }
.support-link { color: var(--ink-soft); font-size: .86rem; font-weight: 700; }
.cart-button, .drawer-head button {
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--ink);
  cursor: pointer;
}
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 9px 0 14px;
  border-radius: 6px;
  font-weight: 700;
}
.cart-button [data-cart-count] {
  display: grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-size: .7rem;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(610px, calc(100vh - 106px));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-background, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-background { z-index: -2; object-fit: cover; object-position: center 46%; }
.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,25,21,.91) 0%, rgba(7,25,21,.79) 34%, rgba(7,25,21,.22) 69%, rgba(7,25,21,.05) 100%);
}
.hero-copy {
  width: min(670px, 55%);
  margin-left: max(24px, calc((100vw - var(--content)) / 2 + 64px));
  padding: 70px 0 82px;
  color: white;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .eyebrow { color: #83c7b8; }
h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(3.3rem, 5vw, 5.3rem);
  line-height: 1.02;
  font-weight: 700;
}
h2 { margin-bottom: 14px; font-size: clamp(2rem, 3vw, 3.35rem); line-height: 1.08; font-weight: 700; }
h3 { margin-bottom: 14px; font-size: 1.1rem; line-height: 1.3; }
.hero-text {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255,255,255,.76);
  font-size: 1.05rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 10px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.button:active { transform: translateY(1px); }
.button.primary { background: var(--brand); color: white; }
.button.primary:hover { background: var(--brand-dark); }
.button.secondary { border-color: var(--line-strong); background: white; color: var(--ink); }
.button.glass { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(10px); }
.button.full { width: 100%; }
.hero-index {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 34px;
  display: grid;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: white;
}
.hero-index strong { font: 700 1.15rem/1.2 "Manrope", sans-serif; }
.hero-index span { margin-top: 4px; color: rgba(255,255,255,.68); font-size: .76rem; }
.mobile-quick-search, .mobile-hot-cats, .mobile-action-bar { display: none; }

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.service-strip div { display: grid; gap: 4px; padding: 23px 28px; border-right: 1px solid var(--line); }
.service-strip div:first-child { border-left: 1px solid var(--line); }
.service-strip strong { font: 700 .86rem/1.2 "Manrope", sans-serif; }
.service-strip span { color: var(--muted); font-size: .77rem; }

.section { max-width: var(--content); margin: 0 auto; padding: 88px clamp(20px, 4vw, 64px); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading p, .checkout-copy p, .quality-copy p { color: var(--muted); line-height: 1.65; }
.catalog-heading { display: grid; grid-template-columns: 1fr minmax(300px, 530px); max-width: none; align-items: end; gap: 48px; }
.catalog-heading p:last-child { margin-bottom: 4px; }

.catalog-tools { display: grid; grid-template-columns: minmax(280px, 1fr) 230px 190px; gap: 10px; margin-bottom: 16px; }
.search-box, .select-box { display: grid; gap: 6px; color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.search-box input, .select-box select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  outline: none;
  padding: 0 13px;
  background: white;
  color: var(--ink);
}
.search-box input:focus, .select-box select:focus, .checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(8,102,87,.1);
}
.catalog-status, .pagination { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 18px 0; color: var(--muted); font-size: .78rem; font-weight: 700; }
.pagination { justify-content: center; margin: 30px 0 0; }
.link-button { padding: 0; border: 0; background: transparent; color: var(--brand); cursor: pointer; font-weight: 700; }

.product-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.product-card:hover { border-color: #b5c6c0; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.product-image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / .88;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}
.product-image::after { position: absolute; inset: auto 10px 10px auto; padding: 4px 7px; border-radius: 4px; background: rgba(255,255,255,.9); color: var(--ink-soft); content: "View"; font-size: .62rem; font-weight: 700; opacity: 0; transition: opacity .18s ease; }
.product-card:hover .product-image::after { opacity: 1; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .25s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-info { display: flex; min-height: 142px; flex: 1; flex-direction: column; padding: 13px 13px 10px; }
.product-card .tag { margin: 0 0 6px; color: var(--brand); font-size: .64rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card h3 {
  display: -webkit-box;
  min-height: 3.72em;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: .82rem;
  line-height: 1.24;
  font-weight: 700;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-card p:not(.tag) { display: none; }
.product-spec { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; color: var(--muted); font-size: .66rem; }
.stock-dot { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.stock-dot::before { width: 6px; height: 6px; border-radius: 50%; background: #2f9974; content: ""; }
.product-meta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 0 13px 13px; }
.price { font-size: 1.08rem; font-weight: 800; }
.card-actions { display: flex; gap: 5px; }
.card-actions .button { min-width: 34px; min-height: 34px; padding: 0 9px; font-size: .7rem; }
.sku-row { display: none; }
.vial { position: relative; width: 54px; height: 102px; border: 2px solid rgba(8,102,87,.25); border-radius: 13px; background: white; }
.vial::before { position: absolute; top: -13px; left: 9px; width: 32px; height: 14px; border-radius: 4px; background: var(--brand); content: ""; }

.category-grid, .content-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.category-card, .content-card {
  display: grid;
  min-height: 116px;
  align-content: start;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  text-align: left;
}
.category-card { cursor: pointer; }
.category-card:hover, .content-card:hover { border-color: var(--brand); }
.category-card strong { font: 700 .92rem/1.3 "Manrope", sans-serif; }
.category-card span, .content-card p { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.content-card h3 { margin: 0; }
.content-card .tag { margin: 0; color: var(--brand); font-size: .65rem; font-weight: 800; text-transform: uppercase; }

.quality {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--content)) / 2 + 64px));
  padding-left: max(20px, calc((100vw - var(--content)) / 2 + 64px));
  gap: 70px;
  background: #10231f;
  color: white;
}
.quality .eyebrow { color: #81c3b5; }
.quality-copy p { color: rgba(255,255,255,.64); }
.quality-list { display: grid; }
.quality-list div { display: grid; grid-template-columns: 46px 1fr; gap: 4px 16px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.quality-list div:first-child { border-top: 1px solid rgba(255,255,255,.13); }
.quality-list span { grid-row: span 2; color: var(--accent); font: 700 .8rem/1.4 "Manrope", sans-serif; }
.quality-list strong { font: 700 .95rem/1.4 "Manrope", sans-serif; }
.quality-list p { margin: 0; color: rgba(255,255,255,.57); font-size: .82rem; line-height: 1.55; }
.warehouse-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.warehouse-grid span { display: grid; min-height: 78px; place-items: center; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); font: 700 .78rem/1.3 "Manrope", sans-serif; text-align: center; }

.checkout-section {
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(420px,1.05fr);
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--content)) / 2 + 64px));
  padding-left: max(20px, calc((100vw - var(--content)) / 2 + 64px));
  gap: 72px;
  background: var(--surface-warm);
}
.checkout-panel { padding: 26px; border: 1px solid var(--line); border-radius: 6px; background: white; box-shadow: var(--shadow-sm); }
.checkout-panel h3 { font-size: 1.25rem; }
.checkout-panel-head { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px; }
.checkout-panel-head h3 { margin:0; }
.checkout-panel-head span { padding:6px 9px; border-radius:999px; background:var(--brand-pale); color:var(--brand); font-size:.68rem; font-weight:800; }
.cart-list { display: grid; gap: 8px; min-height: 34px; }
.empty-cart { color: var(--muted); font-size: .84rem; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 11px; border: 1px solid var(--line); border-radius: 5px; }
.cart-item strong { display: block; margin-bottom: 3px; font-size: .82rem; }
.cart-item span { color: var(--muted); font-size: .72rem; }
.qty-controls { display: inline-flex; align-items: center; gap: 8px; }
.qty-controls button { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 4px; background: white; cursor: pointer; }
.cart-totals { display:grid; gap:9px; margin:17px 0; padding-top:16px; border-top:1px solid var(--line); }
.cart-totals > div { display:flex; justify-content:space-between; gap:18px; color:var(--muted); font-size:.82rem; }
.cart-totals > div strong { color:var(--ink); }
.pricing-note { margin:0 0 15px; color:var(--muted); font-size:.78rem; line-height:1.55; }
.cart-totals .cart-total { margin:3px 0 0; padding-top:12px; font-size:1rem; }
.cart-total { display: flex; justify-content: space-between; margin: 17px 0; padding-top: 16px; border-top: 1px solid var(--line); }
.drawer-shipping { margin:-8px 0 16px; color:var(--brand); font-size:.75rem; font-weight:700; }
.checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.checkout-form label { display: grid; gap: 6px; color: var(--muted); font-size: .74rem; font-weight: 700; }
.checkout-form .address-field, .checkout-form .fulfillment-route, .checkout-form .full { grid-column: 1 / -1; }
.checkout-form input, .checkout-form select, .checkout-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 5px; outline: none; padding: 11px; color: var(--ink); resize: vertical; }
.checkout-form select:disabled { background:var(--surface); color:#8b9793; cursor:not-allowed; }
.fulfillment-route { padding:11px 12px; border:1px solid var(--line); border-left:3px solid var(--brand); border-radius:5px; background:var(--surface); color:var(--muted); font-size:.76rem; line-height:1.5; }
.fulfillment-route strong { color:var(--ink); }
.order-result { margin-top: 16px; padding: 15px; border: 1px solid rgba(8,102,87,.26); border-radius: 5px; background: var(--brand-pale); font-size: .82rem; line-height: 1.65; }
.order-result code { padding: 2px 4px; background: white; overflow-wrap: anywhere; }
.order-result-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:8px; }
.order-result-head > span { flex:0 0 auto; padding:3px 7px; border:1px solid #d9a441; border-radius:999px; background:#fff8e8; color:#7b5207; font-size:.66rem; font-weight:800; line-height:1.4; }
.payment-address { display:grid; gap:6px; margin:12px 0; }
.payment-address > span { color:var(--muted); font-size:.72rem; font-weight:800; }
.payment-address-value { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:8px; align-items:stretch; }
.payment-address-value code { display:flex; min-width:0; align-items:center; padding:9px 10px; border:1px solid var(--line); border-radius:5px; line-height:1.4; }
.copy-address { min-width:76px; min-height:40px; padding:0 12px; border:1px solid var(--brand); border-radius:5px; background:white; color:var(--brand); cursor:pointer; font:inherit; font-weight:800; }
.copy-address:hover, .copy-address:focus-visible { background:var(--brand); color:white; }
.copy-address.is-copied { background:var(--brand); color:white; }
.payment-instruction { margin:12px 0; color:var(--ink-soft); line-height:1.55; }
.order-draft-actions { display:flex; gap:8px; margin-bottom:13px; }
.transaction-field { display:grid; gap:6px; margin-top:10px; color:var(--muted); font-size:.74rem; font-weight:800; }
.transaction-field input { width:100%; min-height:42px; border:1px solid var(--line-strong); border-radius:5px; padding:9px 10px; background:white; color:var(--ink); font:inherit; }
.transaction-help { margin:6px 0 12px; color:var(--muted); font-size:.7rem; line-height:1.45; }
.confirm-payment.is-disabled { cursor:not-allowed; opacity:.48; }
.button:disabled { cursor:not-allowed; opacity:.48; }

.faq { display: grid; grid-template-columns: .45fr 1fr; gap: 60px; }
.faq-list { display: grid; gap: 8px; }
details { border-bottom: 1px solid var(--line); }
summary { padding: 17px 0; cursor: pointer; font-weight: 700; }
details p { margin: 0; padding: 0 0 17px; color: var(--muted); line-height: 1.6; }

.drawer { position: fixed; inset: 0; z-index: 50; pointer-events: none; visibility: hidden; }
.drawer[aria-hidden="false"] { pointer-events: auto; visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(9,25,21,.48); opacity: 0; transition: opacity .2s; }
.drawer[aria-hidden="false"] .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; display: flex; width: min(440px,100vw); height: 100%; flex-direction: column; padding: 24px; background: white; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .22s; }
.drawer[aria-hidden="false"] .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-head h2 { margin: 0; font-size: 1.4rem; }
.drawer-head button, .dialog-close { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 5px; font-size: 1.35rem; }

.detail-dialog { width: min(960px, calc(100vw - 30px)); max-height: calc(100vh - 30px); padding: 0; overflow: auto; border: 0; border-radius: 7px; box-shadow: var(--shadow-lg); }
.detail-dialog::backdrop { background: rgba(9,25,21,.54); backdrop-filter: blur(3px); }
.dialog-close { position: sticky; top: 12px; left: calc(100% - 52px); z-index: 2; margin: 12px 12px 0 auto; border: 1px solid var(--line); background: white; cursor: pointer; }
.detail-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; padding: 0 28px 28px; }
.detail-media { display: grid; min-height: 360px; place-items: center; border-radius: 5px; background: var(--surface); }
.detail-media img { width: 100%; max-height: 410px; object-fit: contain; padding: 22px; }
.detail-copy h2, .article-detail h2 { font-size: clamp(1.8rem,3vw,2.8rem); }
.detail-copy > p { color: var(--muted); line-height: 1.6; }
.detail-price { color: var(--brand) !important; font: 800 1.65rem/1.2 "Manrope", sans-serif; }
.detail-copy dl { margin: 18px 0; }
.detail-copy dl div { display: grid; grid-template-columns: 90px 1fr; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
.detail-copy dt { color: var(--muted); font-weight: 700; }
.detail-copy dd { margin: 0; }
.detail-body, .article-detail { padding: 0 28px 32px; }
.detail-body p, .article-detail p { color: var(--muted); line-height: 1.72; white-space: pre-wrap; }
.formatted-details .detail-section { padding:0 0 28px; }
.formatted-details .detail-section + .detail-section { padding-top:28px; border-top:1px solid var(--line); }
.formatted-details .detail-section h3 { margin:0 0 14px; font-size:1.2rem; }
.formatted-details .detail-section p { margin:0 0 12px; }
.formatted-details .detail-section p:last-child { margin-bottom:0; }
.detail-body .detail-specs { display:grid; grid-template-columns:1fr 1fr; margin:0; border-top:1px solid var(--line); }
.detail-body .detail-specs div { display:grid; grid-template-columns:minmax(90px,.42fr) 1fr; gap:12px; padding:11px 0; border-bottom:1px solid var(--line); }
.detail-body .detail-specs div:nth-child(odd) { padding-right:18px; }
.detail-body .detail-specs div:nth-child(even) { padding-left:18px; border-left:1px solid var(--line); }
.detail-body .detail-specs dt { color:var(--muted); font-size:.72rem; font-weight:700; }
.detail-body .detail-specs dd { margin:0; color:var(--ink); font-size:.8rem; line-height:1.45; overflow-wrap:anywhere; }
.detail-body .detail-faq { display:grid; gap:9px; }
.detail-body .detail-faq section { padding:15px 16px; border:1px solid var(--line); border-radius:5px; background:var(--surface); }
.detail-body .detail-faq h3 { margin:0 0 7px; font-size:.88rem; }
.detail-body .detail-faq p { font-size:.82rem; }
.detail-body .warning-section { margin-bottom:28px; padding:18px !important; border:1px solid #ead6b5 !important; border-left:3px solid var(--accent) !important; background:#faf7f1; }

.support-float { position: fixed; right: 18px; bottom: 18px; z-index: 25; display:flex; align-items:center; gap:8px; padding: 12px 15px; border-radius: 6px; background: var(--accent); color: #261b09; box-shadow: var(--shadow-sm); font-size: .8rem; font-weight: 800; }
.support-float span,.support-presence span { width:8px; height:8px; border-radius:50%; background:#15856f; box-shadow:0 0 0 4px rgba(21,133,111,.13); }
.support-float span { animation:support-pulse 2.2s ease-out infinite; }
.support-nudge { position:fixed; right:18px; bottom:76px; z-index:26; width:min(330px,calc(100vw - 36px)); padding:20px; border:1px solid var(--line); border-radius:6px; background:white; box-shadow:0 18px 50px rgba(7,30,24,.18); opacity:0; transform:translateY(8px); transition:opacity .18s ease,transform .18s ease; }
.support-nudge[hidden] { display:none; }
.support-nudge.is-visible { opacity:1; transform:translateY(0); }
.support-nudge-close { position:absolute; top:9px; right:9px; width:30px; height:30px; border:0; background:transparent; color:var(--muted); font-size:1.25rem; line-height:1; }
.support-presence { display:flex; align-items:center; gap:8px; margin:0 32px 12px 0 !important; color:var(--brand) !important; font-size:.68rem !important; font-weight:800; text-transform:uppercase; }
.support-nudge > strong { display:block; margin-bottom:7px; font-family:"Manrope",sans-serif; font-size:1.02rem; }
.support-nudge > p:not(.support-presence) { margin:0 0 15px; color:var(--muted); font-size:.8rem; line-height:1.55; }
.support-nudge-cta { display:inline-flex; min-height:40px; align-items:center; justify-content:center; padding:0 15px; border-radius:5px; background:var(--brand); color:white; font-size:.76rem; font-weight:800; }
@keyframes support-pulse { 0% { box-shadow:0 0 0 0 rgba(21,133,111,.35); } 65%,100% { box-shadow:0 0 0 8px rgba(21,133,111,0); } }
.footer { display: grid; grid-template-columns: auto minmax(280px,1fr) auto; align-items: center; gap: 28px; padding: 30px clamp(20px,4vw,64px); border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.footer p { margin: 0; }
.footer nav { display: flex; gap: 18px; color: var(--ink-soft); font-weight: 700; }
.footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); }

@media (max-width: 1320px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .hero-copy { margin-left: clamp(28px,5vw,64px); }
}

@media (max-width: 980px) {
  .notice-bar { grid-template-columns: 1fr auto; }
  .notice-bar p { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .brand small, .support-link { display: none; }
  .hero { min-height: 520px; }
  .hero-copy { width: min(670px,72%); }
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .category-grid, .content-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .warehouse-grid { grid-template-columns: repeat(3,1fr); }
  .quality, .checkout-section, .faq { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .notice-bar { min-height: 28px; padding: 0 14px; font-size: .63rem; }
  .site-header { min-height: 58px; padding: 0 14px; }
  .brand { gap: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark img { width: 38px; height: 38px; }
  .brand-name { font-size: 1rem; }
  .cart-label { display: none; }
  .header-actions { gap:8px; }
  .language-switcher select { min-width:54px; min-height:34px; }
  .cart-button { min-height: 36px; padding: 0 7px; border: 0; }
  .hero { min-height: 430px; align-items: flex-end; }
  .hero-background { object-position: 58% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(7,25,21,.18) 0%, rgba(7,25,21,.7) 47%, rgba(7,25,21,.95) 100%); }
  .hero-copy { width: 100%; margin: 0; padding: 74px 16px 24px; }
  .hero .eyebrow { margin-bottom: 8px; }
  h1 { max-width: 360px; margin-bottom: 12px; font-size: 2.35rem; line-height: 1.04; hyphens:auto; overflow-wrap:anywhere; }
  html[lang^="de"] .hero h1 { font-size:1.95rem; hyphens:none; overflow-wrap:normal; }
  h2 { font-size: 1.8rem; }
  .hero-text { max-width: 370px; font-size: .88rem; line-height: 1.5; }
  .hero-actions, .hero-index { display: none; }
  .mobile-quick-search { display: grid; grid-template-columns: 1fr auto; gap: 7px; margin-top: 18px; }
  .mobile-quick-search input { min-width: 0; min-height: 43px; border: 1px solid rgba(255,255,255,.35); border-radius: 5px; padding: 0 11px; background: rgba(255,255,255,.96); }
  .mobile-quick-search .button { min-height: 43px; padding: 0 14px; }
  .mobile-hot-cats { display: flex; gap: 7px; overflow-x: auto; margin: 12px -16px 0; padding: 0 16px 2px; scrollbar-width: none; }
  .mobile-hot-cats::-webkit-scrollbar { display: none; }
  .mobile-hot-cats button { flex: 0 0 auto; min-height: 30px; padding: 0 10px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.1); color: white; font-size: .66rem; font-weight: 700; }
  .service-strip { display: flex; overflow-x: auto; padding: 0; scrollbar-width: none; }
  .service-strip div { min-width: 76%; padding: 17px 16px; border-left: 0 !important; }
  .service-strip span { font-size: .7rem; }
  .section { padding: 48px 14px; }
  .section-heading { margin-bottom: 20px; }
  .catalog-heading { display: block; }
  .catalog-heading p:last-child { font-size: .82rem; }
  .catalog-shell { padding-top: 42px; }
  .catalog-tools { position: sticky; top: 58px; z-index: 20; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 -14px 14px; padding: 10px 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(14px); }
  .catalog-tools .search-box { grid-column: 1 / -1; }
  .search-box input, .select-box select { min-height: 41px; }
  .catalog-status { margin: 14px 0; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .product-card { border-radius: 5px; }
  .product-image { aspect-ratio: 1 / .9; }
  .product-image img { padding: 9px; }
  .product-image::after { display: none; }
  .product-info { min-height: 116px; padding: 10px 9px 8px; }
  .product-card h3 { min-height: 3.5em; font-size: .72rem; line-height: 1.18; -webkit-line-clamp: 3; }
  .product-card .tag { font-size: .56rem; }
  .product-spec { font-size: .58rem; }
  .product-meta { grid-template-columns: 1fr auto; padding: 0 9px 9px; }
  .price { font-size: .94rem; }
  .card-actions .button.secondary { display: none; }
  .card-actions .button { min-width: 34px; min-height: 33px; padding: 0 8px; font-size: .65rem; }
  .category-grid, .content-grid, .warehouse-grid { grid-template-columns: 1fr; }
  .quality, .checkout-section { padding-right: 16px; padding-left: 16px; }
  .checkout-form { grid-template-columns: 1fr; }
  .checkout-form .address-field, .checkout-form .fulfillment-route, .checkout-form .full { grid-column: auto; }
  .checkout-panel-head { align-items:flex-start; }
  .detail-layout { grid-template-columns: 1fr; padding: 0 16px 20px; }
  .detail-media { min-height: 230px; }
  .detail-copy h2 { font-size: 1.55rem; }
  .detail-body, .article-detail { padding: 0 16px 24px; }
  .detail-body .detail-specs { grid-template-columns:1fr; }
  .detail-body .detail-specs div:nth-child(odd),.detail-body .detail-specs div:nth-child(even) { padding-right:0; padding-left:0; border-left:0; }
  .support-float { display: none; }
  .support-nudge { right:12px; bottom:calc(74px + env(safe-area-inset-bottom)); left:12px; z-index:39; width:auto; padding:17px 18px; }
  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 7px;
    min-height: 64px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -10px 30px rgba(10,28,23,.08);
  }
  .mobile-action-bar a, .mobile-action-bar button { display: flex; align-items: center; justify-content: center; min-height: 42px; border: 1px solid var(--line); border-radius: 5px; background: white; color: var(--ink); font-size: .72rem; font-weight: 700; }
  .mobile-action-bar a:last-child { border-color: var(--brand); background: var(--brand); color: white; }
  .mobile-action-bar span { margin-left: 5px; color: var(--brand); }
  .footer { display: flex; align-items: flex-start; flex-direction: column; padding: 26px 16px; }
  .footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .support-float span { animation:none; }
}
