:root {
  --red: #d60912;
  --red-dark: #a20d14;
  --brand-red: #b60202;
  --cream: #f7f3ea;
  --cream-2: #fffaf1;
  --cream-3: #efe6d6;
  --gold: #d6a332;
  --green: #0d6b2c;
  --green-soft: #edf8f0;
  --navy: #071d42;
  --ink: #0b1733;
  --muted: #5f6c7f;
  --line: #e4dccd;
  --surface: #fffdf8;
  --white: #fff;
  --soft-red: #fff0ef;
  --charcoal: #090503;
  --espresso: #1a0d08;
  --ember: #f05a24;
  --shadow: 0 18px 44px rgba(36, 23, 11, .10);
  --shadow-strong: 0 28px 70px rgba(36, 23, 11, .18);
  --font-ui: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Fraunces, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#inicio, #catalogo, #productos, #pedido, #fabrica, #nosotros, #cadena-frio, #contacto { scroll-margin-top: 96px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 163, 50, .14), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, #fbf6ed 48%, #f4ecdf 100%);
  color: var(--ink);
  font: 500 14px/1.4 var(--font-ui);
  font-variant-numeric: tabular-nums;
}
body.cart-open,
body.sarai-open,
body.product-modal-open { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button, select { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(214, 9, 18, .22);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid rgba(228, 220, 205, .9);
  box-shadow: 0 10px 34px rgba(36, 23, 11, .08);
  backdrop-filter: blur(18px);
}
.header-main {
  min-height: 72px;
  display: grid;
  grid-template-columns: 190px minmax(260px, 1fr) auto auto auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px clamp(22px, 4vw, 56px);
}
.brand,
.brand img {
  width: 180px;
}
.brand img {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(7, 29, 66, .12));
}
.location-chip {
  min-height: 42px;
  border: 1px solid rgba(13, 107, 44, .22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.location-chip svg { width: 20px; height: 20px; }
.header-socials {
  display: inline-flex;
  gap: 6px;
}
.header-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 29, 66, .12);
  border-radius: 50%;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.header-socials a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(7, 29, 66, .12);
}
.header-socials svg { width: 21px; height: 21px; }
.header-socials .social-facebook { background: #1877f2; color: #fff; }
.header-socials .social-instagram { background: linear-gradient(135deg, #833ab4, #e1306c 48%, #fcb045); color: #fff; }
.global-search-wrap {
  position: relative;
  min-width: 0;
  width: 100%;
}
.global-search {
  min-height: 44px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border: 2px solid rgba(7, 29, 66, .10);
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 12px 26px rgba(36, 23, 11, .06);
}
.global-search:focus-within {
  border-color: rgba(214, 9, 18, .44);
  box-shadow: 0 0 0 4px rgba(214, 9, 18, .08), 0 14px 28px rgba(36, 23, 11, .08);
}
.global-search svg {
  width: 20px;
  height: 20px;
  justify-self: center;
  color: var(--muted);
}
.global-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 650;
}
.global-search input::placeholder { color: #7a8495; }
.search-suggestions {
  position: absolute;
  z-index: 70;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: min(70dvh, 460px);
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}
.search-suggestion {
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 8px;
  text-align: left;
}
.search-suggestion:hover,
.search-suggestion.is-active {
  background: var(--cream);
}
.search-suggestion img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}
.search-suggestion strong,
.search-suggestion span { display: block; }
.search-suggestion strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.search-suggestion span {
  color: var(--muted);
  font-size: 12px;
}
.search-all-results,
.search-empty button {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}
.search-empty {
  display: grid;
  gap: 10px;
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
}
.search-empty p { margin: 0; }
.cart-link {
  position: relative;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(7, 29, 66, .15);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.cart-link svg {
  width: 25px;
  height: 25px;
}
.cart-link span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}
.site-menu { position: relative; }
.site-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 29, 66, .15);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.site-menu summary::-webkit-details-marker { display: none; }
.site-menu summary svg { width: 21px; height: 21px; }
.site-menu[open] summary { border-color: rgba(214, 9, 18, .36); color: var(--red); }
.site-menu nav {
  position: absolute;
  z-index: 65;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}
.site-menu nav a { padding: 10px 12px; border-radius: 8px; color: var(--navy); font-size: 13px; font-weight: 850; }
.site-menu nav a:hover { background: var(--cream); color: var(--red); }
.commerce-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(480px, 38vw, 620px);
  display: flex;
  align-items: flex-end;
  padding: 42px clamp(5vw, 6vw, 7vw) clamp(48px, 5vw, 64px);
  overflow: hidden;
  background: var(--cream-2);
}
.commerce-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(ellipse at 12% 100%, rgba(247, 232, 197, .92) 0%, rgba(247, 232, 197, .62) 24%, rgba(247, 232, 197, .18) 42%, transparent 58%);
  pointer-events: none;
}
.hero-copy {
  width: min(520px, 100%);
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 241, .78);
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}
.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(56px, 4.3vw, 68px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-copy p {
  max-width: 520px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 21px; height: 21px; }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 7px 14px rgba(214, 9, 18, .22);
}
.btn-red:hover { background: var(--red-dark); box-shadow: 0 9px 18px rgba(162, 13, 20, .26); }
.btn-outline {
  border: 1px solid rgba(7, 29, 66, .22);
  background: rgba(255, 253, 248, .82);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(36, 23, 11, .08);
}
.btn-full { width: 100%; }
.hero-main-product {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 253, 248, .98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(36, 23, 11, .06);
}
.trust-strip article {
  min-height: 96px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--green);
}
.trust-strip article + article { border-left: 1px solid var(--line); }
.trust-strip svg {
  width: 30px;
  height: 30px;
  grid-row: 1 / span 2;
}
.trust-strip strong,
.trust-strip span {
  display: block;
  line-height: 1.18;
}
.trust-strip strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.trust-strip span {
  color: var(--muted);
  font-size: 12px;
}

