:root {
  --ink: #2b3a4a;
  --muted: #2b3a4a;
  --paper: #f7ebe1;
  --line: #b8c9d3;
  --gold: #b8c9d3;
  --gold-dark: #2b3a4a;
  --green: #2b3a4a;
  --navy: #2b3a4a;
  --white: #f9f9fb;
  --shadow: 0 24px 70px rgba(43, 58, 74, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

h1, h2, h3, .brand, .nav-links, button, .primary-button, .secondary-button,
.pdf-button, .category-filter, .product-price, .modal-price, .footer-title,
.footer-label, .cart-summary strong {
  font-family: "Quicksand", Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(249, 249, 251, 0.92);
  border-bottom: 1px solid rgba(184, 201, 211, 0.9);
  backdrop-filter: blur(14px);
  animation: slide-down 650ms cubic-bezier(.16, 1, .3, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-logo {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

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

.nav-links .nav-quote {
  margin: -9px 0;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.nav-links .nav-quote:hover { color: var(--white); transform: translateY(-2px); }

.cart-trigger { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 6px; padding: 10px 14px; background: var(--white); font: inherit; font-weight: 800; cursor: pointer; }
.cart-icon { width: 22px; height: 22px; flex: 0 0 auto; fill: none; stroke: #2b3a4a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { display: grid; min-width: 21px; height: 21px; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); font-size: .75rem; }
.cart-trigger, .menu-toggle, .category-filter, .pdf-button, .facebook-link { transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease; }
.cart-trigger:hover, .menu-toggle:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 20px rgba(21, 18, 12, .13); }

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(26px, 6vw, 84px);
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(115deg, rgba(249, 249, 251, 0.72), rgba(249, 249, 251, 0)),
    radial-gradient(circle at 78% 20%, rgba(184, 201, 211, 0.42), transparent 28%),
    var(--paper);
}

.hero-content {
  max-width: 690px;
  transform: translateY(clamp(-110px, -7vw, -60px));
}

.hero-content > * { animation: reveal-up 760ms cubic-bezier(.16, 1, .3, 1) both; }
.hero-content > :nth-child(1) { animation-delay: 80ms; }
.hero-content > :nth-child(2) { animation-delay: 160ms; }
.hero-content > :nth-child(3) { animation-delay: 240ms; }
.hero-content > :nth-child(4) { animation-delay: 320ms; }
.hero-content > :nth-child(5) { animation-delay: 400ms; }

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 56ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.contact-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button,
.secondary-button,
.detail-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  background: var(--ink);
  color: var(--white);
}

.secondary-button {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-product {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(184, 201, 211, .55);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: hero-product-in 950ms 180ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(249, 249, 251, .72) 50%, transparent 62%);
  transform: translateX(-62%) rotate(8deg);
  animation: logo-shine 4.8s 1.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-product img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  padding: clamp(12px, 3vw, 34px);
  animation: logo-float 2.8s ease-in-out infinite;
  will-change: transform;
}

.quality-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quality-strip article {
  padding: 26px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.quality-strip article:hover { background: var(--paper); transform: translateY(-5px); transition: transform 240ms ease, background-color 240ms ease; }

.quality-strip article:last-child {
  border-right: 0;
}

.quality-strip strong,
.quality-strip span {
  display: block;
}

.quality-strip strong {
  margin-bottom: 7px;
}

.quality-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.catalog-section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: none;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading > .eyebrow { display: none; }
.catalog-title { margin-inline: auto; font-size: clamp(2.8rem, 7vw, 6.4rem) !important; letter-spacing: .04em !important; }

.catalog-count { margin: 9px 0 16px; color: var(--muted); font-size: .95rem; font-weight: 400; }
.pdf-button { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border-radius: 5px; background: var(--navy); color: var(--white); font-size: .88rem; font-weight: 800; box-shadow: 0 5px 12px rgba(43, 58, 74, .22); }
.pdf-button img { width: 18px; height: 18px; object-fit: contain; }
.pdf-button:hover { filter: brightness(1.06); }
.catalog-explorer { margin: 24px 0 10px; }
.catalog-search { display: flex; max-width: 680px; margin-inline: auto; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); box-shadow: 0 4px 14px rgba(43, 58, 74, .08); }
.catalog-search:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px rgba(95, 143, 132, .16), 0 8px 20px rgba(21, 18, 12, .08); transform: translateY(-2px); transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease; }
.catalog-search span { color: var(--green); font-size: 1.65rem; line-height: 1; transform: rotate(-20deg); }
.catalog-search input { width: 100%; min-height: 48px; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; }
.catalog-search input::placeholder { color: rgba(43, 58, 74, .55); }
.category-filters { display: flex; max-width: 1050px; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 14px auto 0; }
.category-filter { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; background: var(--white); color: var(--muted); font: inherit; font-size: .86rem; font-weight: 700; cursor: pointer; }
.category-filter:hover, .category-filter.is-active { border-color: var(--green); background: var(--green); color: var(--white); }
.category-filter:hover { transform: translateY(-3px); box-shadow: 0 8px 14px rgba(95, 143, 132, .2); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.empty-catalog { grid-column: 1 / -1; margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--muted); text-align: center; }

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(43, 58, 74, .11);
  animation: card-in 560ms cubic-bezier(.16, 1, .3, 1) both;
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.product-card:nth-child(2) { animation-delay: 60ms; }
.product-card:nth-child(3) { animation-delay: 120ms; }
.product-card:nth-child(4) { animation-delay: 180ms; }
.product-card:nth-child(5) { animation-delay: 240ms; }
.product-card:nth-child(6) { animation-delay: 300ms; }
.product-card:nth-child(n + 7) { animation-delay: 340ms; }
.product-card:hover { transform: translateY(-10px); border-color: rgba(95, 143, 132, .6); box-shadow: 0 20px 36px rgba(21, 18, 12, .14); }

.product-image {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
  background:
    linear-gradient(155deg, rgba(184, 201, 211, 0.25), rgba(247, 235, 225, 0.65)),
    var(--white);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 18px;
  clip-path: inset(4px);
  transform: scale(1.04);
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
}
.product-card:hover .product-image img { transform: scale(1.1) rotate(-1.5deg); }

.discount-badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: grid; min-width: 62px; min-height: 34px; place-items: center; padding: 5px 10px; border-radius: 999px; background: var(--navy); color: var(--white); font-family: "Quicksand", Arial, sans-serif; font-size: .88rem; font-weight: 700; box-shadow: 0 7px 16px rgba(43, 58, 74, .22); }

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
}

.product-tag {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-size: 1.45rem;
}

.product-info p:not(.product-tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-button {
  width: 100%;
  margin-top: auto;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}

.product-price, .modal-price { margin: auto 0 0; color: var(--ink); font-size: 1.22rem; font-weight: 800; }
.price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px; }
.current-price { color: var(--navy); font-size: 1.35rem; font-weight: 800; }
.old-price { color: rgba(43, 58, 74, .55); font-size: 1rem; font-weight: 500; text-decoration: line-through; }
.add-cart-button, .checkout-button { display: inline-flex; min-height: 46px; width: 100%; align-items: center; justify-content: center; border: 0; border-radius: 6px; background: var(--green); color: var(--white); font: inherit; font-weight: 800; cursor: pointer; }
.product-info .add-cart-button { margin-top: 8px; }

.detail-button:hover,
.primary-button:hover {
  filter: brightness(1.08);
}
.primary-button, .secondary-button, .detail-button, .add-cart-button, .checkout-button { transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease, background-color 200ms ease; }
.primary-button:hover, .secondary-button:hover, .detail-button:hover, .add-cart-button:hover, .checkout-button:hover { transform: translateY(-3px); box-shadow: 0 10px 18px rgba(21, 18, 12, .16); }
.add-cart-button:active, .detail-button:active, .primary-button:active, .secondary-button:active { transform: translateY(0) scale(.97); }

.contact-band {
  justify-content: space-between;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 6vw, 72px);
  padding: clamp(26px, 5vw, 52px);
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
}

