:root {
  --paper: #f8f7f1;
  --paper-deep: #eeeee5;
  --paper-warm: #e7e4d8;
  --ink: #1c251f;
  --muted: #697269;
  --line: #d9ded5;
  --forest: #173d2d;
  --forest-deep: #102d21;
  --forest-soft: #285943;
  --lime: #d5eb72;
  --lime-soft: #edf4c4;
  --orange: #d17a4f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 61, 45, 0.1);
  --display: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

button,
[role="button"] {
  cursor: pointer;
}

::selection {
  background: var(--lime);
  color: var(--forest-deep);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 134px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

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

.announcement {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement p,
.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement a {
  color: var(--lime);
  font-weight: 700;
}

.announcement a span {
  font-size: 1rem;
  line-height: 0.7;
  transition: transform 0.2s ease;
}

.announcement a:hover span {
  transform: translateX(3px);
}

.announcement-dot,
.delivery-dot,
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(213, 235, 114, 0.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 247, 241, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(248, 247, 241, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 26px rgba(23, 61, 45, 0.07);
  backdrop-filter: blur(14px);
}

.header-main {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
}

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

.brand-logo-wrap {
  width: 174px;
  height: 48px;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #416f70;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.search-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 5px 4px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-bar:focus-within {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 4px rgba(40, 89, 67, 0.08);
}

.search-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--muted);
}

.search-bar input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
}

.search-bar input::placeholder {
  color: #899189;
}

.search-bar button {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--forest);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  transition: background 0.2s ease;
}

.search-bar button:hover {
  background: var(--forest-soft);
}

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

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--forest);
  font-size: 0.67rem;
  text-align: left;
}

.header-action svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.header-action strong {
  font-size: 0.73rem;
  font-weight: 800;
}

.header-action:hover {
  color: var(--forest-soft);
}

.icon-action {
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.cart-icon-wrap {
  position: relative;
  display: inline-flex;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.59rem;
  font-weight: 800;
}

.mobile-menu {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  color: var(--forest);
}

.mobile-menu span {
  width: 19px;
  height: 1.5px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

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

.nav-layout {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.department-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  background: transparent;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
}

.department-toggle > svg:first-child {
  width: 18px;
  height: 18px;
}

.department-toggle .chevron {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.department-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.main-nav a {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--forest);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.delivery-note {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.delivery-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(209, 122, 79, 0.13);
}

.department-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 28px rgba(23, 61, 45, 0.1);
}

.department-panel[hidden] {
  display: none;
}

.department-grid {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.panel-kicker,
.eyebrow {
  margin-bottom: 12px;
  color: var(--forest-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.department-grid > div:first-child {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(150px, 240px));
  gap: 8px 36px;
}

.department-grid .panel-kicker {
  grid-column: 1 / -1;
}

.department-grid button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: left;
}

.department-grid button span {
  color: var(--orange);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.department-grid button:hover span {
  opacity: 1;
  transform: translateX(0);
}

.panel-highlight {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
}

.panel-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 45, 33, 0.78), rgba(16, 45, 33, 0.05));
}

.panel-highlight img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.panel-highlight div {
  position: relative;
  z-index: 1;
  max-width: 180px;
  display: grid;
  gap: 4px;
  padding: 24px;
}

.panel-highlight span {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-highlight strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.05;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(670px, calc(100vh - 130px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 51%;
  height: 100%;
  background: var(--forest);
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-sun {
  position: absolute;
  z-index: -1;
  right: 42%;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(209, 122, 79, 0.2);
  border-radius: 50%;
  opacity: 0.7;
}

.hero-sun::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(209, 122, 79, 0.16);
  border-radius: inherit;
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-top: 34px;
  padding-bottom: 52px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 510px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow > span:first-child {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--forest-soft);
}

.eyebrow-light {
  color: var(--lime);
}

.hero h1 {
  max-width: 8.5ch;
  margin-bottom: 21px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero-lead {
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 29px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button span {
  font-size: 1.1rem;
  line-height: 0.7;
  transition: transform 0.2s ease;
}

.button:hover span {
  transform: translateX(3px);
}

.button-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 9px 18px rgba(23, 61, 45, 0.14);
}

.button-primary:hover {
  background: var(--forest-soft);
  box-shadow: 0 11px 22px rgba(23, 61, 45, 0.2);
  transform: translateY(-1px);
}

.button-link {
  min-height: 40px;
  padding: 0;
  color: var(--forest);
}

.button-link:hover {
  color: var(--orange);
}

.round-arrow {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem !important;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 66px;
}

.avatar-stack {
  display: flex;
  padding-left: 6px;
}

.avatar-stack span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--forest-soft);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) {
  background: var(--orange);
}

.avatar-stack span:nth-child(3) {
  background: #b1bf78;
  color: var(--forest-deep);
}

.hero-proof div:last-child {
  display: grid;
  line-height: 1.25;
}

.hero-proof strong {
  color: var(--forest);
  font-size: 0.64rem;
  font-weight: 800;
}

.hero-proof small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.hero-visual {
  position: relative;
  min-height: 490px;
}

.hero-image-wrap {
  position: absolute;
  top: 6px;
  right: 2px;
  width: min(100%, 570px);
  height: 445px;
  overflow: hidden;
  border-radius: 4px 4px 4px 84px;
  background: var(--forest-deep);
  box-shadow: 0 24px 48px rgba(10, 31, 22, 0.24);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.035);
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(16, 45, 33, 0.78) 100%);
}

