:root {
  --alr-green: #28351f;
  --alr-green-2: #3f522f;
  --alr-leaf: #718852;
  --alr-gold: #a47e30;
  --alr-gold-light: #efbd58;
  --alr-cream: #f7f4ec;
  --alr-pale: #eef2e7;
  --alr-white: #ffffff;
  --alr-ink: #1d1d1b;
  --alr-muted: #5a5d54;
  --alr-line: #dfd8c7;
  --alr-danger: #9c3d2d;
  --alr-radius: 8px;
  --alr-shadow: 0 18px 44px rgba(40, 53, 31, 0.12);
  --alr-wrap: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--alr-white);
  color: var(--alr-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.alr-menu-is-open {
  overflow: hidden;
}

body.alr-popup-is-open {
  overflow: hidden;
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--alr-green);
  letter-spacing: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.alr-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--alr-white);
  color: var(--alr-green);
  transform: translateY(-150%);
}

.alr-skip-link:focus {
  transform: translateY(0);
}

.alr-wrap {
  width: min(var(--alr-wrap), calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.alr-announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--alr-green);
  color: var(--alr-white);
  font-size: 13px;
  font-weight: 750;
}

.alr-announcement__track {
  width: max-content;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 64px;
  padding-right: 64px;
  white-space: nowrap;
  animation: alr-announcement-scroll 34s linear infinite;
  will-change: transform;
}

.alr-announcement__track span::before {
  margin-right: 64px;
  color: var(--alr-gold-light);
  content: "•";
}

.alr-announcement strong {
  color: #f0d590;
}

@keyframes alr-announcement-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.alr-site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--alr-line);
  background: rgba(255, 255, 255, 0.98);
}

.alr-header-main {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.alr-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--alr-green);
  white-space: nowrap;
}

.alr-brand__silhouette {
  width: 30px;
  height: 52px;
  object-fit: contain;
}

.alr-brand__wordmark {
  display: flex;
  flex-direction: column;
}

.alr-brand__wordmark > img {
  width: 174px;
  height: auto;
}

.alr-brand small {
  margin-top: 2px;
  color: var(--alr-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.alr-primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--alr-muted);
  font-size: 14px;
  font-weight: 750;
}

.alr-primary-nav a:hover,
.alr-primary-nav a:focus {
  color: var(--alr-green);
}

.alr-focused-header__trust {
  justify-self: center;
  text-align: center;
}

.alr-focused-header__trust strong,
.alr-focused-header__trust span {
  display: block;
}

.alr-focused-header__trust strong {
  color: var(--alr-green);
  font-size: 14px;
}

.alr-focused-header__trust span {
  color: var(--alr-muted);
  font-size: 11px;
  font-weight: 700;
}

.alr-focused-header__cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 850;
}

.alr-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alr-header-phone {
  color: var(--alr-green);
  font-size: 14px;
  font-weight: 850;
}

.alr-cart-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--alr-green);
  border-radius: var(--alr-radius);
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 850;
}

.alr-cart-link strong {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--alr-green);
  color: var(--alr-white);
  font-size: 11px;
}

.alr-menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-menu-toggle > span:not(.screen-reader-text) {
  width: 20px;
  height: 2px;
  background: var(--alr-green);
}

.alr-category-nav {
  border-top: 1px solid var(--alr-line);
}

.alr-category-nav__inner {
  min-height: 45px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: stretch;
}

.alr-category-item {
  display: flex;
  align-items: stretch;
}

.alr-category-item > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.alr-category-item:hover > a,
.alr-category-item:focus-within > a {
  background: var(--alr-pale);
}

.alr-mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 80;
  visibility: hidden;
  overflow-y: auto;
  max-height: min(560px, calc(100vh - 120px));
  padding: 26px 0 30px;
  border-top: 1px solid var(--alr-line);
  border-bottom: 1px solid var(--alr-line);
  background: var(--alr-white);
  box-shadow: var(--alr-shadow);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.alr-category-item:hover .alr-mega-menu,
.alr-category-item:focus-within .alr-mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.alr-mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.alr-mega-group {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0 24px;
  border-right: 1px solid var(--alr-line);
}

.alr-mega-group:last-child {
  border-right: 0;
}

.alr-mega-group__media {
  width: 76px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--alr-pale);
}

.alr-mega-group__media img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.alr-mega-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.alr-mega-group__title {
  display: block;
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.alr-mega-group__head > span {
  color: var(--alr-muted);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.alr-mega-products {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.alr-mega-products a {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid rgba(223, 216, 199, 0.65);
  color: var(--alr-muted);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.3;
}

.alr-mega-products a:hover {
  color: var(--alr-green);
}

.alr-mega-group__all {
  display: inline-flex;
  margin-top: 13px;
  padding-top: 10px;
  border-top: 1px solid var(--alr-line);
  color: var(--alr-green);
  font-size: 12px;
  font-weight: 850;
}

.alr-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow: hidden;
  background: var(--alr-white);
}

.alr-mobile-menu.is-open {
  display: block;
}

.alr-mobile-menu__header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--alr-line);
  color: var(--alr-green);
}

.alr-mobile-menu__header button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--alr-green);
  font-size: 34px;
  line-height: 1;
}

.alr-mobile-menu__screen {
  position: absolute;
  inset: 68px 0 0;
  display: none;
  overflow-y: auto;
  padding: 22px 18px 40px;
  background: var(--alr-white);
}

.alr-mobile-menu__screen.is-active {
  display: block;
}

.alr-mobile-menu__eyebrow {
  margin-bottom: 16px;
  color: var(--alr-muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.alr-mobile-menu__screen > button:not(.alr-mobile-menu__back),
.alr-mobile-menu__screen > a {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 4px;
  border: 0;
  border-bottom: 1px solid var(--alr-line);
  background: transparent;
  color: var(--alr-green);
  text-align: left;
}

.alr-mobile-menu__screen strong,
.alr-mobile-menu__screen small,
.alr-mobile-menu__screen span {
  display: block;
}

.alr-mobile-menu__screen strong {
  font-size: 19px;
}

.alr-mobile-menu__screen small,
.alr-mobile-menu__screen a span {
  margin-top: 3px;
  color: var(--alr-muted);
  font-size: 13px;
}

.alr-mobile-menu__back {
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--alr-green);
  font-size: 15px;
  font-weight: 850;
}

.alr-mobile-menu__utility {
  margin-top: 18px;
  padding: 13px 15px !important;
  border: 1px solid var(--alr-green) !important;
  border-radius: var(--alr-radius);
  font-weight: 850;
  text-align: center !important;
}

.alr-site-main {
  min-height: 60vh;
}

.alr-home-hero {
  min-height: clamp(520px, calc(100svh - 185px), 670px);
  display: flex;
  align-items: center;
  padding: 48px 0 54px;
  background:
    linear-gradient(90deg, rgba(24, 34, 17, 0.9) 0%, rgba(24, 34, 17, 0.76) 38%, rgba(24, 34, 17, 0.28) 72%, rgba(24, 34, 17, 0.08) 100%),
    url("../img/olivar-sierra-subbetica-hero.webp") center center / cover no-repeat;
}

.alr-home-hero__inner {
  width: min(var(--alr-wrap), calc(100% - 32px));
}

.alr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--alr-green-2);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.alr-eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--alr-gold);
  content: "";
}

.alr-home-hero h1 {
  margin: 10px 0 18px;
  color: var(--alr-white);
  font-size: 64px;
  font-weight: 900;
  line-height: 0.98;
}

