:root {
  --ink: #17211b;
  --muted: #65736a;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dbe3d7;
  --leaf: #23684c;
  --leaf-dark: #134536;
  --moss: #86a96c;
  --clay: #bf6f45;
  --sun: #f2c35b;
  --shadow: 0 24px 70px rgba(34, 57, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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


body.cart-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

.announcement-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 40px;
  color: #fff;
  background: var(--leaf-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.announcement-bar a {
  display: grid;
  place-items: center;
  padding: 8px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.announcement-bar a:last-child {
  border-right: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 52px;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid rgba(219, 227, 215, 0.78);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(35, 104, 76, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--leaf-dark);
}

.mega-category-strip {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(12px, 2.8vw, 34px);
  background: #f8f7f3;
}

.mega-category-scroll {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.mega-category-scroll::-webkit-scrollbar {
  display: none;
}

.mega-category-scroll a {
  flex: 0 0 auto;
  color: #1f211f;
  font-size: clamp(0.72rem, 0.95vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mega-category-scroll a:hover {
  color: var(--leaf);
}

.cart-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.header-whatsapp {
  text-decoration: none;
}

.cart-button {
  position: relative;
  width: 52px;
  height: 52px;
}

.cart-button span {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: #16241c;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: none;
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  background:
    linear-gradient(rgba(22, 36, 28, 0.08), rgba(22, 36, 28, 0.08)),
    var(--slide-image) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 520ms ease,
    transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 90px clamp(18px, 5vw, 72px) 118px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 12vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.65;
}

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

.carousel-controls {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 108px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.carousel-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.carousel-dots {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 54px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 54px;
  background: var(--sun);
}

.primary-action,
.secondary-action,
.checkout-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  padding: 0 22px;
  color: #fff;
  background: var(--clay);
}

.secondary-action {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.service-strip div {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--leaf-dark);
  font-weight: 800;
  text-align: center;
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip svg {
  width: 21px;
  height: 21px;
  color: var(--clay);
  flex: 0 0 auto;
}

.category-section {
  padding: clamp(42px, 6vw, 76px) clamp(16px, 4vw, 54px) 24px;
  background: var(--surface);
}

.compact-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.text-link {
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.category-tile {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--leaf-dark);
  font-weight: 900;
  text-align: center;
}

.category-tile img {
  width: min(150px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  object-fit: cover;
  background: #edf2e8;
  box-shadow: 0 12px 30px rgba(34, 57, 44, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.category-tile:hover img {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(34, 57, 44, 0.16);
}

.offer-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 34px clamp(16px, 4vw, 54px) 0;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 69, 54, 0.96), rgba(35, 104, 76, 0.72)),
    url("https://images.unsplash.com/photo-1463320726281-696a485928c7?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.offer-band h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.offer-band p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.offer-band .primary-action {
  flex: 0 0 auto;
  background: var(--sun);
  color: var(--ink);
}

.shop-section,
.care-section {
  padding: clamp(52px, 7vw, 94px) clamp(16px, 4vw, 54px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.search-box {
  display: flex;
  width: min(360px, 100%);
  height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
}

.search-box svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
}

.search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.nav-search-box {
  flex: 0 0 min(230px, 24vw);
  height: 38px;
  padding: 0 12px;
  background: #ffffff;
}

.nav-search-box input {
  font-size: 0.82rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.is-active {
  border-color: var(--leaf);
  color: #fff;
  background: var(--leaf);
}

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

.image-adjust-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--leaf-dark);
  cursor: pointer;
  font-weight: 900;
}

.image-adjust-toggle svg {
  width: 17px;
  height: 17px;
}

.image-adjust-toggle.is-active {
  border-color: var(--leaf);
  color: #fff;
  background: var(--leaf);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 35px rgba(34, 57, 44, 0.08);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7eee4;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-x, 50%) var(--image-y, 50%);
  transform: scale(var(--image-zoom, 1));
  transition: filter 220ms ease, transform 220ms ease;
}

.product-card:hover .product-image img {
  filter: saturate(1.06);
}

.image-adjust-panel {
  display: none;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.image-adjust-mode .image-adjust-panel {
  display: grid;
}

.image-adjust-panel label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-adjust-panel input,
.image-adjust-panel select {
  width: 100%;
  accent-color: var(--leaf);
}

.image-adjust-panel select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  color: var(--ink);
}

.replace-image-control input {
  border: 1px dashed rgba(19, 69, 54, 0.35);
  border-radius: 8px;
  padding: 8px;
  background: #f8f7f3;
  color: var(--ink);
  font-size: 0.78rem;
}

.reset-image-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.reset-image-button:hover {
  border-color: var(--leaf);
  color: var(--leaf-dark);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(19, 69, 54, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-title-row h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-title-row strong {
  white-space: nowrap;
  color: var(--leaf-dark);
}

.product-info p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.delivery-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: #edf2e8;
  font-size: 0.78rem;
  font-weight: 900;
}

.delivery-pill svg {
  width: 15px;
  height: 15px;
  color: var(--clay);
}

.add-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--leaf);
  cursor: pointer;
  font-weight: 900;
}

.add-button:hover {
  background: var(--leaf-dark);
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background: #edf2e8;
}

.care-copy p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.care-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.care-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-panel li {
  display: grid;
  min-height: 104px;
  place-items: center;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  color: var(--leaf-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.care-panel li:last-child {
  border-right: 0;
}

.care-panel svg {
  color: var(--clay);
}

.gifting-section,
.store-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(52px, 7vw, 94px) clamp(16px, 4vw, 54px);
  background: var(--surface);
}

.split-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy p:not(.eyebrow),
.store-section p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 24px;
}

.feature-list span {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--leaf-dark);
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--clay);
  flex: 0 0 auto;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 54px) clamp(52px, 7vw, 94px);
  background: var(--surface);
}

.trust-card,
.review-grid article,
.blog-grid article,
.store-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 35px rgba(34, 57, 44, 0.08);
}

.trust-card {
  padding: 22px;
}

.trust-card svg,
.store-panel svg {
  color: var(--clay);
}

.trust-card h3,
.blog-grid h3 {
  margin: 12px 0 8px;
  line-height: 1.2;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.social-proof,
.blog-section {
  padding: clamp(52px, 7vw, 94px) clamp(16px, 4vw, 54px);
  background: var(--paper);
}

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

.review-grid article {
  padding: 22px;
}

.review-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.review-grid strong {
  color: var(--leaf-dark);
}

.store-section {
  grid-template-columns: minmax(0, 1fr) 320px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 30, 23, 0.94), rgba(17, 30, 23, 0.72)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.store-section .eyebrow {
  color: var(--sun);
}

.store-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.store-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
}

.store-panel strong,
.store-panel span {
  display: block;
}

.dark-action {
  width: fit-content;
  border-color: var(--line);
  color: var(--leaf-dark);
  background: var(--paper);
}

.blog-grid article {
  overflow: hidden;
}

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

.blog-grid span,
.blog-grid h3,
.blog-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.blog-grid span {
  display: block;
  margin-top: 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  padding: clamp(42px, 6vw, 72px) clamp(16px, 4vw, 54px) 32px;
  color: #222420;
  background: #f7f5f1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1fr 1.25fr;
  gap: clamp(28px, 5vw, 76px);
  padding-bottom: 54px;
  border-bottom: 1px solid #dedbd3;
}

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

.site-footer h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  color: #171915;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer h3 svg {
  width: 24px;
  height: 24px;
  color: var(--leaf);
}

.site-footer a,
.site-footer p {
  margin: 0;
  color: #20231f;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
}

.footer-contact p svg {
  width: 22px;
  height: 22px;
  color: #5f625d;
}

.footer-contact strong {
  color: #5f625d;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
}

.footer-bottom p + p {
  margin-top: 14px;
}

.social-links {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.social-links strong {
  font-size: 1.08rem;
}

.social-links span {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--leaf-dark);
  box-shadow: 0 8px 24px rgba(34, 57, 44, 0.08);
  font-weight: 900;
}

.social-links svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.footer-brand {
  color: #fff;
}

.collection-hero {
  padding: 28px clamp(16px, 4vw, 54px) clamp(42px, 6vw, 76px);
  background: var(--paper);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--leaf-dark);
}

.collection-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.collection-hero h1 {
  max-width: 9ch;
  color: var(--leaf-dark);
}

.collection-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.collection-hero .secondary-action {
  border-color: var(--line);
  color: var(--leaf-dark);
  background: var(--surface);
}

.collection-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.collection-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(36px, 5vw, 62px) clamp(16px, 4vw, 54px);
  background: var(--surface);
}

