:root {
  --bg: #ffffff;
  --text: #11313c;
  --muted: #61707a;
  --line: #d8ebf1;
  --brand: #002d75;
  --brand-dark: #000f27;
  --accent: #69caf4;
  --mint: #6ac0a7;
  --surface: #f5fbfd;
  --surface-2: #eef8fb;
  --surface-3: #e7f4f8;
  --shadow: 0 20px 50px rgba(28, 84, 102, 0.12);
  --shadow-strong: 0 30px 70px rgba(0, 23, 53, 0.18);
  --radius: 24px;
  --radius-sm: 18px;
  --max-width: 1240px;
  --font-scale: 1;
}

/* Global horizontal overflow protection */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

/* Prevent grid/flex children from forcing overflow */
.container,
.navbar,
.toolbar-inner,
.toolbar-actions,
.toolbar-panel,
.toolbar-panel-inner,
.header-tools,
.main-nav,
.mobile-nav-links,
.mobile-nav-footer,
.section-heading,
.panel-head,
.split-banner,
.info-grid,
.promo-grid,
.spec-grid,
.cta-band,
.product-layout,
.product-detail-grid,
.cart-layout,
.checkout-layout,
.account-layout,
.footer-grid,
.hero-grid,
.hero-copy,
.offer-grid,
.promo-cards-grid,
.form-grid,
.card-grid,
.stats-grid,
.cart-item,
.order-head {
  min-width: 0;
}

/* Make common text containers wrap instead of overflow */
a,
button,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
}

/* Never let overlays/panels exceed viewport width */
.toolbar-panel,
.promo-popup,
.main-nav,
.search-field-wrap {
  max-width: 100vw;
}

html {
  font-size: calc(16px * var(--font-scale));
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body.high-contrast {
  --bg: #0b1518;
  --text: #ffffff;
  --muted: #d8edf5;
  --line: #5ba9c4;
  --brand: #69caf4;
  --brand-dark: #a5ecff;
  --accent: #ffffff;
  --mint: #b7ffe9;
  --surface: #102126;
  --surface-2: #17313a;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

body.nav-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255, 255, 255, 0) 100%);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  background: var(--brand);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}


/* Header */

.topbar {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 45%, var(--mint) 100%);
  color: white;
  padding: 0.7rem 0;
}

.topbar a {
  color: white;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 2.25rem;
}

.topbar p {
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37, 150, 190, 0.12);
}

.high-contrast .site-header {
  background: rgba(11, 21, 24, 0.92);
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 0;
  max-width: 100%;
}

.brand-logo {
  display: block;
  width: clamp(140px, 13vw, 190px);
  height: auto;
  max-width: 100%;
  aspect-ratio: 625 / 125;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--brand-dark);
  text-decoration: none;
  padding-left: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.mobile-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  min-width: 0;
}

.mobile-nav-links a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  background: var(--surface);
  text-decoration: none;
  color: var(--brand);
}

.mobile-nav-header,
.mobile-nav-footer,
.mobile-nav-close,
.nav-drawer-backdrop {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  min-width: max-content;
  flex-wrap: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav-search {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-search-collapsible {
  position: relative;
}

.search-toggle-btn,
.site-language-trigger,
.icon-link,
.nav-toggle,
.search-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.high-contrast .search-toggle-btn,
.high-contrast .site-language-trigger,
.high-contrast .icon-link,
.high-contrast .nav-toggle,
.high-contrast .search-submit-btn {
  background: var(--surface);
}

.search-toggle-btn:hover,
.site-language-trigger:hover,
.icon-link:hover,
.nav-toggle:hover,
.search-submit-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(37, 150, 190, 0.35);
}

.search-field-wrap {
  display: flex;
  align-items: center;
  width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  margin-left: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(17, 49, 60, 0.08);
  transition:
    width 0.28s ease,
    opacity 0.2s ease,
    margin-left 0.28s ease,
    padding 0.28s ease,
    border-color 0.28s ease;
}

.high-contrast .search-field-wrap {
  background: var(--surface);
}

.nav-search.is-open .search-field-wrap,
.nav-search:focus-within .search-field-wrap {
  width: clamp(12rem, 24vw, 18rem);
  opacity: 1;
  pointer-events: auto;
  margin-left: 0.55rem;
  padding-left: 0.8rem;
  border-color: var(--line);
}

.search-field-wrap input {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0.7rem 0.35rem 0.7rem 0;
  box-shadow: none;
}

.search-field-wrap input::placeholder {
  color: var(--muted);
}

.search-submit-btn {
  width: 40px;
  height: 40px;
  margin-right: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
}

.icon-link {
  position: relative;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--text);
}

.cart-link strong {
  position: absolute;
  top: -0.3rem;
  right: -0.35rem;
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 0.72rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  padding: 0.75rem;
}

.nav-drawer-backdrop[hidden] {
  display: none !important;
}

/* Flash */

.flash {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.flash-success {
  border-color: rgba(106, 192, 167, 0.4);
}

.flash-warning {
  border-color: rgba(244, 185, 105, 0.4);
}

.flash-error {
  border-color: rgba(244, 105, 128, 0.4);
}

/* Generic section / grid blocks */

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
    padding: 4.5rem 0 3rem;

}

.split-banner,
.info-grid,
.promo-grid,
.spec-grid,
.cta-band,
.product-layout,
.product-detail-grid,
.cart-layout,
.checkout-layout,
.account-layout {
  display: grid;
  gap: 2rem;
}

.page-hero h1,
.section-heading h2,
.success-card h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.page-hero-small h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.hero-copy p,
.product-copy,
.footer-lead,
.faq-item p {
  font-size: 1.08rem;
  color: var(--muted);
}

.footer-lead{
  color: var(--line);
}


.hero-points,
.check-list,
.big-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1.4rem 0;
  display: grid;
  gap: 0.9rem;
}

.hero-points li,
.check-list li,
.big-list li {
  display: list-item;
}

.hero-points li::before,
.check-list li::before,
.big-list li::before {
  content: none;
}

.hero-actions,
.product-actions,
.cta-actions,
.checkout-actions,
.offer-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.product-actions {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.hero-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  font-weight: 600;
}

.hero-panel,
.info-card,
.product-card,
.summary-card,
.filter-box,
.form-card,
.spec-card,
.gallery-card,
.prose-card,
.success-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 150, 190, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.high-contrast .hero-panel,
.high-contrast .info-card,
.high-contrast .product-card,
.high-contrast .summary-card,
.high-contrast .filter-box,
.high-contrast .form-card,
.high-contrast .spec-card,
.high-contrast .gallery-card,
.high-contrast .prose-card,
.high-contrast .success-card {
  background: rgba(16, 33, 38, 0.98);
}

.hero-panel {
  padding: 2rem;
}

.hero-panel img {
  border-radius: 24px;
  margin-bottom: 1rem;
  background: var(--surface);
}

.hero-stat {
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: var(--surface);
  margin-top: 0.85rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand), var(--mint));
  box-shadow: 0 18px 30px rgba(37, 150, 190, 0.24);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-large {
  min-height: 56px;
  padding-inline: 1.35rem;
  margin-top: 2vh;
}

.btn-small {
  min-height: 40px;
  padding: 0.6rem 0.85rem;
}

.text-link {
  font-weight: 700;
  color: var(--brand-dark);
}

/* Cards and content blocks */

.promo-grid,
.card-grid,
.info-grid,
.stats-grid,
.order-list {
  display: grid;
  gap: 1.5rem;
}

