:root {
  --teal: #07a3a5;
  --teal-dark: #07888a;
  --navy: #0b2747;
  --navy-deep: #071d35;
  --ink: #102c4a;
  --paper: #fcfaf5;
  --warm: #f5f2eb;
  --white: #fff;
  --muted: #5e6d79;
  --line: rgba(11, 39, 71, .16);
  --container: 1240px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--font); line-height: 1.6; text-rendering: optimizeLegibility; }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f2c94c; outline-offset: 4px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 2000; top: 12px; left: 12px; padding: .75rem 1rem; background: var(--white); color: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.store-container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.store-header { position: fixed; z-index: 500; inset: 0 0 auto; border-bottom: 1px solid transparent; background: rgba(252, 250, 245, .94); backdrop-filter: blur(16px); transition: border-color .2s ease, box-shadow .2s ease; }
.store-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(11, 39, 71, .07); }
.store-nav-wrap { display: grid; min-height: 104px; align-items: center; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 3vw, 2.5rem); }
.store-brand { width: 94px; height: 94px; }
.store-brand img, .store-footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.store-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(1.1rem, 2.5vw, 2.25rem); }
.store-nav > a:not(.store-button) { position: relative; color: var(--navy); font-size: .86rem; font-weight: 750; text-decoration: none; }
.store-nav > a:not(.store-button)::after { position: absolute; right: 0; bottom: -.45rem; left: 0; height: 2px; background: var(--teal); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.store-nav > a:not(.store-button):hover::after { transform: scaleX(1); }
.store-menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: var(--paper); color: var(--navy); cursor: pointer; }
.store-menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease; }
.store-menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
.store-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.store-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: .84rem 1.35rem; border: 1px solid var(--teal); border-radius: 4px; background: var(--teal); color: var(--white); font-size: .88rem; font-weight: 780; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.store-button:hover { border-color: var(--teal-dark); background: var(--teal-dark); box-shadow: 0 8px 22px rgba(7, 136, 138, .18); transform: translateY(-2px); }
.store-button--compact { min-height: 44px; padding: .65rem 1rem; font-size: .78rem; }
.cart-trigger { position: relative; display: inline-flex; min-height: 48px; align-items: center; gap: .5rem; padding: .55rem .7rem; border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: var(--navy); font-size: .8rem; font-weight: 780; cursor: pointer; }
.cart-trigger svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-trigger b { display: grid; min-width: 22px; height: 22px; padding: 0 5px; place-items: center; border-radius: 99px; background: var(--teal); color: var(--white); font-size: .67rem; }