.alr-home-hero .alr-eyebrow {
  color: var(--alr-gold-light);
}

.alr-home-hero .alr-eyebrow::before {
  background: var(--alr-gold-light);
}

.alr-home-hero__copy {
  max-width: 660px;
}

.alr-home-hero__lead {
  max-width: 610px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.5;
}

.alr-home-offer {
  display: grid;
  grid-template-columns: 76px auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.alr-home-offer__image {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.alr-home-offer__image img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.alr-home-offer__content > span {
  margin: 0 0 4px;
}

.alr-home-offer__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.alr-home-offer__price del {
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  font-weight: 750;
}

.alr-home-offer strong {
  color: var(--alr-white);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.alr-home-offer strong .amount {
  color: inherit;
}

.alr-home-offer__content > span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 750;
}

.alr-home-offer p {
  max-width: 210px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 650;
}

.alr-home-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 21px 0;
  padding: 0;
  list-style: none;
  color: var(--alr-white);
  font-size: 14px;
  font-weight: 800;
}

.alr-home-benefits li::before {
  margin-right: 7px;
  color: var(--alr-gold);
  content: "✓";
}

.alr-home-actions,
.alr-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alr-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--alr-radius);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.alr-button--primary {
  background: var(--alr-green);
  color: var(--alr-white);
}

.alr-button--primary:hover,
.alr-button--primary:focus {
  background: var(--alr-green-2);
}

.alr-button--secondary {
  border-color: var(--alr-green);
  background: transparent;
  color: var(--alr-green);
}

.alr-button--gold {
  background: var(--alr-gold-light);
  color: var(--alr-green);
}

.alr-button--light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--alr-white);
}

.alr-home-hero__media {
  display: none;
}

.alr-home-hero .alr-button--primary {
  background: var(--alr-gold-light);
  color: var(--alr-green);
}

.alr-home-hero .alr-button--secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--alr-white);
}

.alr-trust-band {
  border-top: 1px solid var(--alr-line);
  border-bottom: 1px solid var(--alr-line);
}

.alr-trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alr-trust-band__grid > div {
  min-height: 92px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 18px 22px;
  border-right: 1px solid var(--alr-line);
}

.alr-trust-band__grid > div:last-child {
  border-right: 0;
}

.alr-trust-band strong,
.alr-trust-band span {
  display: block;
}

.alr-trust-band strong {
  color: var(--alr-green);
  font-size: 16px;
}

.alr-trust-band span {
  margin-top: 3px;
  color: var(--alr-muted);
  font-size: 13px;
}

.alr-section {
  padding: 74px 0;
}

.alr-section--alt {
  background: var(--alr-cream);
}

.alr-section--green {
  position: relative;
  overflow: hidden;
  background: var(--alr-green);
  color: var(--alr-white);
}

.alr-section--green::after,
.alr-site-footer::after {
  position: absolute;
  right: 4%;
  bottom: -90px;
  width: 270px;
  height: 430px;
  background: url("../img/silueta-la-recovera.webp") center bottom / contain no-repeat;
  content: "";
  filter: invert(1);
  opacity: 0.045;
  pointer-events: none;
}

.alr-section--green > .alr-wrap,
.alr-site-footer > .alr-wrap {
  position: relative;
  z-index: 1;
}

.alr-section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.alr-section h2,
.alr-shop-hero h1,
.alr-empty-state h1 {
  margin: 8px 0 12px;
  font-size: 46px;
  font-weight: 880;
  line-height: 1.05;
}

.alr-section-head > p {
  margin-bottom: 0;
  color: var(--alr-muted);
  font-size: 18px;
}

.alr-section--green .alr-eyebrow {
  color: var(--alr-gold-light);
}

.alr-section--green .alr-eyebrow::before {
  background: var(--alr-gold-light);
}

.alr-section--green h2 {
  color: var(--alr-gold-light);
}

.alr-section--picual {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.alr-picual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alr-picual-grid article {
  padding: 20px;
  border: 1px solid rgba(42, 53, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.alr-picual-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--alr-green);
  font-size: 18px;
  font-weight: 900;
}

.alr-picual-grid p {
  margin: 0;
  color: var(--alr-muted);
  font-size: 15px;
  line-height: 1.5;
}

.alr-picual-note {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--alr-muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.alr-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.alr-path {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-path > span {
  color: var(--alr-gold);
  font-size: 13px;
  font-weight: 850;
}

.alr-path h3 {
  margin: 24px 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.alr-path p {
  color: var(--alr-muted);
  font-size: 15px;
}

.alr-path > strong {
  margin-top: auto;
  color: var(--alr-green);
  font-size: 14px;
}

.alr-featured-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.alr-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-product-card__image {
  position: relative;
  aspect-ratio: 1 / 0.82;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--alr-pale);
}

.alr-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.alr-product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.alr-product-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--alr-green);
  color: var(--alr-white);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.alr-product-card__badge--sale {
  background: var(--alr-gold-light);
  color: var(--alr-green);
}

.alr-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.alr-product-card__type {
  color: var(--alr-gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.alr-product-card h3 {
  min-height: 46px;
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.alr-product-card p {
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-product-card__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--alr-line);
}

.alr-product-card__meta {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -3px;
}

.alr-product-card__meta small {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--alr-pale);
  color: var(--alr-green);
  font-size: 11px;
  font-weight: 850;
}

.alr-product-card__bottom > strong {
  color: var(--alr-green);
  font-size: 20px;
}

.alr-product-card__bottom .price,
.alr-product-card__bottom > strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.alr-product-card__bottom del {
  color: var(--alr-muted);
  font-size: 13px;
  font-weight: 650;
}

.alr-product-card__bottom ins {
  text-decoration: none;
}

.alr-product-card__bottom > a {
  margin-left: auto;
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 850;
}

.alr-editor-note {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed var(--alr-line);
  color: var(--alr-muted);
}

.alr-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alr-category-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-category-card > span {
  color: var(--alr-green);
  font-size: 25px;
  font-weight: 880;
}

.alr-category-card > strong {
  margin-top: 6px;
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-category-card > small {
  margin-top: auto;
  color: var(--alr-green);
  font-weight: 800;
}

.alr-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.alr-seo-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-cream);
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 850;
}

.alr-seo-links a:hover,
.alr-seo-links a:focus {
  border-color: var(--alr-green);
  background: var(--alr-white);
}

.alr-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: center;
}

.alr-story-media {
  overflow: hidden;
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-story-media img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
}

.alr-story-copy > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.alr-story-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.alr-story-points > div {
  padding-left: 18px;
  border-left: 3px solid var(--alr-gold-light);
}

.alr-story-points strong,
.alr-story-points span {
  display: block;
}

.alr-story-points strong {
  color: var(--alr-white);
  font-size: 18px;
}

.alr-story-points span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.alr-story-link {
  margin-top: 24px;
}

.alr-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alr-awards-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-awards-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--alr-gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.alr-awards-grid strong {
  display: block;
  color: var(--alr-green);
  font-size: 20px;
  line-height: 1.18;
}

.alr-awards-grid p {
  margin: 8px 0 0;
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--alr-green);
  font-size: 14px;
  font-weight: 850;
}

.alr-company-hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(24, 34, 17, 0.88), rgba(24, 34, 17, 0.34) 72%, rgba(24, 34, 17, 0.1)),
    url("../img/olivar-sierra-subbetica-hero.webp") center center / cover no-repeat;
}

.alr-company-hero__content > * {
  max-width: 760px;
}