.promo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.promo-grid article,
.info-card,
.spec-card,
.form-card,
.prose-card {
  padding: 1.65rem;
}

.promo-grid article i {
  font-size: 2rem;
  color: var(--brand);
}

.promo-grid h2,
.info-card h2,
.spec-card h2,
.summary-card h2,
.filter-box h2,
.form-card h2,
.auth-card h1,
.account-content h1,
.section-heading h2,
.prose-card h1 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.split-banner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.info-card img {
  border-radius: 20px;
  margin-bottom: 1rem;
}

.cta-band {
  align-items: center;
  padding: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  background: linear-gradient(135deg, rgba(37, 150, 190, 0.14), rgba(106, 192, 167, 0.12));
  border-radius: 32px;
  border: 1px solid var(--line);
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Product cards */

.product-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(28, 84, 102, 0.18);
}

.product-image-wrap {
  display: block;
  position: relative;
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.06), rgba(106, 192, 167, 0.08));
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  padding: 1rem;
}

.product-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: var(--brand);
  color: white;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card-body {
  padding: 1.35rem;
}

.product-card h3,
.product-card h2 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.product-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-tags span,
.order-pill {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.82rem;
}

.product-subtitle,
.product-copy {
  margin: 0.35rem 0 0.8rem;
}

.price-box,
.price-block {
  display: grid;
  gap: 0.2rem;
  margin: 1rem 0;
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
}

.price-main {
  font-size: 1.05rem;
}

/* Product overview */

.product-layout {
  grid-template-columns: 320px 1fr;
  align-items: start;
}

.filter-box,
.summary-card {
  position: sticky;
  top: 8rem;
  padding: 1.5rem;
}

.products-panel {
  min-width: 0;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* Forms */

.stack-form,
.checkout-form,
.form-grid,
.auth-card,
.admin-inline-form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  background: white;
  color: var(--text);
}

.high-contrast input,
.high-contrast select,
.high-contrast textarea {
  background: var(--surface);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-row input,
.payment-option input {
  width: auto;
  min-height: auto;
}

/* Product detail */

.product-detail-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.gallery-card,
.product-copy-panel {
  padding: 1.5rem;
}

.main-product-image {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.06), rgba(106, 192, 167, 0.08));
}

.thumb-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.thumb-button {
  border: 1px solid var(--line);
  background: white;
  padding: 0.35rem;
  border-radius: 18px;
}

.thumb-button.active {
  outline: 2px solid var(--brand);
}

.thumb-button img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.feature-box {
  padding: 1rem 0 0.5rem;
}

.link-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-buy-box {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quantity-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
}

/* Specs / comparison */

.spec-grid {
  grid-template-columns: 1fr 1fr;
}

.spec-list {
  display: grid;
  gap: 1rem;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.spec-list dt {
  font-weight: 700;
}

.compare-table-wrap,
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.compare-table,
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  background: white;
}

.high-contrast .compare-table,
.high-contrast .admin-table {
  background: var(--surface);
}

.compare-table th,
.compare-table td,
.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.compare-table thead th,
.admin-table thead th {
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}

.compare-thumb {
  width: 88px;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.65rem;
  border-radius: 18px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}

.high-contrast .faq-item {
  background: var(--surface);
}

.faq-item summary {
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

/* Cart / checkout */

.cart-layout,
.checkout-layout {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
}

.cart-items,
.order-list {
  display: grid;
  gap: 1rem;
  margin-top: 2vh;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.high-contrast .cart-item {
  background: var(--surface);
}

.cart-item img {
  border-radius: 18px;
  background: var(--surface);
}

.summary-card {
  display: grid;
  gap: 1rem;
}

.summary-list,
.contact-list,
.footer-links {
  display: grid;
  gap: 0.75rem;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-total {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.checkout-form {
  gap: 1.2rem;
}

.shipping-fields {
  margin-top: 1rem;
}

.payment-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
}

.high-contrast .payment-option {
  background: var(--surface);
}

.form-grid {
  grid-template-columns: repeat(2, 1fr);
}

.form-grid .full {
  grid-column: 1 / -1;
}

/* Auth / account */

.auth-wrap {
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(100%, 620px);
  padding: 2rem;
}

.account-layout {
  grid-template-columns: 260px 1fr;
  align-items: start;
}

.account-nav {
  position: sticky;
  top: 8rem;
  display: grid;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: 24px;
  padding: 1rem;
  border: 1px solid var(--line);
}

.account-nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  color: var(--text);
  font-weight: 700;
}

.account-nav a.active,
.account-nav a:hover {
  background: white;
  text-decoration: none;
}

.high-contrast .account-nav a.active,
.high-contrast .account-nav a:hover {
  background: var(--surface-2);
}

.account-content {
  min-width: 0;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}

.order-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.inline-form,
.admin-inline-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Prose / status */

.prose-card {
  max-width: 780px;
}

.prose-card p {
  font-size: 1.08rem;
  margin: 0.6rem 0;
}

.success-card {
  padding: 2.2rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.success-card .hero-actions {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.success-card .hero-actions .btn{
  text-align: center;
  align-items: center;
  justify-content: center;
}
.success-card i {
  font-size: 4rem;
  color: var(--brand);
  margin-bottom: 1rem;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 0.8rem;
  text-align: center;
  min-height: 320px;
  border: 2px dashed var(--line);
  border-radius: 28px;
  padding: 2rem;
}

.empty-state i {
  font-size: 3rem;
  color: var(--brand);
}

/* Footer */

.site-footer {
  background: var(--brand-dark);
  padding-top: 4rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin-top: 0;
}

.footer-links a,
.contact-list li {
  padding: 0.35rem 0;
  color: var(--line);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  color: var(--muted);
}

.footer-credits-text {
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.soft-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

.footer-payments-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.payment-chip2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.3rem 0.55rem;
  border: 0.5px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--line);
  font-size: 0.95rem;
  line-height: 1;
}

.payment-chip-logo {
  padding: 0.22rem 0.4rem;
}

.payment-logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  border-radius: 8px;
}

.payment-chip2 i {
  font-size: 1.7rem;
  line-height: 1;
}

.payment-chip-text span {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-payments {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Offer section */

.hero-offer {
  position: relative;
  padding-top: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.offer-content {
  background: linear-gradient(135deg, rgba(37, 150, 190, 0.08), rgba(106, 192, 167, 0.08));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.offer-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.offer-headline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.offer-badge,
.offer-shipping,
.offer-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 800;
}

.offer-badge {
  background: linear-gradient(135deg, #2596be, #367287, #6ac0a7);
  color: white;
  box-shadow: 0 16px 28px rgba(37, 150, 190, 0.22);
}

.offer-shipping {
  background: var(--surface);
  color: var(--brand-dark);
  border: 1px solid var(--line);
}

.offer-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.offer-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.offer-points {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.offer-points li {
  font-size: 1.05rem;
}

.offer-visual {
  min-width: 0;
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(37, 150, 190, 0.12);
  box-shadow: var(--shadow);
}

.high-contrast .offer-card,
.high-contrast .offer-content {
  background: var(--surface);
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  background: linear-gradient(135deg, rgba(37, 150, 190, 0.12), rgba(54, 114, 135, 0.08), rgba(106, 192, 167, 0.12));
  z-index: 0;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.offer-card-discount {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.04em;
}

.offer-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.offer-stats {
  display: grid;
  gap: 0.9rem;
}

.offer-stat {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.offer-stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.offer-stat span {
  color: var(--muted);
}

/* Hero */

.hero,
.hero-video-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(8, 20, 28, 0.18) 0%,
      rgba(8, 20, 28, 0.26) 30%,
      rgba(8, 20, 28, 0.48) 58%,
      rgba(8, 20, 28, 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(8, 20, 28, 0.7) 0%,
      rgba(8, 20, 28, 0.42) 34%,
      rgba(8, 20, 28, 0.15) 62%,
      rgba(8, 20, 28, 0.08) 100%
    );
}

.high-contrast .hero-video-section::after {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.38) 30%,
      rgba(0, 0, 0, 0.66) 58%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.56) 36%,
      rgba(0, 0, 0, 0.18) 64%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.hero-grid {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(7rem, 11vh, 9rem) 0 4rem;
}

.hero-copy {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  color: #fff;
  padding: 0 1rem 0 clamp(0.75rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50vh;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
  margin: 1rem 0 0;
  max-width: 50rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.45;
  color: #fff !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  margin-top: 1.5rem;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Promo popup */

.promo-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(18, 28, 36, 0.58);
  backdrop-filter: blur(10px);
}

.promo-popup {
  position: relative;
  width: min(100%, 760px);
  overflow: hidden;
  border-radius: 34px;
  padding: 2.4rem 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 30px 90px rgba(0, 15, 39, 0.22);
  text-align: center;
}

.promo-popup-easter {
  background:
    radial-gradient(circle at top left, rgba(255, 217, 122, 0.55), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 182, 201, 0.4), transparent 24%),
    radial-gradient(circle at bottom left, rgba(191, 238, 207, 0.45), transparent 26%),
    linear-gradient(135deg, #fffdf6 0%, #fff7fb 48%, #f4fff8 100%);
}

.high-contrast .promo-popup {
  background: var(--surface);
  border-color: var(--line);
}

.promo-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 55%);
  pointer-events: none;
}

.promo-popup > * {
  position: relative;
  z-index: 1;
}

.promo-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 49, 60, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(17, 49, 60, 0.08);
}

.promo-popup-close:hover {
  transform: translateY(-1px);
}

.high-contrast .promo-popup-close {
  background: var(--surface-2);
}

.promo-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(37, 150, 190, 0.14);
  pointer-events: none;
}

.promo-float svg {
  width: 46px;
  height: 46px;
}

.promo-float-egg-1 {
  top: 1.35rem;
  left: 1.3rem;
  transform: rotate(-10deg);
}

.promo-float-egg-2 {
  top: 5.8rem;
  right: 1.8rem;
  transform: rotate(12deg);
}

.promo-float-egg-3 {
  bottom: 1.5rem;
  left: 2.2rem;
  transform: rotate(10deg);
}

.promo-float-bunny {
  right: 2rem;
  bottom: 1.6rem;
  transform: rotate(-8deg);
}

.promo-popup-content {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.4rem 0;
}

.promo-popup-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #8a5b00;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(138, 91, 0, 0.08);
}

.promo-popup h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--brand-dark);
}

.promo-popup-badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.promo-popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffb84d, #ff8ca8, #8ed9a8);
  color: white;
  box-shadow: 0 14px 28px rgba(255, 140, 168, 0.18);
}