.collection-filters {
  position: sticky;
  top: 100px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.filter-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--leaf-dark);
}

.filter-group {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-group h3 {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.filter-group input {
  accent-color: var(--leaf);
}

.clear-filters {
  width: calc(100% - 32px);
  min-height: 42px;
  margin: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

.collection-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.collection-toolbar h2 {
  margin-bottom: 6px;
}

.collection-toolbar span {
  color: var(--muted);
  font-weight: 800;
}

.sort-select {
  display: grid;
  gap: 7px;
  color: var(--leaf-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.sort-select select {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
}

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

.xl-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 35px rgba(34, 57, 44, 0.08);
}

.xl-product-image {
  position: relative;
  aspect-ratio: 4 / 4.6;
  background: #edf2e8;
}

.xl-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xl-product-image strong {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
}

.xl-product-info {
  display: grid;
  gap: 11px;
  padding: 15px;
}

.xl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.xl-tags span {
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--leaf-dark);
  background: #edf2e8;
  font-size: 0.68rem;
  font-weight: 900;
}

.xl-product-info h3 {
  margin: 0;
  min-height: 42px;
  font-size: 1rem;
  line-height: 1.3;
}

.xl-rating,
.xl-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xl-rating {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.xl-rating svg {
  width: 15px;
  height: 15px;
  color: var(--sun);
  fill: var(--sun);
}

.xl-price strong {
  color: var(--leaf-dark);
  font-size: 1.08rem;
}

.xl-price span {
  color: var(--muted);
  text-decoration: line-through;
}

.add-button.is-disabled {
  pointer-events: none;
  background: var(--muted);
}

.xl-care-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 76px) clamp(16px, 4vw, 54px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 30, 23, 0.94), rgba(19, 69, 54, 0.72)),
    url("https://images.unsplash.com/photo-1485955900006-10f4d324d411?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.xl-care-band .eyebrow {
  color: var(--sun);
}

.xl-care-band p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.xl-care-band .primary-action {
  flex: 0 0 auto;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  background: rgba(23, 33, 27, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100%);
  height: 100%;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-header,
.cart-footer {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.icon-button {
  width: 42px;
  height: 42px;
}

.cart-items {
  overflow: auto;
  padding: 12px 22px;
}

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

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

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.cart-line-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  background: var(--paper);
  cursor: pointer;
}

.quantity-controls span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  font-weight: 800;
}

.cart-empty {
  display: none;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 50px 22px;
  color: var(--muted);
  text-align: center;
}

.cart-empty.is-visible {
  display: grid;
}

.cart-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.subtotal-row strong {
  color: var(--ink);
}

.discount-row,
.discount-row strong {
  color: var(--leaf);
}

.coupon-form {
  display: grid;
  gap: 8px;
  margin: 12px 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface);
}

.coupon-form label {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.coupon-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
  font-size: 0.9rem;
}

.coupon-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--leaf-dark);
  cursor: pointer;
  font-weight: 900;
}