.alr-company-hero .alr-eyebrow {
  color: var(--alr-gold-light);
}

.alr-company-hero .alr-eyebrow::before {
  background: var(--alr-gold-light);
}

.alr-company-hero h1 {
  margin: 10px 0 18px;
  color: var(--alr-white);
  font-size: 54px;
  line-height: 1.02;
}

.alr-company-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.alr-seo-landing-hero {
  padding: 62px 0;
  background:
    linear-gradient(90deg, rgba(24, 34, 17, 0.9), rgba(24, 34, 17, 0.7) 48%, rgba(24, 34, 17, 0.38)),
    url("../img/olivar-sierra-subbetica-hero.webp") center center / cover no-repeat;
}

.alr-seo-landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 34px;
  align-items: center;
}

.alr-seo-landing-hero .alr-eyebrow {
  color: var(--alr-gold-light);
}

.alr-seo-landing-hero .alr-eyebrow::before {
  background: var(--alr-gold-light);
}

.alr-seo-landing-hero h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  color: var(--alr-white);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 0.98;
}

.alr-seo-landing-hero p {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.alr-seo-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alr-seo-landing-hero__media {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--alr-radius);
  background: rgba(255, 255, 255, 0.92);
}

.alr-seo-landing-hero__media img {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(24, 34, 17, 0.2));
}

.alr-featured-products--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alr-seo-landing-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.alr-seo-landing-content article {
  padding-left: 18px;
  border-left: 3px solid var(--alr-gold);
}

.alr-seo-landing-content h2 {
  margin: 0 0 10px;
  color: var(--alr-green);
  font-size: 30px;
  line-height: 1.08;
}

.alr-seo-landing-content p {
  margin-bottom: 0;
  color: var(--alr-muted);
}

.alr-company-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 60px;
}

.alr-company-intro h2 {
  margin: 8px 0 0;
  font-size: 43px;
  line-height: 1.07;
}

.alr-company-intro p {
  color: var(--alr-muted);
  font-size: 18px;
}

.alr-company-origin {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 60px;
  align-items: center;
}

.alr-company-origin h2 {
  margin: 8px 0 18px;
  color: var(--alr-gold-light);
  font-size: 46px;
  line-height: 1.05;
}

.alr-company-origin p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.alr-company-origin__quote {
  padding: 26px;
  border-left: 3px solid var(--alr-gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.alr-company-origin__quote strong,
.alr-company-origin__quote span {
  display: block;
}

.alr-company-origin__quote strong {
  color: var(--alr-white);
  font-size: 28px;
  line-height: 1.12;
}

.alr-company-origin__quote span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.alr-company-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alr-company-values__grid article {
  min-height: 180px;
  padding: 20px;
  border-left: 3px solid var(--alr-gold);
  background: var(--alr-cream);
}

.alr-company-values__grid strong {
  display: block;
  color: var(--alr-green);
  font-size: 20px;
}

.alr-company-values__grid p {
  margin: 8px 0 0;
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-google-reviews {
  overflow: visible;
}

.alr-google-reviews__widget {
  width: 100%;
}

.alr-google-reviews__widget iframe,
.alr-google-reviews__widget img {
  max-width: 100%;
}

.alr-google-reviews-fallback {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
  color: var(--alr-green);
}

.alr-google-reviews-fallback strong {
  font-size: 18px;
}

.alr-google-reviews-fallback span {
  color: var(--alr-muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.alr-faq-grid details {
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-faq-grid summary {
  padding: 18px 20px;
  color: var(--alr-green);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.alr-faq-grid summary::-webkit-details-marker {
  display: none;
}

.alr-faq-grid p {
  margin: 0;
  padding: 0 20px 19px;
  color: var(--alr-muted);
  font-size: 15px;
}

.alr-faq-link {
  margin-top: 22px;
}

.alr-faq-hero,
.alr-cart-hero {
  padding: 68px 0 58px;
  background: var(--alr-cream);
}

.alr-faq-hero h1,
.alr-cart-hero h1 {
  max-width: 840px;
  margin: 10px 0 16px;
  font-size: 54px;
  line-height: 1.03;
}

.alr-faq-hero p,
.alr-cart-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--alr-muted);
  font-size: 18px;
}

.alr-faq-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.alr-faq-hero__links a {
  padding: 9px 12px;
  border: 1px solid var(--alr-line);
  background: var(--alr-white);
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 800;
}

.alr-faq-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.alr-faq-aside {
  position: sticky;
  top: 24px;
  padding: 22px;
  border-left: 3px solid var(--alr-gold);
  background: var(--alr-cream);
}

.alr-faq-aside img {
  width: 58px;
  height: 94px;
  margin-bottom: 14px;
  object-fit: contain;
  opacity: 0.78;
}

.alr-faq-aside strong {
  display: block;
  color: var(--alr-green);
  font-size: 20px;
}

.alr-faq-aside p {
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-faq-aside .alr-button {
  width: 100%;
  min-height: 48px;
  font-size: 13px;
}

.alr-faq-intro,
.alr-faq-divider {
  scroll-margin-top: 24px;
}

.alr-faq-intro h2,
.alr-faq-divider h2 {
  margin: 8px 0 12px;
  font-size: 36px;
  line-height: 1.08;
}

.alr-faq-intro p {
  color: var(--alr-muted);
}

.alr-faq-list {
  display: grid;
  gap: 10px;
}

.alr-faq-list details {
  border-bottom: 1px solid var(--alr-line);
}

.alr-faq-list summary {
  position: relative;
  padding: 18px 44px 18px 0;
  color: var(--alr-green);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.alr-faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  content: "+";
  font-size: 22px;
}

.alr-faq-list details[open] summary::after {
  content: "−";
}

.alr-faq-list summary::-webkit-details-marker {
  display: none;
}

.alr-faq-list details > p {
  max-width: 820px;
  margin: 0;
  padding: 0 44px 20px 0;
  color: var(--alr-muted);
  font-size: 15px;
}

.alr-faq-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 44px 20px 0;
}

.alr-faq-related a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--alr-line);
  border-radius: 6px;
  background: var(--alr-cream);
  color: var(--alr-green);
  font-size: 12px;
  font-weight: 820;
}

.alr-faq-related a:hover,
.alr-faq-related a:focus {
  border-color: var(--alr-green);
}

.alr-faq-divider {
  margin-top: 38px;
  padding-top: 12px;
}

.alr-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--alr-radius);
  background: rgba(255, 255, 255, 0.06);
}

.alr-final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.alr-home-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--alr-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -10px 30px rgba(29, 29, 27, 0.12);
}

.alr-home-sticky a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--alr-radius);
  background: var(--alr-green);
  color: var(--alr-white);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
}

.alr-home-sticky a:last-child {
  border: 1px solid var(--alr-green);
  background: var(--alr-white);
  color: var(--alr-green);
}

.alr-landing-hero {
  padding: 54px 0 64px;
  background: var(--alr-cream);
}

