:root {
  --green: #41cbb2;
  --green-2: #41cbb2;
  --mint: #e8faf6;
  --pink: #d85f85;
  --pink-soft: #fff0f4;
  --ink: #192522;
  --muted: #697572;
  --line: #dfe9e6;
  --surface: #fff;
  --canvas: #f7f9f8;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(22, 70, 63, 0.1);
  --shadow-soft: 0 7px 24px rgba(22, 70, 63, 0.07);
  --radius: 14px;
}
@font-face {
  font-family: Montserrat;
  src: url("montserrat-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.5;
  background:
    radial-gradient(
      circle at 85% 22%,
      rgba(228, 246, 241, 0.7),
      transparent 23rem
    ),
    var(--canvas);
}
button,
input,
select {
  font: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: rgba(217, 79, 125, 0.28) solid 3px;
  outline-offset: 2px;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: 0 0;
  color: inherit;
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 74px;
  margin: auto;
  display: grid;
  grid-template-columns: auto minmax(260px, 620px) auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}
.brand-logo {
  object-fit: cover;
  border: 2px solid var(--green-2);
}
.header-search {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}
.header-search:focus-within {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(35, 156, 141, 0.12);
  background: #fff;
}
.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: 0 0;
  color: var(--ink);
}
.search-clear {
  width: 32px;
  height: 32px;
  display: none;
}
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  color: var(--green);
  cursor: pointer;
}
.header-cart > i {
  font-size: 1.35rem;
}
.header-cart-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.header-cart-copy small {
  color: var(--muted);
  font-size: 0.7rem;
}
.header-cart-copy strong {
  font-size: 0.88rem;
}
.cart-badge,
.cart-float span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 11px;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}
.cart-badge {
  top: 2px;
  left: 25px;
}
.hero {
  position: relative;
  min-height: clamp(390px, 56vh, 570px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: center 34% / cover no-repeat #41cbb2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 32px));
  margin: auto;
  color: #fff;
}
.hero-content > * {
  max-width: 650px;
}
.eyebrow,
.hero-kicker {
  margin: 0 0 10px;
  color: #9de2d7;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-content > p:not(.hero-kicker) {
  max-width: 560px;
  margin: 22px 0 28px;
  color: #e6f5f2;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #f3a3bd;
  font-weight: 800;
}
.hero-proof {
  position: absolute;
  right: max(20px, calc((100% - 1240px) / 2));
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-proof i {
  color: var(--pink);
  font-size: 1.3rem;
}
.hero-proof span {
  font-size: 0.78rem;
  line-height: 1.3;
}
.section-tabs {
  position: sticky;
  top: 74px;
  z-index: 40;
  border-bottom: 1px solid var(--line);
}
.tabs-inner {
  width: min(1240px, calc(100% - 32px));
  margin: auto;
  display: flex;
  gap: 28px;
}
.tab-button {
  position: relative;
  height: 58px;
  padding: 0 4px;
  border: 0;
  background: 0 0;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}
.tab-button.active {
  color: var(--green);
}
.tab-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  margin-left: 4px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 0.68rem;
}
.catalog-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 64px;
}
.catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.catalog-heading .eyebrow {
  color: var(--pink);
}
.catalog-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}
.filter-mobile-button {
  display: none;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green);
  font-weight: 800;
}
.filter-mobile-button span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
}
.filter-panel {
  align-self: start;
  position: sticky;
  top: 154px;
  border-right: 1px solid var(--line);
}
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-header h3 {
  margin: 0;
  font-size: 1rem;
}
.filter-close {
  display: none;
}
.filter-group {
  margin: 25px 0 0;
  padding: 0;
  border: 0;
}
.filter-group legend {
  margin-bottom: 11px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip-list.vertical {
  flex-direction: column;
  align-items: flex-start;
}
.filter-chip {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4c5855;
  font-size: 0.78rem;
  cursor: pointer;
}
.filter-chip.active,
.filter-chip:hover {
  border-color: var(--green);
  background: var(--mint);
  color: var(--green);
  font-weight: 700;
}
.clear-filters {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  padding: 8px 0;
  border: 0;
  background: 0 0;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}
.results-toolbar {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}
.results-toolbar > div > strong {
  font-size: 0.88rem;
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.active-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 0;
  background: var(--pink-soft);
  color: #9f3156;
  font-size: 0.7rem;
  cursor: pointer;
}
.sort-control {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}
.sort-control select {
  height: 38px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4ebe8;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    border-color 0.22s;
}
.product-card:hover {
  box-shadow: var(--shadow);
}
.product-media {
  position: relative;
  aspect-ratio: 1/1;
  background: #f2f4f3;
  overflow: hidden;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition:
    transform 0.35s,
    opacity 0.2s;
}
.product-card:hover .product-image {
  transform: scale(1.035);
}
.product-image.loading {
  opacity: 0.25;
}
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.status-badge {
  background: #fff;
  color: var(--green);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}
.status-badge.low {
  background: #fff1d6;
  color: #8a5800;
}
.status-badge.out {
  background: #fff0ef;
  color: var(--danger);
}
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-brand {
  margin-bottom: 5px;
  color: var(--pink);
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-name {
  display: -webkit-box;
  min-height: 43px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.93rem;
  line-height: 1.35;
}
.product-price {
  margin: 9px 0 12px;
  color: var(--green);
  font-weight: 900;
}
.variation-group {
  margin-bottom: 12px;
}
.variation-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}
.variation-options {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 2px;
}
.variation-btn {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.variation-btn.selected {
  border: 2px solid var(--pink);
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3px var(--pink);
}
.variation-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.stock-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.68rem;
}
.product-actions {
  margin-top: auto;
}
.purchase-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  margin-top: 12px;
}
.qty-control {
  height: 40px;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  height: 100%;
  padding: 0;
  border: 0;
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}
.qty-input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 0.8rem;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button {
  display: none;
}
.btn-add,
.checkout-button,
.combo-add {
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #103d36;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-add:hover,
.combo-add:hover {
  background: var(--green-2);
}
button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}
.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.combo-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 310px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(27, 68, 63, 0.06);
}
.combo-media {
  position: relative;
  background: var(--pink-soft);
  min-height: 260px;
}
.combo-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.combo-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 3rem;
}
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}
.combo-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.combo-body h3 {
  margin: 0;
  font-size: 1.35rem;
}
.combo-description {
  margin: 6px 0 13px;
  color: var(--muted);
  font-size: 0.8rem;
}
.combo-items-preview {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.combo-mini-button {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 50%;
}
.combo-mini-button:hover,
.combo-mini-button.selected {
  border-color: var(--green);
  transform: translateY(-1px);
}
.combo-mini-button:focus-visible {
  outline: 3px solid rgba(65, 203, 178, 0.3);
  outline-offset: 2px;
}
.combo-mini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.combo-item-list {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.72rem;
}
.combo-pricing {
  margin-top: auto;
}
.old-price {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  text-decoration: line-through;
}
.combo-price {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}
.combo-saving {
  margin-left: 7px;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
}
.combo-add {
  width: 100%;
  margin-top: 12px;
}
.empty-state,
.error-state {
  grid-column: 1/-1;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
  background: #fff;
  border: 1px dashed #cad8d4;
  border-radius: var(--radius);
}
.empty-state i,
.error-state i {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 2rem;
}
.empty-state h3,
.error-state h3 {
  margin: 0 0 6px;
}
.empty-state p,
.error-state p {
  max-width: 430px;
  margin: 0 0 18px;
  color: var(--muted);
}
.empty-state button {
  padding: 9px 14px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green);
  font-weight: 800;
}
.skeleton-card {
  height: 390px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #e9eeec 25%, #f5f7f6 50%, #e9eeec 75%);
  background-size: 200% 100%;
  animation: 1.3s infinite shimmer;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid #cfe0dc;
  border-bottom: 1px solid #cfe0dc;
}
.trust-strip > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 25px;
  background: #eef6f4;
}
.trust-strip i {
  color: var(--pink);
}
.trust-strip span {
  display: flex;
  flex-direction: column;
}
.trust-strip strong {
  font-size: 0.82rem;
}
.trust-strip small {
  color: var(--muted);
  font-size: 0.72rem;
}
.site-footer {
  background: #41cbb2;
  color: #103d36;
}
.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: auto;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  object-fit: cover;
}
.footer-brand p {
  color: #174d44;
  font-size: 0.78rem;
}
.footer-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #174d44;
  font-size: 0.75rem;
}
.footer-actions a {
  padding: 9px 12px;
  border: 1px solid #5d8c86;
  border-radius: var(--radius);
  color: #103d36;
  text-decoration: none;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(430px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -14px 0 42px rgba(0, 0, 0, 0.16);
  transform: translateX(105%);
  transition: transform 0.28s;
}
.cart-drawer.open {
  transform: none;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-header p {
  margin: 0;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.cart-header h2 {
  margin: 2px 0 0;
  font-size: 1.7rem;
}
.cart-items {
  flex: 1;
  overflow: auto;
  padding: 16px 22px;
}
.cart-empty {
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  color: var(--muted);
  text-align: center;
}
.cart-empty i {
  margin-bottom: 12px;
  color: #b8c7c3;
  font-size: 2.5rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: #f3f5f4;
}
.cart-item h3 {
  margin: 0 0 3px;
  font-size: 0.83rem;
}
.cart-item-meta {
  color: var(--muted);
  font-size: 0.7rem;
}
.cart-item-price {
  margin-top: 5px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.cart-item-actions button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
}
.cart-item-actions span {
  min-width: 24px;
  text-align: center;
  font-size: 0.76rem;
}
.remove-cart-item {
  align-self: start;
  border: 0;
  background: 0 0;
  color: #9ba7a4;
  cursor: pointer;
}
.cart-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: #fbfcfc;
}
.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-subtotal strong {
  color: var(--green);
  font-size: 1.28rem;
}
.cart-footer p {
  margin: 7px 0 15px;
  color: var(--muted);
  font-size: 0.69rem;
}
.checkout-button {
  width: 100%;
  height: 48px;
  background: #41cbb2;
  font-size: 0.88rem;
}
.cart-float,
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  z-index: 45;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.whatsapp-float {
  left: 22px;
  background: #41cbb2;
  font-size: 1.35rem;
}
.cart-float {
  right: 22px;
  display: none;
  background: var(--green);
  font-size: 1.15rem;
}
.cart-float span {
  top: -4px;
  right: -4px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--radius);
  background: #41cbb2;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: 0.24s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast i {
  color: #41cbb2;
}
.cart-pulse {
  animation: 0.45s cartPulse;
}
@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}
@keyframes cartPulse {
  50% {
    transform: scale(1.14);
  }
}
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .combo-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
}
@media (max-width: 760px) {
  .header-inner {
    width: calc(100% - 20px);
    height: auto;
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 9px;
    padding: 9px 0;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
  }
  .header-search {
    height: 42px;
  }
  .header-cart-copy {
    display: none;
  }
  .header-cart {
    width: 42px;
    height: 42px;
    justify-content: center;
  }
  .section-tabs {
    top: 68px;
  }
  .hero {
    min-height: 450px;
    align-items: flex-end;
    padding-bottom: 52px;
  }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25));
  }
  .hero-proof {
    display: none;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .catalog-shell {
    width: calc(100% - 24px);
    padding: 32px 0 48px;
  }
  .catalog-layout {
    display: block;
  }
  .filter-mobile-button {
    display: flex;
  }
  .filter-panel {
    position: fixed;
    z-index: 100;
    inset: auto 0 0 0;
    max-height: 86dvh;
    overflow: auto;
    padding: 20px 20px 28px;
    border: 0;
    border-radius: 12px 12px 0 0;
    background: #fff;
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(105%);
    transition: transform 0.27s;
  }
  .filter-panel.open {
    transform: none;
  }
  .filter-close {
    display: grid;
  }
  .chip-list.vertical {
    flex-direction: row;
  }
  .results-toolbar {
    align-items: center;
  }
  .sort-control {
    font-size: 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-info {
    padding: 11px;
  }
  .purchase-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .qty-control {
    height: 36px;
  }
  .btn-add {
    height: 38px;
  }
  .product-name {
    font-size: 0.84rem;
  }
  .product-price {
    font-size: 1.03rem;
  }
  .combo-card {
    grid-template-columns: 38% 1fr;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .footer-actions,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cart-float {
    display: block;
    bottom: 18px;
    right: 16px;
  }
  .whatsapp-float {
    bottom: 18px;
    left: 16px;
  }
  .cart-drawer {
    width: 100%;
    top: auto;
    bottom: 0;
    height: min(92dvh, 760px);
    border-radius: 14px 14px 0 0;
    transform: translateY(105%);
  }
  .cart-drawer.open {
    transform: none;
  }
}
@media (max-width: 430px) {
  .header-search input::placeholder {
    color: transparent;
  }
  .header-search {
    padding-left: 12px;
  }
  .catalog-heading h2 {
    font-size: 1.75rem;
  }
  .sort-control select {
    max-width: 142px;
  }
  .results-toolbar {
    gap: 8px;
  }
  .product-grid {
    gap: 9px;
  }
  .product-media {
    aspect-ratio: 1/1;
  }
  .product-brand {
    font-size: 0.6rem;
  }
  .product-name {
    min-height: 39px;
    font-size: 0.79rem;
  }
  .product-price {
    margin: 6px 0 9px;
  }
  .variation-btn {
    width: 34px;
    height: 34px;
  }
  .variation-thumb {
    width: 27px;
    height: 27px;
  }
  .combo-card {
    grid-template-columns: 1fr;
  }
  .combo-media {
    min-height: 200px;
  }
  .combo-body {
    padding: 16px;
  }
  .trust-strip > div {
    justify-content: flex-start;
    padding-left: 28px;
  }
}
.catalog-layout.combos-mode {
  grid-template-columns: minmax(0, 1fr);
}
.results-column {
  min-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.footer-bottom {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #174d44;
  text-align: center;
  font-size: 0.68rem;
}
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(14, 28, 26, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  pointer-events: none;
}
.page-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.btn-add {
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.78rem;
}
.cart-header h2,
.combo-body h3,
h1,
h2 {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}
.lucide {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  vertical-align: -0.16em;
}
.whatsapp-icon {
  width: 1.15em !important;
  height: 1.15em !important;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.whatsapp-float .whatsapp-icon {
  width: 25px !important;
  height: 25px !important;
}
.variation-options {
  flex-wrap: wrap;
  overflow: visible;
}
.icon-button {
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.icon-button:hover {
  background: var(--mint);
  color: var(--green);
  transform: rotate(3deg);
}
.site-header {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 24px rgba(22, 70, 63, 0.04);
}
.brand-logo {
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px rgba(36, 143, 130, 0.28);
}
.header-search {
  border-color: transparent;
  background: #f2f6f4;
  border-radius: 24px;
  transition: 0.2s;
}
.header-search .lucide {
  width: 18px;
  color: #80918d;
}
.header-search:focus-within {
  border-color: rgba(36, 143, 130, 0.4);
  box-shadow: 0 0 0 4px rgba(36, 143, 130, 0.09);
}
.header-cart {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: 0.2s;
}
.header-cart:hover {
  border-color: #bad7d1;
  transform: translateY(-1px);
}
.hero {
  isolation: isolate;
  background-image: url("hero-banner.png");
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 55%,
    rgba(255, 255, 255, 0.08) 55.2%,
    transparent 55.5%
  );
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0,
    rgba(0, 0, 0, 0.46) 48%,
    rgba(0, 0, 0, 0.08) 100%
  );
}
.hero h1 {
  letter-spacing: -0.025em;
}
.hero-action {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: 0.2s;
}
.hero-action:hover {
  background: #fff;
  color: var(--green);
  transform: translateY(-2px);
}
.hero-proof {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
}
.icon-orb {
  width: 42px;
  height: 42px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
}
.hero-proof .icon-orb {
  width: 40px;
  height: 40px;
}
.section-tabs {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}
.tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: var(--pink);
  left: 4px;
  right: 4px;
  height: 2px;
  border-radius: 2px;
}
.catalog-heading h2 {
  letter-spacing: -0.02em;
}
.filter-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}
.filter-group legend {
  letter-spacing: 0.08em;
}
.filter-chip {
  border-radius: 20px;
  transition: 0.18s;
}
.filter-chip:hover {
  transform: translateY(-1px);
}
.filter-chip.active {
  box-shadow: inset 0 0 0 1px rgba(21, 95, 88, 0.12);
}
.sort-control select {
  border-radius: 20px;
  padding-left: 14px;
}
.product-grid {
  gap: 24px;
}
.product-card {
  border-color: transparent;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 143, 130, 0.2);
  box-shadow: 0 22px 48px rgba(22, 70, 63, 0.14);
}
.product-media {
  background: linear-gradient(145deg, #f7f8f7, #edf2f0);
}
.product-info {
  padding: 17px;
}
.product-name {
  font-weight: 600;
}
.product-price {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.status-badge {
  border-radius: 12px;
  padding: 6px 9px;
}
.qty-control {
  border-radius: 20px;
  background: #f8faf9;
}
.qty-btn {
  background: 0 0;
}
.btn-add,
.checkout-button,
.combo-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 22px;
  background: #41cbb2;
  box-shadow: 0 8px 18px rgba(21, 95, 88, 0.2);
}
.btn-add:hover,
.combo-add:hover {
  background: #41cbb2;
  transform: translateY(-1px);
}
.combo-card {
  border-color: transparent;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}
.combo-media {
  background: linear-gradient(145deg, var(--pink-soft), #f7e9ee);
}
.discount-badge {
  border-radius: 12px;
}
.combo-mini {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.trust-strip {
  gap: 0;
  background: #e2ece9;
  border-color: #d5e4e0;
}
.trust-strip > div {
  background: linear-gradient(180deg, #f4faf8, #edf6f3);
}
.trust-strip .icon-orb {
  width: 44px;
  height: 44px;
}
.trust-strip i {
  font-size: 1rem;
}
.footer-actions a,
.footer-actions > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-actions a {
  border-radius: 20px;
  transition: 0.2s;
}
.footer-actions a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #8fb2ad;
}
.cart-drawer {
  box-shadow: -20px 0 60px rgba(10, 45, 40, 0.2);
}
.cart-item img {
  border-radius: 12px;
}
.cart-item-actions button {
  border-radius: 50%;
}
.cart-float,
.whatsapp-float {
  display: grid;
  place-items: center;
}
.whatsapp-float {
  background: #41cbb2;
}
.toast {
  border-radius: 24px;
}
.active-filter {
  border-radius: 16px;
}
.active-filter .lucide {
  width: 12px;
}
.empty-state,
.error-state {
  border-radius: 20px;
}
.cart-empty .lucide,
.empty-state > .lucide,
.error-state > .lucide {
  width: 34px;
  height: 34px;
}
@media (max-width: 430px) {
  .header-search input::placeholder {
    color: var(--muted);
    opacity: 1;
  }
  .header-search input {
    min-width: 0;
    font-size: 0.82rem;
  }
}
@media (max-width: 760px) {
  .filter-panel {
    padding: 22px 20px 30px;
    border-radius: 22px 22px 0 0;
  }
  .product-grid {
    gap: 12px;
  }
  .product-card {
    border-radius: 15px;
  }
  .product-info {
    padding: 12px;
  }
  .header-cart {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .hero {
    background-image: url("hero-banner-mobile.webp") !important;
    background-position: center 68%;
    background-size: cover;
  }
  .hero-action {
    padding: 12px 17px;
  }
  .trust-strip > div {
    justify-content: flex-start;
    padding-left: max(28px, calc((100% - 500px) / 2));
  }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 12px;
    padding: 10px 0;
  }
  .header-search {
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
  }
  .header-cart {
    grid-column: 2;
    grid-row: 1;
  }
  .section-tabs {
    top: 113px;
  }
}
body,
button,
input,
select {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}
.cart-header h2,
.catalog-heading h2,
.combo-body h3,
.hero h1 {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.hero h1 {
  font-weight: 750;
}
.brand {
  width: 190px;
  height: 46px;
  justify-self: start;
  flex: none;
  padding: 0;
  background: 0 0;
}
.brand-logo {
  width: 100%;
  height: 100%;
  padding: 3px 7px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(1130%)
    hue-rotate(116deg) brightness(90%) contrast(86%);
}
.footer-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.footer-brand img {
  width: 210px;
  height: 58px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}
.footer-brand p {
  margin: 0;
}
@media (max-width: 760px) {
  .brand {
    width: 165px;
    height: 42px;
  }
  .brand-logo {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 370px) {
  .brand {
    width: 145px;
  }
}
.header-cart .cart-badge {
  top: -7px;
  left: 25px;
}

@media (max-width: 760px) {
  .combo-grid {
    gap: 14px;
  }
  .combo-card {
    width: 100%;
    max-width: 380px;
    min-height: 0;
    margin-inline: auto;
    grid-template-columns: 118px minmax(0, 1fr);
    border-radius: 16px;
  }
  .combo-media {
    min-height: 0;
  }
  .combo-cover {
    min-height: 100%;
    object-fit: cover;
  }
  .discount-badge {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 0.62rem;
  }
  .combo-body {
    padding: 12px;
  }
  .combo-body h3 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .combo-description {
    margin: 4px 0 8px;
    font-size: 0.7rem;
  }
  .combo-items-preview {
    margin: 7px 0 8px;
  }
  .combo-mini {
    width: 29px;
    height: 29px;
    margin-right: -6px;
  }
  .combo-item-list {
    margin-bottom: 8px;
    font-size: 0.64rem;
    line-height: 1.35;
  }
  .old-price {
    font-size: 0.65rem;
  }
  .combo-price {
    font-size: 1.15rem;
  }
  .combo-saving {
    display: block;
    margin: 1px 0 0;
    font-size: 0.62rem;
  }
  .combo-add {
    height: 38px;
    margin-top: 8px;
    font-size: 0.75rem;
  }
}

@media (max-width: 370px) {
  .combo-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }
  .combo-body {
    padding: 10px;
  }
}

@media (max-width: 760px) {
  .trust-strip > div {
    width: 100%;
    max-width: 330px;
    min-height: 94px;
    margin-inline: auto;
    padding: 20px 24px;
    justify-content: flex-start;
  }
  .trust-strip .icon-orb {
    flex: 0 0 44px;
  }
  .trust-strip > div > span:last-child {
    min-width: 0;
    align-items: flex-start;
    text-align: left;
  }
  .footer-inner {
    align-items: center;
    padding: 30px 20px 26px;
    text-align: center;
  }
  .footer-brand {
    width: 100%;
    align-items: center;
  }
  .footer-brand img {
    width: min(210px, 80vw);
    object-position: center;
  }
  .footer-actions {
    width: 100%;
    align-items: center;
    gap: 14px;
  }
  .footer-actions a,
  .footer-actions > span {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom {
    padding: 14px 68px 18px;
    line-height: 1.45;
  }
}

/* Responsive finishing layer -------------------------------------------------
   Kept together so the main breakpoints are easy to audit and maintain. */

.qty-control,
.qty-btn,
.qty-input {
  background: #f8faf9;
}

.qty-btn {
  transition: background-color 0.18s ease;
}

.qty-btn:hover:not(:disabled) {
  background: var(--mint);
}

.qty-input {
  color: var(--ink);
  font-weight: 700;
}

@media (min-width: 761px) {
  .hero {
    min-height: clamp(470px, 62vh, 620px);
  }

  .hero-content {
    padding-block: clamp(52px, 7vh, 80px);
  }

  .hero-action {
    margin-bottom: 6px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .hero-content > * {
    max-width: min(610px, 58vw);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5.2vw, 3.75rem);
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-content > p:not(.hero-kicker) {
    margin-block: 24px 30px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: clamp(500px, 76svh, 620px);
    padding-block: 72px 58px;
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 34rem;
    margin-block: 20px 26px;
  }

  .results-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    width: 100%;
  }

  .results-toolbar > div {
    min-width: 0;
  }

  .sort-control {
    max-width: 100%;
  }

  .sort-control select {
    width: min(42vw, 170px);
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .catalog-heading {
    align-items: center;
    gap: 12px;
  }

  .catalog-heading > div {
    min-width: 0;
  }

  .results-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .sort-control {
    width: auto;
    font-size: 0;
  }

  .sort-control select {
    width: 132px;
    max-width: 38vw;
    padding-inline: 12px 28px;
    font-size: 0.72rem;
  }
}

@media (max-width: 350px) {
  .header-inner,
  .hero-content,
  .catalog-shell,
  .tabs-inner {
    width: calc(100% - 20px);
  }

  .brand {
    width: 132px;
  }

  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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