/* Lozip Pharma — Design tokens */
:root {
  --primary: #00274c;
  --primary-container: #0b3d6e;
  --secondary: #006a61;
  --secondary-container: #86f2e4;
  --on-secondary-container: #006f66;
  --background: #f8f9ff;
  --surface-low: #eff4ff;
  --surface-container: #e6eeff;
  --surface-dim: #ccdbf3;
  --white: #ffffff;
  --on-surface: #0d1c2e;
  --on-surface-variant: #43474f;
  --outline-variant: #c3c6d0;
  --error: #ba1a1a;
  --container-max: 1280px;
  --page-gutter: 20px;
  --gutter: 24px;
  --margin-desktop: 64px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 6px -1px rgba(11, 61, 110, 0.04), 0 2px 4px -1px rgba(11, 61, 110, 0.02);
  --font: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.5; color: var(--on-surface); background: var(--background); overflow-x: hidden; width: 100%; }
main { max-width: 100%; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.material-symbols-outlined { font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; vertical-align: middle; line-height: 1; }

@media (min-width: 480px) { :root { --page-gutter: 24px; } }
@media (min-width: 1024px) { :root { --page-gutter: 40px; } }
@media (min-width: 1280px) { :root { --page-gutter: 48px; } }

.container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--outline-variant); transition: box-shadow 0.2s; overflow-x: clip; width: 100%; }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; padding-block: 8px; flex-wrap: nowrap; }
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }
.logo-link img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
@media (min-width: 768px) { .logo-link img { width: 40px; height: 40px; } }
.logo-text { font-size: 17px; font-weight: 700; color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 768px) { .logo-text { font-size: 20px; } }
@media (min-width: 1280px) { .logo-text { font-size: 22px; } }
.nav-desktop { display: none; align-items: center; gap: 14px; flex-shrink: 1; min-width: 0; justify-content: center; }
@media (min-width: 1280px) { .nav-desktop { display: flex; gap: 20px; } }
@media (min-width: 1400px) { .nav-desktop { gap: 26px; } }
.nav-link { font-size: 13px; color: var(--on-surface-variant); transition: color 0.2s; padding-bottom: 4px; border-bottom: 2px solid transparent; white-space: nowrap; flex-shrink: 0; line-height: 1.2; }
@media (min-width: 1400px) { .nav-link { font-size: 14px; } }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 700; border-bottom-color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-cta { white-space: nowrap; padding: 8px 12px !important; font-size: 12px !important; }
@media (min-width: 1280px) { .header-cta { padding: 8px 16px !important; font-size: 13px !important; } }
.menu-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--outline-variant); background: var(--white); border-radius: var(--radius); cursor: pointer; color: var(--primary); flex-shrink: 0; }
@media (min-width: 1280px) { .menu-toggle { display: none; } .header-cta-desktop { display: inline-flex; } }
@media (max-width: 1279px) { .header-cta { display: none; } }
.nav-mobile { display: none; flex-direction: column; padding: 16px var(--page-gutter) 24px; border-top: 1px solid var(--outline-variant); background: var(--white); }
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 12px 0; border-bottom: 1px solid var(--outline-variant); white-space: normal; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 24px; font-size: 14px; font-weight: 500; border-radius: var(--radius); border: none; cursor: pointer; transition: all 0.2s; font-family: var(--font); text-align: center; }
.btn-primary { background: var(--primary-container); color: var(--white); }
.btn-primary:hover { background: var(--primary); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { opacity: 0.9; }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--surface-container); }
.btn-lg { padding: 14px 20px; font-size: 15px; }
@media (min-width: 640px) { .btn-lg { padding: 16px 32px; font-size: 16px; } }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.hero { padding: 40px 0; background: var(--surface-low); overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 72px 0; } }
@media (min-width: 1024px) { .hero { padding: 96px 0; } }
.hero-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 768px) { .hero-grid { gap: 48px; grid-template-columns: 1fr 1fr; } }
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-teal { background: var(--secondary-container); color: var(--on-secondary-container); }
h1, .h1 { font-size: 28px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--primary); margin: 0 0 24px; word-wrap: break-word; }
@media (min-width: 768px) { h1, .h1 { font-size: 40px; } }
@media (min-width: 1024px) { h1, .h1 { font-size: 48px; } }
h2, .h2 { font-size: 24px; font-weight: 600; color: var(--primary); margin: 0 0 16px; }
h3, .h3 { font-size: 20px; font-weight: 600; color: var(--primary); margin: 0 0 8px; }
.lead { font-size: 16px; line-height: 1.55; color: var(--on-surface-variant); margin: 0 0 24px; }
@media (min-width: 768px) { .lead { font-size: 18px; margin: 0 0 32px; } }
.hero-image { height: 240px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--outline-variant); box-shadow: var(--shadow); }
@media (min-width: 480px) { .hero-image { height: 320px; } }
@media (min-width: 768px) { .hero-image { height: 500px; } }
.hero-image div { width: 100%; height: 100%; background-size: cover; background-position: center; }