.promo-popup-badge-light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-dark);
  border: 1px solid rgba(17, 49, 60, 0.08);
  box-shadow: none;
}

.promo-popup-text {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text);
}

.promo-popup-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.promo-popup .btn-primary {
  background: linear-gradient(135deg, #ffb84d, #ff8ca8, #8ed9a8);
  box-shadow: 0 18px 34px rgba(255, 140, 168, 0.2);
}

.promo-popup .btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 49, 60, 0.08);
}

.promo-popup-backdrop[hidden] {
  display: none !important;
}

/* Promo cards */

.promo-cards-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.promo-card-custom {
  position: relative;
  min-height: 60svh;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
  background: #000;
}

.promo-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.promo-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.28) 35%, rgba(0, 0, 0, 0.78) 100%);
  transition: background 0.35s ease;
}

.promo-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
  transform: translateY(0);
  min-height: 40%;
}

.promo-card-custom h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
  color: #fff;
  transition: color 0.35s ease, transform 0.35s ease;
}

.promo-card-custom p {
  margin: 0.8rem 0 0;
  max-width: 24ch;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.promo-card-custom:hover .promo-card-bg,
.promo-card-custom:focus-within .promo-card-bg {
  filter: grayscale(0);
  transform: scale(1.08);
}

.promo-card-custom:hover .promo-card-overlay,
.promo-card-custom:focus-within .promo-card-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 45, 117, 0.3) 35%, rgba(0, 15, 39, 0.8) 80%, rgba(0, 15, 39, 0.9) 100%);
}

.promo-card-custom:hover h2,
.promo-card-custom:focus-within h2 {
  color: var(--accent);
  transform: translateY(-4px);
}

.promo-card-custom:hover p,
.promo-card-custom:focus-within p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1180px) {
  .nav-search.is-open .search-field-wrap,
  .nav-search:focus-within .search-field-wrap {
    width: 14rem;
  }

  .hero-grid {
    padding-top: 7rem;
  }

  .hero-copy {
    width: min(100%, 680px);
  }
}

