:root {
  --green: #008c4c;
  --green-dark: #004637;
  --green-deep: #003528;
  --gold: #d4af37;
  --cream: #f8f7f1;
  --mint: #e9f7ef;
  --ink: #101820;
  --muted: #667085;
  --line: #dfe6e2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 59, 38, 0.1);
  --radius: 8px;
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f7f6;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-dark);
}

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

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

.utility-bar {
  color: #fff;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  font-size: 0.86rem;
  font-weight: 600;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
}

.utility-inner div {
  display: flex;
  gap: 22px;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.06);
}

.header-main {
  display: grid;
  grid-template-columns: 250px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 74px;
  height: 64px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.82rem;
  line-height: 1;
}

.brand small {
  color: var(--ink);
  font-size: 0.78rem;
}

.header-search {
  display: grid;
  grid-template-columns: 170px 1fr 58px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.header-search select,
.header-search input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.header-search select {
  border-right: 1px solid var(--line);
}

.header-search button {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 64px;
  border: 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #15c878 0%, var(--green) 48%, #005d3d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 14px 28px rgba(0, 140, 76, 0.28);
  font-size: 0;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.header-search button::before {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.header-search button::after {
  position: absolute;
  width: 11px;
  height: 3px;
  margin-top: 18px;
  margin-left: 18px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.header-search button:hover,
.header-search button:focus-visible {
  filter: saturate(1.08) brightness(1.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 18px 36px rgba(0, 140, 76, 0.34);
}

.header-support {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-support a {
  display: grid;
  gap: 2px;
  font-size: 0.86rem;
}

.header-support span {
  color: var(--muted);
}

.header-support strong {
  font-size: 0.94rem;
}

.cart-link {
  position: relative;
  text-align: center;
}

.cart-link b {
  position: absolute;
  right: -10px;
  top: -12px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #ffc400;
  font-size: 0.7rem;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--green-dark);
}

.nav-bar {
  background: linear-gradient(90deg, var(--green-deep), #00533e);
}

.nav-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 58px;
}

.category-trigger,
.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  padding: 11px 20px;
  font-weight: 800;
  cursor: pointer;
}

.category-trigger {
  justify-content: flex-start;
  color: #fff;
  background: var(--green);
}

.category-trigger span {
  width: 18px;
  height: 2px;
  background: #fff;
  box-shadow: 0 6px #fff, 0 -6px #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  height: 3px;
  content: "";
  transform: scaleX(0);
  background: #00d27a;
  transition: transform 180ms ease;
}

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

.quote-btn,
.btn-green {
  color: #fff;
  background: linear-gradient(135deg, #00aa62, #006f42);
  box-shadow: 0 12px 30px rgba(0, 140, 76, 0.18);
}

.btn-light {
  border: 1px solid #aebdb8;
  color: var(--ink);
  background: #fff;
}

.btn-gold {
  color: #1c230f;
  background: linear-gradient(135deg, #f5df8d, var(--gold));
}

.flash {
  position: fixed;
  left: 50%;
  top: 156px;
  z-index: 12;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 40px));
  padding: 14px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.flash-warning {
  background: #9a6a08;
}

.flash-error {
  background: #a23333;
}

.hero-zone {
  padding: 16px 0 18px;
  background: linear-gradient(180deg, #fff, #f3f8f5);
}

.hero-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
}

.side-categories {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.side-title {
  padding: 16px 18px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.side-categories a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  min-height: 43px;
  padding: 0 16px;
  border-bottom: 1px solid #edf1ef;
  font-size: 0.92rem;
}

.side-categories a:hover {
  color: var(--green);
  background: var(--mint);
}

.side-categories span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #e0f4e9;
  font-size: 0.72rem;
  font-weight: 900;
}

.category-icon-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: #e0f4e9;
}

.help-card {
  margin: 12px;
  border: 0;
  border-radius: var(--radius);
  background: #effaf4;
}

.help-card em {
  font-style: normal;
  font-weight: 800;
}

.help-card small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.hero-carousel {
  position: relative;
  min-height: 395px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 76% 22%, rgba(0, 140, 76, 0.12), transparent 32%),
    linear-gradient(135deg, #f7fffb, #eaf6f0);
  box-shadow: var(--shadow);
}

.hero-carousel::after {
  position: absolute;
  z-index: 2;
  right: 34px;
  top: 22px;
  width: 140px;
  height: 140px;
  content: "";
  background-image: radial-gradient(rgba(0, 140, 76, 0.2) 2px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
}

.hero-track {
  position: relative;
  display: flex;
  min-height: 395px;
  transform: translateX(calc(var(--slide-index, 0) * -100%));
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: 0.85fr 1fr;
  pointer-events: none;
  isolation: isolate;
}

.hero-slide.is-active {
  pointer-events: auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 44px;
}

.hero-copy p,
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #bfe9cc;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 680px;
  font-size: 3.65rem;
  line-height: 1.06;
}

.hero-copy span {
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: #344054;
  font-size: 1.04rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  min-height: 395px;
  object-fit: cover;
  object-position: 70% center;
  mix-blend-mode: multiply;
}

.deal-badge {
  position: absolute;
  z-index: 3;
  right: 9%;
  top: 48px;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #00a75d, #006b42);
  font-size: 1.15rem;
  line-height: 1.2;
  text-align: center;
}

.hero-dots {
  position: absolute;
  left: 44px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(0, 53, 40, 0.25);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--green);
}

.trust-row {
  padding: 0 0 24px;
  background: #f3f8f5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-grid div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 22px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #e0f4e9;
  font-weight: 900;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid small {
  color: var(--muted);
}

.product-band,
.blog-strip,
.form-section,
.about-grid {
  padding: 28px 0 74px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title-row h2 {
  position: relative;
  padding-left: 24px;
  font-size: 1.45rem;
}

.section-title-row h2::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--green);
  content: "";
}

.section-title-row a {
  padding: 8px 18px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 800;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card .badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  background: #f2f6f4;
}

.product-info {
  padding: 14px;
}

.product-info small {
  color: var(--green);
  font-weight: 800;
}

.product-info h3 {
  margin-bottom: 6px;
  font-family: Manrope, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.product-info p {
  min-height: 48px;
  margin: 0 0 10px;
  color: #344054;
  font-size: 0.84rem;
  line-height: 1.45;
}

.product-info strong {
  color: var(--green);
  font-size: 1.04rem;
}

.product-info del {
  margin-left: 8px;
  color: #98a2b3;
  font-size: 0.82rem;
}

.product-info a {
  display: block;
  margin-top: 12px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.consult-preview {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green), #876319);
}

.consult-preview-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.consult-preview h2 {
  color: #fff;
  font-size: 2.2rem;
}

.consult-preview p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

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

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

.blog-card,
.story-row article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card div,
.story-row article {
  padding: 22px;
}

.blog-card p {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card span,
.story-row p,
.about-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 53, 40, 0.92), rgba(0, 140, 76, 0.76)),
    url("../images/hero-wellness.jpg") center / cover no-repeat;
}

.page-hero h1,
.page-hero p:not(.eyebrow) {
  color: #fff;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.03rem;
  line-height: 1.7;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  padding-top: 30px;
  padding-bottom: 74px;
}

.filter-panel {
  position: sticky;
  top: 174px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.filter-panel h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.filter-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: #344054;
  font-weight: 700;
}

.filter-panel a:hover,
.filter-panel a.is-active {
  color: var(--green);
  background: var(--mint);
}

.shop-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 18px;
}

.shop-search input,
.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: 0;
  background: #fff;
}