.shop-shell {
  display: block;
  padding: 34px clamp(18px, 4vw, 56px) 30px;
}

.catalog-area { min-width: 0; }
.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.catalog-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 950;
  line-height: .98;
}
.catalog-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.category-chips button,
.category-chips a {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,248,.96);
  color: var(--navy);
  padding: 0 15px;
  font-size: 13px;
  font-weight: 850;
}
.category-chips button.is-selected,
.category-chips a.is-selected {
  border-color: rgba(214, 9, 18, .28);
  background: var(--red);
  color: #fff;
}
.request-summary {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-height: 52px;
  padding: 4px 4px 4px 12px;
  border: 1px solid rgba(13, 107, 44, .18);
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.request-summary > svg { width: 19px; height: 19px; color: var(--green); flex: 0 0 auto; }
.request-summary strong { color: var(--green); font-size: 15px; }
.request-summary button {
  min-height: 44px;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--green);
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
}
.request-summary button:hover { background: var(--green); color: #fff; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 16px;
}
.product-grid.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 150px auto;
  background: rgba(255,253,248,.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(36, 23, 11, .05);
  transition: transform .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 9, 18, .20);
}
.product-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(228, 220, 205, .82);
}
.product-image-button {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center;
}
.product-body {
  min-height: 0;
  padding: 14px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.12;
}
.product-name-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
}
.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.product-actions {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 8px;
  margin-top: auto;
}
.card-quantity {
  min-width: 0;
  height: 44px;
  display: grid;
  grid-template-columns: 44px minmax(40px, 1fr) 44px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}