@media (max-width: 1080px) {
  
  .navbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

    .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding:1rem;
    padding-bottom: 8dvh;
      background:
      radial-gradient(circle at top right, rgba(105, 202, 244, 0.22), transparent 34%),
      radial-gradient(circle at bottom left, rgba(106, 192, 167, 0.22), transparent 38%),
      linear-gradient(180deg, #04245d 0%, #001737 58%, #082a32 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -22px 0 60px rgba(0, 15, 39, 0.28);
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.22s ease;
    z-index: 90;
    overflow: hidden;
  }
  .main-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .high-contrast .main-nav {
    background:
      radial-gradient(circle at top right, rgba(105, 202, 244, 0.16), transparent 34%),
      linear-gradient(180deg, #0d1820 0%, #0d1820 100%);
  }

  .mobile-nav-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-title-wrap {
    display: grid;
    gap: 0.3rem;
  }

  .mobile-nav-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-nav-title {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
  }

  .mobile-nav-close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
  }

  .mobile-nav-links {
    display: grid;
    gap: 0.55rem;
    align-content: start;
    justify-content: stretch;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.15rem;
    padding-bottom: 1rem;
  }
  .mobile-nav-links a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    font-size: 1rem;
    font-weight: 700;
    white-space: normal;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a.active {
    background: linear-gradient(135deg, rgba(105, 202, 244, 0.24), rgba(106, 192, 167, 0.2));
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateX(2px);
  }


  .mobile-nav-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-top: auto;
    padding: 1rem 0 calc(0.25rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 -14px 28px rgba(0, 0, 0, 0.16);
  }
  .mobile-nav-auth-btn {
    min-height: 52px;
    width: 100%;
    border-radius: 16px;
    font-size: 0.96rem;
  }

  .mobile-nav-footer .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-nav-footer .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
  }

  .mobile-nav-footer .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--mint));
    color: var(--brand-dark);
    box-shadow: 0 16px 30px rgba(105, 202, 244, 0.22);
  }

  .nav-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    border: 0;
    padding: 0;
    background: rgba(2, 12, 24, 0.52);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  body.nav-open .nav-drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-search-collapsible {
    position: static;
  }

  .nav-search.is-open .search-field-wrap,
  .nav-search:focus-within .search-field-wrap {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    width: auto;
    margin-left: 0;
    padding: 0 0.3rem 0 0.95rem;
    border-radius: 22px;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(17, 49, 60, 0.16);
    backdrop-filter: blur(12px);
    z-index: 75;
  }

  .high-contrast .nav-search.is-open .search-field-wrap,
  .high-contrast .nav-search:focus-within .search-field-wrap {
    background: rgba(16, 33, 38, 0.98);
  }

  .search-field-wrap input {
    min-height: 52px;
    padding: 0.85rem 0.45rem 0.85rem 0;
  }

  .search-submit-btn {
    width: 42px;
    height: 42px;
    margin-right: 2px;
  }

  .split-banner,
  .cta-band,
  .product-layout,
  .product-detail-grid,
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .spec-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid,
  .card-grid,
  .stats-grid,
  .footer-grid,
  .promo-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-box,
  .summary-card,
  .account-nav {
    position: static;
  }

  .hero-grid {
    padding: 7rem 0 3rem;
  }

  .hero-copy {
    padding-left: 1.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-heading,
  .panel-head,
  .footer-bottom {
    align-items: start;
  }

  .topbar-inner {
    flex-direction: column;
  }

  .topbar {
    padding: 0.65rem 0;
  }

  .topbar p {
    font-size: 0.9rem;
  }

  .site-header .container {
    width: min(var(--max-width), calc(100% - 1rem));
  }

  .navbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    padding: 0.75rem 0;
    min-height: auto;
  }

  .brand {
    gap: 0.05rem;
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo {
    width: 124px;
    height: auto;
  }

  .brand-sub {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .header-tools {
    gap: 0.35rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: max-content;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .search-toggle-btn,
  .site-language-trigger,
  .icon-link,
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .mobile-nav-footer {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-bottom: calc(0.35rem + env(safe-area-inset-bottom));
  }

  .main-nav {
    width: min(92vw, 360px);
  }

  .nav-search.is-open .search-field-wrap,
  .nav-search:focus-within .search-field-wrap {
    left: 0.5rem;
    right: 0.5rem;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero,
  .hero-video-section,
  .hero-grid {
    min-height: 80svh;
  }

  .hero-video-section::after {
    background:
      linear-gradient(
        180deg,
        rgba(8, 20, 28, 0.42) 0%,
        rgba(8, 20, 28, 0.52) 36%,
        rgba(8, 20, 28, 0.74) 100%
      );
  }

  .hero-grid {
    padding: 6.25rem 0 2.5rem;
  }

  .hero-copy {
    width: min(100%, 36rem);
    padding: 0 1rem;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.25rem);
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .hero-subtitle {
    max-width: 28rem;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn,
  .offer-actions .btn {
    width: 100%;
    max-width: 26rem;
  }

  .promo-grid,
  .card-grid,
  .info-grid,
  .stats-grid,
  .footer-grid,
  .form-grid,
  .promo-cards-grid {
    grid-template-columns: 1fr;
  }

  .quantity-row,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item {
    align-items: start;
  }

  .offer-content,
  .offer-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .offer-content h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .offer-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .thumb-button img {
    width: 72px;
    height: 72px;
  }

  .compare-table,
  .admin-table {
    min-width: 720px;
  }

  .promo-popup {
    padding: 1.4rem 1.15rem 1.2rem;
    border-radius: 24px;
  }

  .promo-popup-content {
    padding: 2.9rem 0 1rem;
  }

  .promo-float {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .promo-float svg {
    width: 30px;
    height: 30px;
  }

  .promo-float-egg-1 {
    top: 0.9rem;
    left: 0.8rem;
  }

  .promo-float-egg-2 {
    top: 4.3rem;
    right: 0.9rem;
  }

  .promo-float-egg-3 {
    bottom: 1rem;
    left: 0.9rem;
  }

  .promo-float-bunny {
    right: 1rem;
    bottom: 1rem;
  }

  .promo-popup h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .promo-popup-text {
    font-size: 1rem;
  }

  .promo-popup-actions {
    flex-direction: column;
  }

  .promo-popup-actions .btn {
    width: 100%;
  }

  .promo-card-custom {
    min-height: 340px;
  }

  .promo-card-custom p {
    opacity: 1;
    transform: translateY(0);
  }

  .promo-card-bg {
    filter: grayscale(0.35);
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 112px;
  }

  .brand-sub {
    display: none;
  }

  .header-tools {
    gap: 0.25rem;
  }

  .search-toggle-btn,
  .site-language-trigger,
  .icon-link,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    width: min(100vw, 340px);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .mobile-nav-links a {
    min-height: 52px;
    padding: 0.85rem 0.95rem;
  }

  .hero-grid {
    padding: 5.8rem 0 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-copy .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    max-width: 22rem;
  }
}
/* Accessibility toolbar */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.accessibility-toolbar {
  position: relative;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 45%, var(--mint) 100%);
  border-bottom: 1px solid var(--line);
  z-index: 45;
}

.toolbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.toolbar-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-wrap: wrap;
}

.toolbar-contact-links {
  justify-content: flex-start;
}

.toolbar-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  max-width: 100%;
}

.toolbar-contact-btn:hover,
.toolbar-contact-btn:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.3);
}

.toolbar-contact-btn i {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: none;
  flex-shrink: 0;
}

.toolbar-contact-btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.toolbar-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.toolbar-toggle-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.toolbar-toggle-btn:hover,
.toolbar-toggle-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}

.toolbar-toggle-btn[aria-expanded='true'] {
  background: rgba(255, 255, 255, 0.22);
}

.toolbar-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(32rem, calc(100vw - 1rem));
  z-index: 70;
}

.toolbar-panel-inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(37, 150, 190, 0.14);
  box-shadow: 0 24px 50px rgba(17, 49, 60, 0.16);
  backdrop-filter: blur(14px);
}

.toolbar-panel-inner > * {
  min-width: 0;
}

.high-contrast .toolbar-panel-inner {
  background: rgba(16, 33, 38, 0.98);
  border-color: var(--line);
}

.font-size-control {
  display: grid;
  gap: 0.75rem;
}

.toolbar-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.font-size-control-label {
  color: var(--text);
  font-weight: 800;
}

.font-size-readout {
  min-width: 4.8rem;
  min-height: 2.6rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}

.font-size-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.65rem;
}

.font-step-btn,
.font-reset-btn,
.contrast-toggle-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 18px;
  min-height: 48px;
  padding: 0.8rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.font-step-btn:hover,
.font-reset-btn:hover,
.contrast-toggle-btn:hover,
.font-step-btn:focus-visible,
.font-reset-btn:focus-visible,
.contrast-toggle-btn:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(37, 150, 190, 0.35);
  text-decoration: none;
}

.font-step-btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffffff);
}

.contrast-toggle-btn {
  width: 100%;
}

.contrast-toggle-btn[aria-pressed='true'] {
  background: var(--surface-2);
  border-color: rgba(37, 150, 190, 0.28);
  box-shadow: inset 0 0 0 1px rgba(37, 150, 190, 0.14);
}


.high-contrast .font-step-btn,
.high-contrast .font-reset-btn,
.high-contrast .contrast-toggle-btn,
.high-contrast {
  background: var(--surface);
  color: var(--text);
}

.high-contrast .font-step-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #06212a;
}