.alr-landing-hero__grid,
.alr-landing-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.alr-landing-hero h1 {
  margin: 10px 0 18px;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.alr-landing-hero__lead {
  margin-bottom: 22px;
  color: var(--alr-muted);
  font-size: 19px;
}

.alr-landing-price {
  padding: 18px 0;
  border-top: 1px solid var(--alr-line);
  border-bottom: 1px solid var(--alr-line);
}

.alr-landing-price strong,
.alr-landing-price span {
  display: block;
}

.alr-landing-price strong {
  color: var(--alr-green);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.alr-landing-price strong .amount {
  color: inherit;
}

.alr-landing-price span {
  margin-top: 7px;
  color: var(--alr-muted);
  font-size: 14px;
  font-weight: 750;
}

.alr-landing-list {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  color: var(--alr-green);
  font-size: 14px;
  font-weight: 750;
}

.alr-landing-list li::before {
  margin-right: 8px;
  color: var(--alr-gold);
  content: "✓";
}

.alr-landing-hero__media {
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-landing-hero__media img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.alr-landing-detail > div:first-child > p {
  color: var(--alr-muted);
  font-size: 18px;
}

.alr-landing-detail h2 {
  margin: 8px 0 16px;
  font-size: 44px;
  line-height: 1.06;
}

.alr-landing-detail__media {
  overflow: hidden;
  border-radius: var(--alr-radius);
}

.alr-landing-detail__media img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.alr-landing-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alr-landing-benefits article {
  min-height: 165px;
  padding: 20px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-landing-benefits strong {
  display: block;
  margin-bottom: 8px;
  color: var(--alr-green);
  font-size: 19px;
}

.alr-landing-benefits p {
  margin-bottom: 0;
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-shop-hero {
  padding: 52px 0 42px;
  background: var(--alr-cream);
}

.alr-shop-hero > .alr-wrap > p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--alr-muted);
}

.alr-shop-hero .term-description {
  max-width: 760px;
  color: var(--alr-muted);
  font-size: 17px;
}

.alr-shop-shell {
  padding-top: 30px;
  padding-bottom: 70px;
}

.alr-shop-categories {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.alr-shop-categories {
  margin-bottom: 10px;
}

.alr-shop-categories a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 800;
}

.alr-shop-categories a.is-active {
  border-color: var(--alr-green);
  background: var(--alr-green);
  color: var(--alr-white);
}

.alr-shop-more {
  margin: 12px 0 24px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-white);
}

.alr-shop-more summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  color: var(--alr-green);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  list-style: none;
}

.alr-shop-more summary::-webkit-details-marker {
  display: none;
}

.alr-shop-more summary::after {
  content: "+";
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--alr-cream);
  color: var(--alr-green);
  font-size: 18px;
  line-height: 1;
}

.alr-shop-more[open] summary {
  border-bottom: 1px solid var(--alr-line);
}

.alr-shop-more[open] summary::after {
  content: "-";
}

.alr-shop-more__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 22px;
  align-items: start;
  padding: 20px;
}

.alr-shop-more h2 {
  margin: 0 0 10px;
  color: var(--alr-green);
  font-size: 24px;
  line-height: 1.12;
}

.alr-shop-more p {
  max-width: 860px;
  margin: 0 0 8px;
  color: var(--alr-muted);
  font-size: 14px;
  line-height: 1.65;
}

.alr-shop-more p:last-child {
  margin-bottom: 0;
}

.alr-shop-more__links {
  display: grid;
  gap: 8px;
}

.alr-shop-more__links a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px;
  border: 1px solid var(--alr-line);
  border-radius: 6px;
  background: var(--alr-cream);
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 850;
}

.alr-shop-more__links a::after {
  content: ">";
  color: var(--alr-gold);
}

.alr-shop-more__links a:hover,
.alr-shop-more__links a:focus {
  border-color: var(--alr-green);
  background: var(--alr-white);
}

.alr-checkout-mobile-summary {
  display: none;
}

.alr-purchase-shortcuts {
  margin: 12px 0 24px;
  padding: 20px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-cream);
}

.alr-purchase-shortcuts__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.alr-purchase-shortcuts__heading > span {
  color: var(--alr-green);
  font-size: 18px;
  font-weight: 880;
}

.alr-purchase-shortcuts__heading small {
  color: var(--alr-muted);
  font-size: 12px;
}

.alr-purchase-shortcuts__options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.alr-purchase-shortcuts__options a {
  min-width: 0;
  min-height: 84px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 13px 15px;
  border: 1px solid var(--alr-line);
  border-radius: 6px;
  background: var(--alr-white);
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.alr-purchase-shortcuts__options a:hover,
.alr-purchase-shortcuts__options a:focus {
  border-color: var(--alr-green);
}

.alr-purchase-shortcuts__options strong,
.alr-purchase-shortcuts__options span {
  display: block;
}

.alr-purchase-shortcuts__options strong {
  color: var(--alr-green);
  font-size: 16px;
  line-height: 1.15;
}

.alr-purchase-shortcuts__options span {
  margin-top: 5px;
  color: var(--alr-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
}

.alr-purchase-shortcuts__options a.is-active {
  border-color: var(--alr-green);
  background: var(--alr-green);
}

.alr-purchase-shortcuts__options a.is-active strong {
  color: var(--alr-gold-light);
}

.alr-purchase-shortcuts__options a.is-active span {
  color: rgba(255, 255, 255, 0.78);
}

.alr-shop-filters {
  margin: 8px 0 24px;
  border-top: 1px solid var(--alr-line);
  border-bottom: 1px solid var(--alr-line);
}

.alr-shop-filters > summary {
  padding: 14px 2px;
  color: var(--alr-green);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.alr-shop-filters form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 4px 0 20px;
}

.alr-shop-filters:not([open]) form {
  display: none;
}

.alr-shop-filters label > span {
  display: block;
  margin-bottom: 5px;
  color: var(--alr-muted);
  font-size: 12px;
  font-weight: 800;
}

.alr-shop-filters select {
  width: 100%;
  min-height: 46px;
  padding: 9px 34px 9px 11px;
  border: 1px solid var(--alr-line);
  border-radius: 4px;
  background: var(--alr-white);
  color: var(--alr-green);
  font-size: 14px;
}

.alr-shop-filters__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alr-shop-filters__actions button {
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--alr-radius);
  background: var(--alr-green);
  color: var(--alr-white);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.alr-shop-filters__actions a {
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alr-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -8px 0 24px;
}

.alr-active-filters > span {
  color: var(--alr-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.alr-active-filters a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--alr-line);
  border-radius: 999px;
  background: var(--alr-white);
  color: var(--alr-green);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.alr-active-filters a:hover,
.alr-active-filters a:focus {
  border-color: var(--alr-green);
}

.alr-active-filters small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--alr-pale);
  color: var(--alr-green);
  font-size: 13px;
  line-height: 1;
}

.alr-active-filters .alr-active-filters__clear {
  border-color: transparent;
  background: transparent;
  color: var(--alr-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alr-shop-empty {
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
  background: var(--alr-cream);
}

.alr-shop-empty h2 {
  max-width: 680px;
  margin: 8px 0 10px;
  color: var(--alr-green);
  font-size: 34px;
  line-height: 1.08;
}

.alr-shop-empty p {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--alr-muted);
  font-size: 16px;
}

.alr-loop-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  max-width: calc(100% - 24px);
  flex-wrap: wrap;
  gap: 6px;
}

.alr-loop-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--alr-green);
  color: var(--alr-white);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  white-space: normal;
  overflow-wrap: anywhere;
}

.woocommerce ul.products li.product {
  position: relative;
}

.alr-shop-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alr-cart-page {
  padding: 36px 0 74px;
  background: var(--alr-cream);
}

.alr-checkout-page {
  min-height: 72vh;
  padding: 42px 0 72px;
  background: var(--alr-cream);
}

.alr-checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto 38px;
}

.alr-checkout-steps span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--alr-muted);
  font-size: 12px;
  font-weight: 800;
}

.alr-checkout-steps span::after {
  position: absolute;
  top: 15px;
  right: 14px;
  left: 46px;
  height: 1px;
  background: var(--alr-line);
  content: "";
}