.card-quantity button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
}
.card-quantity button:hover:not(:disabled) { background: var(--cream); color: var(--red); }
.card-quantity button:disabled { color: #b9b1a5; cursor: not-allowed; }
.card-quantity output {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.add-to-cart {
  width: 100%;
  height: 44px;
  min-height: 44px;
  flex: 0 0 auto;
  margin-top: 0;
  padding: 0 14px;
  border: 1px solid rgba(214,9,18,.52);
  border-radius: 9px;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}
.add-to-cart:hover {
  background: var(--red);
  color: #fff;
}
.empty-state {
  grid-column: 1 / -1;
  min-height: 150px;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 1px dashed #c9bca6;
  border-radius: 14px;
  background: rgba(255,253,248,.7);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}
.empty-state p { margin: 0; }
.empty-state button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: #fff;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.request-process,
.institutional-section,
.contact-section {
  width: min(1280px, calc(100% - 64px));
  margin: 72px auto 0;
}
.request-process-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 3.25vw, 48px);
  line-height: 1.06;
}
.request-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.request-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 116px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.request-steps li:first-child { padding-left: 0; border-left: 0; }
.request-steps span {
  color: var(--red);
  font-family: Fraunces, Georgia, serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.request-steps h3 { margin: 0; color: var(--navy); font-size: 17px; line-height: 1.2; }
.request-steps p,
.request-process-note { margin: 8px 0 0; color: var(--muted); font-size: 14px; font-weight: 600; line-height: 1.5; }
.request-process-note { margin-top: 22px; }
.institutional-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}
.institutional-copy { max-width: 530px; }
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.institutional-copy h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 800;
  line-height: 1.06;
}
.institutional-copy h2::after,
.contact-section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 20px;
  border-radius: 2px;
  background: var(--red);
}
.institutional-copy > p:last-child,
.contact-form-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}
.institutional-points {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.institutional-points li { display: flex; align-items: center; gap: 10px; }
.institutional-points li::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--red); }
.factory-media {
  position: relative;
  min-height: 458px;
  padding: 0 0 54px 54px;
}
.factory-media img,
.cold-media img {
  width: 100%;
  object-fit: cover;
}
.factory-main-image {
  height: 458px;
  border-radius: 10px;
}
.factory-secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(52%, 310px) !important;
  aspect-ratio: 1 / .78;
  border: 6px solid #fff;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(36, 23, 11, .16);
}
.essence-section {
  width: min(1280px, calc(100% - 64px));
  margin: 48px auto 0;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.essence-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}