.hero-image-label {
  position: absolute;
  right: 25px;
  bottom: 23px;
  display: grid;
  gap: 4px;
  color: #fff;
  font-size: 0.59rem;
  font-weight: 600;
}

.hero-image-label .status-dot {
  position: absolute;
  top: 4px;
  left: -15px;
  width: 5px;
  height: 5px;
}

.hero-image-label strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-float-card {
  position: absolute;
  bottom: 2px;
  left: -22px;
  width: 236px;
  min-height: 104px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(28, 37, 31, 0.07);
  border-radius: 11px;
  box-shadow: var(--shadow);
}

.hero-float-card img {
  width: 80px;
  height: 83px;
  border-radius: 7px;
  object-fit: cover;
}

.hero-float-card div {
  display: grid;
  gap: 3px;
}

.hero-float-card span {
  color: var(--muted);
  font-size: 0.58rem;
}

.hero-float-card strong {
  color: var(--forest);
  font-size: 0.74rem;
  line-height: 1.25;
}

.hero-float-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: var(--orange);
  font-size: 0.59rem;
  font-weight: 800;
}

.hero-float-card a span {
  color: inherit;
  font-size: 0.9rem;
}

.hero-seal {
  position: absolute;
  top: 0;
  right: -7px;
  width: 87px;
  height: 87px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(213, 235, 114, 0.55);
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-deep);
  transform: rotate(9deg);
  box-shadow: 0 10px 22px rgba(14, 40, 28, 0.16);
}

.hero-seal::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(23, 61, 45, 0.35);
  border-radius: 50%;
}

.hero-seal strong {
  font-size: 1.08rem;
  line-height: 1;
}

.hero-seal span {
  margin-top: 3px;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.benefits {
  position: relative;
  z-index: 2;
  background: var(--forest);
  color: #fff;
}

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

.benefit-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-item:first-child {
  padding-left: 0;
}

.benefit-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(213, 235, 114, 0.34);
  border-radius: 50%;
  color: var(--lime);
}

.benefit-icon svg {
  width: 19px;
  height: 19px;
}

.benefit-item div {
  display: grid;
  gap: 3px;
}

.benefit-item strong {
  font-size: 0.65rem;
  font-weight: 800;
}

.benefit-item div span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.57rem;
  line-height: 1.35;
}

.section {
  padding: 106px 0;
}

.category-section {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 38px;
}

.heading-with-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

.section-heading h2,
.feature-copy h2,
.quote-copy h2 {
  max-width: 12ch;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-intro {
  max-width: 33ch;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.text-link span {
  color: var(--orange);
  font-size: 1rem;
  line-height: 0.7;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.category-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  text-align: left;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-large {
  grid-row: 1 / 3;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 45, 33, 0.03) 17%, rgba(16, 45, 33, 0.82) 100%);
}

.category-content {
  position: absolute;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: grid;
  gap: 3px;
}

.category-content small {
  color: var(--lime);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.category-content strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.category-large .category-content strong {
  font-size: 2.15rem;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.61rem;
  font-weight: 800;
}

.category-link b {
  color: var(--lime);
  font-size: 1rem;
  font-weight: 400;
  line-height: 0.7;
  transition: transform 0.2s ease;
}

.category-card:hover .category-link b {
  transform: translateX(3px);
}

.catalog-section {
  padding-top: 0;
  background: var(--paper);
}

.catalog-toolbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.filter-tab {
  position: relative;
  min-height: 44px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
}

.filter-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--forest);
}