.alr-checkout-steps span:nth-child(2) {
  justify-content: center;
}

.alr-checkout-steps span:last-child {
  justify-content: flex-end;
}

.alr-checkout-steps span:last-child::after {
  display: none;
}

.alr-checkout-steps b {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--alr-line);
  border-radius: 50%;
  background: var(--alr-white);
  color: var(--alr-muted);
  font-size: 12px;
}

.alr-checkout-steps .is-active,
.alr-checkout-steps .is-complete {
  color: var(--alr-green);
}

.alr-checkout-steps .is-active b,
.alr-checkout-steps .is-complete b {
  border-color: var(--alr-green);
  background: var(--alr-green);
  color: var(--alr-white);
}

.alr-checkout-steps .is-complete b::before {
  content: "✓";
}

.alr-checkout-steps .is-complete b {
  font-size: 0;
}

.alr-checkout-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.alr-checkout-heading .alr-eyebrow {
  justify-content: center;
}

.alr-checkout-heading h1 {
  margin: 9px 0 12px;
  font-size: 48px;
  line-height: 1.03;
}

.alr-checkout-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--alr-muted);
  font-size: 17px;
}

.alr-checkout-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 17px 20px;
  border: 1px solid var(--alr-line);
  background: var(--alr-white);
}

.alr-checkout-support strong,
.alr-checkout-support span {
  display: block;
}

.alr-checkout-support strong {
  color: var(--alr-green);
  font-size: 14px;
}

.alr-checkout-support span {
  color: var(--alr-muted);
  font-size: 12px;
}

.alr-checkout-support a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid var(--alr-green);
  border-radius: var(--alr-radius);
  color: var(--alr-green);
  font-size: 12px;
  font-weight: 850;
}

.alr-checkout-support a:last-child {
  background: var(--alr-green);
  color: var(--alr-white);
}

.alr-checkout-footer {
  padding: 20px 0;
  border-top: 1px solid var(--alr-line);
  background: var(--alr-white);
}

.alr-checkout-footer .alr-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  color: var(--alr-muted);
  font-size: 11px;
}

.alr-checkout-footer a {
  color: var(--alr-green);
  font-weight: 750;
}

.alr-cart-page__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
  border-bottom: 1px solid var(--alr-line);
}

.alr-cart-page__steps span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 0 14px;
  color: var(--alr-muted);
  font-size: 13px;
  font-weight: 800;
}

.alr-cart-page__steps span:nth-child(2) {
  justify-content: center;
}

.alr-cart-page__steps span:last-child {
  justify-content: flex-end;
}

.alr-cart-page__steps b {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--alr-line);
  border-radius: 50%;
  background: var(--alr-white);
}

.alr-cart-page__steps .is-active {
  color: var(--alr-green);
}

.alr-cart-page__steps .is-active b {
  border-color: var(--alr-green);
  background: var(--alr-green);
  color: var(--alr-white);
}

.alr-cart-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--alr-line);
  border-bottom: 1px solid var(--alr-line);
}

.alr-cart-reassurance > div {
  padding: 18px;
  border-right: 1px solid var(--alr-line);
}

.alr-cart-reassurance > div:last-child {
  border-right: 0;
}

.alr-cart-reassurance strong,
.alr-cart-reassurance span {
  display: block;
}

.alr-cart-reassurance strong {
  color: var(--alr-green);
  font-size: 14px;
}

.alr-cart-reassurance span {
  margin-top: 3px;
  color: var(--alr-muted);
  font-size: 12px;
}

.alr-content-layout,
.alr-page {
  padding-top: 58px;
  padding-bottom: 70px;
}

.alr-entry {
  max-width: 820px;
  margin: 0 auto 42px;
}

.alr-entry h1 {
  font-size: 44px;
  line-height: 1.08;
}

.alr-entry__content {
  color: var(--alr-muted);
}

.alr-entry__content > * {
  max-width: 100%;
}

.alr-legal-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #f7f3e8 0%, #ffffff 100%);
}

.alr-legal-hero__content {
  max-width: 860px;
}

.alr-legal-hero h1 {
  margin: 8px 0 14px;
  color: var(--alr-green);
  font-size: 56px;
  line-height: 1.02;
}

.alr-legal-hero p {
  max-width: 700px;
  color: var(--alr-muted);
  font-size: 19px;
}

.alr-legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.alr-legal-aside {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid var(--alr-line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--alr-shadow-soft);
}

.alr-legal-aside strong {
  display: block;
  color: var(--alr-green);
  font-size: 20px;
}

.alr-legal-aside ul {
  margin: 16px 0 20px;
  padding-left: 18px;
  color: var(--alr-muted);
  font-size: 14px;
}

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

.alr-legal-aside .alr-button {
  width: 100%;
}

.alr-legal-content {
  display: grid;
  gap: 18px;
}

.alr-legal-content section {
  padding: 26px 0;
  border-bottom: 1px solid var(--alr-line);
}

.alr-legal-content section:first-child {
  padding-top: 0;
}

.alr-legal-content h2 {
  margin: 0 0 10px;
  color: var(--alr-green);
  font-size: 28px;
  line-height: 1.16;
}

.alr-legal-content p {
  max-width: 780px;
  color: var(--alr-muted);
  font-size: 17px;
}

.alr-legal-content a {
  color: var(--alr-green);
  font-weight: 800;
}

.alr-empty-state {
  padding: 100px 0;
  text-align: center;
}

.alr-empty-state p {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  color: var(--alr-muted);
}

.alr-site-footer {
  position: relative;
  overflow: hidden;
  padding: 54px 0 24px;
  border-top: 1px solid var(--alr-line);
  background: #f2f0e9;
}

.alr-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
  gap: 34px;
}

.alr-footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.alr-footer-grid strong {
  color: var(--alr-green);
}

.alr-footer-grid p {
  max-width: 340px;
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-footer-grid a {
  color: var(--alr-muted);
  font-size: 14px;
}

.alr-footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.alr-footer-grid li {
  margin-bottom: 7px;
}

.alr-footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.alr-footer-brand img:first-child {
  width: 28px;
  height: 50px;
  object-fit: contain;
}

.alr-footer-brand img:last-child {
  width: 170px;
  height: auto;
}

.alr-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--alr-line);
  color: var(--alr-muted);
  font-size: 12px;
}

.alr-footer-bottom a {
  color: var(--alr-green);
  font-weight: 750;
}

.alr-footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--alr-green);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

#cookie-notice {
  display: none !important;
}

body.alr-cookie-panel-is-open {
  overflow: hidden;
}

.alr-cookie {
  position: fixed;
  inset: 0;
  z-index: 10010;
  pointer-events: none;
  visibility: hidden;
}

.alr-cookie.is-visible {
  visibility: visible;
}

.alr-cookie__banner,
.alr-cookie__panel {
  pointer-events: auto;
}