.essence-statements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 30px;
}
.essence-statements section { padding-left: 18px; border-left: 3px solid var(--red); }
.essence-statements h3 { margin: 0; color: var(--navy); font-size: 16px; font-weight: 900; }
.essence-statements p { margin: 9px 0 0; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.6; }
.essence-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.essence-values span { color: var(--navy); font-size: 14px; font-weight: 850; line-height: 1.35; }
.cold-section {
  width: 100%;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(44px, 6vw, 84px) max(32px, calc((100% - 1280px) / 2));
  background: var(--navy);
}
.cold-section .section-eyebrow { color: #efd48d; }
.cold-section h2,
.cold-section .institutional-points { color: #fff; }
.cold-section .institutional-copy > p:not(.section-eyebrow) { color: rgba(255,255,255,.88); }
.cold-section .institutional-points li::before { background: #efd48d; }
.cold-media img { height: 420px; border-radius: 12px; }
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line);
}
.contact-form-heading { max-width: 590px; }
.contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.contact-form-fields .field-full { grid-column: 1 / -1; }
.contact-privacy-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}
.contact-privacy-note a { color: var(--green); font-weight: 850; }
.contact-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 650;
  padding: 0 12px;
}
.contact-submit { display: grid; justify-items: start; gap: 8px; margin-top: 22px; }
.contact-submit .btn { min-height: 46px; }
.contact-submit p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 650; }
.contact-submit .contact-status { color: var(--red); min-height: 18px; }
.contact-details { display: grid; gap: 16px; }
.location-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(7, 29, 66, .12);
  border-radius: 12px;
  background: var(--cream);
}
.location-heading { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; align-items: center; }
.location-heading .location-google-pin { width: 42px; height: 42px; object-fit: contain; }
.location-heading div { display: grid; gap: 4px; }
.location-panel span { color: var(--green); font-size: 14px; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.location-panel strong { color: var(--navy); font-size: 20px; line-height: 1.22; }
.location-panel p { margin: 0; color: var(--muted); font-size: 16px; font-weight: 700; line-height: 1.32; }
.location-map { display: block; width: 100%; height: 250px; border: 0; border-radius: 9px; }
.contact-channel {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(7, 29, 66, .18);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.contact-channel .google-maps-pin { width: 18px; height: 18px; flex: 0 0 auto; object-fit: contain; }
.contact-channel:hover { border-color: var(--green); background: rgba(13, 107, 44, .06); text-decoration: none; }
.footer-contact { display: grid; gap: 7px; font-style: normal; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  background: rgba(7, 29, 66, .42);
  transition: opacity .2s ease;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(420px, 100vw);
  height: 100vh;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  background: var(--cream);
  box-shadow: -28px 0 70px rgba(7, 29, 66, .24);
  transform: translateX(105%);
  transition: transform .24s ease;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 90;
  width: min(840px, calc(100vw - 40px));
  max-height: min(680px, calc(100dvh - 40px));
  overflow: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 18px));
  transition: opacity .2s ease, transform .2s ease;
}
.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.product-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.product-modal-head p {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.product-modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
}
.product-modal-close svg { width: 20px; height: 20px; }
.product-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(250px, 1fr);
  gap: 16px;
  align-items: center;
}
.product-modal-media {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 0;
  border-radius: 10px;
  background: #fff;
}
.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-modal-content h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
}
.product-modal-size {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}
.product-modal-category {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.product-modal-category span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-modal-description {
  margin: 14px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.product-modal-note {
  margin: 0;
  padding: 11px 12px;
  border-left: 3px solid var(--green);
  background: var(--green-soft);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.modal-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}
.modal-quantity > div {
  display: grid;
  grid-template-columns: 44px 44px 44px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.modal-quantity button {
  border: 0;
  background: #fff;
  min-height: 44px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}
.add-confirmation {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 85;
  width: min(390px, calc(100vw - 48px));
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(13, 107, 44, .22);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.add-confirmation[hidden] { display: none; }
.add-confirmation span { min-width: 0; flex: 1; }
.add-confirmation button {
  min-height: 40px;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.add-confirmation:not([hidden]) ~ .sarai-launcher {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.modal-quantity button:disabled { color: #b9b1a5; cursor: not-allowed; }
.modal-quantity output {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
}
body.cart-open .drawer-overlay,
body.sarai-open .drawer-overlay,
body.product-modal-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
.order-card {
  padding: 18px;
  min-width: 0;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(36, 23, 11, .08);
}
.drawer-head {
  margin-bottom: 16px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.drawer-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.drawer-head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}
.drawer-head h2 strong {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}
.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
}
.drawer-close svg { width: 20px; height: 20px; }
.order-lines {
  display: grid;
  gap: 12px;
}
.order-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px 12px;
  align-items: center;
}
.order-line img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.line-details {
  min-width: 0;
}
.order-line strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.12;
}
.order-line span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.line-qty {
  grid-column: 2;
  justify-self: start;
  display: grid;
  grid-template-columns: 44px 48px 44px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.line-qty button {
  border: 0;
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.line-qty button:disabled {
  color: #b9b1a5;
  cursor: not-allowed;
}
.line-qty output {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.remove-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #f4eddf;
  color: var(--muted);
  display: grid;
  place-items: center;
}
.remove-button svg { width: 14px; height: 14px; }
.empty-cart {
  margin: 0;
  padding: 16px;
  border: 1px dashed #c9bca6;
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.customer-form {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(13, 107, 44, .16);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(237, 248, 240, .78), rgba(255, 253, 248, .94));
}
.field {
  display: grid;
  gap: 6px;
}
.field span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(7, 29, 66, .14);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  outline: 0;
}
.field input {
  min-height: 40px;
  padding: 0 12px;
}
.field textarea {
  resize: vertical;
  min-height: 76px;
  padding: 10px 12px;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(214, 9, 18, .42);
  box-shadow: 0 0 0 4px rgba(214, 9, 18, .08);
}
.field-error {
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
}
.field input[aria-invalid="true"] {
  border-color: var(--red);
}
.btn[disabled] {
  cursor: not-allowed;
  opacity: .52;
  box-shadow: none;
}
.order-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.32;
}
.quote-confirmation {
  width: min(420px, calc(100vw - 40px));
  margin: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow-strong);
}
.quote-confirmation::backdrop { background: rgba(7, 29, 66, .34); }
.quote-confirmation h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
}
.quote-confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.quote-confirmation-actions .btn { min-height: 44px; }
.sarai-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(400px, calc(100vw - 48px));
  max-height: min(680px, calc(100dvh - 48px));
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 22px 54px rgba(36, 23, 11, .20);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .2s ease, transform .2s ease;
}
.sarai-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sarai-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}
.sarai-panel-head p {
  margin: 0 0 3px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}
