:root {
  --green-950: #001f1a;
  --green-900: #002d26;
  --green-800: #003d32;
  --gold-600: #c98722;
  --gold-500: #dba13a;
  --gold-100: #f6ead4;
  --ink: #10201d;
  --muted: #66736f;
  --line: #e5e0d8;
  --paper: #fffdfa;
  --ivory: #faf8f2;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 31, 26, .10);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 88px;
  background:
    radial-gradient(circle at 18% 0%, rgba(219, 161, 58, .13), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.header-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-grid;
  gap: 6px;
  min-width: 0;
}
.brand-title {
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 8px;
  line-height: 1;
  white-space: nowrap;
}
.brand-title span { color: var(--gold-500); }
.brand-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.nav a {
  color: rgba(255,255,255,.86);
  padding: 12px 0 11px;
  border-bottom: 4px solid transparent;
}
.nav a.active, .nav a:hover { color: #fff; border-bottom-color: var(--gold-500); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
}
.quote-cta, .gold-btn, .dark-btn, .outline-btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quote-cta, .gold-btn {
  background: linear-gradient(135deg, #d79b32, #bd7a14);
  color: #fff;
  box-shadow: 0 14px 26px rgba(199, 135, 34, .28);
}
.dark-btn { background: var(--green-900); color: #fff; }
.outline-btn { background: #fff; color: var(--green-900); border: 1px solid var(--green-800); }
.mobile-toggle { display: none; }

.page-shell { min-height: 100vh; }
.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 28px 40px;
}
.notice-band {
  background: rgba(219,161,58,.12);
  border: 1px solid rgba(199,135,34,.22);
  color: #6e4812;
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 20px;
}
.hero-panel {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.76)),
    radial-gradient(circle at 75% 20%, rgba(219,161,58,.17), transparent 30%),
    linear-gradient(135deg, #fff, #f5efe3);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 58px 52px;
  position: relative;
}
.hero-eyebrow {
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 82px);
  line-height: .96;
  margin: 0 0 22px;
  letter-spacing: 0;
}
.hero h1 span { color: var(--gold-600); }
.hero-copy {
  max-width: 650px;
  color: #3e4b47;
  font-size: 18px;
  margin: 0 0 34px;
}
.search-row {
  display: grid;
  grid-template-columns: 1fr 62px;
  max-width: 560px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 35px rgba(0,0,0,.06);
}
.search-row input {
  border: 0;
  padding: 0 22px;
  outline: none;
  color: var(--ink);
}
.search-row button {
  border: 0;
  background: var(--green-900);
  color: #fff;
  font-size: 18px;
}
.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-900);
  min-height: 430px;
  position: relative;
  border: 1px solid rgba(0, 31, 26, .18);
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,45,38,.86), rgba(0,45,38,.18)),
    url("../images/hero-products.webp") center / cover no-repeat;
}
.hero-visual-content {
  position: absolute;
  inset: auto 34px 34px 34px;
  color: #fff;
}
.hero-visual-content h2 { font-size: 34px; line-height: 1; margin: 0 0 12px; }
.hero-visual-content p { max-width: 420px; color: rgba(255,255,255,.78); margin: 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -20px;
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin-left: 52px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199,135,34,.35);
  color: var(--gold-600);
  font-size: 20px;
}
.trust-item strong { display: block; font-size: 20px; }
.trust-item small { color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: 10px; }

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 350px;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}
.sidebar, .quote-panel, .card, .content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(0,0,0,.05);
}
.sidebar { padding: 26px 22px; position: sticky; top: 116px; }
.sidebar-head, .catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sidebar h3, .quote-panel h3 { margin: 0; font-size: 17px; text-transform: uppercase; }
.clear-link {
  border: 0;
  background: none;
  color: var(--gold-600);
  font-weight: 800;
}
.filter-section { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 22px; }
.filter-title { font-size: 13px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.filter-option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}
.filter-option span:last-child { color: var(--gold-600); font-weight: 800; }
.filter-option input { width: 16px; height: 16px; accent-color: var(--green-900); }
.sidebar input[type="search"], .side-search, .form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  outline: none;
  background: #fff;
}
.catalog-main { min-width: 0; }
.catalog-toolbar {
  margin-bottom: 18px;
  color: var(--muted);
}
.sort-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-control select {
  min-width: 170px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  border-radius: 7px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 548px;
}
.favorite-button {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .84);
  color: var(--green-900);
  font-size: 20px;
}
.favorite-button.selected {
  color: #9f2f1a;
}
.product-card-image {
  height: 300px;
  display: grid;
  place-items: center;
  padding: 10px 14px 6px;
  background: linear-gradient(180deg, #fff, #fbfaf7);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.image-low-resolution img {
  width: auto !important;
  height: auto !important;
  max-width: 82% !important;
  max-height: 84% !important;
}
.product-card-body {
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.badge {
  width: fit-content;
  max-width: 100%;
  background: var(--gold-100);
  color: #976319;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 900;
}
.product-title {
  font-size: 17px;
  line-height: 1.15;
  min-height: 40px;
  margin: 0;
}
.product-meta {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.product-description {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}
.case-pack {
  color: #5d6965;
  font-size: 13px;
  margin-top: auto;
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.card-actions .dark-btn, .card-actions .outline-btn { padding: 0 10px; font-size: 11px; }

.quote-panel { position: sticky; top: 116px; overflow: hidden; }
.quote-panel-head {
  background: var(--green-900);
  color: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.quote-panel-body { padding: 22px; }
.quote-list { display: grid; gap: 14px; margin: 18px 0 24px; }
.quote-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.quote-item img { width: 86px; height: 86px; object-fit: contain; background: #fff; }
.quote-item h4 { margin: 0 0 5px; font-size: 14px; line-height: 1.2; }
.quote-item small { color: var(--gold-600); font-weight: 900; text-transform: uppercase; }
.quote-panel .gold-btn { width: 100%; }

.benefit-bar {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  color: #fff;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}
.benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255,255,255,.11);
}
.benefit:last-child { border-right: 0; }
.benefit i {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(219,161,58,.62);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-style: normal;
}
.benefit strong { display: block; font-size: 15px; margin-bottom: 5px; }
.benefit span { color: rgba(255,255,255,.73); font-size: 13px; }

.simple-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  margin-top: 28px;
}
.page-title {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  margin: 0 0 16px;
}
.page-lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
  margin: 0 0 30px;
}
.content-card { padding: 34px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
}
.feature strong { display: block; margin-bottom: 8px; }
.feature p, .copy p, .feature li {
  color: var(--muted);
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}
.visual-card {
  min-height: 380px;
  background:
    linear-gradient(180deg, rgba(0,45,38,.08), rgba(199,135,34,.05)),
    url("../images/hero-products.webp") center / cover no-repeat;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-detail {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
.detail-image {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 36px;
  box-shadow: var(--shadow);
}
.detail-image img { width: 100%; height: 100%; max-height: 590px; object-fit: contain; mix-blend-mode: multiply; }
.detail-main h1 { margin: 0 0 14px; font-size: 42px; line-height: 1.05; }
.detail-main .product-description { font-size: 17px; margin: 20px 0 26px; color: #35433f; }
.spec-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 22px 0;
}
.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: 0; }
.spec-row span { padding: 14px 18px; }
.spec-row span:first-child { background: #fbfaf7; color: var(--muted); font-weight: 800; }
.detail-side { padding: 26px; }
.detail-side ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 14px; }
.detail-side li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; color: var(--muted); }
.tabs { display: flex; gap: 18px; border-bottom: 1px solid var(--line); margin-top: 30px; }
.tab { padding: 13px 0; font-size: 12px; text-transform: uppercase; font-weight: 900; color: var(--gold-600); border-bottom: 3px solid var(--gold-600); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 12px; text-transform: uppercase; font-weight: 900; margin-bottom: 8px; color: #53605c; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-help { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-actions { margin-top: 22px; }
.product-request-card { margin-top: 24px; scroll-margin-top: 96px; }

.login-layout {
  max-width: 980px;
  margin: 42px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.account-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.account-menu { padding: 22px; display: grid; gap: 10px; }
.account-menu a { padding: 12px 14px; border-radius: 7px; color: var(--muted); font-weight: 800; }
.account-menu a.active, .account-menu a:hover { background: var(--gold-100); color: var(--green-900); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 15px 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.table th { color: var(--muted); text-transform: uppercase; font-size: 11px; }

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.origin-card, .category-card {
  padding: 24px;
  text-align: center;
  min-height: 180px;
}
.flag {
  width: 92px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #07934c, #f4d13c 50%, #1648a7 51%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.footer {
  margin-top: 44px;
  background: var(--green-950);
  color: rgba(255,255,255,.78);
  border-top: 1px solid rgba(206, 146, 37, .48);
}
.footer-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer strong { color: #fff; }
.simulation-note {
  font-size: 12px;
  color: #6d5a38;
  background: #fff7e8;
  border: 1px solid #f0d6aa;
  border-radius: 7px;
  padding: 12px;
}

@media (max-width: 1320px) {
  .header-inner { grid-template-columns: 270px 1fr auto; padding-inline: 28px; }
  .brand-title { font-size: 25px; letter-spacing: 6px; }
  .nav { gap: 18px; }
  .catalog-layout { grid-template-columns: 220px minmax(0, 1fr); }
  .quote-panel { display: none; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-detail { grid-template-columns: 420px minmax(0, 1fr); }
  .detail-side { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-header { min-height: auto; }
  .header-inner { display: flex; padding: 18px 20px; }
  .nav, .header-actions .icon-link { display: none; }
  .header-actions .mobile-toggle { display: grid; }
  .quote-cta { margin-left: auto; padding-inline: 14px; }
  .brand-title { font-size: 22px; letter-spacing: 4px; }
  .brand-sub { font-size: 7px; letter-spacing: 2px; }
  .mobile-nav {
    display: grid;
    gap: 4px;
    padding: 0 20px 18px;
  }
  .mobile-nav[hidden] { display: none !important; }
  .mobile-nav a { color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 800; }
  .container { padding: 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero-panel { min-height: auto; padding: 38px 28px; }
  .trust-grid { margin: 18px 0 0; grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid var(--line); }
  .catalog-layout, .simple-page, .product-detail, .account-grid, .login-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .benefit-bar { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .feature-grid, .grid-cards { grid-template-columns: 1fr 1fr; }
  .detail-image { min-height: 360px; }
  .form-grid { grid-template-columns: 1fr; }
  .product-description, .feature p, .copy p { text-align: left; }
}

@media (max-width: 560px) {
  .header-inner { gap: 12px; }
  .quote-cta { min-height: 38px; font-size: 10px; padding-inline: 10px; }
  .product-grid, .feature-grid, .grid-cards, .trust-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 520px; }
  .product-card-image { height: 270px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .detail-main h1 { font-size: 30px; }
  .spec-row { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

/* Approved catalogue composition */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-page {
  max-width: none;
  padding: 16px 24px 28px;
  background: #f7f9f8;
}
.mobile-filter-toggle { display: none; }

.catalog-topbar {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(620px, 720px);
  align-items: stretch;
  gap: 40px;
}

.catalog-search {
  width: 100%;
  max-width: none;
  min-height: 52px;
  align-self: center;
  box-shadow: 0 5px 18px rgba(0, 31, 26, .06);
}

.catalog-stats {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #e2e8e5;
  border-radius: 7px;
  box-shadow: 0 5px 18px rgba(0, 31, 26, .04);
}

.catalog-stat {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-right: 1px solid #e8ecea;
}

.catalog-stat:last-child { border-right: 0; }
.catalog-stat-icon { color: var(--gold-600); font-size: 25px; }
.catalog-stat strong { display: block; font-size: 19px; line-height: 1; }
.catalog-stat small {
  display: block;
  margin-top: 5px;
  color: #56645f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-page .catalog-layout {
  grid-template-columns: 190px minmax(0, 1fr) 280px;
  gap: 16px;
  margin-top: 18px;
}

.catalog-page .sidebar {
  top: 102px;
  padding: 16px 14px;
  box-shadow: 0 5px 18px rgba(0, 31, 26, .04);
}

.catalog-page .sidebar h3 { font-size: 13px; }
.catalog-page .clear-link { font-size: 10px; }
.catalog-page .filter-section { margin-top: 13px; padding-top: 14px; }
.catalog-page .filter-title { font-size: 11px; margin-bottom: 8px; }
.catalog-page .filter-option { padding: 5px 0; font-size: 10px; }
.catalog-page .sidebar input[type="search"],
.catalog-page .side-search { padding: 9px 10px; font-size: 10px; }
.filter-more {
  display: inline-flex;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 800;
}

.catalog-page .catalog-toolbar { min-height: 34px; margin-bottom: 8px; font-size: 10px; }
.catalog-page .sort-control { gap: 8px; }
.catalog-page .sort-control select { min-width: 112px; padding: 8px 10px; font-size: 10px; }

.catalog-page .catalog-main > .product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.catalog-page .product-card {
  position: relative;
  min-height: 330px;
  border-color: #e0e6e3;
  box-shadow: 0 4px 13px rgba(0, 31, 26, .035);
}

.catalog-page .favorite-button {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #143e38;
  font-size: 18px;
}

.catalog-page .product-card-image {
  height: 145px;
  padding: 8px 12px 2px;
  background: #fff;
}

.catalog-page .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.catalog-page .product-card-body {
  padding: 0 10px 10px;
  gap: 6px;
}

.catalog-page .badge { padding: 4px 6px; font-size: 7px; border-radius: 4px; }
.catalog-page .product-title { min-height: 30px; font-size: 12px; line-height: 1.22; }
.catalog-page .product-meta { font-size: 9px; }
.catalog-page .product-description {
  display: -webkit-box;
  min-height: 45px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 9px;
  line-height: 1.45;
  text-align: left;
}
.catalog-page .case-pack { font-size: 9px; }
.catalog-page .card-actions { gap: 5px; }
.catalog-page .card-actions .dark-btn,
.catalog-page .card-actions .outline-btn {
  min-height: 29px;
  padding: 0 5px;
  border-radius: 4px;
  font-size: 7px;
  white-space: nowrap;
}
.catalog-page .card-actions .outline-btn { background: var(--green-900); color: #fff; border: 0; }
.catalog-page .card-actions .dark-btn { background: linear-gradient(135deg, #d79b32, #bd7a14); }

.catalog-page .quote-panel { top: 102px; box-shadow: 0 8px 24px rgba(0, 31, 26, .08); }
.catalog-page .quote-panel-head { padding: 16px; }
.catalog-page .quote-panel h3 { font-size: 13px; }
.catalog-page .quote-panel-body { padding: 14px; }
.catalog-page .side-filter-button {
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  padding: 0 12px;
  text-align: left;
  border: 1px solid #dfe5e2;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}
.catalog-page .quote-results { margin: 12px 0 0; color: var(--muted); font-size: 9px; }
.catalog-page .quote-list { gap: 0; margin: 8px 0 14px; }
.catalog-page .quote-item {
  grid-template-columns: 54px 1fr;
  gap: 9px;
  padding: 10px 0;
}
.catalog-page .quote-item img { width: 54px; height: 68px; }
.catalog-page .quote-item h4 { font-size: 10px; }
.catalog-page .quote-item small { font-size: 7px; }
.catalog-page .quote-item .dark-btn { min-height: 28px !important; margin-top: 5px !important; padding: 0 9px; font-size: 8px; }
.catalog-page .quote-panel .gold-btn { min-height: 40px; font-size: 10px; }
.catalog-page .quote-support { margin: 14px 0 0; color: #475550; font-size: 9px; line-height: 1.5; }

.catalog-page .benefit-bar {
  margin: 24px -24px -28px;
  border-radius: 0;
}
.catalog-page .benefit { grid-template-columns: 40px 1fr; gap: 10px; padding: 18px 22px; }
.catalog-page .benefit i { width: 36px; height: 36px; }
.catalog-page .benefit strong { font-size: 11px; }
.catalog-page .benefit span { font-size: 10px; }

@media (max-width: 1320px) {
  .header-inner { grid-template-columns: 270px 1fr auto; padding-inline: 20px; gap: 18px; }
  .nav { gap: 14px; font-size: 11px; }
  .header-actions .icon-link { display: none; }
  .header-actions .quote-cta { padding-inline: 14px; font-size: 10px; }
  .catalog-topbar { grid-template-columns: minmax(280px, 430px) 1fr; gap: 20px; }
  .catalog-page .catalog-layout { grid-template-columns: 190px minmax(0, 1fr); }
  .catalog-page .quote-panel { display: none; }
  .catalog-page .catalog-main > .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .catalog-page { padding: 16px 18px 24px; }
  .catalog-topbar { grid-template-columns: 1fr; gap: 12px; }
  .catalog-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-stat:nth-child(2) { border-right: 0; }
  .catalog-stat:nth-child(-n+2) { border-bottom: 1px solid #e8ecea; }
  .catalog-page .catalog-layout { grid-template-columns: 1fr; }
  .catalog-page .sidebar { display: none; position: static; }
  .catalog-page.filters-open .sidebar { display: block; }
  .mobile-filter-toggle {
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dde5e1;
    border-radius: 6px;
    background: #fff;
    color: var(--green-900);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .mobile-filter-toggle b { color: var(--gold-600); font-size: 18px; }
  .catalog-page .catalog-main > .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .catalog-page .product-card-image { height: 220px; }
  .catalog-page .product-title { font-size: 14px; }
  .catalog-page .product-description { font-size: 11px; }
  .catalog-page .benefit-bar { margin-inline: -18px; margin-bottom: -24px; }
}

@media (max-width: 560px) {
  .catalog-page .catalog-main > .product-grid { grid-template-columns: 1fr; }
  .catalog-page .product-card { min-height: 500px; }
  .catalog-page .product-card-image { height: 280px; }
  .catalog-page .product-card-body { padding: 0 16px 16px; gap: 9px; }
  .catalog-page .badge { font-size: 9px; }
  .catalog-page .product-title { min-height: auto; font-size: 17px; }
  .catalog-page .product-meta, .catalog-page .case-pack { font-size: 12px; }
  .catalog-page .product-description { min-height: auto; font-size: 13px; }
  .catalog-page .card-actions .dark-btn,
  .catalog-page .card-actions .outline-btn { min-height: 42px; font-size: 10px; }
}

/* Alvaron approved visual system - emerald, ivory and gold */
body {
  background: #fff;
  color: #101b19;
}

.site-header {
  min-height: 98px;
  background: #002d26;
  box-shadow: 0 8px 24px rgba(0, 31, 26, .16);
}

.header-utility {
  min-height: 28px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-utility > div { display: flex; gap: 34px; }
.header-inner {
  min-height: 70px;
  max-width: 1680px;
  padding: 9px 30px;
  grid-template-columns: 310px minmax(0, 1fr) auto;
}

.brand {
  display: flex;
  align-items: center;
  width: 285px;
  height: 50px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  flex: none;
  width: 310px;
  height: auto;
}

.nav { gap: 30px; font-size: 11px; }
.nav a { padding: 17px 0 15px; border-bottom-width: 2px; }
.header-actions { gap: 11px; }
.language-link { color: #fff; font-size: 11px; font-weight: 800; white-space: nowrap; }
.icon-link {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 20px;
}
.mobile-toggle { color: #fff; }
.badge-link b {
  position: absolute;
  top: -3px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-600);
  color: #fff;
  font-size: 8px;
}
.quote-cta { min-height: 42px; padding-inline: 20px; }

.home-page { padding-bottom: 12px; background: #fff; }
.home-hero {
  position: relative;
  min-height: 560px;
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 31, 26, .98) 0%, rgba(0, 31, 26, .9) 34%, rgba(0, 31, 26, .35) 62%, rgba(0, 31, 26, .08) 100%),
    url("../images/hero-tropical-alvaron-v1.webp") center / cover no-repeat;
  color: #fff;
}
.home-hero.has-video::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 31, 26, .97) 0%, rgba(0, 31, 26, .88) 33%, rgba(0, 31, 26, .28) 67%, rgba(0, 31, 26, .06) 100%);
  pointer-events: none;
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 1px;
  background: rgba(219, 161, 58, .55);
}
.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 58%);
  padding: 86px 54px 66px;
}
.home-hero .hero-eyebrow { margin-bottom: 20px; color: var(--gold-500); font-size: 11px; }
.home-hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 500;
  line-height: .98;
}
.home-hero h1 span { color: var(--gold-500); }
.home-hero-content > p {
  max-width: 590px;
  margin: 25px 0 28px;
  color: rgba(255, 255, 255, .79);
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-outline-btn {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-assurances {
  margin-top: 32px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.alvaron-video {
  width: 100%;
  margin: 0;
}
.alvaron-video-frame,
.alvaron-video > video {
  width: 100%;
  aspect-ratio: var(--video-ratio, 16 / 9);
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #001f1a;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 31, 26, .12);
}
.alvaron-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.alvaron-video figcaption {
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.alvaron-video-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100%;
}
.alvaron-video-background > video {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}
.video-motion-toggle {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: rgba(0, 31, 26, .58);
  color: #fff;
  cursor: pointer;
}
.product-media {
  min-width: 0;
  display: grid;
  gap: 16px;
}
.alvaron-video-product .alvaron-video-frame,
.alvaron-video-product > video {
  border: 1px solid var(--line);
  background: #fff;
}
.article-copy > .alvaron-video-article {
  margin: 0 0 42px;
}
.alvaron-video-about .alvaron-video-frame,
.alvaron-video-about > video {
  min-height: 520px;
  aspect-ratio: 4 / 5;
}

.category-rail {
  max-width: 1520px;
  min-height: 56px;
  margin: 0 auto;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.category-rail a {
  min-width: 112px;
  padding: 15px 22px;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: #4e5c58;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}
.category-rail a:first-child { border-left: 1px solid var(--line); }
.category-rail a span { color: var(--gold-600); }
.category-rail .category-all { color: var(--green-900); }

.home-products { padding-top: 56px; padding-bottom: 42px; }
.section-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-heading span, .section-kicker {
  display: inline-block;
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.section-heading h2, .home-company h2 {
  margin: 4px 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}
.section-heading > a { color: var(--green-900); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.home-product-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.home-product-grid .product-card { min-height: 440px; box-shadow: none; }
.home-product-grid .product-card-image { height: 220px; }
.home-product-grid .product-card-body { padding: 0 14px 14px; gap: 7px; }
.home-product-grid .product-title { min-height: 34px; font-size: 13px; }
.home-product-grid .product-meta, .home-product-grid .case-pack { font-size: 10px; }
.home-product-grid .product-description {
  min-height: 48px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 10px;
  text-align: left;
}
.home-product-grid .card-actions .dark-btn,
.home-product-grid .card-actions .outline-btn { min-height: 34px; padding: 0 7px; font-size: 8px; }
.home-product-grid .card-actions .outline-btn { background: var(--green-900); color: #fff; border: 0; }
.home-product-grid .card-actions .dark-btn { background: var(--gold-600); }

.home-company {
  min-height: 430px;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  background: #f7f5ef;
}
.home-company-copy { padding: 72px 64px; }
.home-company-copy h2 { max-width: 600px; font-size: 42px; }
.home-company-copy p { max-width: 610px; margin: 20px 0 28px; color: var(--muted); line-height: 1.75; }
.home-company-image {
  min-height: 430px;
  background: url("../images/articles/acai-beyond-the-bowl-featured-1200w.webp") center / cover no-repeat;
}

.breadcrumbs {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #77817e;
  font-size: 11px;
}
.breadcrumbs a { color: var(--green-900); font-weight: 700; }
.product-page { padding-top: 22px; }
.product-page .product-detail { margin-top: 0; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-side h3 { margin: 5px 0 0; font-size: 22px; }

.directory-page, .editorial-page { padding-top: 44px; }
.category-directory { grid-template-columns: repeat(4, 1fr); }
.category-directory .category-card {
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 180px auto;
  text-align: left;
}
.category-image { display: grid; place-items: center; background: #fbfaf7; }
.category-image img { width: 100%; height: 180px; padding: 18px; object-fit: contain; }
.category-directory .category-card > div:last-child { padding: 18px 20px; }
.category-directory h3 { margin: 0; font-size: 17px; }
.category-directory p, .origin-directory p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.origin-directory { grid-template-columns: repeat(4, 1fr); }
.origin-directory .origin-card { min-height: 190px; }
.flag-emoji { margin-bottom: 12px; font-size: 48px; line-height: 1; }
.origin-card.confirmed { border-color: rgba(199, 135, 34, .55); box-shadow: 0 12px 34px rgba(199, 135, 34, .10); }

.category-image-review { max-width: 1460px; }
.category-review-notice {
  margin: 28px 0 36px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: #fbfaf7;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.category-review-notice strong { color: var(--green-900); }
.category-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 34px;
}
.category-review-item {
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.category-review-heading {
  min-height: 58px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.category-review-heading h2 { margin: 4px 0 0; font-size: 24px; }
.category-review-catalog {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.category-review-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.category-review-status.ready { color: #16704c; background: #f0f8f4; }
.category-review-status.review { color: #9a6400; background: #fff9ed; }
.category-review-status.blocked { color: #9f3d34; background: #fff4f2; }
.category-review-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.category-review-version { min-width: 0; }
.category-review-version > a { display: block; color: inherit; }
.category-review-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.category-review-card {
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 180px auto;
  text-align: left;
}
.category-review-card .category-image { height: 180px; }
.category-review-card .category-image img { width: 100%; height: 180px; padding: 18px; object-fit: contain; }
.category-review-card > div:last-child { padding: 18px 20px; }
.category-review-card h3 { margin: 0; font-size: 17px; }
.category-review-card p { margin: 4px 0 0; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
.category-image-empty { padding: 24px; text-align: center; }
.category-image-empty-copy { max-width: 150px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.category-review-note { min-height: 44px; margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.category-review-report { margin-top: 64px; padding-top: 34px; border-top: 1px solid var(--line); }
.category-review-report .section-heading { margin-bottom: 20px; }
.category-review-report h2 { margin: 4px 0 0; }
.category-review-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.category-review-table { min-width: 980px; margin: 0; }
.category-review-table td { vertical-align: top; }
.category-review-table td a { color: var(--green-700); font-weight: 800; }
.category-review-table td small { display: block; margin-top: 5px; color: var(--muted); line-height: 1.4; }

.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.editorial-card { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.editorial-image { height: 260px; margin-bottom: 16px; background-image: url("../images/hero-trade-v2.png"); background-size: 170%; }
.editorial-image-1 { background-position: 0 58%; }
.editorial-image-2 { background-position: 50% 52%; }
.editorial-image-3 { background-position: 100% 48%; }
.editorial-card h2 { margin: 12px 0 8px; font-size: 20px; line-height: 1.25; }
.editorial-card p { margin: 0; color: var(--muted); font-size: 13px; }

.visual-card {
  background:
    linear-gradient(90deg, rgba(0, 45, 38, .06), rgba(0, 45, 38, 0)),
    url("../images/hero-trade-v2.png") 70% center / cover no-repeat;
}

.benefit-bar { border-radius: 0; }
.footer { margin-top: 54px; }
.footer-inner {
  min-height: 0;
  padding: 58px 40px 48px;
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(130px, .72fr)) minmax(230px, 1.05fr);
  align-items: start;
  gap: 48px;
}
.footer-company { min-width: 0; }
.footer-company p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.75;
}
.footer-company .footer-email {
  margin-top: 12px;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.footer-brand { width: 270px; height: 62px; display: flex; align-items: center; overflow: hidden; }
.footer-brand img { width: 300px; height: auto; }
.footer-column { display: grid; align-content: start; gap: 11px; min-width: 0; }
.footer-column a { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.45; }
.footer-column a:hover { color: var(--gold-500); }
.footer-title {
  margin-bottom: 7px;
  color: var(--gold-500) !important;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-contact { justify-items: start; }
.footer-contact p,
.footer-newsletter p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }
.footer-contact .footer-email { color: #fff; font-weight: 800; overflow-wrap: anywhere; }
.newsletter-form { margin-top: 5px; display: grid; gap: 10px; }
.newsletter-row { min-height: 42px; display: grid; grid-template-columns: minmax(0, 1fr) 42px; }
.newsletter-row input {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.newsletter-row input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-row button {
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 20px;
  font-weight: 900;
}
.newsletter-consent {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 8px;
  color: rgba(255,255,255,.54);
  font-size: 10px;
  line-height: 1.45;
}
.newsletter-consent input { margin: 2px 0 0; }
.newsletter-success { color: #fff !important; font-weight: 800; }
.footer-bottom {
  max-width: 1680px;
  margin: 0 auto;
  padding: 20px 40px 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.46);
  font-size: 11px;
}

@media (max-width: 1320px) {
  .header-inner { grid-template-columns: 250px 1fr auto; }
  .brand { width: 245px; }
  .brand-logo { width: 270px; }
  .language-link { display: none; }
  .home-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-product-grid .product-card-image { height: 250px; }
  .category-directory, .origin-directory { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.3fr repeat(2, minmax(0, 1fr)); }
  .footer-company { grid-row: span 2; }
}

@media (max-width: 900px) {
  .header-utility { display: none; }
  .site-header { min-height: 72px; }
  .header-inner { min-height: 72px; padding: 10px 18px; }
  .brand { width: 220px; height: 48px; }
  .brand-logo { width: 250px; }
  .header-actions .mobile-toggle { display: grid; margin-left: auto; }
  .home-hero { min-height: 520px; background-position: 64% center; }
  .home-hero-content { width: 72%; padding: 66px 30px 50px; }
  .home-hero h1 { font-size: 54px; }
  .category-rail { justify-content: flex-start; overflow-x: auto; }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-company { grid-template-columns: 1fr; }
  .home-company-copy { padding: 48px 30px; }
  .home-company-image { min-height: 340px; }
  .category-directory, .origin-directory { grid-template-columns: repeat(2, 1fr); }
  .category-review-list { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-image { height: 320px; background-size: cover; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-items: start; gap: 38px 54px; }
  .footer-company { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .alvaron-video-about .alvaron-video-frame,
  .alvaron-video-about > video { min-height: 420px; }
}

@media (max-width: 560px) {
  .brand { width: 172px; height: 42px; }
  .brand-logo { width: 205px; }
  .quote-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 44px 22px 34px; gap: 32px; }
  .footer-company { grid-column: auto; }
  .footer-brand { width: 228px; height: 54px; }
  .footer-brand img { width: 252px; }
  .footer-bottom { padding: 18px 22px 24px; }
  .home-hero { min-height: 600px; background-position: 68% center; }
  .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 26, .28);
  }
  .home-hero .alvaron-video-background { display: none; }
  .video-motion-toggle { display: none; }
  .home-hero-content { width: 100%; padding: 64px 22px 44px; }
  .home-hero h1 { font-size: 45px; }
  .home-hero-content > p { font-size: 14px; }
  .hero-assurances { display: grid; gap: 8px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .home-product-grid, .category-directory, .origin-directory { grid-template-columns: 1fr; }
  .category-review-compare { grid-template-columns: 1fr; gap: 22px; }
  .category-review-heading { min-height: 0; }
  .category-review-note { min-height: 0; }
  .home-product-grid .product-card-image { height: 280px; }
  .home-company-copy { padding: 42px 22px; }
  .home-company-copy h2 { font-size: 34px; }
  .directory-page, .editorial-page { padding-top: 32px; }
  .alvaron-video-about .alvaron-video-frame,
  .alvaron-video-about > video { min-height: 330px; }
}

/* Consumer article library, isolated from catalogue and product layouts */
.article-library {
  max-width: 1460px;
  padding-top: 54px;
}

.article-library-hero {
  max-width: 980px;
  margin-bottom: 44px;
}

.article-library-hero .page-title {
  max-width: 860px;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.article-library-hero .page-lead {
  max-width: 780px;
  margin-top: 20px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

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

.home-products .article-library-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.article-library-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, .88fr) minmax(0, 1.12fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(0, 31, 26, .07);
}

.article-library-image,
.article-library-image picture {
  min-height: 310px;
  display: block;
}

.article-library-image img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
}

.article-library-copy {
  min-width: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-library-copy h2 {
  margin: 16px 0 12px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.article-library-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.article-read-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-read-link:hover,
.article-library-copy h2 a:hover {
  color: var(--gold-600);
}

.article-library .benefit-bar {
  margin-top: 54px;
}

.article-detail-page {
  max-width: 1320px;
  padding-top: 28px;
}

.article-detail-hero {
  max-width: 1030px;
  padding: 34px 0 40px;
}

.article-detail-hero h1 {
  margin: 18px 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 500;
  line-height: .99;
  letter-spacing: 0;
}

.article-detail-hero > p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.article-byline {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-feature {
  margin: 0;
}

.article-feature picture {
  display: block;
}

.article-feature img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(0, 31, 26, .11);
}

.article-feature figcaption {
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(270px, 340px);
  justify-content: space-between;
  gap: 72px;
  padding: 62px 0 40px;
}

.article-copy {
  min-width: 0;
  font-size: 17px;
  line-height: 1.78;
}

.article-copy h2 {
  margin: 52px 0 16px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.12;
}

.article-copy h2:first-child {
  margin-top: 0;
}

.article-copy h3 {
  margin: 32px 0 10px;
  color: var(--green-800);
  font-size: 20px;
  line-height: 1.25;
}

.article-copy p,
.article-copy li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.article-copy p {
  margin: 0 0 20px;
}

.article-copy ul,
.article-copy ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-copy li + li {
  margin-top: 6px;
}

.article-copy strong {
  color: #0d2823;
}

.article-copy table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.article-copy th {
  padding: 13px 14px;
  color: #fff;
  background: var(--green-900);
  text-align: left;
}

.article-copy td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-copy tr:nth-child(even) td {
  background: #f7f5ef;
}

.article-detail-aside {
  align-self: start;
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.article-aside-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(0, 31, 26, .06);
}

.article-aside-card h2 {
  margin: 6px 0 18px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}

.article-aside-card > a:not(.gold-btn) {
  padding: 15px 0;
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
}

.article-aside-card > a strong {
  font-size: 13px;
  line-height: 1.35;
}

.article-aside-card > a span {
  color: var(--gold-600);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-product-cta {
  color: #fff;
  background: var(--green-900);
}

.article-product-cta h2 {
  color: #fff;
}

.article-product-cta p {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.article-not-found {
  padding-top: 70px;
  padding-bottom: 90px;
}

@media (max-width: 1180px) {
  .article-library-grid {
    grid-template-columns: 1fr;
  }

  .article-library-card {
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 900px) {
  .article-library {
    padding-top: 38px;
  }

  .article-detail-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .article-detail-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .article-library-card {
    grid-template-columns: 1fr;
  }

  .article-library-image,
  .article-library-image picture,
  .article-library-image img {
    min-height: 250px;
  }

  .article-library-copy {
    padding: 24px 22px;
  }

  .article-library-copy h2 {
    font-size: 27px;
  }

  .article-detail-page {
    padding-inline: 18px;
  }

  .article-detail-hero {
    padding-top: 22px;
  }

  .article-detail-hero h1 {
    font-size: 43px;
  }

  .article-detail-hero > p {
    font-size: 16px;
  }

  .article-detail-layout {
    padding-top: 42px;
  }

  .article-copy {
    font-size: 16px;
  }

  .article-copy h2 {
    font-size: 30px;
  }

  .article-copy table {
    display: block;
    overflow-x: auto;
  }

  .article-detail-aside {
    grid-template-columns: 1fr;
  }
}

/* Current consumer phase refinements. Existing component geometry is preserved. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.empty-state {
  padding: 48px 28px;
  border: 1px solid var(--line);
  background: #fbfaf6;
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 25px;
}

.empty-state p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: var(--muted);
  line-height: 1.65;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 330px;
  display: grid;
  place-content: center;
  justify-items: center;
}

.favorites-grid {
  margin-top: 36px;
}

.favorite-detail-button {
  min-width: 150px;
}

.product-information-note {
  padding-top: 18px;
  color: var(--muted);
}

.related-heading,
.recent-products h2,
.related-editorial h2 {
  margin: 34px 0 18px;
}

.recent-products {
  margin-top: 46px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.related-article-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-article-links a {
  min-height: 112px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 7px;
  border: 1px solid var(--line);
  background: #fbfaf6;
}

.related-article-links span {
  color: var(--gold-600);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-article-links strong {
  color: var(--green-900);
  font-size: 14px;
  line-height: 1.4;
}

.article-product-links {
  display: grid;
  gap: 8px;
}

.article-product-links a {
  min-width: 0;
  padding: 10px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}

.article-product-links img {
  width: 52px;
  height: 58px;
  padding: 3px;
  object-fit: contain;
  background: #fff;
}

.article-product-links strong,
.article-product-links small {
  display: block;
  color: #fff;
  font-size: 11px;
  line-height: 1.35;
}

.article-product-links small {
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
}

.article-sources a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.future-feature-state {
  max-width: 920px;
  margin: 54px auto 90px;
  padding: 60px;
  text-align: center;
}

.future-feature-state .page-lead {
  margin-inline: auto;
}

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

  .future-feature-state {
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  .empty-state {
    padding: 38px 20px;
  }

  .favorite-detail-button {
    width: 100%;
  }
}

/* Curated content refinements: keep media and copy in separate card regions. */
.product-card {
  grid-template-rows: 300px minmax(0, 1fr);
  align-items: stretch;
}

.product-card-image {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.product-card-image img {
  max-width: 100%;
  max-height: 100%;
}

.product-card-body {
  min-width: 0;
  min-height: 0;
  height: 100%;
  position: relative;
  z-index: 1;
  background: #fff;
}

.product-card-body > * {
  min-width: 0;
}

.catalog-page .product-card {
  min-height: 360px;
  grid-template-rows: 145px minmax(0, 1fr);
}

.catalog-page .product-card-image {
  height: auto;
}

.catalog-page .card-actions .dark-btn,
.catalog-page .card-actions .outline-btn {
  min-width: 0;
  white-space: normal;
  line-height: 1.15;
}

.category-directory .category-card > div:last-child {
  min-width: 0;
}

.category-directory .category-card small {
  min-height: 30px;
  margin-top: 10px;
  display: -webkit-box;
  overflow: hidden;
  color: #75807d;
  font-size: 10px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.about-page,
.partner-page {
  padding-top: 44px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 54px;
  align-items: center;
}

.about-hero .page-title {
  max-width: 900px;
  font-size: 64px;
}

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

.about-visual {
  min-height: 520px;
  border-radius: 8px;
  background: url("../images/articles/brazilian-coffee-featured-1200w.webp") center / cover no-repeat;
  box-shadow: 0 22px 54px rgba(0, 31, 26, .12);
}

.about-principles {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-principles article {
  min-width: 0;
  padding: 34px 30px 38px;
  border-right: 1px solid var(--line);
}

.about-principles article:last-child {
  border-right: 0;
}

.about-principles span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-principles h2 {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.about-principles p,
.partnership-band p,
.partner-aside li,
.form-disclaimer {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  margin: 12px 0 0;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.partnership-band {
  margin-top: 54px;
  padding: 46px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  border-radius: 8px;
  background: var(--green-900);
  color: #fff;
}

.partnership-band h2 {
  margin: 10px 0 12px;
  font-size: 36px;
}

.partnership-band p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.partner-intro {
  max-width: 900px;
  margin-bottom: 34px;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.partner-aside {
  position: sticky;
  top: 112px;
}

.partner-aside h2 {
  margin-top: 0;
}

.partner-aside ul {
  margin: 20px 0 28px;
  padding-left: 20px;
}

.partner-aside li + li {
  margin-top: 10px;
}

.partner-form input[type="file"] {
  min-height: 50px;
  padding: 12px;
  background: #fbfaf7;
}

.form-disclaimer {
  margin: 16px 0 0;
  font-size: 11px;
}

@media (max-width: 1320px) {
  .catalog-page .product-card {
    grid-template-rows: 175px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .catalog-page .product-card {
    grid-template-rows: 220px minmax(0, 1fr);
  }

  .about-hero,
  .partner-layout {
    grid-template-columns: 1fr;
  }

  .about-hero .page-title {
    font-size: 50px;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-principles article:last-child {
    border-bottom: 0;
  }

  .partnership-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .catalog-page .product-card {
    grid-template-rows: 280px minmax(0, 1fr);
  }

  .about-page,
  .partner-page {
    padding-top: 30px;
  }

  .about-hero .page-title {
    font-size: 39px;
  }

  .about-visual {
    min-height: 330px;
  }

  .about-principles {
    margin-top: 38px;
  }

  .about-principles article,
  .partnership-band {
    padding: 30px 22px;
  }

  .partnership-band h2 {
    font-size: 30px;
  }
}