.section { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 64px 0; } }
.section-alt { background: var(--white); }
.section-muted { background: var(--surface-low); }
.section-dim { background: var(--surface-dim); }
.section-header { text-align: center; margin-bottom: 32px; }
@media (min-width: 768px) { .section-header { margin-bottom: 48px; } }
.section-header .lead { max-width: 640px; margin: 0 auto; }

.grid-3 { display: grid; gap: var(--gutter); }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: var(--gutter); }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: border-color 0.2s; }
.card:hover { border-color: var(--primary-container); }
.card-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--surface-container); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--primary); }
.card-icon .material-symbols-outlined { font-size: 32px; }
.card-center { text-align: center; }

.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; opacity: 0.7; filter: grayscale(1); }
@media (min-width: 768px) { .trust-row { gap: 48px; } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-item .material-symbols-outlined { font-size: 48px; color: var(--primary); }
.trust-item span:last-child { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }

.table-wrap { overflow-x: auto; border: 1px solid var(--outline-variant); border-radius: var(--radius); width: 100%; max-width: 100%; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 0; }
@media (min-width: 768px) { .data-table { min-width: 600px; } }
.data-table thead { background: var(--primary); color: var(--white); }
.data-table th, .data-table td { padding: 12px 16px; font-size: 14px; }
@media (min-width: 768px) { .data-table th, .data-table td { padding: 16px 24px; font-size: 16px; } }

/* Mobile: stack table rows as cards */
@media (max-width: 767px) {
  .data-table--responsive { min-width: 0 !important; }
  .data-table--responsive thead { display: none; }
  .data-table--responsive tbody tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius);
    background: var(--white);
    padding: 4px 0;
  }
  .data-table--responsive tbody tr:nth-child(even) { background: var(--white); }
  .data-table--responsive td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border: none;
    border-bottom: 1px solid var(--outline-variant);
    text-align: right;
    word-break: break-word;
  }
  .data-table--responsive td:last-child { border-bottom: none; }
  .data-table--responsive td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--on-surface-variant);
    text-align: left;
    flex-shrink: 0;
  }
}
/* Key-value tables (product detail) */
@media (max-width: 767px) {
  .data-table--kv { min-width: 0 !important; }
  .data-table--kv tbody tr {
    display: block;
    margin-bottom: 8px;
    padding: 12px 16px;
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius);
    background: var(--white);
  }
  .data-table--kv td {
    display: block;
    padding: 2px 0;
    border: none;
    font-size: 14px;
  }
  .data-table--kv td:first-child {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--on-surface-variant);
    margin-bottom: 4px;
  }
}
.data-table tbody tr:nth-child(even) { background: #f8fafc; }
.data-table tbody tr { border-bottom: 1px solid var(--outline-variant); }
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.status-available { background: rgba(0, 106, 97, 0.1); color: var(--secondary); }
.status-limited { background: rgba(186, 26, 26, 0.1); color: var(--error); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.bento { display: grid; gap: var(--gutter); }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, minmax(200px, 1fr)); min-height: 500px; }
  .bento-featured { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 2; }
}
.bento-item { position: relative; overflow: hidden; border: 1px solid var(--outline-variant); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.bento-featured .bento-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
.bento-featured:hover .bento-bg { transform: scale(1.05); }
.bento-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; z-index: 1; }
.bento-content { padding: 24px; display: flex; flex-direction: column; height: 100%; }
.bento-wide { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
@media (min-width: 640px) { .bento-wide { flex-direction: row; gap: 24px; align-items: center; } }
.bento-wide .bento-thumb { width: 100%; min-height: 120px; border-radius: var(--radius); background-size: cover; background-position: center; flex-shrink: 0; }
@media (min-width: 640px) { .bento-wide .bento-thumb { width: 33%; } }

.catalog-layout { display: flex; flex-direction: column; gap: var(--gutter); padding-block: 24px 48px; }
@media (min-width: 1024px) { .catalog-layout { flex-direction: row; padding-block: 32px 64px; } }
.sidebar { width: 100%; flex-shrink: 0; min-width: 0; }
@media (min-width: 1024px) { .sidebar { width: 280px; } }
.filter-panel { background: var(--surface-low); border: 1px solid var(--outline-variant); border-radius: var(--radius-lg); padding: 24px; position: static; }
@media (min-width: 1024px) { .filter-panel { position: sticky; top: 88px; } }
.filter-group { margin-bottom: 32px; }
.filter-group h4 { font-size: 14px; font-weight: 500; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-option { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; cursor: pointer; font-size: 16px; color: var(--on-surface-variant); }
.filter-option input { accent-color: var(--primary-container); }
.search-input-wrap { position: relative; }
.search-input-wrap .material-symbols-outlined { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--on-surface-variant); }
.search-input-wrap input { width: 100%; padding: 10px 12px 10px 40px; border: 1px solid var(--outline-variant); border-radius: var(--radius); font-family: var(--font); font-size: 16px; }
.search-input-wrap input:focus { outline: 2px solid var(--primary-container); border-color: var(--primary-container); }
.catalog-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.product-grid { display: grid; gap: var(--gutter); grid-template-columns: 1fr; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card { background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.product-card:hover { border-color: var(--primary-container); }
.product-card-image { height: 160px; background: var(--surface-low); display: flex; align-items: center; justify-content: center; padding: 16px; }
.product-card-image img { max-height: 100%; object-fit: contain; }
.product-card-body { padding: 20px; }
.product-card-body .tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--on-surface-variant); margin-bottom: 4px; }
.product-card-body h3 { font-size: 18px; margin-bottom: 4px; }
.product-card-body .composition { font-size: 14px; color: var(--on-surface-variant); margin-bottom: 12px; }
.product-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.meta-pill { font-size: 12px; padding: 4px 10px; background: var(--surface-container); border-radius: var(--radius); color: var(--primary); }
.product-card-actions { display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 1024px) { .product-card-actions { flex-direction: row; } }
.product-card-actions .btn { flex: 1; font-size: 13px; padding: 10px 12px; width: 100%; }
@media (min-width: 1024px) { .product-card-actions .btn { width: auto; } }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; color: var(--on-surface-variant); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .current { color: var(--primary); font-weight: 600; }

.product-detail-grid { display: grid; gap: var(--gutter); min-width: 0; width: 100%; }
@media (min-width: 1024px) { .product-detail-grid { grid-template-columns: 1fr 300px; } }
.product-detail-grid > * { min-width: 0; }
#product-detail { min-width: 0; width: 100%; }
.inquiry-sidebar { background: var(--surface-low); border: 1px solid var(--outline-variant); border-radius: var(--radius-lg); padding: 24px; }
@media (min-width: 1024px) { .inquiry-sidebar { position: sticky; top: 88px; } }
.tab-btn { padding: 14px 16px; border: none; background: none; font-family: var(--font); font-size: 13px; font-weight: 500; color: var(--on-surface-variant); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
@media (min-width: 768px) { .tab-btn { padding: 20px 32px; font-size: 14px; } }
.tab-btn.active { color: var(--primary); font-weight: 600; border-bottom-color: var(--primary); }
.main-content { min-width: 0; width: 100%; }
.product-main-card { background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--radius-lg); padding: 16px; min-width: 0; max-width: 100%; overflow: hidden; }
@media (min-width: 768px) { .product-main-card { padding: 32px; } }
.product-title { margin-bottom: 8px; font-size: 28px; }
@media (min-width: 768px) { .product-title { font-size: 36px; } }
.product-composition { margin-bottom: 24px; font-size: 16px; }
@media (min-width: 768px) { .product-composition { font-size: 20px; } }
.product-images { min-width: 0; max-width: 100%; }
@media (max-width: 767px) {
  .product-layout-inner { display: flex !important; flex-direction: column; gap: 24px; }
  .product-hero-img { padding: 16px; }
  .pack-chip { width: 100%; text-align: center; }
}
@media (min-width: 768px) { .product-layout-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--gutter); } }
@media (min-width: 1024px) { .product-layout-inner { grid-template-columns: 2fr 3fr; } }
.product-hero-img { aspect-ratio: 1; background: var(--surface-low); border: 1px solid var(--outline-variant); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; padding: 24px; max-width: 100%; }
@media (min-width: 768px) { .product-hero-img { padding: 32px; } }
.pack-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0 24px; }
.pack-chip { padding: 12px 24px; border: 2px solid var(--outline-variant); border-radius: var(--radius-lg); background: var(--white); cursor: pointer; font-size: 14px; font-weight: 500; font-family: var(--font); transition: all 0.2s; }
.pack-chip.active, .pack-chip:hover { border-color: var(--primary-container); background: var(--primary-container); color: var(--white); }
.info-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.info-pill { display: flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--surface-container); border-radius: var(--radius); font-size: 14px; color: var(--primary); }
.tabs { margin-top: 48px; background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--radius-lg); overflow: hidden; min-width: 0; max-width: 100%; }
.tab-buttons { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--outline-variant); background: var(--surface-low); }
@media (max-width: 479px) {
  .tab-buttons { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tab-buttons::-webkit-scrollbar { display: none; }
  .tab-btn { flex: 0 0 auto; white-space: nowrap; }
}
.tab-panel { display: none; padding: 24px; }
@media (min-width: 768px) { .tab-panel { padding: 32px; } }
.tab-panel.active { display: block; }
.related-products { margin-top: 48px; min-width: 0; max-width: 100%; }
.related-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; max-width: 100%; width: 100%; -webkit-overflow-scrolling: touch; }
.related-card { min-width: 220px; flex-shrink: 0; max-width: min(280px, 85vw); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--outline-variant); border-radius: var(--radius); font-family: var(--font); font-size: 16px; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 2px solid var(--primary-container); border-color: var(--primary-container); }
.form-row-2 { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-success { display: none; padding: 16px; background: var(--secondary-container); color: var(--on-secondary-container); border-radius: var(--radius); margin-top: 16px; }
.form-success.show { display: block; }


.whatsapp-float {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  width: 52px;
  height: 52px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 200;
  transition: transform 0.2s;
}
@media (min-width: 768px) {
  .whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; }
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }
@media (min-width: 768px) { .whatsapp-float svg { width: 28px; height: 28px; } }