.sarai-panel-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}
.sarai-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
}
.sarai-close svg { width: 19px; height: 19px; }
.chat-window {
  display: grid;
  gap: 8px;
  max-height: 214px;
  overflow: auto;
  padding-right: 2px;
}
.chat-window p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--navy);
  background: #f4eddf;
  font-size: 13px;
  line-height: 1.4;
}
.chat-window .user {
  justify-self: end;
  background: var(--red);
  color: #fff;
}
.sarai-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(13, 107, 44, .18);
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.sarai-summary strong { color: var(--green); font-size: 15px; }
.sarai-summary button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.sarai-product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: 270px;
  overflow: auto;
  padding-right: 2px;
}
.sarai-product-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.sarai-product-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.sarai-product-card div { min-width: 0; display: grid; gap: 4px; }
.sarai-product-card strong { color: var(--navy); font-size: 14px; font-weight: 900; line-height: 1.15; }
.sarai-product-card span { color: var(--muted); font-size: 12px; font-weight: 700; }
.sarai-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.sarai-product-card button {
  width: fit-content;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(214, 9, 18, .42);
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.sarai-product-card button:hover { background: var(--red); color: #fff; }
.sarai-product-actions button:last-child { border-color: var(--green); background: var(--green); color: #fff; }
.sarai-product-actions button:last-child:hover { background: #0a5c28; }
.sarai-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 150px;
  overflow: auto;
}
.sarai-options button {
  min-height: 38px;
  border: 1px solid rgba(214, 9, 18, .24);
  border-radius: 9px;
  padding: 7px 10px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}
.chat-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}
.chat-form input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(7, 29, 66, .13);
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  outline: 0;
}
.chat-form input:focus {
  border-color: rgba(214, 9, 18, .42);
  box-shadow: 0 0 0 4px rgba(214, 9, 18, .08);
}
.chat-form button {
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
}
.chat-form svg { width: 18px; height: 18px; }
.sarai-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 220px;
  min-height: 56px;
  border: 1px solid var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #fffdf8;
  color: var(--red);
  text-align: left;
  box-shadow: 0 12px 28px rgba(36, 23, 11, .14);
  transition: opacity .2s ease, visibility .2s ease;
}
.sarai-launcher > svg { width: 24px; height: 24px; flex: 0 0 auto; }
.sarai-launcher strong,
.sarai-launcher small { display: block; }
.sarai-launcher strong { font-size: 14px; font-weight: 900; line-height: 1.1; }
.sarai-launcher small { margin-top: 2px; color: var(--navy); font-size: 12px; font-weight: 750; line-height: 1.1; }
.sarai-launcher-mobile { display: none; font-size: 14px; font-weight: 900; }
body.cart-open .sarai-launcher,
body.sarai-open .sarai-launcher,
body.product-modal-open .sarai-launcher {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
body.products-in-view .sarai-launcher {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr;
  gap: 24px;
  align-items: center;
  padding: 26px clamp(28px, 5vw, 72px);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}
.footer-brand { display: grid; gap: 6px; }
.footer-brand img { width: 150px; height: auto; }
.footer-brand span { color: rgba(255,255,255,.76); font-size: 12px; line-height: 1.4; }
.footer-social-block { display: grid; gap: 5px; margin-top: 4px; }
.footer-social-block p { margin: 0; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
.footer-socials a:hover { background: #fff; color: var(--navy); text-decoration: none; }
.footer-socials svg { width: 18px; height: 18px; }
.footer-socials .social-facebook { border-color: #1877f2; background: #1877f2; color: #fff; }
.footer-socials .social-instagram { border-color: #e1306c; background: linear-gradient(135deg, #833ab4, #e1306c 48%, #fcb045); color: #fff; }
.site-footer nav { display: grid; gap: 7px; }
.site-footer a { color: #fff; font-weight: 800; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-contact { color: rgba(255,255,255,.8); font-size: 12px; line-height: 1.45; }

.legal-page { background: var(--cream); }
.legal-document {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 80px;
  color: var(--navy);
}
.legal-back { color: var(--green); font-size: 14px; font-weight: 850; text-decoration: none; }
.legal-back:hover { text-decoration: underline; }
.legal-document .section-eyebrow { margin: 36px 0 10px; }
.legal-document h1,
.legal-document h2 { font-family: Fraunces, Georgia, serif; color: var(--navy); }
.legal-document h1 { margin: 0; font-size: clamp(38px, 5vw, 56px); line-height: 1.05; }
.legal-document h2 { margin: 34px 0 10px; font-size: 25px; line-height: 1.2; }
.legal-document p { margin: 0; color: var(--muted); font-size: 16px; font-weight: 600; line-height: 1.7; }
.legal-document .legal-intro { margin-top: 16px; color: var(--green); }
.legal-document a:not(.legal-back) { color: var(--green); font-weight: 850; }

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 180px minmax(260px, 1fr) auto auto;
  }
  .location-chip { display: none; }
  .header-socials { display: none; }
  .commerce-hero {
    padding-inline: 38px;
  }
  .hero-copy,
  .hero-copy p { max-width: 370px; }
  .shop-shell {
    padding-inline: 24px;
  }
  .request-process,
  .essence-section,
  .institutional-section,
  .contact-section { width: min(100% - 48px, 1280px); }
  .institutional-section { gap: 34px; }
  .factory-media { min-height: 400px; padding: 0 0 48px 48px; }
  .factory-main-image { height: 400px; }
  .cold-section { width: 100%; padding: 44px 48px; }
}

@media (max-width: 899px) {
  #inicio, #catalogo, #productos, #pedido, #fabrica, #nosotros, #cadena-frio, #contacto { scroll-margin-top: 120px; }
  .header-main {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 9px 16px;
  }
  .brand,
  .brand img { width: 168px; }
  .global-search-wrap {
    grid-column: 1 / -1;
    order: 5;
  }
  .global-search { min-height: 44px; }
  .search-suggestions {
    max-height: min(70dvh, calc(100dvh - 140px));
  }
  .commerce-hero {
    padding-inline: 28px;
  }
  .hero-copy p {
    max-width: 640px;
    font-size: 16px;
  }
  .trust-strip {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .shop-shell { padding-inline: 14px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid.featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .catalog-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .request-summary {
    width: 100%;
    justify-content: flex-start;
  }

  .request-summary button {
    margin-left: auto;
  }

  .commerce-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px 0;
    overflow: visible;
  }
  .commerce-hero::before { display: none; }
  .hero-copy {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero-eyebrow {
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    font-size: 14px;
  }
  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.02;
  }
  .hero-copy p {
    max-width: 580px;
    margin: 14px 0 20px;
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 11px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .hero-main-product {
    position: static;
    z-index: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin-top: 24px;
    object-fit: contain;
    object-position: center;
  }
  .trust-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }
  .trust-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .sarai-panel {
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 85dvh;
    padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .sarai-panel.is-open { transform: translateY(0); }
  .sarai-product-list { grid-template-columns: 1fr; max-height: 250px; }
  .product-modal {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85dvh;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .product-modal.is-open { transform: translateY(0); }
  .product-modal-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-modal-media {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    padding: 8px;
  }
  .product-modal-content h2 { font-size: 28px; }
  .sarai-launcher {
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: auto;
    min-width: 208px;
    min-height: 56px;
    justify-content: center;
    border-radius: 14px;
  }
  .sarai-launcher-desktop { display: none; }
  .sarai-launcher-mobile { display: block; }
}

@media (max-width: 599px) {
  .add-confirmation {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: calc(100vw - 28px);
  }
  .sarai-launcher {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
  }
  .sarai-launcher-mobile { display: none; }
  .search-suggestion {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-grid.featured-grid { grid-template-columns: 1fr; }
  .product-card {
    min-height: 0;
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-rows: 1fr;
  }
  .product-media {
    width: 120px;
    height: 120px;
    min-height: 120px;
    align-self: start;
    padding: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .product-card img { width: 120px; height: 120px; }
  .product-body { padding: 12px; }
  .product-body h3 { font-size: 15px; }
  .product-body > p { margin: 4px 0 10px; }
  .add-to-cart { height: 44px; min-height: 44px; margin-top: auto; padding: 0 14px; }
  .product-grid.featured-grid .product-card {
    min-height: 0;
  }
  .quote-confirmation-actions { grid-template-columns: 1fr; }
}

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

@media (max-width: 560px) {
  .brand,
  .brand img { width: 152px; }
  .header-main {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.02;
  }
  .hero-actions .btn { width: 100%; }
  .trust-strip,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip article,
  .trust-strip article:first-child {
    border-top: 1px solid var(--line);
  }
  .trust-strip article:first-child { border-top: 0; }
  .category-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .category-chips::-webkit-scrollbar { display: none; }
  .cart-drawer {
    width: 100vw;
    padding: 14px;
  }
  .order-line {
    grid-template-columns: 58px minmax(0, 1fr) 48px;
    align-items: start;
  }
  .line-qty {
    grid-column: 1 / -1;
    grid-template-columns: 48px 52px 48px;
    min-height: 50px;
    justify-self: start;
  }
  .remove-button {
    width: 48px;
    height: 48px;
  }
  .request-process,
  .essence-section,
  .institutional-section,
  .contact-section {
    width: min(100% - 32px, 1280px);
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .institutional-copy h2,
  .contact-section h2 { font-size: 32px; }
  .institutional-copy > p:last-child,
  .contact-form-heading > p:last-child { font-size: 16px; }
  .request-steps { grid-template-columns: 1fr; gap: 20px; margin-top: 26px; }
  .request-steps li,
  .request-steps li:first-child { min-height: 0; padding: 0 0 20px; border: 0; border-bottom: 1px solid var(--line); }
  .request-steps li:last-child { padding-bottom: 0; border-bottom: 0; }
  .factory-media { min-height: 0; padding: 0; }
  .factory-main-image { height: auto; aspect-ratio: 1.25 / 1; }
  .factory-secondary-image {
    position: static;
    width: 64% !important;
    margin: -44px 0 0 auto;
    border-width: 4px;
  }
  .cold-section { width: 100%; padding: 44px 16px; background: var(--navy); }
  .cold-section .institutional-copy { order: -1; }
  .cold-media img { height: auto; aspect-ratio: 1.4 / 1; }
  .essence-section { padding: 32px 0; }
  .essence-statements,
  .essence-values { grid-template-columns: 1fr; gap: 20px; }
  .essence-values { margin-top: 26px; }
  .contact-section { padding: 0 0 30px; gap: 24px; }
  .contact-form-fields { grid-template-columns: 1fr; }
  .contact-form-fields .field-full { grid-column: auto; }
  .contact-submit .btn { width: 100%; }
  .location-panel { padding: 20px; }
  .location-map { height: 240px; }
  .site-footer { grid-template-columns: 1fr; padding: 28px 24px; }
  .legal-document { width: min(100% - 32px, 760px); padding: 40px 0 56px; }
  .legal-document h2 { font-size: 23px; }
}