.coupon-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.coupon-status.is-success {
  color: var(--leaf);
}

.coupon-status.is-error {
  color: #b8422d;
}

.total-row {
  margin-top: 12px;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.checkout-button {
  width: 100%;
  border: 0;
  color: #fff;
  background: var(--clay);
  cursor: pointer;
}

.cart-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 33, 27, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.checkout-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-card {
  width: min(680px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  overflow: auto;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.checkout-header h2 {
  margin: 0;
  font-size: 1.9rem;
}

.address-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.address-form label {
  display: grid;
  gap: 7px;
  color: var(--leaf-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.address-form input,
.address-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  outline: 0;
  color: var(--ink);
  background: var(--paper);
  resize: vertical;
}

.address-form input:focus,
.address-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(35, 104, 76, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.offer-popup {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: 88px;
  z-index: 75;
  display: none;
  width: min(300px, calc(100vw - 32px));
}

.offer-popup.is-visible {
  display: block;
}

.offer-popup-card {
  position: relative;
  border: 1px solid rgba(35, 104, 76, 0.18);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background: #fffdf7;
  box-shadow: 0 22px 60px rgba(34, 57, 44, 0.2);
}

.offer-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: #fff;
  cursor: pointer;
}

.offer-popup-close svg {
  width: 16px;
  height: 16px;
}

.offer-popup h2 {
  margin: 4px 34px 8px 0;
  font-size: 1.45rem;
}

.offer-popup p:not(.eyebrow) {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.45;
}

.offer-popup-action {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--leaf);
  cursor: pointer;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: #1fa855;
  box-shadow: 0 18px 42px rgba(31, 168, 85, 0.34);
  font-weight: 900;
}

.whatsapp-float:hover {
  background: #168646;
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
}

.no-results {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 34px;
  color: var(--muted);
  background: var(--surface);
  text-align: center;
}


@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr 52px;
  }

  .announcement-bar {
    grid-template-columns: 1fr;
  }

  .announcement-bar a:not(:first-child) {
    display: none;
  }

  .mega-category-scroll {
    justify-content: flex-start;
  }

  .mega-category-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-search-box {
    flex-basis: 190px;
    min-width: 190px;
  }

  .nav-links {
    display: none;
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip div:nth-child(2) {
    border-right: 0;
  }

  .service-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .shop-tools {
    width: 100%;
  }

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

  .care-section {
    grid-template-columns: 1fr;
  }

  .offer-band,
  .gifting-section,
  .store-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-section,
  .review-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .collection-hero-grid,
  .collection-layout,
  .xl-care-band {
    grid-template-columns: 1fr;
  }

  .collection-layout,
  .xl-care-band {
    display: grid;
  }

  .collection-filters {
    position: static;
  }

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

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-content {
    padding: 70px 18px 92px;
  }

  .hero-actions a {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

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

  .collection-toolbar {
    display: grid;
    align-items: start;
  }

  .sort-select select {
    min-width: 0;
    width: 100%;
  }

  .xl-product-grid {
    grid-template-columns: 1fr;
  }

  .service-strip div {
    min-height: 74px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

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

  .care-panel ul {
    grid-template-columns: 1fr;
  }

  .care-panel li {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .care-panel li:last-child {
    border-bottom: 0;
  }

  .offer-band {
    margin-left: 16px;
    margin-right: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    align-items: start;
  }

  .address-form {
    grid-template-columns: 1fr;
  }

  .coupon-form div {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}