.alr-cookie__banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(680px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(164, 126, 48, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(20, 27, 16, 0.22);
}

.alr-cookie__seal {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--alr-green);
  color: var(--alr-gold-light);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.alr-cookie__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--alr-gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.alr-cookie h2 {
  margin: 0 0 5px;
  color: var(--alr-green);
  font-size: 22px;
  line-height: 1.08;
}

.alr-cookie p {
  margin: 0;
  color: var(--alr-muted);
  font-size: 13px;
  line-height: 1.42;
}

.alr-cookie__links {
  margin-top: 7px !important;
  font-size: 12px !important;
  font-weight: 750;
}

.alr-cookie__links a {
  color: var(--alr-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.alr-cookie__actions,
.alr-cookie__panel-actions {
  display: flex;
  gap: 8px;
}

.alr-cookie__actions {
  align-items: center;
}

.alr-cookie__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--alr-radius);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.alr-cookie__button--primary {
  border: 1px solid var(--alr-green);
  background: var(--alr-green);
  color: var(--alr-white);
}

.alr-cookie__button--secondary {
  border: 1px solid var(--alr-green);
  background: var(--alr-white);
  color: var(--alr-green);
}

.alr-cookie__button--ghost {
  border: 1px solid var(--alr-line);
  background: var(--alr-cream);
  color: var(--alr-green);
}

.alr-cookie__panel {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(620px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid var(--alr-line);
  border-radius: 16px;
  background: var(--alr-white);
  box-shadow: 0 28px 84px rgba(20, 27, 16, 0.32);
  transform: translate(-50%, -50%);
}

.alr-cookie.is-configuring::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: auto;
  background: rgba(20, 27, 16, 0.46);
}

.alr-cookie__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--alr-green);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.alr-cookie__panel-head {
  max-width: 500px;
  margin-bottom: 18px;
}

.alr-cookie__options {
  display: grid;
  gap: 10px;
}

.alr-cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--alr-line);
  border-radius: 12px;
  background: #fbfaf6;
}

.alr-cookie-option strong,
.alr-cookie-option small {
  display: block;
}

.alr-cookie-option strong {
  color: var(--alr-green);
  font-size: 15px;
}

.alr-cookie-option small {
  margin-top: 4px;
  color: var(--alr-muted);
  font-size: 13px;
  line-height: 1.38;
}

.alr-cookie-option input {
  width: 48px;
  height: 28px;
  margin: 0;
  border: 1px solid var(--alr-line);
  border-radius: 999px;
  appearance: none;
  background: var(--alr-line);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.alr-cookie-option input::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  margin: 2px;
  border-radius: 50%;
  background: var(--alr-white);
  box-shadow: 0 2px 6px rgba(20, 27, 16, 0.2);
  transition: transform 160ms ease;
}

.alr-cookie-option input:checked {
  border-color: var(--alr-green);
  background: var(--alr-green);
}

.alr-cookie-option input:checked::before {
  transform: translateX(20px);
}

.alr-cookie-option input:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.alr-cookie__panel-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 18px;
}

.alr-lead-popup {
  position: fixed;
  inset: 0;
  z-index: 10020;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.alr-lead-popup.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.alr-lead-popup__backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(20, 27, 16, 0.72);
}

.alr-lead-popup__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  min-height: 430px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  overscroll-behavior: contain;
  border-radius: var(--alr-radius);
  background: var(--alr-white);
  box-shadow: 0 28px 80px rgba(20, 27, 16, 0.32);
  transform: translate(-50%, -48%);
  transition: transform 180ms ease;
}

.alr-lead-popup.is-open .alr-lead-popup__dialog {
  transform: translate(-50%, -50%);
}

.alr-lead-popup__visual {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(130px, 1fr) auto;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(40, 53, 31, 0.72), rgba(40, 53, 31, 0.98)),
    var(--alr-green);
  color: var(--alr-white);
}

.alr-lead-popup__visual::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -96px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(239, 189, 88, 0.16);
}

.alr-lead-popup__offer {
  position: relative;
  z-index: 1;
}

.alr-lead-popup__offer span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(239, 189, 88, 0.4);
  border-radius: 999px;
  color: var(--alr-gold-light);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.alr-lead-popup__offer strong {
  display: block;
  margin-top: 14px;
  color: var(--alr-gold-light);
  font-size: 82px;
  font-weight: 950;
  line-height: 0.88;
}

.alr-lead-popup__offer small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-weight: 850;
  text-transform: uppercase;
}

.alr-lead-popup__product-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 138px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(164, 126, 48, 0.18);
  overflow: hidden;
}

.alr-lead-popup__product-image img {
  width: 100%;
  height: 138px;
  object-fit: contain;
  padding: 12px;
}

.alr-lead-popup__product-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.alr-lead-popup__product-copy span,
.alr-lead-popup__product-copy strong,
.alr-lead-popup__product-copy b {
  display: block;
}

.alr-lead-popup__product-copy span {
  color: var(--alr-gold-light);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alr-lead-popup__product-copy strong {
  margin-top: 3px;
  color: var(--alr-white);
  font-size: 16px;
  font-weight: 950;
}

.alr-lead-popup__product-copy b {
  margin-top: 4px;
  color: var(--alr-gold-light);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.alr-lead-popup__content {
  align-self: center;
  padding: 42px 44px;
}

.alr-lead-popup__content h2 {
  margin: 9px 0 12px;
  font-size: 34px;
  line-height: 1.05;
}

.alr-lead-popup__content > p {
  color: var(--alr-muted);
  font-size: 15px;
}

.alr-lead-popup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 14px;
}

.alr-lead-popup__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--alr-cream);
  color: var(--alr-green);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.alr-lead-popup__note {
  margin: 10px 0 0 !important;
  color: var(--alr-green) !important;
  font-size: 12px !important;
  font-weight: 750;
}

.alr-lead-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--alr-green);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}

.alr-lead-popup__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 20px;
}

.alr-lead-popup__fields input {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid var(--alr-line);
  border-radius: var(--alr-radius);
}

.alr-lead-popup__fields button {
  min-height: 50px;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--alr-radius);
  background: var(--alr-green);
  color: var(--alr-white);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.alr-lead-popup__consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-top: 12px;
  color: var(--alr-muted);
  font-size: 11px;
  line-height: 1.35;
}

.alr-lead-popup__consent input {
  margin-top: 2px;
}

.alr-lead-popup__consent a {
  color: var(--alr-green);
  text-decoration: underline;
}

.alr-lead-popup__honeypot {
  position: absolute;
  left: -10000px;
}