.page-main { padding-block: 32px 64px; }
.page-header { padding-block: 32px 24px; }
.page-header-flex { display: flex; flex-direction: column; align-items: stretch; gap: 20px; }
@media (min-width: 768px) { .page-header-flex { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 24px; } }
.page-header-flex .flex-wrap-gap { width: 100%; }
@media (min-width: 768px) { .page-header-flex .flex-wrap-gap { width: auto; justify-content: flex-end; } }
@media (max-width: 639px) {
  .page-header-flex .flex-wrap-gap { flex-direction: column; }
  .page-header-flex .flex-wrap-gap .btn { width: 100%; }
}
.stats-grid { display: grid; gap: var(--gutter); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: center; padding: 32px 16px; background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--radius); }
.stat-card .number { font-size: 36px; font-weight: 700; color: var(--primary); }
.stat-card .label { font-size: 14px; color: var(--on-surface-variant); }

.steps { display: grid; gap: 24px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: center; padding: 24px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-container); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 16px; }

.cta-band { background: var(--primary-container); color: var(--white); padding: 48px 0; text-align: center; }
@media (min-width: 768px) { .cta-band { padding: 64px 0; } }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,0.85); }
.cta-band .btn-outline { border-color: var(--white); color: var(--white); }

.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 639px) {
  .flex-wrap-gap--stack { flex-direction: column; }
  .flex-wrap-gap--stack .btn { width: 100%; justify-content: center; }
}
.section-title-row { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
@media (min-width: 768px) {
  .section-title-row { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 48px; }
}
.site-footer { background: var(--surface-dim); border-top: 1px solid var(--outline-variant); margin-top: 48px; }
@media (min-width: 768px) { .site-footer { margin-top: 64px; } }
.footer-grid { display: grid; gap: 32px; padding-block: 40px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); padding-block: 64px; } }
.footer-brand p { font-size: 14px; color: var(--on-surface-variant); margin: 16px 0; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: var(--on-surface-variant); transition: color 0.2s; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid var(--outline-variant); padding-block: 24px; text-align: center; font-size: 14px; color: var(--on-surface-variant); }
.filter-details { margin-bottom: 16px; }
.filter-details .filter-panel { margin-top: 12px; }
.filter-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  padding: 14px 16px;
  background: var(--surface-low);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  list-style: none;
}
.filter-details summary::-webkit-details-marker { display: none; }
@media (min-width: 1024px) {
  .filter-details summary { display: none; }
  .filter-details .filter-panel { display: block !important; }
}
.text-link { color: var(--primary); font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }
.text-link:hover { color: var(--secondary); }
.text-secondary-link { color: var(--secondary); font-weight: 500; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 14px; }
.empty-state { text-align: center; padding: 64px 24px; color: var(--on-surface-variant); }

.legal-content { max-width: 800px; padding-block: 48px 64px; }
.legal-content h2 { margin-top: 32px; }
.legal-content p, .legal-content li { color: var(--on-surface-variant); line-height: 1.7; }
.error-page { text-align: center; padding-block: 120px; }
.error-page h1 { font-size: 96px; margin-bottom: 16px; }

.contact-grid { display: grid; gap: var(--gutter); }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-card { padding: 24px; background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--radius-lg); }
.contact-info-card h3 { display: flex; align-items: center; gap: 8px; }