@media (max-width: 720px) {
  .toolbar-inner {
    align-items: center;
    gap: 0.75rem;
  }

  .toolbar-title {
    display: none;
  }

  .toolbar-toggle-btn {
    width: 100%;
    max-width: 100%;
  }

  .toolbar-actions {
    width: 100%;
  }

  .toolbar-panel {
    left: 0;
    right: 0;
    width: 100%;
  }

  .toolbar-panel-inner {
    border-radius: 20px;
    padding: 0.9rem;
  }

  .font-size-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .font-reset-btn,
  .contrast-toggle-btn {
    grid-column: 1 / -1;
  }

}

/* Product listing refresh */
.product-listing-shell {
  display: grid;
  gap: 1.75rem;
  margin-top: 0;
  padding-top: 0;
}

.product-page-hero .hero-intro {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.product-filter-panel {
  position: static;
  padding: 0;
  overflow: hidden;
}

.product-filter-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
}

.product-filter-summary::-webkit-details-marker {
  display: none;
}

.product-filter-summary-copy {
  display: grid;
  gap: 0.2rem;
}

.product-filter-summary-copy strong {
  font-size: 1.08rem;
}

.product-filter-summary-copy small {
  color: var(--muted);
}

.product-filter-summary-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.product-filter-panel[open] .product-filter-summary-meta i {
  transform: rotate(180deg);
}

.product-filter-summary-meta i {
  transition: transform 0.2s ease;
}

.product-filter-form {
  padding: 0 1.5rem 1.5rem;
}

.product-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(12rem, 0.7fr) auto;
  gap: 1rem;
  align-items: end;
}

.product-filter-field {
  display: grid;
  gap: 0.45rem;
}

.product-filter-input-wrap {
  position: relative;
}

.product-filter-input-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.product-filter-input-wrap input {
  padding-left: 2.8rem;
}

.product-filter-check {
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.product-filter-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-filter-button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.products-meta-bar {
  align-items: center;
  margin-bottom: 1.5rem;
}

.products-count,
.products-active-query {
  margin: 0;
}

.products-count {
  font-size: 1.05rem;
}

.products-active-query {
  color: var(--muted);
  margin-top: 0.25rem;
}

.products-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.products-grid-large .product-card {
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.products-grid-large .product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18rem;
}

.products-grid-large .product-image {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 1.5rem;
}

.products-grid-large .product-card-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
}

.products-grid-large .product-card h3,
.products-grid-large .product-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
}

.products-grid-large .product-copy,
.products-grid-large .product-subtitle {
  color: var(--muted);
}

/* Product details refresh */

.product-gallery-card {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 8rem;
}

.product-media-stage {
  position: relative;
}

.product-media-main {
  width: 100%;
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.08), rgba(106, 192, 167, 0.08));
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.product-media-main:hover .product-image-zoom-hint {
  transform: translateY(0);
  opacity: 1;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0;
}

.product-image-zoom-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 15, 39, 0.72);
  color: white;
  font-weight: 700;
  backdrop-filter: blur(10px);
  opacity: 0.96;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.75rem;
}

.product-thumb-row .thumb-button {
  width: 100%;
  padding: 0.45rem;
  border-radius: 18px;
}

.product-thumb-row .thumb-button img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-video-block {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-video-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.product-video-list {
  display: grid;
  gap: 1rem;
}

.product-inline-video {
  width: 100%;
  border-radius: 20px;
  background: #000;
  overflow: hidden;
}

.product-copy-panel-enhanced {
  display: grid;
  gap: 1.1rem;
}

.product-title-block h1 {
  margin-bottom: 0.45rem;
}

.product-detail-subtitle {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
}

.product-detail-lead {
  margin: 0.7rem 0 0;
  font-size: 1.06rem;
  color: var(--muted);
}

.product-detail-pills {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.product-price-card {
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(37, 150, 190, 0.08), rgba(106, 192, 167, 0.08));
}

.product-purchase-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-wishlist-btn {
  width: 100%;
}

.product-resource-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.product-resource-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 150, 190, 0.35);
  background: var(--surface);
}

.product-media-empty {
  min-height: 24rem;
}

/* Product lightbox */

body.product-lightbox-open {
  overflow: hidden;
}

.product-lightbox[hidden] {
  display: none !important;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 39, 0.76);
  backdrop-filter: blur(8px);
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 1040px);
  max-height: 92vh;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(37, 150, 190, 0.18);
  box-shadow: 0 30px 80px rgba(0, 15, 39, 0.28);
}

.high-contrast .product-lightbox-dialog {
  background: rgba(16, 33, 38, 0.98);
}

.product-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-lightbox-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.product-lightbox-btn {
  min-width: 46px;
  min-height: 46px;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font-weight: 700;
}

.high-contrast .product-lightbox-btn {
  background: var(--surface);
}

.product-lightbox-stage {
  display: grid;
  place-items: center;
  min-height: min(70vh, 700px);
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.06), rgba(106, 192, 167, 0.08));
}

.product-lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transition: transform 0.18s ease;
  transform-origin: center center;
}

/* Better mobile layouts */

@media (max-width: 1080px) {
  .products-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-filter-check {
    grid-column: 1 / -1;
  }

  .product-gallery-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .product-filter-summary {
    padding: 1.1rem 1rem;
  }

  .product-filter-form {
    padding: 0 1rem 1rem;
  }

  .product-filter-grid,
  .products-grid-large {
    grid-template-columns: 1fr;
  }

  .product-filter-actions,
  .product-filter-button-row {
    display: grid;
    width: 100%;
  }

  .product-filter-actions > *,
  .product-filter-button-row > * {
    width: 100%;
  }

  .products-meta-bar {
    gap: 0.75rem;
  }

  .product-image-zoom-hint {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }

  .product-lightbox-dialog {
    width: min(100vw - 1rem, 100%);
    padding: 0.85rem;
    border-radius: 22px;
  }

  .product-lightbox-toolbar {
    align-items: stretch;
  }

  .product-lightbox-controls {
    width: 100%;
    justify-content: space-between;
  }

  .product-lightbox-btn {
    flex: 1 1 auto;
  }
}


/* Homepage enhancement */

.home-offer-enhanced {
  padding-top: 2rem;
}

.home-offer-grid {
  gap: 2.2rem;
  align-items: stretch;
}

.home-offer-content {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(105, 202, 244, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(37, 150, 190, 0.08), rgba(106, 192, 167, 0.1));
}

.home-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
}

.home-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-weight: 700;
}

.home-offer-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
}

.home-offer-media {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.08), rgba(106, 192, 167, 0.08));
}

.home-offer-video {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.home-offer-product-copy h3 {
  margin: 0.4rem 0 0.3rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.home-offer-product-copy p {
  margin: 0;
  color: var(--muted);
}

.home-offer-stats {
  grid-template-columns: repeat(3, 1fr);
}

.home-offer-card-actions {
  margin-top: 0.25rem;
}

.home-seo-section .section-heading {
  margin-bottom: 1.5rem;
}

.home-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-seo-card {
  height: 100%;
}

.home-seo-card i,
.home-benefit-card i {
  font-size: 1.85rem;
  color: var(--brand);
  margin-bottom: 0.9rem;
}

.home-location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

@media (min-width: 1080px) {
.home-location-chips {
  align-items: center;
  text-align: center;
  justify-content: center;
}
}

.home-location-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(17, 49, 60, 0.06);
}

.home-spotlight {
  display: grid;
  gap: 1.2rem;
}

.home-spotlight-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-spotlight-tab {
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 10px 24px rgba(17, 49, 60, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.home-spotlight-tab:hover,
.home-spotlight-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(37, 150, 190, 0.3);
  background: linear-gradient(135deg, rgba(37, 150, 190, 0.08), rgba(106, 192, 167, 0.08));
  box-shadow: 0 18px 32px rgba(17, 49, 60, 0.08);
}

.home-spotlight-tab-title {
  display: block;
  font-weight: 800;
  line-height: 1.2;
}

.home-spotlight-tab-subtitle {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-spotlight-panels {
  min-width: 0;
}

.home-spotlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  padding: 1.4rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 150, 190, 0.12);
  box-shadow: var(--shadow);
}

.high-contrast .home-spotlight-panel {
  background: rgba(16, 33, 38, 0.98);
}

.home-spotlight-media {
  min-width: 0;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.08), rgba(106, 192, 167, 0.08));
  display: grid;
  place-items: center;
}