.catalog-header-banner { width: 100%; padding: clamp(8rem, 12vw, 10.5rem) 0 clamp(3.2rem, 5vw, 4.5rem); background: #eaf2ef; border-bottom: 1px solid var(--line); }
.catalog-heading { max-width: 850px; }
.catalog-heading .store-eyebrow { color: var(--teal-dark); }
.catalog-heading h2 { margin: 0 0 1.25rem; color: var(--navy); font-size: clamp(2.5rem, 4.6vw, 4.5rem); line-height: 1.05; letter-spacing: -.05em; }
.catalog-heading > p:last-child { max-width: 680px; margin: 0; color: #4a6175; font-size: 1.06rem; line-height: 1.55; }

.catalog-section { padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(4.5rem, 7vw, 7rem); background: var(--paper); }
.catalog-tools { display: grid; margin-top: 0; padding: 1.2rem; grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(180px, .75fr)); gap: 1rem; border: 1px solid var(--line); background: var(--white); }
.field { display: flex; flex-direction: column; gap: .38rem; }
.field label { color: var(--navy); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-height: 48px; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 3px; background: var(--paper); color: var(--navy); }
.field input:focus-visible, .field select:focus-visible { outline: 3px solid rgba(7, 163, 165, .28); outline-offset: 0; border-color: var(--teal); }
.catalog-summary { display: flex; min-height: 64px; align-items: center; justify-content: flex-end; border-bottom: 1px solid var(--line); }
.catalog-summary p { margin: 0; color: var(--muted); font-size: .82rem; font-weight: 720; }
.product-grid { display: grid; margin-top: 2rem; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.35rem; }
.product-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 8px 22px rgba(11, 39, 71, .05); transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.product-card:hover { border-color: rgba(7, 163, 165, .38); box-shadow: 0 16px 36px rgba(11, 39, 71, .1); transform: translateY(-4px); }
.product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: clamp(14px, 2vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: scale(var(--image-scale, 1));
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(calc(var(--image-scale, 1) * 1.04));
}
.product-card__media .image-fallback { color: var(--muted); font-size: .78rem; font-weight: 750; }
.product-card__body { display: flex; padding: 1.25rem; flex: 1; flex-direction: column; }
.product-card__category { margin: 0 0 .55rem; color: var(--teal-dark); font-size: .65rem; font-weight: 830; letter-spacing: .09em; text-transform: uppercase; }
.product-card__body h3 { min-height: 2.5em; margin: 0 0 .55rem; overflow: hidden; color: var(--navy); font-size: 1.12rem; line-height: 1.25; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-card__description { min-height: 4.35em; margin: 0 0 1.1rem; overflow: hidden; color: var(--muted); font-size: .86rem; line-height: 1.45; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: .35rem .6rem;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(11, 39, 71, .15);
  pointer-events: none;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem .75rem;
  margin-top: auto;
  color: var(--navy);
}

.product-card__previous-price {
  color: #C62828;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: #C62828;
  text-decoration-thickness: 1.5px;
}

.product-card__current-price {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -.02em;
}

.product-card__availability { margin: .45rem 0 0; color: var(--teal-dark); font-size: .75rem; font-weight: 750; }
.product-card__feedback {
  min-height: 1.35rem;
  margin-top: .6rem;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}
.product-card__feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card .store-button { width: 100%; margin-top: 0; }
.product-card .store-button:active { transform: translateY(0); }
.product-card .store-button:disabled { border-color: #aeb9bf; background: #aeb9bf; box-shadow: none; cursor: not-allowed; transform: none; }
.catalog-empty, .catalog-no-results { margin-top: 2rem; padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; border: 1px solid var(--line); background: linear-gradient(145deg, var(--white), #eef5f2); text-align: center; }
.catalog-empty[hidden], .catalog-no-results[hidden] { display: none; }
.empty-graphic { display: grid; width: 84px; height: 84px; margin: 0 auto 1.5rem; place-items: center; border-radius: 50%; background: rgba(7, 163, 165, .1); color: var(--teal-dark); }
.empty-graphic svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.catalog-empty h3, .catalog-no-results h3 { margin: 0 0 .75rem; color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.1; letter-spacing: -.035em; }
.catalog-empty > p:not(.store-eyebrow), .catalog-no-results p { max-width: 620px; margin: 0 auto 1.8rem; color: var(--muted); }

.trust-section { padding: clamp(4rem, 7vw, 6rem) 0; border-top: 1px solid var(--line); background: #eaf2ef; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid article { display: grid; min-width: 0; padding: 1rem clamp(1.2rem, 3vw, 2.5rem); grid-template-columns: 46px 1fr; gap: 1.1rem; border-right: 1px solid var(--line); }
.trust-grid article:first-child { padding-left: 0; }
.trust-grid article:last-child { padding-right: 0; border-right: 0; }
.trust-grid svg { width: 42px; height: 42px; fill: none; stroke: var(--teal-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-grid h3 { margin: 0 0 .45rem; color: var(--navy); font-size: 1.12rem; }
.trust-grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.store-footer { padding: 2.8rem 0; background: var(--navy-deep); color: var(--white); }
.store-footer-grid { display: grid; align-items: center; grid-template-columns: 82px 1fr auto; gap: clamp(2rem, 5vw, 5rem); }
.store-footer-brand { width: 76px; height: 76px; padding: 5px; border-radius: 4px; background: var(--white); }
.store-footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.store-footer nav a { color: #c1ccd5; font-size: .76rem; font-weight: 700; text-decoration: none; }
.store-footer nav a:hover { color: var(--white); }
.store-footer small { color: #8195a5; font-size: .68rem; letter-spacing: .1em; }

.cart-overlay { position: fixed; z-index: 900; inset: 0; background: rgba(7, 29, 53, .54); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.cart-overlay.is-visible { opacity: 1; visibility: visible; }
.cart-panel { position: fixed; z-index: 1000; top: 0; right: 0; width: min(100%, 460px); height: 100dvh; display: grid; grid-template-rows: auto 1fr auto; background: var(--paper); box-shadow: -24px 0 60px rgba(7, 29, 53, .22); transform: translateX(105%); visibility: hidden; transition: transform .3s ease, visibility .3s ease; }
.cart-panel.is-open { transform: translateX(0); visibility: visible; }
.cart-panel__header { display: flex; min-height: 104px; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.cart-panel__header p { margin: 0; color: var(--teal-dark); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cart-panel__header h2 { margin: .15rem 0 0; color: var(--navy); font-size: 1.8rem; line-height: 1; }
.icon-button { display: grid; width: 48px; height: 48px; padding: 0; place-items: center; border: 1px solid var(--line); background: var(--white); color: var(--navy); cursor: pointer; }
.icon-button svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.cart-panel__body { overflow-y: auto; padding: 1.5rem; }
.cart-empty { min-height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.cart-empty[hidden], .cart-items[hidden] { display: none !important; }
.cart-empty svg { width: 54px; height: 54px; margin-bottom: 1rem; fill: none; stroke: var(--teal-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cart-empty p { margin: 0 0 .3rem; color: var(--navy); font-size: 1.15rem; font-weight: 780; }
.cart-empty span { color: var(--muted); font-size: .84rem; }
.cart-items { display: grid; gap: 1rem; }
.cart-item { display: grid; padding-bottom: 1rem; grid-template-columns: 72px 1fr; gap: 1rem; border-bottom: 1px solid var(--line); }
.cart-item__media { display: grid; width: 72px; height: 72px; place-items: center; overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.cart-item__media img { width: 100%; height: 100%; padding: .25rem; object-fit: contain; }
.cart-item__media .image-fallback { padding: .35rem; color: var(--muted); font-size: .58rem; line-height: 1.2; text-align: center; }
.cart-item h3 { margin: 0 0 .25rem; color: var(--navy); font-size: .94rem; line-height: 1.25; }
.cart-item p { margin: 0 0 .65rem; color: var(--muted); font-size: .78rem; }
.cart-item__controls { display: flex; align-items: center; gap: .55rem; }
.quantity-button { display: grid; width: 34px; height: 34px; padding: 0; place-items: center; border: 1px solid var(--line); background: var(--white); color: var(--navy); cursor: pointer; }
.remove-button { margin-left: auto; border: 0; background: transparent; color: #8c3d3d; font-size: .74rem; text-decoration: underline; cursor: pointer; }
.cart-panel__footer { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid var(--line); background: var(--white); }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; color: var(--navy); }
.cart-total strong { font-size: 1.2rem; }
.checkout-button { width: 100%; }
.checkout-button[aria-disabled="true"] { border-color: #aeb9bf; background: #aeb9bf; box-shadow: none; cursor: not-allowed; transform: none; }
.cart-status { min-height: 1.3em; margin: .6rem 0 0; color: #8c3d3d; font-size: .75rem; text-align: center; }

.whatsapp-float { position: fixed; z-index: 200; right: 24px; bottom: 24px; display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: .65rem; padding: .78rem 1.1rem; border-radius: 999px; background: #25d366; box-shadow: 0 10px 28px rgba(7, 29, 53, .2); color: #fff; font-size: .9rem; font-weight: 750; line-height: 1; text-decoration: none; transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.whatsapp-float:hover { background: #20bd5a; box-shadow: 0 14px 34px rgba(7, 29, 53, .26); transform: translateY(-3px); }
.whatsapp-float:active { transform: translateY(-1px); }
.whatsapp-float__icon { width: 27px; height: 27px; flex: 0 0 auto; }

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

@media (max-width: 900px) {
  .store-header { position: fixed; z-index: 800; }
  .store-container { width: min(calc(100% - 40px), var(--container)); }
  .store-nav-wrap { position: relative; min-height: 96px; grid-template-columns: auto 1fr auto auto; align-items: center; }
  .store-brand { width: 86px; height: 86px; }
  .store-menu-toggle { display: block; position: relative; z-index: 802; justify-self: end; }
  
  .store-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem 24px 2.2rem;
    gap: 0;
    background: #fcfaf5 !important;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(11, 39, 71, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 801;
  }

  .store-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .store-nav > a:not(.store-button) {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy) !important;
    font-size: 1.15rem !important;
    font-weight: 750 !important;
    text-align: left;
    text-decoration: none;
    line-height: 1.3;
  }

  .store-nav > a:not(.store-button)::after { display: none; }

  .store-nav .store-button {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    align-self: flex-start !important;
    margin-top: 1.5rem !important;
    min-height: 46px !important;
    padding: .75rem 1.4rem !important;
    font-size: .88rem !important;
    text-align: left !important;
  }

  .catalog-tools { grid-template-columns: 1fr 1fr; }
  .field--search { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article, .trust-grid article:first-child, .trust-grid article:last-child { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 88px; }
  .store-container { width: min(calc(100% - 32px), var(--container)); }
  .store-nav-wrap { min-height: 88px; grid-template-columns: auto 1fr auto auto; gap: .65rem; }
  .store-brand { width: 78px; height: 78px; }
  .store-nav { max-height: calc(100vh - 88px); padding: 1.25rem 20px 1.8rem; }
  .cart-trigger { min-width: 48px; padding: .55rem; }
  .cart-trigger > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
  .cart-trigger b { position: absolute; margin: -34px 0 0 31px; }
  .catalog-header-banner { padding: 7rem 0 2.8rem; }
  .catalog-section { padding: 2rem 0 4.5rem; }
  .catalog-heading h2 { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .catalog-tools { margin-top: 0; padding: 1rem; grid-template-columns: 1fr; }
  .field--search { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog-summary { min-height: 54px; }
  .catalog-empty, .catalog-no-results { padding: 3rem 1.1rem; }
  .store-footer-grid { display: flex; align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .store-footer nav { flex-direction: column; gap: .85rem; }
  .cart-panel { width: 100%; }
  .cart-panel__header { min-height: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