.alr-lead-popup__error {
  margin: 9px 0 0 !important;
  color: var(--alr-danger) !important;
  font-size: 12px !important;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .alr-primary-nav {
    display: none;
  }

  .alr-header-main {
    grid-template-columns: 1fr auto;
  }

  .woocommerce-checkout .alr-header-main,
  .woocommerce-cart .alr-header-main {
    grid-template-columns: auto 1fr auto;
  }

  .alr-menu-toggle {
    display: flex;
  }

  .alr-category-nav {
    display: none;
  }

  .alr-story-grid,
  .alr-landing-hero__grid,
  .alr-landing-detail,
  .alr-seo-landing-hero__grid,
  .alr-seo-landing-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-featured-products,
  .alr-featured-products--compact,
  .alr-category-grid,
  .alr-landing-benefits,
  .alr-awards-grid,
  .alr-company-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alr-company-intro,
  .alr-company-origin,
  .alr-faq-layout,
  .alr-legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .alr-faq-aside,
  .alr-legal-aside {
    position: static;
  }

  .alr-faq-aside {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
  }

  .alr-faq-aside img,
  .alr-faq-aside p {
    margin-bottom: 0;
  }

  .alr-shop-filters form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alr-purchase-shortcuts__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home,
  body.page-template-page-landing-pack {
    padding-bottom: 82px;
  }

  .alr-wrap {
    width: min(100% - 28px, var(--alr-wrap));
  }

  .alr-announcement {
    font-size: 11.5px;
  }

  .alr-announcement__track {
    gap: 40px;
    padding-right: 40px;
    animation-duration: 27s;
  }

  .alr-announcement__track span::before {
    margin-right: 40px;
  }

  .alr-header-main {
    min-height: 64px;
    gap: 12px;
  }

  .woocommerce-checkout .alr-header-main,
  .woocommerce-cart .alr-header-main {
    grid-template-columns: 1fr auto;
  }

  .alr-focused-header__trust {
    display: none;
  }

  .alr-focused-header__cart {
    min-height: 40px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .alr-brand {
    gap: 6px;
  }

  .alr-brand__silhouette {
    width: 22px;
    height: 40px;
  }

  .alr-brand__wordmark > img {
    width: 130px;
  }

  .alr-brand small,
  .alr-header-phone,
  .alr-cart-link span {
    display: none;
  }

  .alr-cart-link {
    width: 44px;
    justify-content: center;
    padding: 6px;
  }

  .alr-home-hero {
    min-height: 680px;
    padding: 34px 0 38px;
    background:
      linear-gradient(90deg, rgba(24, 34, 17, 0.9), rgba(24, 34, 17, 0.48)),
      url("../img/olivar-sierra-subbetica-hero.webp") 62% center / cover no-repeat;
  }

  .alr-landing-hero {
    padding: 34px 0 42px;
  }

  .alr-landing-hero__grid {
    gap: 28px;
  }

  .alr-landing-hero h1 {
    font-size: 41px;
  }

  .alr-landing-hero__lead {
    font-size: 17px;
  }

  .alr-landing-hero__media {
    min-height: auto;
    aspect-ratio: 1 / 0.88;
    padding: 22px;
  }

  .alr-landing-detail h2 {
    font-size: 33px;
  }

  .alr-legal-hero {
    padding: 48px 0 34px;
  }

  .alr-legal-hero h1 {
    font-size: 40px;
  }

  .alr-legal-hero p,
  .alr-legal-content p {
    font-size: 16px;
  }

  .alr-legal-content h2 {
    font-size: 24px;
  }

  .alr-home-hero h1 {
    font-size: 44px;
  }

  .alr-home-hero__lead {
    font-size: 17px;
  }

  .alr-home-offer {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .alr-home-offer__image {
    width: 64px;
    height: 64px;
  }

  .alr-home-offer p {
    max-width: none;
    grid-column: 1 / -1;
    font-size: 13px;
  }

  .alr-home-offer strong {
    font-size: 34px;
  }

  .alr-home-offer__price del {
    font-size: 14px;
  }

  .alr-home-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .alr-home-actions .alr-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 11px 10px;
    font-size: 14px;
    white-space: normal;
  }

  .alr-home-benefits {
    gap: 7px 15px;
    font-size: 13px;
  }

  .alr-trust-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alr-trust-band__grid > div {
    min-height: 78px;
    padding: 14px;
    border-bottom: 1px solid var(--alr-line);
  }

  .alr-trust-band__grid > div:nth-child(2) {
    border-right: 0;
  }

  .alr-section {
    padding: 52px 0;
  }

  .alr-section h2,
  .alr-shop-hero h1,
  .alr-empty-state h1 {
    font-size: 33px;
  }

  .alr-section-head > p {
    font-size: 16px;
  }

	  .alr-path-grid,
	  .alr-picual-grid,
	  .alr-featured-products,
  .alr-category-grid,
  .alr-faq-grid,
  .alr-landing-benefits,
  .alr-awards-grid,
  .alr-company-values__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-company-hero {
    min-height: 520px;
    padding: 52px 0;
    background:
      linear-gradient(90deg, rgba(24, 34, 17, 0.9), rgba(24, 34, 17, 0.42)),
      url("../img/olivar-sierra-subbetica-hero.webp") 62% center / cover no-repeat;
  }

  .alr-company-hero h1 {
    font-size: 38px;
  }

  .alr-seo-landing-hero {
    padding: 44px 0;
  }

  .alr-seo-landing-hero h1 {
    font-size: 40px;
  }

  .alr-seo-landing-hero p {
    font-size: 17px;
  }

  .alr-seo-landing-hero__media {
    min-height: auto;
    aspect-ratio: 1 / 0.84;
    padding: 18px;
  }

  .alr-seo-landing-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-seo-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-faq-hero,
  .alr-cart-hero {
    padding: 46px 0 40px;
  }

  .alr-faq-hero h1,
  .alr-cart-hero h1 {
    font-size: 38px;
  }

  .alr-faq-aside {
    display: block;
  }

  .alr-faq-aside img {
    width: 42px;
    height: 68px;
  }

  .alr-faq-intro h2,
  .alr-faq-divider h2 {
    font-size: 30px;
  }

  .alr-faq-related {
    padding-right: 0;
  }

  .alr-shop-more__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .alr-shop-more h2 {
    font-size: 22px;
  }

  .alr-shop-more__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alr-shop-more__links a {
    min-height: 46px;
    font-size: 12px;
  }

  .alr-shop-filters form {
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-shop-filters:not([open]) form {
    display: none;
  }

  .alr-shop-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .alr-shop-categories::-webkit-scrollbar {
    display: none;
  }

  .alr-shop-categories a {
    min-width: 0;
    min-height: 44px;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .alr-purchase-shortcuts {
    margin-top: 8px;
    padding: 15px;
  }

  .alr-purchase-shortcuts__heading {
    display: block;
  }

  .alr-purchase-shortcuts__heading small {
    display: block;
    margin-top: 3px;
  }

  .alr-purchase-shortcuts__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .alr-purchase-shortcuts__options a {
    min-height: 78px;
    padding: 11px;
  }

  .alr-purchase-shortcuts__options strong {
    font-size: 15px;
  }

  .alr-shop-filters__actions {
    justify-content: space-between;
  }

  .alr-active-filters {
    margin-top: -6px;
    gap: 7px;
  }

  .alr-active-filters > span {
    flex-basis: 100%;
  }

  .alr-active-filters a {
    min-height: 34px;
    font-size: 12px;
  }

  .alr-shop-empty {
    padding: 22px 16px;
  }

  .alr-shop-empty h2 {
    font-size: 28px;
  }

  .alr-shop-empty__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-cart-page__steps span {
    display: block;
    text-align: center;
  }

  .alr-cart-page__steps span:nth-child(2),
  .alr-cart-page__steps span:last-child {
    justify-content: initial;
  }

  .alr-cart-page__steps b {
    margin: 0 auto 5px;
  }

  .alr-cart-reassurance {
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-cart-reassurance > div {
    border-right: 0;
    border-bottom: 1px solid var(--alr-line);
  }

  .alr-cart-reassurance > div:last-child {
    border-bottom: 0;
  }

  .alr-checkout-page {
    padding: 28px 0 52px;
  }

  .alr-checkout-steps {
    margin-bottom: 28px;
  }

  .alr-checkout-steps span {
    display: block;
    text-align: center;
  }

  .alr-checkout-steps span:nth-child(2),
  .alr-checkout-steps span:last-child {
    justify-content: initial;
  }

  .alr-checkout-steps span::after {
    top: 15px;
    right: -35%;
    left: 65%;
  }

  .alr-checkout-steps b {
    margin: 0 auto 5px;
  }

  .alr-checkout-steps em {
    display: block;
    font-style: normal;
  }

  .alr-checkout-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .alr-checkout-heading .alr-eyebrow {
    justify-content: flex-start;
  }

  .alr-checkout-heading h1 {
    font-size: 37px;
  }

  .alr-checkout-heading p {
    font-size: 15px;
  }

  .alr-checkout-support {
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-checkout-mobile-summary {
    position: sticky;
    top: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin: -8px 0 18px;
    padding: 12px 14px;
    border: 1px solid var(--alr-line);
    border-radius: var(--alr-radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 26px rgba(40, 53, 31, 0.12);
    backdrop-filter: blur(8px);
  }

  .alr-checkout-mobile-summary span,
  .alr-checkout-mobile-summary strong,
  .alr-checkout-mobile-summary small {
    display: block;
  }

  .alr-checkout-mobile-summary span {
    color: var(--alr-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .alr-checkout-mobile-summary strong {
    margin-top: 2px;
    color: var(--alr-green);
    font-size: 22px;
    line-height: 1;
  }

  .alr-checkout-mobile-summary small {
    margin-top: 3px;
    color: var(--alr-muted);
    font-size: 12px;
    font-weight: 700;
  }

  .alr-checkout-mobile-summary a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 11px;
    border-radius: var(--alr-radius);
    background: var(--alr-green);
    color: var(--alr-white);
    font-size: 12px;
    font-weight: 850;
    text-align: center;
  }

  .alr-cookie__banner {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
    border-radius: 12px;
  }

  body.home .alr-cookie__banner,
  body.page-template-page-landing-pack .alr-cookie__banner,
  body.single-product .alr-cookie__banner {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .alr-cookie__seal {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 12px;
  }

  .alr-cookie h2 {
    font-size: 19px;
  }

  .alr-cookie p {
    font-size: 12px;
  }

  .alr-cookie__actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .alr-cookie__button {
    min-height: 38px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .alr-cookie__panel {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
    padding: 24px 16px 18px;
    border-radius: 14px;
  }

  .alr-cookie-option {
    gap: 12px;
    padding: 13px;
  }

  .alr-cookie__panel-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-checkout-footer .alr-wrap {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .alr-lead-popup__dialog {
    max-height: calc(100svh - 28px);
    grid-template-columns: minmax(0, 1fr);
    overflow-y: auto;
  }

  .alr-lead-popup__visual {
    grid-template-columns: minmax(0, 1fr) 118px;
    grid-template-rows: auto auto;
    gap: 12px;
    align-items: stretch;
    min-height: 0;
    padding: 16px;
  }

  .alr-lead-popup__visual::after {
    right: -86px;
    bottom: -118px;
  }

  .alr-lead-popup__offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .alr-lead-popup__offer span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .alr-lead-popup__offer strong {
    margin-top: 10px;
    font-size: 56px;
  }

  .alr-lead-popup__offer small {
    margin-top: 3px;
    font-size: 13px;
  }

  .alr-lead-popup__product-image {
    min-height: 118px;
    border-radius: 12px;
  }

  .alr-lead-popup__product-image img {
    height: 118px;
    padding: 8px;
  }

  .alr-lead-popup__product-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 10px;
    align-items: end;
    padding: 10px 12px;
    border: 1px solid rgba(239, 189, 88, 0.25);
    border-radius: 12px;
    background: rgba(20, 27, 16, 0.18);
    font-size: 12px;
  }

  .alr-lead-popup__product-copy span,
  .alr-lead-popup__product-copy strong {
    grid-column: 1;
  }

  .alr-lead-popup__product-copy span {
    font-size: 10px;
  }

  .alr-lead-popup__product-copy strong {
    font-size: 14px;
  }

  .alr-lead-popup__product-copy b {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 22px;
    white-space: nowrap;
  }

  .alr-lead-popup__content {
    padding: 24px 20px 24px;
  }

  .alr-lead-popup__content h2 {
    font-size: 30px;
  }

  .alr-lead-popup__fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-lead-popup__close {
    color: var(--alr-white);
  }

  .alr-company-intro h2,
  .alr-company-origin h2 {
    font-size: 32px;
  }

  .alr-path {
    min-height: 220px;
  }

  .alr-category-card {
    min-height: 136px;
  }

  .alr-final-cta {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
  }

  .alr-final-cta__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-home-sticky {
    display: grid;
  }

  .alr-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .alr-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .alr-footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 640px) {
  .alr-lead-popup {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: max(10px, env(safe-area-inset-top)) 10px max(12px, env(safe-area-inset-bottom));
  }

  .alr-lead-popup__dialog {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: 100%;
    min-height: 0;
    max-height: calc(100svh - 40px);
    max-height: calc(100dvh - max(22px, env(safe-area-inset-top)) - max(18px, env(safe-area-inset-bottom)));
    margin: 0 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border-radius: 16px;
    transform: translateY(10px);
  }

  .alr-lead-popup.is-open .alr-lead-popup__dialog {
    transform: none;
  }

  .alr-lead-popup__close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    z-index: 10040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(223, 216, 199, 0.92);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--alr-green);
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 10px 28px rgba(20, 27, 16, 0.22);
    pointer-events: auto;
  }

  .alr-lead-popup__visual {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 10px;
    padding: 14px 58px 14px 14px;
  }

  .alr-lead-popup__offer strong {
    font-size: 46px;
  }

  .alr-lead-popup__offer small {
    font-size: 12px;
  }

  .alr-lead-popup__product-image {
    min-height: 96px;
  }

  .alr-lead-popup__product-image img {
    height: 96px;
    padding: 7px;
  }

  .alr-lead-popup__product-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
    padding: 9px 10px;
  }

  .alr-lead-popup__product-copy b {
    grid-column: 1;
    grid-row: auto;
    font-size: 21px;
  }

  .alr-lead-popup__content {
    padding: 18px 16px 20px;
  }

  .alr-lead-popup__content h2 {
    margin-top: 7px;
    font-size: 25px;
    line-height: 1.08;
  }

  .alr-lead-popup__content > p {
    font-size: 14px;
  }

  .alr-lead-popup__chips {
    gap: 6px;
    margin: 13px 0 12px;
  }

  .alr-lead-popup__chips span {
    min-height: 0;
    padding: 6px 8px;
    font-size: 11px;
  }

  .alr-lead-popup__fields {
    margin-top: 16px;
  }

  .alr-lead-popup__fields input,
  .alr-lead-popup__fields button {
    min-height: 46px;
  }

  .alr-lead-popup__consent {
    font-size: 10.5px;
  }
}

@media (max-width: 390px) {
  .alr-lead-popup__visual {
    grid-template-columns: minmax(0, 1fr) 84px;
    padding-right: 54px;
  }

  .alr-lead-popup__offer strong {
    font-size: 40px;
  }

  .alr-lead-popup__product-image {
    min-height: 84px;
  }

  .alr-lead-popup__product-image img {
    height: 84px;
  }

  .alr-home-sticky {
    grid-template-columns: minmax(0, 1fr) 78px;
  }

  .alr-home-sticky a {
    font-size: 13px;
  }

  .alr-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .alr-footer-grid > div:first-child {
    grid-column: auto;
  }
}

.alr-google-reviews-lazy {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(42, 53, 32, 0.12);
  border-radius: 8px;
  background: rgba(250, 247, 241, 0.72);
  color: var(--alr-green);
  font-size: 14px;
  font-weight: 750;
}

.alr-google-reviews-lazy.is-loading span::after {
  content: "...";
  display: inline-block;
  width: 1.2em;
  text-align: left;
  animation: alr-loading-dots 1.2s ease-in-out infinite;
}

@keyframes alr-loading-dots {
  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alr-announcement__track {
    animation: none;
    transform: none;
  }

  .alr-lead-popup,
  .alr-lead-popup__dialog {
    transition: none;
  }
}