.home-spotlight-image,
.home-spotlight-video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.home-spotlight-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.home-spotlight-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-spotlight-subtitle {
  margin: -0.5rem 0 0;
  color: var(--brand);
  font-weight: 700;
}

.home-spotlight-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.home-spotlight-list {
  margin: 0;
}

.home-spotlight-price {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.home-spotlight-price p {
  margin: 0;
}

.home-spotlight-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.home-benefits-banner {
  align-items: start;
}

.home-benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-benefit-card {
  height: 100%;
}

.home-cta-band {
  gap: 1.5rem;
}

@media (max-width: 1080px) {
  .home-offer-stats,
  .home-seo-grid,
  .home-spotlight-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-spotlight-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-trust-row,
  .home-location-chips,
  .home-spotlight-actions {
    display: grid;
  }

  .home-offer-stats,
  .home-seo-grid,
  .home-spotlight-tabs,
  .home-benefit-cards {
    grid-template-columns: 1fr;
  }

  .home-spotlight-tab {
    padding: 0.9rem 0.95rem;
  }

  .home-spotlight-panel {
    padding: 1rem;
    border-radius: 24px;
  }

  .home-spotlight-copy h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .home-offer-content {
    padding: 1.35rem;
    border-radius: 24px;
  }
}


.home-seo-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  min-height: 100%;
}

.home-seo-card-media {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.home-seo-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(135deg, rgba(0, 45, 117, 0.18), rgba(106, 192, 167, 0.12));
}

.home-seo-card-body {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.home-seo-card-body h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.home-seo-card-body p {
  margin: 0;
  color: var(--muted);
}

.home-seo-card-media-map {
  background-image: url('/images/flag.jpg');
}

.home-seo-card-media-homecare {
  background-image: url('/products/visomat_comfort_form_PZN01802434_5.png');
}

.home-seo-card-media-service {
  background-image: url('/products/visomat_Netzteil_USB-C_PZN19779500_3.png');
}

@media (max-width: 720px) {
  .home-seo-card-media {
    min-height: 180px;
  }

  .home-seo-card-body {
    padding: 1.15rem;
  }
}

.full-bleed-image-only {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(220px, 34vw, 460px);
  overflow: hidden;
}

.full-bleed-image-only-media {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.home-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1.5rem;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 253, 0.96));
}

.home-benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.72) 100%);
  pointer-events: none;
}

.home-benefit-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.home-benefit-card h3,
.home-benefit-card p {
  position: relative;
  z-index: 2;
}

.home-benefit-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.home-benefit-card p {
  margin: 0;
  color: var(--muted);
}

.home-benefit-card-bg-icon {
  position: absolute;
  right: -0.35rem;
  bottom: -0.35rem;
  z-index: 1;
  font-size: clamp(5rem, 11vw, 7.5rem);
  line-height: 1;
  color: var(--brand);
  opacity: 0.09;
  pointer-events: none;
  transform: rotate(-10deg);
}

.high-contrast .home-benefit-card {
  background:
    linear-gradient(135deg, rgba(16, 33, 38, 0.98), rgba(23, 49, 58, 0.98));
}

.high-contrast .home-benefit-card::after {
  background:
    linear-gradient(180deg, rgba(16, 33, 38, 0.08) 0%, rgba(16, 33, 38, 0.78) 100%);
}

.high-contrast .home-benefit-card-bg-icon {
  color: var(--accent);
  opacity: 0.08;
}

@media (max-width: 720px) {
  .home-benefit-card {
    min-height: 180px;
    padding: 1.15rem;
  }

  .home-benefit-card-bg-icon {
    font-size: 4.8rem;
    right: -0.2rem;
    bottom: -0.2rem;
  }
}


/* ===== Enhanced product cards ===== */

.product-card-enhanced {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 253, 0.98));
  border: 1px solid rgba(37, 150, 190, 0.12);
  box-shadow: 0 18px 40px rgba(17, 49, 60, 0.1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  isolation: isolate;
}

.product-card-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(105, 202, 244, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(106, 192, 167, 0.12), transparent 30%);
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

.product-card-enhanced > * {
  position: relative;
  z-index: 1;
}

.product-card-enhanced:hover,
.product-card-enhanced:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(17, 49, 60, 0.18);
  border-color: rgba(37, 150, 190, 0.24);
}

.product-image-wrap-enhanced {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(105, 202, 244, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(37, 150, 190, 0.06), rgba(106, 192, 167, 0.1));
  overflow: hidden;
}

.product-image-wrap-enhanced:hover {
  text-decoration: none;
}

.product-image-wrap-enhanced .product-image {
  width: 100%;
  max-width: 290px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.product-card-enhanced:hover .product-image,
.product-card-enhanced:focus-within .product-image {
  transform: scale(1.06);
}

.product-image-hover-label {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 12px);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 15, 39, 0.76);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(10px);
}

.product-card-enhanced:hover .product-image-hover-label,
.product-card-enhanced:focus-within .product-image-hover-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-card-enhanced .product-badge {
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--brand), #1c67b8, var(--mint));
  box-shadow: 0 14px 28px rgba(0, 45, 117, 0.24);
}

.product-card-body-enhanced {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem 1.4rem 1.4rem;
}

.product-tags-enhanced {
  justify-content: center;
  gap: 0.5rem;
  min-height: 2rem;
}

.product-tags-enhanced span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 49, 60, 0.05);
}

.product-card-copy {
  display: grid;
  gap: 0.45rem;
  width: 100%;
}

.product-subtitle-enhanced {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
}

.product-card-enhanced h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.product-title-link {
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s ease;
}

.product-card-enhanced:hover .product-title-link,
.product-title-link:hover {
  color: var(--brand);
  text-decoration: none;
}

.product-copy-enhanced {
  margin: 0;
  color: var(--muted);
  max-width: 30ch;
  margin-inline: auto;
}

.price-box-enhanced {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  width: 100%;
  margin: 0.2rem 0 0;
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 150, 190, 0.12);
}

.price-box-enhanced .price-old {
  margin: 0;
  font-size: 0.92rem;
}

.price-current {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.product-price-save {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(106, 192, 167, 0.14);
  color: #0f6b56;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-actions-enhanced {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  justify-items: stretch;
}

.product-card-cart-form {
  width: 100%;
}

.product-card-btn {
  width: 100%;
  min-height: 50px;
  border-radius: 18px;
  padding: 0.85rem 1rem;
  justify-content: center;
}

.product-card-btn.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
}

.product-card-btn.btn-primary {
  box-shadow: 0 16px 28px rgba(37, 150, 190, 0.2);
}

.product-card-btn i {
  font-size: 0.95rem;
}

/* Better grid sizing for nicer cards */
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.products-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