.contact-band div {
  max-width: 760px;
}

.contact-band .eyebrow { color: var(--line); }

.contact-band h2 {
  font-size: clamp(1.75rem, 4vw, 3.3rem);
}

.contact-band .primary-button { background: var(--gold); color: var(--navy); }

.delivery-section { padding: 0 clamp(18px, 5vw, 72px) clamp(52px, 7vw, 92px); }
.delivery-heading { margin-bottom: 24px; text-align: center; }
.delivery-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); }
.delivery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 980px; margin-inline: auto; }
.delivery-grid article { padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 14px 34px rgba(43, 58, 74, .1); }
.delivery-grid h3 { margin: 12px 0 8px; font-size: 1.5rem; }
.delivery-grid p { margin: 0; color: var(--muted); line-height: 1.65; }
.delivery-icon { width: 42px; height: 42px; color: #2b3a4a; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-footer { display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 56px; padding: 42px clamp(24px, 5vw, 72px); border-top: 1px solid var(--line); background: var(--white); }
.footer-column { max-width: 310px; }
.footer-title { margin: 0 0 18px; color: var(--navy); font-size: .84rem; font-weight: 800; text-transform: uppercase; }
.footer-label { margin: 0 0 8px; font-size: .9rem; font-weight: 800; }
.footer-column address { margin: 0 0 18px; color: var(--muted); font-size: .94rem; font-style: normal; line-height: 1.55; }
.footer-link { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-text { margin: 0 0 18px; color: var(--muted); }
.facebook-link { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 3px; background: #4267b2; color: var(--white); font-family: Arial, sans-serif; font-size: 1.4rem; font-weight: 800; }
.footer-complaints { justify-self: end; }
.complaints-link { display: inline-flex; align-items: center; gap: 15px; color: var(--ink); font-family: "Quicksand", Arial, sans-serif; font-size: .95rem; font-weight: 700; line-height: 1.35; }
.complaints-link svg { width: 54px; height: 54px; color: #2b3a4a; fill: rgba(184, 201, 211, .3); stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-copyright { grid-column: 1 / -1; margin: 6px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; text-align: center; }
.footer-copyright strong { color: var(--ink); font-family: "Quicksand", Arial, sans-serif; font-weight: 700; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 10, 10, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.modal {
  position: relative;
  display: grid;
  width: min(900px, 100%);
  max-height: min(86vh, 760px);
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1fr);
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: contain;
  background: var(--paper);
  padding: 22px;
}

.modal-copy {
  padding: clamp(24px, 5vw, 42px);
}

.modal-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.modal-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.modal-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.modal-copy li {
  padding: 12px 14px;
  background: var(--paper);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  color: var(--ink);
  line-height: 1.45;
}
.modal-purchase { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.modal-purchase .modal-price { margin: 0; white-space: nowrap; }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #21c064;
  box-shadow: 0 14px 38px rgba(2, 77, 36, 0.3);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.cart-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(10, 10, 10, .5); opacity: 0; pointer-events: none; transition: opacity 180ms ease; }
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-panel { display: flex; flex-direction: column; width: min(460px, 100%); height: 100%; margin-left: auto; padding: 26px; background: var(--white); box-shadow: var(--shadow); transform: translateX(100%); transition: transform 220ms ease; }
.cart-backdrop.is-open .cart-panel { transform: translateX(0); }
.cart-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }.cart-heading .eyebrow { margin-bottom: 5px; }.cart-heading h2 { margin: 0; font-size: 2rem; }.cart-close { width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 1.5rem; cursor: pointer; }
.cart-delivery-info { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-delivery-item { display: flex; min-width: 0; align-items: center; gap: 8px; padding: 9px; border-radius: 9px; background: var(--paper); }
.cart-delivery-item svg { width: 25px; height: 25px; flex: 0 0 auto; color: #2b3a4a; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.cart-delivery-item span { display: grid; min-width: 0; gap: 2px; }
.cart-delivery-item strong { color: var(--ink); font-family: "Quicksand", Arial, sans-serif; font-size: .8rem; }
.cart-delivery-item small { color: var(--muted); font-size: .7rem; line-height: 1.25; }
.cart-items { flex: 1; overflow: auto; padding: 18px 0; }.empty-cart { color: var(--muted); line-height: 1.6; }.cart-item { display: grid; grid-template-columns: 82px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }.cart-item img { width: 82px; height: 82px; object-fit: contain; background: var(--paper); border-radius: 6px; }.cart-item h3, .cart-item p { margin: 0; }.cart-item h3 { font-size: 1rem; }.cart-item p { margin-top: 6px; font-weight: 800; }.quantity-controls { display: flex; align-items: center; gap: 10px; margin-top: 10px; }.quantity-controls button { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 4px; background: var(--white); font: inherit; cursor: pointer; }.quantity-controls .remove-item { width: auto; margin-left: auto; border: 0; color: var(--navy); font-size: .78rem; }
.cart-summary { padding-top: 18px; border-top: 1px solid var(--line); }.cart-summary p { display: flex; align-items: center; justify-content: space-between; margin: 0 0 16px; font-size: 1.1rem; }.cart-summary strong { font-size: 1.35rem; }.checkout-button.is-disabled { opacity: .45; pointer-events: none; }

.reviews-trigger { position: fixed; left: 20px; bottom: 22px; z-index: 32; display: inline-flex; min-height: 52px; align-items: center; gap: 9px; overflow: hidden; padding: 0 20px; border: 1px solid rgba(184, 201, 211, .34); border-radius: 999px; background: linear-gradient(110deg, var(--navy) 0 38%, #40556b 50%, var(--navy) 62% 100%); background-size: 260% 100%; color: var(--white); font-weight: 700; box-shadow: 0 12px 30px rgba(43, 58, 74, .28); cursor: pointer; animation: reviews-glow 3.8s ease-in-out infinite; transition: transform 220ms ease, box-shadow 220ms ease; }
.reviews-trigger:hover { transform: translateY(-4px) scale(1.035); box-shadow: 0 18px 36px rgba(43, 58, 74, .36); }
.reviews-trigger span { color: #f4b400; font-size: 1.1rem; animation: review-star 2.2s ease-in-out infinite; }
.review-stars { color: #f4b400; letter-spacing: .08em; }
.reviews-panel { position: fixed; left: 20px; bottom: 82px; z-index: 65; width: min(390px, calc(100vw - 36px)); max-height: min(620px, calc(100vh - 110px)); overflow: auto; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 24px 60px rgba(43, 58, 74, .28); opacity: 0; pointer-events: none; transform: translateY(24px) scale(.96); transform-origin: bottom left; transition: opacity 220ms ease, transform 220ms ease; }
.reviews-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.reviews-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.reviews-heading .eyebrow { margin-bottom: 4px; }
.reviews-heading h2 { margin: 0; font-size: 1.8rem; }
.reviews-close { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 0; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 1.35rem; cursor: pointer; }
.review-form { display: grid; gap: 10px; padding: 16px 0 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-form label, .review-form legend { color: var(--ink); font-family: "Quicksand", Arial, sans-serif; font-size: .88rem; font-weight: 700; }
.review-form label span { color: var(--muted); font-family: "Lato", Arial, sans-serif; font-weight: 400; }
.review-form input, .review-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; background: var(--white); color: var(--ink); font: inherit; resize: vertical; }
.review-form input:focus, .review-form textarea:focus { outline: 3px solid rgba(184, 201, 211, .55); border-color: var(--navy); }
.review-form fieldset { margin: 2px 0; padding: 0; border: 0; }
.review-form legend { margin-bottom: 5px; }
.star-picker { display: flex; gap: 2px; }
.star-picker button { border: 0; padding: 0 2px; background: transparent; color: rgba(43, 58, 74, .22); font-size: 2rem; line-height: 1; cursor: pointer; transition: color 150ms ease, transform 150ms ease; }
.star-picker button.is-active { color: #f4b400; }
.star-picker button:focus-visible { color: #f4b400; outline: 2px solid var(--navy); outline-offset: 2px; border-radius: 4px; }
.star-picker button:hover { transform: scale(1.15); }
.review-submit { min-height: 43px; border: 0; border-radius: 8px; background: var(--navy); color: var(--white); font-weight: 700; cursor: pointer; }
.review-submit:disabled { opacity: .6; cursor: wait; }
.review-status { min-height: 20px; margin: 0; color: var(--muted); font-size: .82rem; }
.reviews-list { display: grid; }
.reviews-list article { padding: 16px 0; border-bottom: 1px solid var(--line); }
.reviews-list article p { margin: 7px 0; color: var(--muted); line-height: 1.5; }
.reviews-list article small { color: rgba(43, 58, 74, .7); }
.reviews-empty-message { margin: 18px 0 0; color: var(--muted); line-height: 1.5; }
.reviews-error { margin: 18px 0 0; color: #9b3131; line-height: 1.5; }

@media (hover: hover) {
  .star-picker:hover button { color: #f4b400; }
  .star-picker button:hover ~ button { color: rgba(43, 58, 74, .22); }
}

@keyframes slide-down { from { opacity: 0; transform: translateY(-28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-product-in { from { opacity: 0; transform: translateX(64px) rotate(3deg); } to { opacity: 1; transform: translateX(0) rotate(0); } }
@keyframes logo-float {
  0%, 100% { transform: translate3d(0, 10px, 0); }
  50% { transform: translate3d(0, -22px, 0); }
}
@keyframes logo-shine {
  0%, 18% { transform: translateX(-62%) rotate(8deg); opacity: 0; }
  36% { opacity: 1; }
  58%, 100% { transform: translateX(62%) rotate(8deg); opacity: 0; }
}
@keyframes reviews-glow {
  0%, 100% { background-position: 100% 50%; box-shadow: 0 12px 30px rgba(43, 58, 74, .28); }
  50% { background-position: 0 50%; box-shadow: 0 15px 36px rgba(43, 58, 74, .42); }
}
@keyframes review-star {
  0%, 100% { transform: scale(1) rotate(0); filter: brightness(1); }
  50% { transform: scale(1.28) rotate(12deg); filter: brightness(1.18); }
}
@keyframes card-in { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes whatsapp-pulse { 0%, 100% { box-shadow: 0 14px 38px rgba(2, 77, 36, .3); transform: scale(1); } 50% { box-shadow: 0 0 0 12px rgba(33, 192, 100, .16), 0 14px 38px rgba(2, 77, 36, .25); transform: scale(1.06); } }

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

@media (max-width: 900px) {
  .hero,
  .product-grid,
  .quality-strip,
  .modal {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content { transform: none; }

  .hero-product,
  .hero-product img {
    min-height: 360px;
  }

  .quality-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quality-strip article:last-child {
    border-bottom: 0;
  }

  .modal img {
    min-height: 280px;
  }
  .site-footer { grid-template-columns: 1fr; gap: 30px; }
  .footer-complaints { justify-self: start; }
  .delivery-grid { grid-template-columns: 1fr; }
  .modal-purchase { align-items: stretch; flex-direction: column; }
}

@media (max-width: 640px) {
  .site-footer { padding-bottom: 110px; }
  .footer-copyright strong { display: block; margin-bottom: 5px; }
  .footer-copyright > span { display: none; }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0;
    font-size: 0.95rem;
    background: var(--white);
    border: 0 solid var(--line);
    border-radius: 8px;
    opacity: 0;
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease,
      border-width 180ms ease;
  }
  .cart-trigger { position: fixed; top: 86px; right: 18px; z-index: 31; width: 52px; height: 52px; justify-content: center; padding: 0; border-radius: 50%; box-shadow: 0 10px 26px rgba(21, 18, 12, .2); }
  .cart-trigger > span:nth-child(2) { display: none; }
  .cart-count { position: absolute; top: -4px; right: -4px; }

  .nav-links.is-open {
    max-height: 280px;
    padding: 8px;
    border-width: 1px;
    opacity: 1;
  }

  .nav-links a {
    display: block;
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: var(--paper);
  }

  .nav-links .nav-quote { margin: 0; color: var(--white); }

  .hero {
    padding-top: 30px;
  }

  .hero-product,
  .hero-product img {
    min-height: 300px;
  }

  .contact-band,
  .contact-band .primary-button {
    width: 100%;
  }

  .product-image,
  .product-image img {
    min-height: 260px;
    height: 260px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .reviews-trigger { left: 16px; bottom: 16px; }
  .reviews-panel { left: 12px; bottom: 76px; width: calc(100vw - 24px); }
}