.filter-tab.active::after {
  transform: scaleX(1);
}

.catalog-note {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
}

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

.empty-products {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}

.empty-products strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.empty-products span {
  max-width: 34ch;
  font-size: 0.68rem;
}

.empty-products a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 800;
}

.empty-products b {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 400;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  border-color: #bdc9bc;
  box-shadow: 0 15px 32px rgba(23, 61, 45, 0.11);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.save-product {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.save-product svg {
  width: 16px;
  height: 16px;
}

.save-product:hover,
.save-product.saved {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 15px 15px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--forest-soft);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #b47631;
  font-size: 0.57rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-rating span {
  color: var(--muted);
  font-weight: 600;
}

.product-body h3 {
  min-height: 2.7em;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.product-desc {
  min-height: 2.6em;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 7px;
  margin-top: 5px;
}

.price-wrap {
  display: grid;
  gap: 1px;
}

.price-wrap small {
  color: var(--muted);
  font-size: 0.55rem;
}

.price {
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.price-unit {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 600;
}

.installment {
  max-width: 75px;
  color: var(--forest-soft);
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}

.add-product {
  min-height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--forest);
  color: #fff;
  font-size: 0.61rem;
  font-weight: 800;
  transition: background 0.2s ease;
}

.add-product:hover {
  background: var(--forest-soft);
}

.catalog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.62rem;
}

.catalog-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-weight: 800;
}

.catalog-bottom a span {
  color: var(--orange);
  font-size: 1rem;
  line-height: 0.7;
}

.feature-section {
  padding: 84px 0;
  background: var(--paper-warm);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 8vw, 108px);
}

.feature-image {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border-radius: 12px 80px 12px 12px;
  background: var(--forest);
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(16, 45, 33, 0.75) 100%);
}

.feature-image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.feature-image:hover > img {
  transform: scale(1.035);
}

.feature-tag {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #fff;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-tag b {
  color: var(--lime);
  font-weight: 800;
}

.feature-caption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 5px;
  color: #fff;
}

.feature-caption span {
  color: var(--lime);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-caption strong {
  max-width: 14ch;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.95;
}

.feature-copy {
  max-width: 435px;
}

.feature-copy h2 {
  max-width: 10ch;
  margin-bottom: 20px;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 31px 0 32px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-list li > span {
  padding-top: 2px;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 800;
}

.feature-list div {
  display: grid;
  gap: 3px;
}

.feature-list strong {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-list small {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.inspiration-section {
  padding-top: 100px;
  background: var(--paper);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 14px;
}

.inspiration-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--forest);
  color: #fff;
  cursor: zoom-in;
}

.inspiration-card:nth-child(2) {
  margin-top: 34px;
}

.inspiration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.inspiration-card:hover img {
  transform: scale(1.06);
}

.inspiration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16, 45, 33, 0.8) 100%);
}

.inspiration-card figcaption {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 17px;
  left: 17px;
  display: grid;
  gap: 2px;
}

.inspiration-card figcaption span {
  color: var(--lime);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inspiration-card figcaption strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}

.quote-section {
  padding: 93px 0;
  background: var(--forest);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(40px, 9vw, 130px);
}

.quote-copy {
  max-width: 400px;
}

.quote-copy h2 {
  max-width: 9ch;
  margin-bottom: 19px;
  color: #fff;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.8;
}

.quote-details {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 36px;
}

.quote-details span {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
}