.shop-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 140, 76, 0.15);
  border-radius: var(--radius);
  color: #344054;
  background: linear-gradient(135deg, #ffffff, #f3fbf7);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.04);
  font-size: 0.9rem;
}

.shop-summary strong {
  color: var(--green-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.empty-state {
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 14px;
  color: #344054;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.04);
  font-weight: 800;
}

.pagination a.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #12b76a, var(--green-dark));
}

.pagination a.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: 38px;
  align-items: start;
}

.form-copy,
.contact-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-copy h2,
.contact-panel h2,
.about-grid h2 {
  font-size: 2rem;
}

.form-copy li {
  margin: 10px 0;
  color: var(--muted);
}

.premium-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.premium-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 800;
}

.span-2 {
  grid-column: span 2;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a,
.contact-panel span {
  color: var(--green-dark);
  font-weight: 800;
}

.map-card {
  min-height: 180px;
  margin-top: 12px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(135deg, #bfe9cc, #f4df91);
  background-size: 32px 32px, 32px 32px, cover;
}

.map-card strong,
.map-card small {
  display: block;
}

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

.about-grid > div {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.story-row {
  padding: 64px 0;
  color: #fff;
  background: var(--green-deep);
}

.story-row article {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.story-row h3 {
  color: #fff;
}

.story-row p {
  color: rgba(255, 255, 255, 0.76);
}

.store-footer {
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  gap: 34px;
}

.footer-grid img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: Manrope, sans-serif;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
}

.copyright {
  width: min(var(--max), calc(100% - 48px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #15b96d;
  box-shadow: 0 18px 40px rgba(0, 140, 76, 0.32);
  font-size: 1.5rem;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 220px 1fr auto;
  }

  .header-support {
    display: none;
  }

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

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

  .hero-slide {
    grid-template-columns: 0.95fr 0.85fr;
  }

  .hero-copy {
    padding: 32px;
  }

  .hero-copy h1 {
    font-size: 2.72rem;
  }
}

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

  .side-categories {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(var(--max), calc(100% - 30px));
  }

  .utility-inner div,
  .header-search {
    display: none;
  }

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

  .brand img {
    width: 62px;
    height: 54px;
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .mobile-toggle {
    display: grid;
  }

  .nav-bar {
    display: none;
    position: fixed;
    inset: 116px 0 auto;
    padding: 14px 0;
    box-shadow: var(--shadow);
  }

  .nav-bar.is-open {
    display: block;
  }

  .nav-inner,
  .hero-layout,
  .shop-layout,
  .form-section {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    gap: 12px;
  }

  .category-trigger,
  .quote-btn,
  .nav-links {
    width: 100%;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 12px 0;
  }

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

  .side-categories {
    display: none;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-slide > img {
    min-height: 260px;
    max-height: 360px;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero-dots {
    left: 28px;
    bottom: 18px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .trust-grid,
  .blog-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filter-panel {
    position: static;
  }

  .shop-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .utility-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-actions,
  .consult-preview-grid,
  .section-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-grid,
  .product-grid,
  .blog-grid,
  .about-grid,
  .footer-grid,
  .premium-form {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .span-2 {
    grid-column: span 1;
  }

  .deal-badge {
    right: 20px;
    top: 20px;
    width: 72px;
    height: 72px;
    font-size: 0.9rem;
  }
}