/* High contrast */
.high-contrast .product-card-enhanced {
  background:
    linear-gradient(180deg, rgba(16, 33, 38, 0.98), rgba(23, 49, 58, 0.98));
  border-color: rgba(91, 169, 196, 0.28);
}

.high-contrast .price-box-enhanced,
.high-contrast .product-tags-enhanced span,
.high-contrast .product-card-btn.btn-secondary {
  background: var(--surface);
}

.high-contrast .product-title-link,
.high-contrast .price-current {
  color: var(--accent);
}

.high-contrast .product-price-save {
  color: var(--mint);
  background: rgba(183, 255, 233, 0.08);
}

/* Mobile */
@media (max-width: 1080px) {
  .card-grid,
  .products-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .card-grid,
  .products-grid-large {
    grid-template-columns: 1fr;
  }

  .product-image-wrap-enhanced {
    min-height: 15rem;
    padding: 1rem;
  }

  .product-card-body-enhanced {
    padding: 1.2rem 1rem 1rem;
  }

  .product-image-hover-label {
    opacity: 1;
    transform: translate(-50%, 0);
    bottom: 0.75rem;
    font-size: 0.82rem;
    min-height: 36px;
  }
}


.contact-page {
  background:
    radial-gradient(circle at top right, rgba(105, 202, 244, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfe 100%);
}

.contact-hero .hero-intro {
  max-width: 760px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-section {
  padding-top: 18px;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.contact-quick-card,
.contact-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-quick-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.contact-quick-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(105, 202, 244, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-quick-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact-quick-card h2,
.contact-card h2,
.contact-form-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.contact-quick-card p,
.contact-card p,
.contact-form-head p,
.contact-form-note {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 28px;
}

.contact-company-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.contact-form-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,251,253,0.98) 100%);
}

.contact-form-head {
  margin-bottom: 22px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 45, 117, 0.45);
  box-shadow: 0 0 0 4px rgba(105, 202, 244, 0.18);
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
}

.contact-form-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.alert {
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 20px;
  border: 1px solid;
  font-weight: 600;
}

.alert-success {
  background: rgba(106, 192, 167, 0.12);
  border-color: rgba(106, 192, 167, 0.4);
  color: #0f5b49;
}

.alert-error {
  background: rgba(184, 63, 63, 0.08);
  border-color: rgba(184, 63, 63, 0.25);
  color: #8b1f1f;
}

.turnstile-missing {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(184, 63, 63, 0.35);
  background: rgba(184, 63, 63, 0.06);
  color: #8b1f1f;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.btn-full-mobile {
  white-space: normal;
  text-align: center;
}

@media (max-width: 980px) {
  .contact-quick-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-card,
  .contact-quick-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-hero-actions .btn,
  .btn-full-mobile,
  .contact-form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 20px;
  }
}

.contact-quick-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-quick-card h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 3;
}

.contact-quick-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1;
}


.legal-page {
  background:
    radial-gradient(circle at top right, rgba(105, 202, 244, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfe 100%);
}

.legal-hero .hero-intro {
  max-width: 700px;
}

.legal-section {
  padding-top: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.legal-main {
  display: grid;
  gap: 20px;
}

.legal-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  margin-top: 24px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.legal-card p {
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.65;
}

.legal-card a {
  word-break: break-word;
}

.legal-stack {
  margin-bottom: 18px;
}

.legal-contact-list {
  display: grid;
  gap: 8px;
}

.legal-card-prose p:last-child,
.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-highlight-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.legal-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legal-card {
    padding: 22px;
  }

  .legal-sidebar .btn {
    width: 100%;
    justify-content: center;
  }
}

.privacy-page .legal-card-prose h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  color: var(--brand);
}

.legal-list {
  margin: 12px 0 18px;
  padding-left: 20px;
  color: var(--text);
}

.legal-list li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.legal-toc {
  display: grid;
  gap: 10px;
}

.legal-toc a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.legal-toc a:hover {
  background: var(--surface);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.shipping-return-box {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  line-height: 1.65;
}

.payment-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

.legal-numbered-list {
  display: grid;
  gap: 22px;
}

.legal-numbered-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--brand);
}

.withdrawal-address-box {
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  line-height: 1.65;
}

.agb-page .legal-numbered-item {
  padding-bottom: 6px;
}

.agb-page .legal-numbered-item p {
  margin-bottom: 0;
}



.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 9999;
}

.cookie-banner-card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(28, 84, 102, 0.2);
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-banner-content {
  max-width: 640px;
}

.cookie-banner-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.cookie-banner-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.cookie-banner-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-settings-form {
  display: grid;
  gap: 18px;
}

.cookie-setting-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.cookie-setting-row h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.cookie-setting-row p {
  margin: 0;
  color: var(--muted);
}

.cookie-setting-status.always-active {
  white-space: nowrap;
  align-self: center;
  font-weight: 700;
  color: var(--brand);
}

.cookie-choice-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-self: center;
}

.cookie-choice {
  position: relative;
}

.cookie-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-choice span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-choice input:checked + span {
  border-color: var(--brand);
  background: var(--surface);
  color: var(--brand);
}

.cookie-settings-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .cookie-banner {
    inset: auto 12px 12px 12px;
  }

  .cookie-banner-card {
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-setting-row {
    flex-direction: column;
  }

  .cookie-choice-group,
  .cookie-settings-actions {
    flex-direction: column;
  }

  .cookie-settings-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


.hardmeier-page {
  background:
    radial-gradient(circle at top right, rgba(105, 202, 244, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.hardmeier-section {
  padding: 4.5rem 0;
}

.hardmeier-section--soft {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

.hardmeier-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(105, 202, 244, 0.14);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hardmeier-hero-section {
  padding: 4.5rem 0 3rem;
}

.hardmeier-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}



.hardmeier-hero-title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

.hardmeier-hero-text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hardmeier-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hardmeier-fact-pill {
  min-width: 180px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 45, 117, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(17, 49, 60, 0.06);
  backdrop-filter: blur(10px);
}

.hardmeier-fact-pill strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--brand-dark);
  font-size: 0.88rem;
}

.hardmeier-fact-pill span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hardmeier-photo-stage {
  display: grid;
  gap: 1rem;
}

.hardmeier-photo-stage__main,
.hardmeier-photo-stage__small {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  background-color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}



.hardmeier-photo-stage__main span,
.hardmeier-photo-stage__small span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hardmeier-photo-stage__main {
  min-height: 360px;
}

.hardmeier-photo-stage__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hardmeier-photo-stage__small {
  min-height: 170px;
}

.hardmeier-photo-stage__main--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 2rem;
  background: #fff;
}

.hardmeier-photo-stage__main--logo::before {
  display: none;
}

.hardmeier-photo-stage__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hardmeier-section-head {
  margin-bottom: 2rem;
  text-align: center;
}

.hardmeier-section-title {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.hardmeier-section-intro {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hardmeier-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.hardmeier-card-grid--infos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hardmeier-flip-card {
  position: relative;
  min-height: 360px;
  perspective: 1400px;
  cursor: pointer;
  outline: none;
}

.hardmeier-flip-card:focus-visible .hardmeier-flip-card__inner {
  box-shadow: 0 0 0 4px rgba(105, 202, 244, 0.35);
}

.hardmeier-flip-card__inner {
  position: relative;
  width: 100%;
  min-height: 360px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hardmeier-flip-card.is-flipped .hardmeier-flip-card__inner {
  transform: rotateY(180deg);
}

.hardmeier-flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: var(--shadow);
}

.hardmeier-flip-card__face--front {
  color: #ffffff;
  background-color: #d8ebf1;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hardmeier-flip-card__face--front::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 15, 39, 0.12), rgba(0, 15, 39, 0.84));
  z-index: 0;
}

.hardmeier-flip-card__face--front > * {
  position: relative;
  z-index: 1;
}

.hardmeier-flip-card__face--back {
  justify-content: flex-start;
  gap: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  color: var(--text);
  transform: rotateY(180deg);
}

.hardmeier-card-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hardmeier-flip-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hardmeier-flip-card p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.98rem;
}

.hardmeier-card-hint {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hardmeier-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hardmeier-detail-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.hardmeier-detail-list li:last-child {
  margin-bottom: 0;
}

.hardmeier-detail-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--mint));
}