.quote-details strong {
  color: var(--lime);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form {
  padding: 27px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 23px 45px rgba(7, 25, 17, 0.18);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.form-heading > span {
  color: var(--orange);
  font-size: 0.63rem;
  font-weight: 800;
}

.form-heading div {
  display: grid;
  gap: 2px;
}

.form-heading strong {
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-heading small {
  color: var(--muted);
  font-size: 0.59rem;
}

.quote-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.footer-newsletter input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form textarea {
  min-height: 76px;
  padding-top: 11px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder,
.footer-newsletter input::placeholder {
  color: #9aa49a;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.footer-newsletter input:focus {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 3px rgba(40, 89, 67, 0.1);
}

.button-full {
  width: 100%;
  margin-top: 3px;
}

.form-success {
  margin-top: 10px;
  color: var(--forest-soft);
  font-size: 0.62rem;
  font-weight: 700;
}

.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.63);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.85fr 1.1fr;
  gap: 50px;
  padding-top: 68px;
  padding-bottom: 61px;
}

.brand-footer {
  color: #fff;
}

.brand-footer .brand-logo-wrap {
  width: 190px;
  height: 53px;
}

.footer-brand > p {
  max-width: 28ch;
  margin: 19px 0 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.67rem;
  line-height: 1.7;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 800;
}

.footer-whatsapp span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.footer-whatsapp:hover span {
  transform: translateX(3px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.footer-column a,
.footer-column span,
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.63rem;
  line-height: 1.4;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-newsletter p {
  max-width: 26ch;
  line-height: 1.6;
}

.footer-newsletter form {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.footer-newsletter input {
  min-height: 39px;
  padding-right: 38px;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-newsletter input:focus {
  border-color: var(--lime);
  box-shadow: none;
}

.footer-newsletter button {
  position: absolute;
  right: 3px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: 1rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 53px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.57rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px 0 12px;
  border: 3px solid var(--paper);
  border-radius: 30px;
  background: #2ca95b;
  color: #fff;
  box-shadow: 0 9px 24px rgba(23, 61, 45, 0.25);
  font-size: 0.65rem;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
}

.floating-whatsapp:hover {
  background: #218e4c;
  transform: translateY(-2px);
}

.drawer-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(13, 29, 21, 0.45);
  opacity: 1;
  transition: opacity 0.25s ease;
}

.drawer-overlay[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  z-index: 75;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -18px 0 45px rgba(13, 29, 21, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 27px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 8px;
}

.drawer-header h2 {
  color: var(--forest);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.drawer-header h2 span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
}

.close-button,
.lightbox-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  font-size: 1.35rem;
  line-height: 1;
}

.close-button:hover,
.lightbox-close:hover {
  border-color: var(--forest);
  background: var(--lime-soft);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 27px;
}

.drawer-empty {
  min-height: 270px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 11px;
  color: var(--muted);
  text-align: center;
}

.drawer-empty svg {
  width: 42px;
  height: 42px;
  color: var(--forest-soft);
}

.drawer-empty strong {
  color: var(--forest);
  font-size: 0.8rem;
}

.drawer-empty p {
  max-width: 25ch;
  font-size: 0.66rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 7px;
}

.cart-item-info {
  display: grid;
  gap: 4px;
}

.cart-item-info strong {
  color: var(--forest);
  font-size: 0.68rem;
  line-height: 1.3;
}

.cart-item-info span {
  color: var(--muted);
  font-size: 0.58rem;
}

.cart-item-controls {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.cart-item-controls strong {
  color: var(--forest);
  font-size: 0.69rem;
}

.remove-item {
  padding: 0;
  background: transparent;
  color: var(--orange);
  font-size: 0.56rem;
  font-weight: 800;
}

.drawer-footer {
  display: grid;
  gap: 11px;
  padding: 19px 27px 26px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.drawer-footer[hidden] {
  display: none;
}

.drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.65rem;
}

.drawer-total strong {
  color: var(--forest);
  font-size: 0.78rem;
}

.drawer-footer small {
  color: var(--muted);
  font-size: 0.55rem;
  text-align: center;
}

.lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px 70px;
  background: rgba(10, 27, 19, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1000px, 100%);
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 23px;
  right: 25px;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lightbox-prev {
  left: 23px;
}

.lightbox-next {
  right: 23px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 84px;
  max-width: min(340px, calc(100% - 44px));
  padding: 12px 16px;
  border: 1px solid rgba(213, 235, 114, 0.4);
  border-radius: 7px;
  background: var(--forest-deep);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card.reveal-on-scroll:nth-child(2),
.product-card.reveal-on-scroll:nth-child(2),
.inspiration-card.reveal-on-scroll:nth-child(2) {
  transition-delay: 0.06s;
}

.category-card.reveal-on-scroll:nth-child(3),
.product-card.reveal-on-scroll:nth-child(3),
.inspiration-card.reveal-on-scroll:nth-child(3) {
  transition-delay: 0.12s;
}

.category-card.reveal-on-scroll:nth-child(4),
.product-card.reveal-on-scroll:nth-child(4) {
  transition-delay: 0.18s;
}

@media (max-width: 1080px) {
  .header-main {
    gap: 25px;
  }

  .header-actions {
    gap: 13px;
  }

  .account-action span,
  .icon-action > span:not(.cart-icon-wrap) {
    display: none;
  }

  .account-action {
    flex-direction: column;
    gap: 2px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.7rem);
  }

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

}

@media (max-width: 820px) {
  .container {
    width: min(var(--max), calc(100% - 36px));
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement a {
    display: none;
  }

  .header-main {
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
  }

  .mobile-menu {
    display: flex;
  }

  .brand-logo-wrap {
    width: 150px;
    height: 42px;
  }

  .search-bar {
    min-height: 42px;
    padding-left: 11px;
  }

  .search-bar button {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .header-actions .account-action,
  .header-actions .icon-action:not(.cart-action) {
    display: none;
  }

  .nav-row {
    border-top: 0;
  }

  .nav-layout {
    min-height: 0;
  }

  .department-toggle {
    min-height: 40px;
    padding-bottom: 3px;
  }

  .delivery-note {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .main-nav a.active {
    min-height: 40px;
    padding: 0 11px;
    border-radius: 5px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--lime-soft);
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    top: 48%;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-sun {
    right: -90px;
    bottom: -160px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 73px;
    padding-bottom: 86px;
  }

  .hero-copy {
    max-width: 580px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-proof {
    margin-top: 39px;
  }

  .hero-visual {
    min-height: 430px;
    max-width: 610px;
    width: calc(100% - 25px);
    margin-left: auto;
  }

  .hero-image-wrap {
    right: 0;
    width: calc(100% - 2px);
    height: 378px;
  }

  .hero-float-card {
    left: -20px;
  }

  .hero-seal {
    right: -8px;
  }

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

  .benefit-item,
  .benefit-item:first-child,
  .benefit-item:last-child {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .benefit-item:nth-child(2n) {
    border-right: 0;
  }

  .benefit-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .heading-with-link {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .section-intro {
    max-width: 44ch;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 170px 170px;
  }

  .category-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .catalog-section {
    padding-top: 0;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 3px;
    border-bottom: 0;
  }

  .filter-tabs {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
  }

  .filter-tab {
    white-space: nowrap;
  }

  .catalog-note {
    padding-top: 8px;
  }

  .feature-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .feature-image {
    min-height: 420px;
  }

  .feature-copy {
    max-width: 560px;
  }

  .quote-copy {
    max-width: 550px;
  }

  .quote-copy h2 {
    max-width: 12ch;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 2 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .announcement {
    font-size: 0.62rem;
  }

  .announcement-inner {
    min-height: 31px;
  }

  .header-main {
    gap: 9px;
  }

  .brand {
    gap: 6px;
  }

  .brand-logo-wrap {
    width: 128px;
    height: 36px;
  }

  .search-icon {
    width: 16px;
    height: 16px;
  }

  .search-bar {
    min-height: 39px;
    gap: 7px;
    padding-left: 9px;
  }

  .search-bar input {
    font-size: 0.64rem;
  }

  .cart-action > span:not(.cart-icon-wrap) {
    display: none;
  }

  .nav-layout {
    width: calc(100% - 28px);
  }

  .department-toggle {
    font-size: 0.65rem;
  }

  .department-grid {
    display: block;
    min-height: 0;
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .department-grid > div:first-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .panel-highlight {
    display: none;
  }

  .hero-grid {
    gap: 30px;
    padding-top: 55px;
    padding-bottom: 61px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .hero-lead {
    font-size: 0.78rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
    margin-top: 24px;
  }

  .hero-actions .button-primary {
    width: 100%;
  }

  .button-link {
    justify-content: flex-start;
  }

  .hero-proof {
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 335px;
    width: calc(100% - 12px);
  }

  .hero-image-wrap {
    height: 286px;
    border-radius: 4px 4px 4px 53px;
  }

  .hero-image-label {
    right: 17px;
    bottom: 16px;
  }

  .hero-image-label strong {
    font-size: 1.08rem;
  }

  .hero-float-card {
    bottom: -4px;
    left: -11px;
    width: 197px;
    min-height: 84px;
    grid-template-columns: 59px 1fr;
    gap: 9px;
    padding: 7px;
  }

  .hero-float-card img {
    width: 59px;
    height: 69px;
  }

  .hero-float-card strong {
    font-size: 0.65rem;
  }

  .hero-float-card span,
  .hero-float-card a {
    font-size: 0.52rem;
  }

  .hero-seal {
    top: -11px;
    right: -7px;
    width: 70px;
    height: 70px;
  }

  .hero-seal strong {
    font-size: 0.85rem;
  }

  .hero-seal span {
    font-size: 0.43rem;
  }

  .benefit-item {
    min-height: 88px;
    gap: 9px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
  }

  .benefit-icon svg {
    width: 16px;
    height: 16px;
  }

  .benefit-item strong {
    font-size: 0.57rem;
  }

  .benefit-item div span {
    font-size: 0.5rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .feature-copy h2,
  .quote-copy h2 {
    font-size: 2.55rem;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 193px 155px 155px;
    gap: 9px;
  }

  .category-card {
    min-height: 155px;
  }

  .category-content {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .category-content strong,
  .category-large .category-content strong {
    font-size: 1.22rem;
  }

  .category-content small,
  .category-link {
    font-size: 0.48rem;
  }

  .catalog-section {
    padding-top: 0;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .product-media {
    aspect-ratio: 1 / 0.92;
  }

  .product-body {
    gap: 6px;
    padding: 12px 10px 10px;
  }

  .product-meta {
    font-size: 0.48rem;
  }

  .product-rating {
    display: none;
  }

  .product-body h3 {
    min-height: 3.1em;
    font-size: 0.67rem;
  }

  .product-desc {
    min-height: 3.5em;
    font-size: 0.55rem;
  }

  .price {
    font-size: 0.88rem;
  }

  .price-unit,
  .installment,
  .price-wrap small {
    font-size: 0.48rem;
  }

  .product-actions {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .add-product {
    min-height: 34px;
    font-size: 0.55rem;
  }

  .catalog-bottom {
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }

  .feature-section {
    padding: 62px 0;
  }

  .feature-image {
    min-height: 340px;
    border-radius: 9px 52px 9px 9px;
  }

  .feature-caption {
    right: 18px;
    bottom: 19px;
    left: 18px;
  }

  .feature-caption strong {
    font-size: 1.55rem;
  }

  .inspiration-section {
    padding-top: 68px;
  }

  .inspiration-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .inspiration-card {
    min-height: 205px;
  }

  .inspiration-card:first-child {
    grid-column: 1 / -1;
  }

  .inspiration-card:nth-child(2) {
    margin-top: 0;
  }

  .inspiration-card figcaption {
    right: 11px;
    bottom: 11px;
    left: 11px;
  }

  .inspiration-card figcaption strong {
    font-size: 1.05rem;
  }

  .quote-section {
    padding: 67px 0;
  }

  .quote-grid {
    gap: 32px;
  }

  .quote-details {
    gap: 15px;
    margin-top: 26px;
  }

  .quote-form {
    padding: 19px 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 33px 23px;
    padding-top: 54px;
    padding-bottom: 45px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 14px 0;
    line-height: 1.4;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding-right: 12px;
    font-size: 0.57rem;
  }

  .floating-whatsapp svg {
    width: 17px;
    height: 17px;
  }

  .drawer-header,
  .drawer-body,
  .drawer-footer {
    padding-right: 17px;
    padding-left: 17px;
  }

  .lightbox {
    padding: 45px 15px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 55px);
  }

  .lightbox-next {
    right: calc(50% - 55px);
  }

  .toast {
    right: 14px;
    bottom: 65px;
    max-width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

}