.hardmeier-detail-list a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.hardmeier-detail-list a:hover {
  text-decoration: underline;
}

.hardmeier-contact-panel {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #052764 0%, #0a4a86 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.hardmeier-contact-panel__content {
  max-width: 700px;
}

.hardmeier-contact-panel__content .hardmeier-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hardmeier-contact-panel__content h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.1;
}

.hardmeier-contact-panel__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.hardmeier-contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hardmeier-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hardmeier-action-button:hover {
  transform: translateY(-2px);
}

.hardmeier-action-button--primary {
  background: #ffffff;
  color: var(--brand-dark);
}

.hardmeier-action-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}


.hardmeier-flip-card--pulse .hardmeier-flip-card__face--front {
  background-image: url('/images/pulse3.jpg');
}

.hardmeier-flip-card--ampel .hardmeier-flip-card__face--front {
  background-image: url('/images/traffic.jpg');
}

.hardmeier-flip-card--hypertonie .hardmeier-flip-card__face--front {
  background-image: url('/images/highbp.jpg');
}

.hardmeier-flip-card--coffee .hardmeier-flip-card__face--front {
  background-image: url('/images/beans.jpg');
}

.hardmeier-flip-card--movement .hardmeier-flip-card__face--front {
  background-image: url('/images/bike.jpg');
}

.hardmeier-flip-card--nutrition .hardmeier-flip-card__face--front {
  background-image: url('/images/nutrition.jpg');
}

@media (max-width: 1180px) {
  .hardmeier-hero-layout {
    grid-template-columns: 1fr;
  }

  .hardmeier-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardmeier-card-grid--infos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardmeier-contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hardmeier-section,
  .hardmeier-hero-section {
    padding: 3rem 0;
  }

  .hardmeier-photo-stage__row,
  .hardmeier-card-grid,
  .hardmeier-card-grid--infos {
    grid-template-columns: 1fr;
  }

  .hardmeier-flip-card,
  .hardmeier-flip-card__inner {
    min-height: 340px;
  }

  .hardmeier-contact-panel {
    padding: 1.5rem;
  }

  .hardmeier-contact-panel__actions {
    width: 100%;
  }

  .hardmeier-action-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hardmeier-flip-card__inner,
  .hardmeier-action-button {
    transition: none;
  }
}

.hardmeier-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.hardmeier-info-panel {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: var(--shadow);
}

.hardmeier-info-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--brand-dark);
}

.hardmeier-info-panel__lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.hardmeier-info-panel .hardmeier-card-kicker {
  margin-bottom: 1rem;
  background: rgba(0, 45, 117, 0.08);
  border: 1px solid rgba(0, 45, 117, 0.1);
  color: var(--brand);
  backdrop-filter: none;
}

.hardmeier-info-panel--identity {
  border-top: 4px solid #69caf4;
}

.hardmeier-info-panel--partner {
  border-top: 4px solid #6ac0a7;
}

.hardmeier-info-panel--service {
  border-top: 4px solid #002d75;
}

.hardmeier-info-panel--contact {
  border-top: 4px solid #11313c;
}

@media (max-width: 1180px) {
  .hardmeier-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hardmeier-info-grid {
    grid-template-columns: 1fr;
  }
}



.faq-page .faq-intro-panel,
.faq-page .faq-note,
.faq-page .faq-contact-box {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: var(--shadow);
}

.faq-group-head {
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-group-head h2 {
  margin: 0 0 0.75rem;
  color: var(--brand-dark);
}

.faq-group-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.faq-intro-panel h2,
.faq-contact-box h2 {
  margin-top: 0;
  color: var(--brand-dark);
}

.faq-intro-panel p,
.faq-note p,
.faq-contact-box p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-note {
  margin-top: 1.5rem;
}

.faq-note strong {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.faq-contact-box {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.faq-contact-box__content {
  max-width: 760px;
}

.faq-contact-box__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-contact-box__actions a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.faq-contact-box__actions a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .faq-contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}




.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
}

.navbar {
  display: contents;
}


.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  min-width: max-content;
  flex-wrap: nowrap;
}

.site-language-menu {
  position: relative;
  flex-shrink: 0;
}

.site-language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 56px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.site-language-trigger:hover,
.site-language-trigger:focus-visible,
.site-language-menu.is-open .site-language-trigger {
  transform: translateY(-1px);
  border-color: rgba(37, 150, 190, 0.35);
  box-shadow: 0 12px 26px rgba(17, 49, 60, 0.08);
}

.site-language-current {
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-language-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 85;
  display: grid;
  gap: 0.35rem;
  min-width: 12rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(17, 49, 60, 0.16);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-0.4rem) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-language-menu.is-open .site-language-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.site-language-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.site-language-option:hover,
.site-language-option:focus-visible {
  background: var(--surface);
  color: var(--brand);
  text-decoration: none;
  transform: translateX(2px);
}

.site-language-option.is-selected {
  background: linear-gradient(
    135deg,
    rgba(37, 150, 190, 0.12),
    rgba(106, 192, 167, 0.14)
  );
  color: var(--brand);
}

.site-language-code {
  display: inline-grid;
  place-items: center;
  min-width: 2.15rem;
  height: 1.75rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(37, 150, 190, 0.1);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-language-name {
  font-size: 0.92rem;
}

.high-contrast .site-language-trigger {
  background: var(--surface);
}

.high-contrast .site-language-panel {
  background: rgba(16, 33, 38, 0.98);
}

.high-contrast .site-language-option:hover,
.high-contrast .site-language-option:focus-visible,
.high-contrast .site-language-option.is-selected {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}



@media (max-width: 720px){


.site-language-trigger {
  width: 48px;
  height: 42px;
  border-radius: 12px;
  gap: 0.25rem;
}

.site-language-current {
  font-size: 0.68rem;
}

.site-language-panel {
  right: auto;
  left: 50%;
  min-width: min(13rem, calc(100vw - 1rem));
  transform: translateX(-50%) translateY(-0.4rem) scale(0.98);
}

.site-language-menu.is-open .site-language-panel {
  transform: translateX(-50%) translateY(0) scale(1);
}
}

@media (max-width: 520px){


.site-language-trigger {
  width: 44px;
  height: 40px;
}

.site-language-trigger .fa-globe {
  font-size: 0.95rem;
}

.site-language-current {
  font-size: 0.62rem;
}

.site-language-panel {
  position: fixed;
  top: 4.75rem;
  left: 0.5rem;
  right: 0.5rem;
  width: auto;
  min-width: 0;
  transform: translateY(-0.4rem) scale(0.98);
}

.site-language-menu.is-open .site-language-panel {
  transform: translateY(0) scale(1);
}

.site-language-option {
  min-height: 48px;
}
}