@import url("https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800&family=Lilita+One&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --color-bg: #07111d;
  --color-bg-soft: #0d1b2a;
  --color-surface: #142231;
  --color-surface-light: #1c2d3d;
  --color-primary: #ff7a00;
  --color-primary-hover: #ff8f1f;
  --color-secondary: #0f4c81;
  --color-text: #ffffff;
  --color-muted: #b8c4d2;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-success: #11b85a;
  --color-danger: #dc3545;
  --color-warning: #f2b705;
  --ink: var(--color-bg);
  --navy: var(--color-bg-soft);
  --navy-2: var(--color-surface);
  --steel: var(--color-surface-light);
  --orange: var(--color-primary);
  --orange-2: var(--color-primary-hover);
  --white: #ffffff;
  --muted: var(--color-muted);
  --soft: #f3f5f7;
  --line: var(--color-border);
  --shadow: 0 22px 50px rgba(7, 17, 29, 0.18);
  --display-font: "Archivo", "Arial Narrow", sans-serif;
  --body-font: "Inter", Arial, sans-serif;
}

/* Kawaii home replica */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body.theme-kawaii {
  --display-font: "Anton", "Arial Narrow", sans-serif;
  --body-font: "Montserrat", Arial, sans-serif;
  background: #fff8fc;
  color: #21164e;
}

body.theme-kawaii .kawaii-topbar {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 7vw, 74px);
  padding: 8px 18px;
  background: linear-gradient(90deg, #f05da4, #f58cc4);
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 800;
  text-align: center;
}

body.theme-kawaii .kawaii-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(244, 139, 196, 0.28);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 250, 0.96));
  box-shadow: 0 12px 34px rgba(115, 61, 124, 0.08);
  backdrop-filter: blur(14px);
}

body.theme-kawaii .kawaii-header-inner {
  min-height: 108px;
  gap: 26px;
}

body.theme-kawaii .kawaii-logo img {
  max-width: 270px;
  max-height: 74px;
  object-fit: contain;
}

body.theme-kawaii .kawaii-nav {
  flex: 1;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  padding: 0;
}

body.theme-kawaii .kawaii-nav::before,
body.theme-kawaii .kawaii-nav::after {
  content: none;
}

body.theme-kawaii .kawaii-nav a {
  color: #18114a;
  font-size: 1rem;
  font-weight: 300;
  text-transform: none;
}

body.theme-kawaii .kawaii-nav a::after {
  bottom: -9px;
  height: 4px;
  border-radius: 999px;
  background: #f05da4;
}

body.theme-kawaii .kawaii-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.theme-kawaii .kawaii-header-actions a,
body.theme-kawaii .kawaii-header-actions button {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff0f8;
  color: #18114a;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(204, 103, 166, 0.14);
}

body.theme-kawaii .kawaii-header-actions svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

body.theme-kawaii .kawaii-header-actions span {
  position: absolute;
  top: -6px;
  right: -4px;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  background: #f05da4;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 21px;
}

body.theme-kawaii .kawaii-mobile-menu {
  background: #fff8fc;
}

body.theme-kawaii .kawaii-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 9%, rgba(255, 230, 141, 0.46), transparent 7%),
    radial-gradient(circle at 94% 12%, rgba(204, 190, 255, 0.38), transparent 10%),
    linear-gradient(180deg, #fff8fc 0%, #fff6fb 44%, #fff9ef 100%);
  color: #21164e;
}

body.theme-kawaii .kawaii-hero {
  position: relative;
  display: block;
  min-height: 510px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffd7ea 0%, rgba(255, 215, 234, 0.92) 28%, rgba(255, 215, 234, 0.18) 48%, transparent 61%),
    linear-gradient(135deg, #fff3fb, #f6eaff 45%, #dff8ff);
}

body.theme-kawaii .kawaii-hero-slide {
  display: none;
}

body.theme-kawaii .kawaii-hero-slide.active {
  display: block;
}

body.theme-kawaii .kawaii-carousel-arrow {
  z-index: 8;
  border: 1px solid rgba(240, 93, 164, 0.28);
  background: rgba(255, 255, 255, 0.88);
  color: #5b287a;
  box-shadow: 0 14px 28px rgba(115, 61, 124, 0.14);
}

body.theme-kawaii .kawaii-carousel-arrow:hover,
body.theme-kawaii .kawaii-carousel-arrow:focus-visible {
  background: #f05da4;
  color: #ffffff;
}

body.theme-kawaii .kawaii-carousel-dots {
  z-index: 8;
}

body.theme-kawaii .kawaii-carousel-dots button {
  border-color: rgba(91, 40, 122, 0.28);
  background: rgba(255, 255, 255, 0.86);
}

body.theme-kawaii .kawaii-carousel-dots button.active {
  background: #f05da4;
}

body.theme-kawaii .kawaii-hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -2px;
  height: 78px;
  background:
    radial-gradient(62px 42px at 3% 50%, #fff8fc 98%, transparent 100%),
    radial-gradient(78px 48px at 10% 56%, #fff8fc 98%, transparent 100%),
    radial-gradient(82px 54px at 20% 58%, #fff8fc 98%, transparent 100%),
    radial-gradient(98px 56px at 32% 56%, #fff8fc 98%, transparent 100%),
    radial-gradient(80px 50px at 45% 58%, #fff8fc 98%, transparent 100%),
    radial-gradient(92px 54px at 58% 56%, #fff8fc 98%, transparent 100%),
    radial-gradient(86px 52px at 72% 58%, #fff8fc 98%, transparent 100%),
    radial-gradient(96px 58px at 88% 56%, #fff8fc 98%, transparent 100%),
    radial-gradient(74px 46px at 98% 58%, #fff8fc 98%, transparent 100%);
  pointer-events: none;
}

body.theme-kawaii .kawaii-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px) 0 92px clamp(34px, 6vw, 72px);
}

body.theme-kawaii .kawaii-eyebrow {
  margin: 0 0 16px;
  color: #4f2482;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

body.theme-kawaii .kawaii-hero h1,
body.theme-kawaii .kawaii-hero-title {
  margin: 0;
  color: #ffffff;
  font-family: "Lilita One", var(--body-font);
  font-size: clamp(3.3rem, 5.8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  -webkit-text-stroke: 4px #623292;
  paint-order: stroke fill;
  text-shadow: 0 10px 0 rgba(98, 50, 146, 0.08);
}

body.theme-kawaii .kawaii-hero-lead {
  max-width: 320px;
  margin: 20px 0 28px;
  color: #21164e;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.5;
}

body.theme-kawaii .kawaii-hero-actions,
body.theme-kawaii .kawaii-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

body.theme-kawaii .kawaii-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 28px;
  font-size: 0.93rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(230, 82, 157, 0.18);
}

body.theme-kawaii .kawaii-btn.primary {
  background: #f05da4;
  color: #ffffff;
}

body.theme-kawaii .kawaii-btn.secondary {
  border-color: #f05da4;
  background: rgba(255, 255, 255, 0.78);
  color: #21164e;
}

body.theme-kawaii .kawaii-hero-media {
  position: relative;
  min-width: 0;
}

body.theme-kawaii .kawaii-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  z-index: 1;
  width: 30%;
  background: linear-gradient(90deg, #ffd7ea 0%, rgba(255, 215, 234, 0.72) 32%, transparent 100%);
}

body.theme-kawaii .kawaii-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: center;
}

body.theme-kawaii .kawaii-sparkle {
  position: absolute;
  color: #ffe477;
  font-size: 2.7rem;
  filter: drop-shadow(0 8px 8px rgba(142, 72, 148, 0.12));
}

body.theme-kawaii .sparkle-one {
  top: 72px;
  right: 16%;
}

body.theme-kawaii .sparkle-two {
  right: 23%;
  bottom: 154px;
  color: #f58cc4;
  font-size: 1.6rem;
}

body.theme-kawaii .kawaii-hero-friends {
  position: absolute;
  right: -78px;
  bottom: 56px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

body.theme-kawaii .kawaii-hero-friends img {
  width: 112px;
  max-height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(109, 52, 115, 0.14));
}

body.theme-kawaii .kawaii-hero-friends img:first-child {
  width: 88px;
}

body.theme-kawaii .kawaii-categories {
  padding: 42px clamp(24px, 5vw, 74px) 34px;
}

body.theme-kawaii .kawaii-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

body.theme-kawaii .kawaii-category-card {
  display: grid;
  min-height: 232px;
  align-content: space-between;
  justify-items: center;
  border-radius: 26px;
  padding: 18px 16px 20px;
  color: #18114a;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(103, 66, 126, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

body.theme-kawaii .kawaii-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px rgba(103, 66, 126, 0.15);
}

body.theme-kawaii .kawaii-category-card img {
  width: min(140px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}

body.theme-kawaii .kawaii-category-card strong {
  max-width: 148px;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.12;
}

body.theme-kawaii .tone-yellow { background: #ffefa9; }
body.theme-kawaii .tone-lilac { background: #dac8ff; }
body.theme-kawaii .tone-pink { background: #ffc2dd; }
body.theme-kawaii .tone-mint { background: #bcefdc; }
body.theme-kawaii .tone-blue { background: #bfeeff; }
body.theme-kawaii .tone-rose { background: #ffb7db; }

body.theme-kawaii .kawaii-welcome {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(260px, 1.1fr) minmax(420px, 1.5fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  padding: 42px clamp(28px, 6vw, 82px);
  background:
    radial-gradient(circle at 55% 32%, rgba(255, 235, 120, 0.42), transparent 4%),
    radial-gradient(circle at 96% 24%, rgba(216, 178, 255, 0.56), transparent 5%),
    linear-gradient(90deg, #fff0fb, #f4ecff 58%, #fff8fd);
}

body.theme-kawaii .kawaii-welcome-art img {
  width: min(190px, 100%);
  filter: drop-shadow(0 18px 16px rgba(105, 60, 130, 0.12));
}

body.theme-kawaii .kawaii-welcome h2,
body.theme-kawaii .kawaii-products h2 {
  margin: 0;
  color: #5d2c91;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
}

body.theme-kawaii .kawaii-welcome-copy p {
  max-width: 520px;
  margin: 14px 0 24px;
  color: #463070;
  font-size: 1rem;
  line-height: 1.58;
}

body.theme-kawaii .kawaii-welcome-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.theme-kawaii .kawaii-welcome-icons article {
  display: grid;
  align-items: start;
  justify-items: center;
  text-align: center;
}

body.theme-kawaii .kawaii-welcome-icons img {
  display: block;
  height: 72px;
  width: 86px;
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
}

body.theme-kawaii .kawaii-welcome-icons h3 {
  width: 100%;
  margin: 10px 0 4px;
  color: #18114a;
  font-size: 0.94rem;
  text-align: center;
}

body.theme-kawaii .kawaii-welcome-icons p {
  width: 100%;
  margin: 0;
  color: #463070;
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: center;
}

body.theme-kawaii .kawaii-products {
  padding: 34px clamp(28px, 6vw, 82px) 50px;
  background: linear-gradient(180deg, #fff8fc, #fff4fb);
}

body.theme-kawaii .kawaii-section-head {
  justify-content: space-between;
  margin-bottom: 24px;
}

body.theme-kawaii .kawaii-section-head h2 span {
  color: #ffd84e;
}

body.theme-kawaii .kawaii-section-head a {
  color: #5d2c91;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

body.theme-kawaii .kawaii-product-row {
  position: relative;
}

body.theme-kawaii .kawaii-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

body.theme-kawaii .kawaii-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 93, 164, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fff7fc);
  box-shadow: 0 18px 36px rgba(112, 66, 125, 0.1);
}

body.theme-kawaii .kawaii-product-image {
  display: block;
  aspect-ratio: 1;
  margin: 0;
  background: #ffc2dd;
}

body.theme-kawaii .kawaii-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.theme-kawaii .kawaii-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #f05da4;
  cursor: pointer;
  font-size: 1.18rem;
  box-shadow: 0 8px 18px rgba(119, 62, 124, 0.14);
}

body.theme-kawaii .kawaii-product-body {
  padding: 14px 16px 18px;
}

body.theme-kawaii .kawaii-product-body p {
  margin: 0 0 5px;
  color: #5d2c91;
  font-size: 0.78rem;
  font-weight: 800;
}

body.theme-kawaii .kawaii-product-body h3 {
  margin: 0 0 8px;
  font-size: 0.94rem;
  line-height: 1.25;
}

body.theme-kawaii .kawaii-product-body a {
  color: #18114a;
  text-decoration: none;
}

body.theme-kawaii .kawaii-product-body strong {
  color: #18114a;
  font-size: 1rem;
  font-weight: 900;
}

body.theme-kawaii .kawaii-prefooter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 22px clamp(28px, 6vw, 82px);
  background:
    radial-gradient(circle at 1% 6%, #ffffff 0 14px, transparent 15px),
    radial-gradient(circle at 98% 88%, #d8f6ef 0 22px, transparent 23px),
    linear-gradient(90deg, #fff3b8, #fff8db);
}

body.theme-kawaii .kawaii-prefooter article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

body.theme-kawaii .kawaii-prefooter img {
  width: 74px;
  height: 58px;
  object-fit: contain;
}

body.theme-kawaii .kawaii-prefooter strong {
  color: #18114a;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

body.theme-kawaii .kawaii-footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background: linear-gradient(180deg, #ffd9ec, #ffc7e2);
  color: #21164e;
}

body.theme-kawaii .kawaii-footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr 1.55fr;
  gap: clamp(24px, 4vw, 62px);
  padding-top: 34px;
  padding-bottom: 112px;
}

body.theme-kawaii .kawaii-footer-logo img {
  max-width: 190px;
  max-height: 64px;
}

body.theme-kawaii .kawaii-footer p,
body.theme-kawaii .kawaii-footer a {
  color: #463070;
}

body.theme-kawaii .kawaii-footer h3 {
  color: #21164e;
  font-size: 1rem;
  font-weight: 900;
}

body.theme-kawaii .kawaii-footer a {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

body.theme-kawaii .kawaii-social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

body.theme-kawaii .kawaii-social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #5d2c91;
  box-shadow: 0 10px 22px rgba(115, 61, 124, 0.1);
}

body.theme-kawaii .kawaii-social-links a:hover {
  background: #5d2c91;
  color: #ffffff;
  transform: translateY(-2px);
}

body.theme-kawaii .kawaii-social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

body.theme-kawaii .kawaii-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(92px, 1fr);
  gap: 18px;
  align-self: start;
  align-items: start;
}

body.theme-kawaii .kawaii-subscribe h3 {
  margin-top: 0;
}

body.theme-kawaii .kawaii-subscribe form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  max-width: 360px;
  overflow: hidden;
  border: 2px solid #f58cc4;
  border-radius: 14px;
  background: #ffffff;
}

body.theme-kawaii .kawaii-subscribe input {
  min-height: 48px;
  border: 0;
  padding: 0 16px;
  color: #21164e;
  outline: none;
}

body.theme-kawaii .kawaii-subscribe button {
  border: 0;
  background: #f05da4;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
}

body.theme-kawaii .kawaii-footer-decor {
  position: static;
  justify-self: end;
  align-self: end;
  width: min(122px, 100%);
  max-height: 86px;
  object-fit: contain;
  pointer-events: none;
}

body.theme-kawaii .kawaii-copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(240, 93, 164, 0.18);
  padding-top: 14px;
  padding-bottom: 16px;
  color: #463070;
  font-size: 0.88rem;
}

body.theme-kawaii .quote-floating {
  background: linear-gradient(135deg, #f05da4, #f7a8cc);
  color: #ffffff;
}

body.theme-kawaii .floating-whatsapp {
  display: none;
}

@media (max-width: 1180px) {
  body.theme-kawaii .kawaii-category-grid,
  body.theme-kawaii .kawaii-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.theme-kawaii .kawaii-welcome {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  body.theme-kawaii .kawaii-welcome-icons {
    grid-column: 1 / -1;
  }

  body.theme-kawaii .kawaii-prefooter,
  body.theme-kawaii .kawaii-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.theme-kawaii .kawaii-topbar {
    flex-direction: column;
    gap: 4px;
  }

  body.theme-kawaii .kawaii-header-inner {
    min-height: 86px;
  }

  body.theme-kawaii .kawaii-logo img {
    max-width: 210px;
    max-height: 58px;
  }

  body.theme-kawaii .kawaii-header-actions {
    margin-left: auto;
  }

  body.theme-kawaii .kawaii-header-actions a {
    display: none;
  }

  body.theme-kawaii .kawaii-hero {
    grid-template-columns: 1fr;
  }

  body.theme-kawaii .kawaii-hero-copy {
    padding: 44px 28px 30px;
  }

  body.theme-kawaii .kawaii-hero-media img {
    min-height: 310px;
  }

  body.theme-kawaii .kawaii-hero-media::before {
    inset: -1px 0 auto;
    width: 100%;
    height: 34%;
    background: linear-gradient(180deg, #ffd7ea, transparent);
  }

  body.theme-kawaii .kawaii-hero::after {
    height: 54px;
  }

  body.theme-kawaii .kawaii-hero-friends {
    right: 26px;
    bottom: 12px;
  }

  body.theme-kawaii .kawaii-category-grid,
  body.theme-kawaii .kawaii-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.theme-kawaii .kawaii-header-actions {
    gap: 8px;
  }

  body.theme-kawaii .kawaii-header-actions button {
    width: 44px;
    height: 44px;
  }

  body.theme-kawaii .kawaii-logo img {
    max-width: 168px;
  }

  body.theme-kawaii .kawaii-hero h1,
  body.theme-kawaii .kawaii-hero-title {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  body.theme-kawaii .kawaii-hero-lead {
    max-width: none;
  }

  body.theme-kawaii .kawaii-hero-actions {
    align-items: stretch;
  }

  body.theme-kawaii .kawaii-btn {
    width: 100%;
  }

  body.theme-kawaii .kawaii-hero-friends {
    position: static;
    margin-top: 18px;
  }

  body.theme-kawaii .kawaii-hero-friends img,
  body.theme-kawaii .kawaii-hero-friends img:first-child {
    width: 82px;
  }

  body.theme-kawaii .kawaii-categories,
  body.theme-kawaii .kawaii-products,
  body.theme-kawaii .kawaii-prefooter {
    padding-right: 18px;
    padding-left: 18px;
  }

  body.theme-kawaii .kawaii-category-grid,
  body.theme-kawaii .kawaii-product-grid,
  body.theme-kawaii .kawaii-welcome,
  body.theme-kawaii .kawaii-welcome-icons,
  body.theme-kawaii .kawaii-prefooter,
  body.theme-kawaii .kawaii-footer-grid {
    grid-template-columns: 1fr;
  }

  body.theme-kawaii .kawaii-category-card {
    min-height: 190px;
  }

  body.theme-kawaii .kawaii-welcome {
    padding: 34px 20px;
    text-align: center;
  }

  body.theme-kawaii .kawaii-welcome-art {
    display: flex;
    justify-content: center;
  }

  body.theme-kawaii .kawaii-welcome-copy .kawaii-btn {
    width: auto;
  }

  body.theme-kawaii .kawaii-prefooter article {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  body.theme-kawaii .kawaii-footer-decor {
    width: 118px;
    justify-self: center;
  }

  body.theme-kawaii .kawaii-copyright {
    flex-direction: column;
    text-align: center;
  }
}

body.theme-kawaii {
  --color-bg: #fff7fb;
  --color-bg-soft: #fff0f7;
  --color-panel: #ffffff;
  --color-panel-strong: #fffafd;
  --color-text: #5f4868;
  --color-muted: #846f86;
  --color-border: rgba(177, 126, 166, 0.24);
  --orange: #f7a8cc;
  --orange-2: #cdbbff;
  --ink: #5f4868;
  --line: rgba(177, 126, 166, 0.24);
  --theme-header-bg: linear-gradient(90deg, #fff9fd 0%, #f6f0ff 52%, #eef9ff 100%);
  --theme-header-text: #5f4868;
  --theme-bg-section-dark: linear-gradient(135deg, rgba(247, 168, 204, 0.28), transparent 34%), linear-gradient(180deg, #fff7fb, #eef8ff);
  --theme-bg-section-light: #fffdf8;
  --theme-surface-dark: rgba(255, 255, 255, 0.72);
  --theme-surface-light: #ffffff;
  --theme-text-on-dark: #5f4868;
  --theme-text-on-light: #5f4868;
  --theme-heading-on-dark: #523f5b;
  --theme-heading-on-light: #523f5b;
  --theme-muted-on-dark: #735d78;
  --theme-muted-on-light: #846f86;
  --theme-accent: #f7a8cc;
  --theme-accent-hover: #e86fa8;
  --theme-border-dark: rgba(177, 126, 166, 0.24);
  --theme-border-light: rgba(177, 126, 166, 0.22);
  --theme-footer-bg: linear-gradient(180deg, #fff0f7, #f4f0ff);
  --theme-footer-text: #5f4868;
  --theme-footer-muted: #735d78;
  --theme-footer-border: rgba(247, 168, 204, 0.78);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 228, 157, 0.54), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(205, 187, 255, 0.46), transparent 24%),
    linear-gradient(180deg, #fff7fb, #eef8ff);
}

body.theme-kawaii .site-header {
  border-bottom-color: rgba(247, 168, 204, 0.72);
  box-shadow: 0 12px 34px rgba(143, 111, 141, 0.12);
}

body.theme-kawaii .header-logo img,
body.theme-kawaii .footer-logo img {
  max-height: 58px;
  object-fit: contain;
}

body.theme-kawaii .desktop-nav a,
body.theme-kawaii .header-contact strong,
body.theme-kawaii .mobile-menu a {
  color: #5f4868;
}

body.theme-kawaii .desktop-nav a.active,
body.theme-kawaii .desktop-nav a:hover {
  color: #d85695;
}

body.theme-kawaii .icon-round,
body.theme-kawaii .floating-whatsapp,
body.theme-kawaii .quote-floating,
body.theme-kawaii .btn-primary,
body.theme-kawaii .btn-secondary:hover,
body.theme-kawaii .btn-product {
  background: linear-gradient(135deg, #f7a8cc, #cdbbff);
  color: #523f5b;
}

body.theme-kawaii .modern-home-top {
  background:
    linear-gradient(135deg, rgba(255, 228, 157, 0.42), transparent 36%),
    linear-gradient(180deg, #fff7fb, #eef8ff);
}

body.theme-kawaii .modern-home-shell,
body.theme-kawaii .home-search-band,
body.theme-kawaii .top-category-strip,
body.theme-kawaii .modern-carousel-shell,
body.theme-kawaii .product-card,
body.theme-kawaii .catalog-filters,
body.theme-kawaii .empty-state,
body.theme-kawaii .product-detail,
body.theme-kawaii .solutions-grid article,
body.theme-kawaii .service-grid article,
body.theme-kawaii .promo-card,
body.theme-kawaii .category-block {
  border-color: rgba(177, 126, 166, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(143, 111, 141, 0.12);
}

body.theme-kawaii .modern-slide {
  color: #5f4868;
}

body.theme-kawaii .modern-slide::before {
  background: linear-gradient(90deg, rgba(255, 247, 251, 0.82), rgba(255, 247, 251, 0.32));
}

body.theme-kawaii .modern-slide h1,
body.theme-kawaii .catalog-hero h1,
body.theme-kawaii .section-title,
body.theme-kawaii .solutions-section h2,
body.theme-kawaii .why-section h2,
body.theme-kawaii .product-detail-info h1,
body.theme-kawaii .product-detail-subtitle {
  color: #523f5b;
  letter-spacing: 0;
}

body.theme-kawaii .modern-slide-subtitle,
body.theme-kawaii .catalog-hero p:not(.eyebrow),
body.theme-kawaii .lead,
body.theme-kawaii .product-description,
body.theme-kawaii .solutions-grid p,
body.theme-kawaii .service-grid p {
  color: #735d78;
}

body.theme-kawaii .top-category-icon,
body.theme-kawaii .solutions-grid span,
body.theme-kawaii .service-grid span {
  background: linear-gradient(135deg, #ffe49d, #f7a8cc 54%, #cdbbff);
  color: #5f4868;
}

body.theme-kawaii .product-image {
  background: linear-gradient(135deg, #fff0f7, #eef8ff);
}

body.theme-kawaii .product-badge,
body.theme-kawaii .section-title span,
body.theme-kawaii .carousel-dots button.active {
  background: #f7a8cc;
  color: #5f4868;
}

body.theme-kawaii .catalog-hero,
body.theme-kawaii .product-detail-section,
body.theme-kawaii .solutions-section,
body.theme-kawaii .why-section,
body.theme-kawaii .promotions-section {
  background:
    linear-gradient(135deg, rgba(247, 168, 204, 0.24), transparent 34%),
    linear-gradient(180deg, #fff7fb, #eef8ff);
  color: #5f4868;
}

body.theme-kawaii .site-footer {
  border-top-color: rgba(247, 168, 204, 0.78);
  background: linear-gradient(180deg, #fff0f7, #f4f0ff);
  color: #5f4868;
}

body.theme-kawaii .kawaii-about-hero {
  min-height: clamp(430px, 46vw, 560px);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 237, 167, 0.8) 0 70px, transparent 72px),
    linear-gradient(120deg, #fff2f8 0%, #ffe2ef 45%, #f4f0ff 100%);
  color: #21164e;
}

body.theme-kawaii .kawaii-about-hero > img {
  right: 0;
  left: auto;
  width: min(56%, 760px);
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

body.theme-kawaii .kawaii-about-hero .about-hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 242, 248, 0.98) 0%, rgba(255, 242, 248, 0.84) 42%, rgba(255, 242, 248, 0.18) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 240, 248, 0.62));
}

body.theme-kawaii .kawaii-about-hero .about-hero-content {
  padding-block: clamp(64px, 8vw, 112px);
}

body.theme-kawaii .kawaii-about-hero h1 {
  color: #5b287a;
  font-size: clamp(3rem, 7vw, 5.8rem);
  text-transform: none;
}

body.theme-kawaii .kawaii-about-hero p:not(.eyebrow) {
  color: #6b4777;
}

body.theme-kawaii .kawaii-about-page .about-story {
  background: linear-gradient(180deg, #fff8fc, #f7f2ff);
}

body.theme-kawaii .kawaii-about-page .about-story-grid {
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
}

body.theme-kawaii .kawaii-about-page .about-logo-card {
  min-height: 280px;
  border: 1px solid rgba(240, 93, 164, 0.18);
  border-top: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 216, 234, 0.72), transparent 34%),
    radial-gradient(circle at 80% 85%, rgba(205, 187, 255, 0.42), transparent 34%),
    var(--logo-card-bg, #ffffff);
  box-shadow: 0 18px 42px rgba(115, 61, 124, 0.1);
}

body.theme-kawaii .kawaii-about-page .about-logo-card::after {
  content: none;
}

body.theme-kawaii .kawaii-about-page .about-logo-card img {
  filter: none;
}

body.theme-kawaii .kawaii-about-page .about-story h2,
body.theme-kawaii .kawaii-about-page .about-values h2,
body.theme-kawaii .kawaii-about-page .about-cta h2 {
  color: #5b287a;
  text-transform: none;
}

body.theme-kawaii .kawaii-about-page .about-values {
  background: linear-gradient(180deg, #fff0f8, #f0fbff);
  color: #21164e;
}

body.theme-kawaii .kawaii-about-page .about-values-grid article {
  border: 1px solid rgba(240, 93, 164, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(115, 61, 124, 0.08);
}

body.theme-kawaii .kawaii-about-page .about-values-grid span {
  background: #f7a8cc;
  color: #5b287a;
  box-shadow: 0 0 0 8px rgba(247, 168, 204, 0.2);
}

body.theme-kawaii .kawaii-about-page .about-values-grid p {
  color: #6b4777;
}

body.theme-kawaii .kawaii-about-page .about-cta {
  background: #fff8fc;
}

body.theme-kawaii .kawaii-about-page .about-cta-inner {
  border-left: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 237, 167, 0.74) 0 54px, transparent 56px),
    linear-gradient(135deg, #ffffff, #ffeef7);
  box-shadow: 0 18px 42px rgba(115, 61, 124, 0.1);
}

body.theme-kawaii .kawaii-about-contact,
body.theme-kawaii .kawaii-contact-page .contact-page-section,
body.theme-kawaii .kawaii-contact-page .contact-map-section {
  padding: clamp(44px, 6vw, 76px) 0;
  background: linear-gradient(180deg, #fff8fc, #eefaff);
}

body.theme-kawaii .kawaii-about-contact-grid,
body.theme-kawaii .contact-page-grid,
body.theme-kawaii .contact-map-card,
body.theme-kawaii .contact-page-hero-inner {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

body.theme-kawaii .kawaii-about-contact-grid,
body.theme-kawaii .contact-page-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

body.theme-kawaii .kawaii-about-contact-copy,
body.theme-kawaii .contact-form-card,
body.theme-kawaii .contact-data-card,
body.theme-kawaii .contact-map-card {
  border: 1px solid rgba(240, 93, 164, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(115, 61, 124, 0.1);
}

body.theme-kawaii .kawaii-about-contact-copy,
body.theme-kawaii .contact-form-card,
body.theme-kawaii .contact-data-card {
  padding: clamp(24px, 4vw, 38px);
}

body.theme-kawaii .kawaii-about-contact h2,
body.theme-kawaii .kawaii-contact-page h1,
body.theme-kawaii .kawaii-contact-page h2 {
  margin: 0 0 16px;
  color: #5b287a;
  font-family: "Lilita One", var(--body-font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

body.theme-kawaii .kawaii-contact-page h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

body.theme-kawaii .kawaii-about-contact p,
body.theme-kawaii .kawaii-contact-page p,
body.theme-kawaii .contact-data-card span {
  color: #5f4868;
  line-height: 1.6;
}

body.theme-kawaii .kawaii-about-contact-list,
body.theme-kawaii .contact-data-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

body.theme-kawaii .kawaii-about-contact-list article,
body.theme-kawaii .contact-data-card li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff4fb;
}

body.theme-kawaii .kawaii-about-contact-list strong,
body.theme-kawaii .contact-data-card strong {
  color: #5b287a;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.theme-kawaii .kawaii-about-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.theme-kawaii .kawaii-about-map-card,
body.theme-kawaii .contact-map-card {
  position: relative;
  overflow: hidden;
}

body.theme-kawaii .kawaii-about-map-card iframe,
body.theme-kawaii .contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

body.theme-kawaii .kawaii-about-map-decor {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 6px;
  pointer-events: none;
}

body.theme-kawaii .kawaii-about-map-decor img {
  width: clamp(64px, 8vw, 96px);
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(109, 52, 115, 0.16));
}

body.theme-kawaii .kawaii-map-fallback,
body.theme-kawaii .contact-map-fallback {
  display: grid;
  min-height: 360px;
  place-items: center;
  gap: 12px;
  padding: 28px;
  background: linear-gradient(135deg, #ffe4f1, #eef8ff);
  color: #5b287a;
  text-align: center;
}

body.theme-kawaii .kawaii-map-fallback img {
  width: min(160px, 55%);
}

body.theme-kawaii .contact-page-hero {
  padding: clamp(42px, 6vw, 72px) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 238, 169, 0.74) 0 64px, transparent 66px),
    linear-gradient(135deg, #fff3fb, #f4ecff 58%, #e8fbff);
}

body.theme-kawaii .contact-page-hero-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

body.theme-kawaii .contact-page-hero img {
  width: clamp(96px, 16vw, 180px);
  filter: drop-shadow(0 18px 20px rgba(109, 52, 115, 0.14));
}

body.theme-kawaii .contact-form-card form {
  display: grid;
  gap: 14px;
}

body.theme-kawaii .contact-form-card label {
  display: grid;
  gap: 7px;
  color: #5b287a;
  font-weight: 900;
}

body.theme-kawaii .contact-form-card input,
body.theme-kawaii .contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(240, 93, 164, 0.22);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fffaff;
  color: #21164e;
  font: inherit;
  outline: none;
}

body.theme-kawaii .contact-form-card input:focus,
body.theme-kawaii .contact-form-card textarea:focus {
  border-color: #f05da4;
  box-shadow: 0 0 0 4px rgba(240, 93, 164, 0.14);
}

body.theme-kawaii .contact-submit,
body.theme-kawaii .contact-whatsapp-btn {
  justify-content: center;
  width: max-content;
  min-width: 190px;
  text-decoration: none;
}

body.theme-kawaii .contact-whatsapp-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 2px solid #79d9c9;
  border-radius: 999px;
  padding: 0 22px;
  background: #e9fff9;
  color: #17493f;
  font-weight: 900;
}

body.theme-kawaii .contact-alert {
  margin: 0 0 18px;
  border-radius: 16px;
  padding: 13px 15px;
  font-weight: 800;
}

body.theme-kawaii .contact-alert.success {
  background: #e9fff9;
  color: #17624f;
}

body.theme-kawaii .contact-alert.error {
  background: #fff0f4;
  color: #9f214f;
}

body.theme-industrial_orange {
  --color-bg: #07111d;
  --color-bg-soft: #0d1b2a;
  --color-surface: #142231;
  --color-surface-light: #1c2d3d;
  --color-primary: #ff7a00;
  --color-primary-hover: #ff8f1f;
  --color-secondary: #0f4c81;
  --color-text: #ffffff;
  --color-muted: #b8c4d2;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-success: #11b85a;
  --color-danger: #dc3545;
  --color-warning: #f2b705;
  --soft: #f3f5f7;
}

body.theme-professional_blue {
  --color-bg: #061426;
  --color-bg-soft: #0b2038;
  --color-surface: #132b46;
  --color-surface-light: #1c3c5c;
  --color-primary: #1f8fff;
  --color-primary-hover: #47a5ff;
  --color-secondary: #ffb020;
  --color-text: #ffffff;
  --color-muted: #b7c8dc;
  --color-border: rgba(255, 255, 255, 0.13);
  --color-success: #16a34a;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --soft: #eef5fb;
}

body.theme-light_commerce {
  --color-bg: #f4f6f8;
  --color-bg-soft: #ffffff;
  --color-surface: #ffffff;
  --color-surface-light: #f1f5f9;
  --color-primary: #ff7a00;
  --color-primary-hover: #e86d00;
  --color-secondary: #12324a;
  --color-text: #14202b;
  --color-muted: #5d6b7a;
  --color-border: rgba(20, 32, 43, 0.14);
  --color-success: #16a34a;
  --color-danger: #dc2626;
  --color-warning: #d97706;
  --soft: #f4f6f8;
  --shadow: 0 22px 50px rgba(20, 32, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: var(--body-font);
  font-weight: 500;
  letter-spacing: 0;
}

button,
input,
textarea {
  font-family: var(--body-font);
}

select {
  font-family: var(--body-font);
}

h1,
h2,
h3,
.brand-copy strong,
.brand-copy span {
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.desktop-nav a,
.mobile-menu a,
.btn-primary,
.header-contact strong,
.section-kicker {
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 4px solid var(--orange);
  background: linear-gradient(90deg, var(--color-bg) 0%, var(--color-bg-soft) 52%, var(--color-surface) 100%);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

body.theme-light_commerce .site-header {
  background: linear-gradient(90deg, #ffffff 0%, #f7fafc 62%, #eef3f7 100%);
  color: var(--color-text);
  box-shadow: 0 10px 30px rgba(20, 32, 43, 0.12);
}

body.theme-light_commerce .desktop-nav a,
body.theme-light_commerce .header-contact strong,
body.theme-light_commerce .mobile-menu a {
  color: var(--color-text);
}

body.theme-light_commerce .menu-toggle {
  border-color: var(--color-border);
  background: rgba(20, 32, 43, 0.06);
}

body.theme-light_commerce .menu-toggle span {
  background: var(--color-text);
}

body.theme-light_commerce .mobile-menu {
  background: #ffffff;
}

body.theme-light_commerce .solutions-section,
body.theme-light_commerce .why-section,
body.theme-light_commerce .promotions-section,
body.theme-light_commerce .catalog-hero,
body.theme-light_commerce .product-detail-section,
body.theme-light_commerce .about-values {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f6f8);
  color: var(--color-text);
}

body.theme-light_commerce .contact-section,
body.theme-light_commerce .site-footer {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.14), transparent 30%),
    linear-gradient(180deg, #12324a, #0e273b);
  color: #ffffff;
}

body.theme-light_commerce .solutions-section h2,
body.theme-light_commerce .why-section h2,
body.theme-light_commerce .promotions-section .section-title,
body.theme-light_commerce .catalog-hero p:not(.eyebrow),
body.theme-light_commerce .lead,
body.theme-light_commerce .product-description,
body.theme-light_commerce .solutions-grid p,
body.theme-light_commerce .about-values-grid p {
  color: var(--color-text);
}

body.theme-light_commerce .solutions-grid article,
body.theme-light_commerce .promo-card,
body.theme-light_commerce .about-values-grid article {
  border-color: var(--color-border);
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.theme-light_commerce .product-detail-info .product-stock,
body.theme-light_commerce .detail-price {
  color: var(--color-text);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-logo {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.header-logo img {
  position: relative;
  display: block;
  width: auto;
  max-height: 68px;
  height: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55));
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.brand-mark svg {
  width: 38px;
  fill: var(--white);
}

.brand-mark svg path:nth-child(3),
.brand-mark svg path:nth-child(4) {
  fill: var(--orange);
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--orange-2);
  font-size: 0.78rem;
}

.brand-copy strong {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.45rem);
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 42px);
  text-transform: uppercase;
}

.desktop-nav::before,
.desktop-nav::after {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.desktop-nav a {
  position: relative;
  padding: 32px 0 26px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 300;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--orange-2);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  width: 100%;
}

.header-contact {
  display: none;
  align-items: center;
  gap: 10px;
}

.header-contact strong {
  color: var(--white);
  font-size: 1.02rem;
  white-space: nowrap;
}

.icon-round {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.icon-round svg {
  width: 22px;
  fill: var(--orange);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 46px;
  height: 46px;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--color-bg);
  padding: 8px 16px 18px;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-weight: 300;
  text-transform: uppercase;
}

.mobile-menu .mobile-whatsapp {
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--orange);
  text-align: center;
}

.mega-menu {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.desktop-nav .mega-menu-trigger {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-family: var(--body-font);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 32px 0 26px;
  text-transform: uppercase;
}

.desktop-nav .mega-menu-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.desktop-nav .mega-menu-trigger.active,
.desktop-nav .mega-menu-trigger:hover,
.desktop-nav .mega-menu-trigger:focus-visible,
.mega-menu.open .mega-menu-trigger {
  color: var(--orange-2);
}

.desktop-nav .mega-menu-trigger.active::after,
.desktop-nav .mega-menu-trigger:hover::after,
.desktop-nav .mega-menu-trigger:focus-visible::after,
.mega-menu.open .mega-menu-trigger::after {
  width: 100%;
}

.mega-menu-panel {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 90;
  width: min(860px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(20, 32, 43, 0.1);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 17, 29, 0.24);
  color: #152130;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.mega-menu:hover .mega-menu-panel,
.mega-menu:focus-within .mega-menu-panel,
.mega-menu.open .mega-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 32, 43, 0.1);
}

.mega-menu-panel a {
  padding: 0;
}

.mega-menu-panel a::after {
  content: none;
}

.mega-menu-head strong {
  color: #07111d;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: #9a4a00;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  align-items: start;
}

.mega-menu-column {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(20, 32, 43, 0.08);
  border-radius: 12px;
  background: rgba(20, 32, 43, 0.025);
}

.mega-menu-column.is-leaf {
  display: grid;
  min-height: 58px;
  padding: 0;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

/* El <a> ocupa toda la tarjeta: clic en cualquier parte navega */
.mega-menu-column.is-leaf .mega-menu-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.95rem;
}

/* Icono de la categoria */
.mega-menu-column.is-leaf .mega-menu-title::before {
  content: "";
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 122, 0, 0.12) url("../img/icons/category.svg") center / 19px 19px no-repeat;
}

/* Chevron que aparece al pasar el mouse */
.mega-menu-column.is-leaf .mega-menu-title::after {
  content: "\203A";
  flex: 0 0 auto;
  margin-left: auto;
  color: #c2410c;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.mega-menu-column.is-leaf:hover,
.mega-menu-column.is-leaf:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 12px 26px rgba(255, 122, 0, 0.16);
  background: #ffffff;
}

.mega-menu-column.is-leaf:hover .mega-menu-title,
.mega-menu-column.is-leaf:focus-within .mega-menu-title {
  color: #c2410c;
}

.mega-menu-column.is-leaf:hover .mega-menu-title::after,
.mega-menu-column.is-leaf:focus-within .mega-menu-title::after {
  opacity: 1;
  transform: translateX(0);
}

.mega-menu-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 7px;
  padding: 0;
  color: #07111d;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.mega-menu-links {
  display: grid;
  gap: 2px;
  margin-top: 2px;
  padding-top: 2px;
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px 5px 12px;
  border-radius: 8px;
  color: #425166;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.25;
  text-transform: none;
}

.mega-menu-link::before {
  content: "";
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(66, 81, 102, 0.38);
}

.mega-menu-link.depth-1 {
  margin-left: 16px;
  font-size: 0.8rem;
}

.mega-menu-link.depth-1::before {
  width: 4px;
  height: 4px;
  opacity: 0.75;
}

.mega-menu-title:hover,
.mega-menu-title:focus-visible,
.mega-menu-link:hover,
.mega-menu-link:focus-visible {
  background: rgba(255, 122, 0, 0.1);
  color: #9a4a00;
  outline: none;
}

.mobile-category-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-category-menu summary {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 48px;
  padding: 14px 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--body-font);
  font-weight: 700;
  list-style: none;
  text-align: center;
  text-transform: uppercase;
}

.mobile-category-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-category-menu summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.1rem;
}

.mobile-category-menu[open] summary::after {
  content: "-";
}

.mobile-category-groups {
  display: grid;
  gap: 7px;
  padding: 0 0 12px;
}

.mobile-menu .mobile-category-all,
.mobile-menu .mobile-category-title,
.mobile-menu .mobile-category-link {
  display: block;
  color: var(--white);
  text-transform: none;
}

.mobile-menu .mobile-category-all {
  padding: 11px 12px;
  border-radius: 8px;
  background: rgba(255, 122, 0, 0.18);
  font-weight: 300;
}

.mobile-category-group {
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .mobile-category-title {
  padding: 7px 0 5px;
  color: var(--orange-2);
  font-weight: 700;
}

.mobile-category-links {
  display: grid;
  gap: 1px;
}

.mobile-menu .mobile-category-link {
  padding: 6px 0 6px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  position: relative;
}

.mobile-menu .mobile-category-link::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.5;
  transform: translateY(-50%);
}

.mobile-menu .mobile-category-link.depth-1 {
  padding-left: 30px;
  font-size: 0.86rem;
}

body.theme-industrial_orange .mega-menu-panel {
  border-top: 3px solid var(--orange);
}

body.theme-industrial_orange .mega-menu-title {
  color: #07111d;
}

body.theme-industrial_orange .mega-menu-column {
  border-color: rgba(20, 32, 43, 0.1);
  background: #fbfcfd;
}

body.theme-industrial_orange .mega-menu-column.has-children {
  box-shadow: inset 0 2px 0 rgba(255, 122, 0, 0.32);
}

body.theme-industrial_orange .mega-menu-link::before {
  background: rgba(255, 122, 0, 0.65);
}

body.theme-industrial_orange .mega-menu-link:hover,
body.theme-industrial_orange .mega-menu-link:focus-visible,
body.theme-industrial_orange .mega-menu-title:hover,
body.theme-industrial_orange .mega-menu-title:focus-visible {
  background: rgba(255, 122, 0, 0.11);
  color: #9a4a00;
}

body.theme-kawaii .desktop-nav .mega-menu-trigger {
  color: #5f4868;
  font-weight: 300;
  text-transform: none;
}

body.theme-kawaii .desktop-nav .mega-menu-trigger::after {
  background: #f06ca7;
}

body.theme-kawaii .desktop-nav .mega-menu-trigger.active,
body.theme-kawaii .desktop-nav .mega-menu-trigger:hover,
body.theme-kawaii .desktop-nav .mega-menu-trigger:focus-visible,
body.theme-kawaii .mega-menu.open .mega-menu-trigger {
  color: #f06ca7;
}

body.theme-kawaii .mega-menu-panel {
  border: 1px solid rgba(240, 108, 167, 0.2);
  border-top: 3px solid #f7a8cc;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(115, 61, 124, 0.18);
}

body.theme-kawaii .mega-menu-head {
  border-bottom-color: rgba(205, 187, 255, 0.45);
}

body.theme-kawaii .mega-menu-head strong,
body.theme-kawaii .mega-menu-title {
  color: #5d2c91;
}

body.theme-kawaii .mega-menu-head a {
  background: #fff0f8;
  color: #ad3d78;
  text-transform: none;
}

body.theme-kawaii .mega-menu-column {
  border-color: rgba(240, 108, 167, 0.14);
  background: linear-gradient(180deg, #fffafd 0%, #ffffff 100%);
}

body.theme-kawaii .mega-menu-column.has-children {
  box-shadow: inset 0 2px 0 rgba(247, 168, 204, 0.62);
}

body.theme-kawaii .mega-menu-link {
  color: #735d78;
}

body.theme-kawaii .mega-menu-link::before {
  background: #f0a0c7;
}

body.theme-kawaii .mega-menu-title:hover,
body.theme-kawaii .mega-menu-title:focus-visible,
body.theme-kawaii .mega-menu-link:hover,
body.theme-kawaii .mega-menu-link:focus-visible {
  background: #fff0f8;
  color: #ad3d78;
}

body.theme-kawaii .mobile-category-menu {
  border-color: rgba(240, 93, 164, 0.14);
}

body.theme-kawaii .mobile-category-menu summary {
  color: #21164e;
  font-weight: 300;
  text-align: center;
  text-transform: none;
}

body.theme-kawaii .mobile-category-groups {
  padding: 0 4px 10px;
}

body.theme-kawaii .mobile-category-group {
  background: #fff8fc;
}

body.theme-kawaii .mobile-menu .mobile-category-all {
  background: #fff0f8;
  color: #5d2c91;
}

body.theme-kawaii .mobile-menu .mobile-category-title {
  color: #5d2c91;
}

body.theme-kawaii .mobile-menu .mobile-category-link {
  color: #735d78;
}

body.theme-kawaii .mobile-menu .mobile-category-link::before {
  color: #f06ca7;
}

.hero {
  position: relative;
  min-height: clamp(560px, 70vw, 740px);
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image: var(--hero-image);
  background-position: var(--hero-image-position, center center);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 29, var(--hero-overlay-opacity, 0.65));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: var(--hero-align, flex-start);
  padding: 76px 0;
  text-align: var(--hero-text-align, left);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--orange-2);
  text-transform: uppercase;
  font-size: 1rem;
}

.hero h1 {
  display: grid;
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.3rem, 10.5vw, 7.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.why-section h2 span {
  color: var(--orange);
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child,
.why-section h2 span {
  color: var(--orange);
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.05rem;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(244, 123, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--color-primary-hover);
}

.btn-primary svg {
  width: 25px;
  fill: currentColor;
}

.section {
  padding: 64px 0 76px;
}

.categories-section {
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--soft) 100%);
}

.section-title,
.solutions-section h2,
.why-section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 32px;
  color: var(--ink);
  text-align: center;
  text-transform: none;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.section-title span {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--orange);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--color-border);
  border-bottom: 4px solid rgba(244, 123, 0, 0.78);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 17, 29, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 162px;
  object-fit: cover;
  object-position: center;
}

.category-icon {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  margin: -31px auto 10px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(244, 123, 0, 0.26);
}

.category-icon svg {
  width: 30px;
  fill: currentColor;
}

.category-card h3 {
  margin: 0 10px 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.12rem;
}

.solutions-section,
.why-section,
.contact-section,
.site-footer {
  background:
    linear-gradient(135deg, rgba(244, 123, 0, 0.1), transparent 30%),
    linear-gradient(180deg, var(--navy-2), var(--ink));
  color: var(--white);
}

.solutions-section {
  padding: 64px 0 76px;
}

.solutions-section .section-kicker,
.contact-section .section-kicker {
  text-align: center;
}

.solutions-section h2,
.why-section h2 {
  color: var(--white);
}

.solutions-grid {
  display: grid;
  gap: 18px;
}

.solutions-grid article {
  min-height: 214px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid rgba(244, 123, 0, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.solutions-grid span,
.service-grid span {
  display: grid;
  place-items: center;
  color: var(--orange);
}

.solutions-grid span {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 2px solid rgba(244, 123, 0, 0.8);
  border-radius: 50%;
  background: rgba(244, 123, 0, 0.12);
}

.solutions-grid svg,
.service-grid svg {
  width: 30px;
  fill: currentColor;
}

.solutions-grid h3,
.solutions-grid p {
  margin: 0;
}

.solutions-grid h3 {
  text-transform: uppercase;
  font-size: 1.22rem;
}

.solutions-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.why-section {
  padding: 58px 0;
}

.why-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.why-copy h2 {
  justify-content: flex-start;
  margin-bottom: 22px;
  text-align: left;
}

.why-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.02rem;
  line-height: 1.5;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-list span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--theme-accent, #ff7a00) 18%, transparent);
  color: var(--theme-accent, #ff7a00);
}

.why-list svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-cta-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-accent, #ff7a00) 14%, transparent), transparent 55%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.why-cta-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.why-cta-card p {
  margin: 0;
  line-height: 1.55;
}

.why-cta-card small {
  opacity: 0.7;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 4px;
  border-radius: 10px;
  padding: 0 22px;
  background: linear-gradient(135deg, #1fbd59, #12a04a);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(18, 160, 74, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 160, 74, 0.45);
}

.btn-whatsapp-cta svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .why-band {
    grid-template-columns: 1fr;
  }
}

.products-section {
  background: var(--color-bg-soft);
}

.section-head {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.section-head .section-title {
  margin-bottom: 0;
}

.btn-secondary,
.btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-secondary {
  border: 2px solid var(--orange);
  color: var(--ink);
}

.btn-product {
  width: 100%;
  background: #12b857;
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 17, 29, 0.08);
}

.product-image {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-light);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.product-image img,
.promo-card img,
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-badge.sale {
  background: var(--color-danger);
}

.product-badge.stock-out {
  background: #5f6670;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 9px;
  padding: 18px;
}

.product-card .product-actions {
  margin-top: auto;
}

.product-category,
.product-code,
.product-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-category {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  min-height: 2.7em;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.product-price {
  margin: 2px 0 6px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.product-price span {
  margin-right: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.product-price small {
  color: var(--muted);
  font-size: 0.85rem;
}

.product-stock {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-stock.available {
  background: color-mix(in srgb, var(--color-success) 16%, transparent);
  color: var(--color-success);
}

.product-stock.out {
  background: rgba(95, 102, 112, 0.14);
  color: #5f6670;
}

.product-detail-info .product-stock {
  color: var(--white);
}

.promotions-section,
.catalog-hero,
.product-detail-section {
  background:
    linear-gradient(135deg, rgba(244, 123, 0, 0.1), transparent 30%),
    linear-gradient(180deg, var(--navy-2), var(--ink));
  color: var(--white);
}

.promotions-section .section-title {
  color: var(--white);
}

.promo-grid {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 20px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.promo-card::after { content: none; }

.promo-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef2f6;
}

.promo-card div {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 15px 18px 18px;
}

.promo-card .promo-countdown {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #c2410c;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-card p {
  margin: 0;
  color: #c2410c;
  font-weight: 800;
  font-size: 0.84rem;
}

.promo-card h3 {
  margin: 2px 0 4px;
  color: #14202b;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.16;
  text-transform: none;
}

.promo-card span {
  display: block;
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.55;
  font-size: 0.92rem;
}

.promo-card .btn-product {
  width: fit-content;
  min-width: 160px;
  margin-top: auto;
  padding: 0 18px;
}

.catalog-hero {
  padding: 76px 0;
}

.catalog-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.catalog-section {
  background: var(--soft);
}

.catalog-filters {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 17, 29, 0.07);
}

.catalog-filters input,
.catalog-filters select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(20, 32, 43, 0.28);
  border-radius: 8px;
  padding: 0 12px;
  background-color: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(20, 32, 43, 0.04);
}

.catalog-filters select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--theme-heading-on-light, #14202b) 50%),
    linear-gradient(135deg, var(--theme-heading-on-light, #14202b) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.catalog-filters input:focus,
.catalog-filters select:focus {
  border-color: var(--theme-accent, var(--orange));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-accent, var(--orange)) 18%, transparent);
  outline: none;
}

.empty-state {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.pagination a.active {
  background: var(--orange);
  color: var(--white);
}

.product-detail-section {
  padding: 70px 0;
}

.product-detail {
  display: grid;
  gap: 32px;
  align-items: center;
}

.product-detail-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.product-detail-info h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.product-detail-subtitle {
  margin: 18px 0 8px;
  color: var(--white);
  font-size: 1.15rem;
}

.lead,
.product-description {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.detail-price {
  color: var(--white);
  font-size: 1.8rem;
}

.service-grid {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  gap: 20px;
}

.service-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "text text";
  gap: 16px 18px;
  align-items: center;
  min-width: 0;
  min-height: 164px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 17, 29, 0.07);
}

.service-grid span {
  grid-area: icon;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(244, 123, 0, 0.1);
}

.service-grid h3,
.service-grid p {
  margin: 0;
  min-width: 0;
}

.service-grid h3 {
  grid-area: title;
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1.18;
}

.service-grid p {
  grid-area: text;
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 0.96rem;
  line-height: 1.6;
}

.contact-section {
  padding: 64px 0 24px;
}

.contact-layout {
  display: grid;
  gap: 22px;
}

.contact-info .section-kicker {
  text-align: left;
}

.contact-info h2 {
  position: relative;
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3rem);
}

.contact-info h2::after {
  content: "";
  display: inline-block;
  width: 76px;
  height: 4px;
  margin-left: 14px;
  vertical-align: middle;
  background: var(--orange);
}

.contact-info ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  gap: 4px;
  line-height: 1.5;
}

.contact-info strong {
  color: var(--white);
  font-weight: 700;
}

.contact-info span {
  color: rgba(255, 255, 255, 0.84);
}

.contact-button {
  margin-top: 24px;
}

.map-card,
.near-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 370px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.near-card {
  align-self: stretch;
  padding: 26px;
  border-top: 4px solid var(--orange);
}

.near-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.near-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.site-footer {
  padding: 30px 0 24px;
  border-top: 4px solid rgba(244, 123, 0, 0.9);
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: min(360px, 100%);
  margin-bottom: 16px;
}

.footer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 64px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: var(--white);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.copyright {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #12b857;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp svg {
  width: 34px;
  fill: var(--white);
}

.about-hero {
  position: relative;
  min-height: clamp(430px, 52vw, 600px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.96), rgba(7, 17, 29, 0.62)),
    linear-gradient(0deg, rgba(7, 17, 29, 0.35), rgba(7, 17, 29, 0.08));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 0;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.about-hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.about-story {
  padding: 74px 0;
  background: var(--soft);
}

.about-story-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.about-logo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 18%, rgba(244, 123, 0, 0.10), transparent 42%),
    var(--logo-card-bg, #eef2f7);
  box-shadow: 0 24px 50px rgba(7, 17, 29, 0.12);
}

.about-logo-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 28px;
  width: 190px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange));
}

.about-logo-card img {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.16));
}

.about-story h2,
.about-values h2,
.about-cta h2 {
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.about-story p:not(.section-kicker),
.about-cta p:not(.section-kicker) {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.about-values {
  padding: 70px 0 78px;
  background:
    linear-gradient(135deg, rgba(244, 123, 0, 0.1), transparent 30%),
    linear-gradient(180deg, var(--navy-2), var(--ink));
  color: var(--white);
}

.about-values .section-kicker {
  text-align: center;
}

.about-values h2 {
  text-align: center;
}

.about-values-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-values-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.about-values-grid span {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(244, 123, 0, 0.12);
}

.about-values-grid svg {
  width: 31px;
  fill: currentColor;
}

.about-values-grid h3,
.about-values-grid p {
  margin: 0;
}

.about-values-grid h3 {
  text-transform: uppercase;
  font-size: 1.25rem;
}

.about-values-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.about-cta {
  padding: 58px 0;
  background: #ffffff;
}

.about-cta-inner {
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(7, 17, 29, 0.07);
}

.contact-page-hero {
  padding: 72px 0;
  background: var(--ink);
  color: var(--white);
}

.contact-page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.contact-page-hero p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.contact-page-section,
.contact-map-section {
  padding: 64px 0;
  background: var(--soft);
}

.contact-page-grid,
.contact-map-card {
  display: grid;
  gap: 28px;
}

.contact-form-card,
.contact-data-card,
.contact-map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form-card form,
.contact-data-card ul {
  display: grid;
  gap: 14px;
}

.contact-form-card label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-alert {
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 13px 15px;
  font-weight: 800;
}

.contact-alert.success {
  background: #e9fff9;
  color: #17624f;
}

.contact-alert.error {
  background: #fff0f4;
  color: #9f214f;
}

.contact-data-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.contact-data-card li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-whatsapp-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  background: #12b857;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-map-fallback {
  display: grid;
  min-height: 280px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solutions-grid,
  .service-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-card {
    min-height: 300px;
  }

  .catalog-filters {
    grid-template-columns: 1.2fr 0.8fr 0.8fr auto;
    align-items: center;
  }
}

@media (min-width: 940px) {
  .desktop-nav,
  .header-contact {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .category-card img {
    height: 150px;
  }

  .solutions-grid,
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.7fr 0.9fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.6fr 1.25fr 0.7fr;
  }

  .about-story-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-page-grid,
  .contact-map-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    align-items: start;
  }

  .section-head {
    grid-template-columns: 1fr auto;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-cta-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark svg {
    width: 31px;
  }

  .brand-copy strong {
    white-space: normal;
    font-size: 1rem;
  }

  .header-logo img {
    max-height: 52px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: rgba(7, 17, 29, var(--hero-overlay-opacity, 0.65));
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .footer-logo img {
    max-height: 52px;
  }

  .section-title {
    gap: 10px;
  }

  .section-title span {
    width: 28px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    min-height: 178px;
  }

  .category-card img {
    height: 112px;
  }

  .category-icon {
    width: 48px;
    height: 48px;
    margin: -24px auto 8px;
    border-width: 3px;
  }

  .category-icon svg {
    width: 24px;
  }

  .category-card h3 {
    margin: 0 8px 14px;
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .product-grid {
    gap: 10px;
  }

  .product-card {
    min-width: 0;
  }

  .product-image {
    aspect-ratio: 1 / 1;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    font-size: 0.68rem;
  }

  .product-body {
    gap: 6px;
    padding: 10px;
  }

  .product-category,
  .product-code,
  .product-meta {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .product-card h3 {
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .product-price {
    margin: 0 0 4px;
    font-size: 1rem;
    line-height: 1.15;
  }

  .product-price span {
    display: block;
    margin-right: 0;
    font-size: 0.74rem;
  }

  .product-price small {
    font-size: 0.7rem;
  }

  .btn-product {
    min-height: 40px;
    padding: 8px;
    font-size: 0.72rem;
    line-height: 1.15;
    text-align: center;
  }

  .btn-primary {
    width: 100%;
    padding: 0 18px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .about-story,
  .about-values {
    padding: 54px 0;
  }

  .about-logo-card {
    min-height: 240px;
  }

  .about-cta-inner {
    padding: 24px;
  }
}

/* Controlled theme layer: only key public blocks change; catalog/product areas stay light. */
body.theme-industrial_orange {
  --theme-header-bg: linear-gradient(90deg, #07111d 0%, #0d1b2a 52%, #142231 100%);
  --theme-header-text: #ffffff;
  --theme-bg-section-dark: linear-gradient(135deg, rgba(255, 122, 0, 0.1), transparent 30%), linear-gradient(180deg, #142231, #07111d);
  --theme-bg-section-light: #ffffff;
  --theme-surface-dark: rgba(255, 255, 255, 0.06);
  --theme-surface-light: #ffffff;
  --theme-text-on-dark: #ffffff;
  --theme-text-on-light: #14202b;
  --theme-heading-on-dark: #ffffff;
  --theme-heading-on-light: #14202b;
  --theme-muted-on-dark: rgba(255, 255, 255, 0.82);
  --theme-muted-on-light: #5d6b7a;
  --theme-accent: #ff7a00;
  --theme-accent-hover: #ff8f1f;
  --theme-border-dark: rgba(255, 255, 255, 0.14);
  --theme-border-light: rgba(20, 32, 43, 0.14);
  --theme-footer-bg: linear-gradient(180deg, #0d1b2a, #07111d);
  --theme-footer-text: #ffffff;
  --theme-footer-muted: rgba(255, 255, 255, 0.76);
  --theme-footer-border: rgba(255, 122, 0, 0.85);
}

body.theme-professional_blue {
  --theme-header-bg: linear-gradient(90deg, #061426 0%, #0b2038 56%, #132b46 100%);
  --theme-header-text: #ffffff;
  --theme-bg-section-dark: linear-gradient(135deg, rgba(31, 143, 255, 0.12), transparent 32%), linear-gradient(180deg, #132b46, #061426);
  --theme-bg-section-light: #ffffff;
  --theme-surface-dark: rgba(255, 255, 255, 0.065);
  --theme-surface-light: #ffffff;
  --theme-text-on-dark: #ffffff;
  --theme-text-on-light: #14202b;
  --theme-heading-on-dark: #ffffff;
  --theme-heading-on-light: #14202b;
  --theme-muted-on-dark: #d5e3f2;
  --theme-muted-on-light: #5d6b7a;
  --theme-accent: #1f8fff;
  --theme-accent-hover: #47a5ff;
  --theme-border-dark: rgba(255, 255, 255, 0.15);
  --theme-border-light: rgba(20, 32, 43, 0.14);
  --theme-footer-bg: linear-gradient(180deg, #0b2038, #061426);
  --theme-footer-text: #ffffff;
  --theme-footer-muted: #c7d8ea;
  --theme-footer-border: rgba(31, 143, 255, 0.88);
}

body.theme-light_commerce {
  --theme-header-bg: linear-gradient(90deg, #ffffff 0%, #f7fafc 62%, #eef3f7 100%);
  --theme-header-text: #14202b;
  --theme-bg-section-dark: linear-gradient(135deg, rgba(255, 122, 0, 0.08), transparent 32%), linear-gradient(180deg, #ffffff, #f4f6f8);
  --theme-bg-section-light: #ffffff;
  --theme-surface-dark: #ffffff;
  --theme-surface-light: #ffffff;
  --theme-text-on-dark: #14202b;
  --theme-text-on-light: #14202b;
  --theme-heading-on-dark: #14202b;
  --theme-heading-on-light: #14202b;
  --theme-muted-on-dark: #5d6b7a;
  --theme-muted-on-light: #5d6b7a;
  --theme-accent: #ff7a00;
  --theme-accent-hover: #e86d00;
  --theme-border-dark: rgba(20, 32, 43, 0.14);
  --theme-border-light: rgba(20, 32, 43, 0.14);
  --theme-footer-bg: linear-gradient(180deg, #12324a, #0e273b);
  --theme-footer-text: #ffffff;
  --theme-footer-muted: rgba(255, 255, 255, 0.78);
  --theme-footer-border: rgba(255, 122, 0, 0.78);
}

body.theme-industrial_orange,
body.theme-professional_blue,
body.theme-light_commerce {
  --orange: var(--theme-accent);
  --orange-2: var(--theme-accent-hover);
  --line: var(--theme-border-dark);
}

.site-header {
  border-bottom-color: var(--theme-accent);
  background: var(--theme-header-bg);
  color: var(--theme-header-text);
}

.desktop-nav a,
.header-contact strong,
.mobile-menu a {
  color: var(--theme-header-text);
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--theme-accent-hover);
}

.mobile-menu {
  border-top-color: var(--theme-border-dark);
  background: var(--theme-header-bg);
}

.icon-round {
  border-color: var(--theme-accent);
}

.icon-round svg {
  fill: var(--theme-accent);
}

.categories-section,
.products-section,
.catalog-section,
.about-story,
.about-cta {
  background: #ffffff;
  color: var(--theme-text-on-light);
}

.category-card,
.product-card,
.catalog-filters,
.empty-state,
.pagination a,
.service-grid article,
.about-cta-inner {
  border-color: var(--theme-border-light);
  background: #ffffff;
  color: var(--theme-text-on-light);
}

.product-image {
  background: #f4f6f8;
}

.category-card h3,
.product-card h3,
.product-price,
.section-title,
.service-grid h3,
.about-story h2,
.about-cta h2 {
  color: var(--theme-heading-on-light);
}

.product-category,
.section-kicker,
.eyebrow {
  color: var(--theme-accent);
}

.product-code,
.product-meta,
.product-price span,
.product-price small,
.service-grid p,
.about-story p:not(.section-kicker),
.about-cta p:not(.section-kicker) {
  color: var(--theme-muted-on-light);
}

.catalog-filters input,
.catalog-filters select {
  border-color: rgba(20, 32, 43, 0.32);
  background-color: #ffffff;
  color: var(--theme-text-on-light);
  box-shadow: inset 0 0 0 1px rgba(20, 32, 43, 0.05);
}

.catalog-filters select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--theme-heading-on-light) 50%),
    linear-gradient(135deg, var(--theme-heading-on-light) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.solutions-section,
.why-section,
.promotions-section,
.catalog-hero,
.product-detail-section,
.about-values,
.contact-section {
  background: var(--theme-bg-section-dark);
  color: var(--theme-text-on-dark);
}

.solutions-section h2,
.why-section h2,
.promotions-section .section-title,
.catalog-hero h1,
.product-detail-info h1,
.about-values h2,
.contact-info h2,
.solutions-grid h3,
.about-values-grid h3,
.near-card h3,
.detail-price {
  color: var(--theme-heading-on-dark);
}

.solutions-grid p,
.catalog-hero p:not(.eyebrow),
.lead,
.product-description,
.about-values-grid p,
.contact-info span,
.near-card p,
.promo-card span {
  color: #4b5563;
}

/* === Fixes de contraste del sitio publico === */
/* Valores (Quienes somos): la seccion es oscura -> texto claro legible */
.about-values-grid p { color: rgba(255, 255, 255, 0.82); }
/* Hero del catalogo ("Productos disponibles"): fondo oscuro -> subtitulo claro */
.catalog-hero p:not(.eyebrow) { color: rgba(255, 255, 255, 0.86); }
/* Ficha de producto (seccion oscura): titulo mas contenido, eyebrow con aire y textos legibles */
.product-detail-info .product-category {
  margin: 0 0 14px;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.product-detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}
.product-detail-info .product-code,
.product-detail-info .product-meta { color: rgba(255, 255, 255, 0.66); }
.product-detail-info .lead { color: rgba(255, 255, 255, 0.92); }
.product-detail-info .product-description { color: rgba(255, 255, 255, 0.8); }
/* "Ver todo" del mega-menu de Catalogo: panel blanco -> texto naranja oscuro (un nav-link blanco lo pisaba) */
.mega-menu .mega-menu-head a { color: #9a4a00; }
/* Inputs del formulario de Contacto: tarjeta blanca -> borde gris visible + texto oscuro */
.contact-form-card input,
.contact-form-card textarea {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #14202b;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: #9aa7b5; }

.solutions-grid article,
.about-values-grid article,
.map-card,
.near-card,
.product-detail-image {
  border-color: var(--theme-border-dark);
  background: var(--theme-surface-dark);
}

.promo-card {
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: var(--theme-accent);
  background: #ffffff;
}

.promo-card::after { content: none; }

body.theme-light_commerce .promo-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(18, 50, 74, 0.82)),
    linear-gradient(90deg, rgba(18, 50, 74, 0.68), rgba(18, 50, 74, 0.12));
}

.promo-card h3 {
  color: #14202b;
}

.promo-card p {
  color: #c2410c;
}

.contact-info strong {
  color: var(--theme-heading-on-dark);
}

.site-footer {
  border-top-color: var(--theme-footer-border);
  background: var(--theme-footer-bg);
  color: var(--theme-footer-text);
}

.footer-grid,
.copyright {
  border-color: var(--theme-footer-border);
}

.site-footer h3 {
  color: var(--theme-footer-text);
}

.site-footer p,
.site-footer a,
.copyright {
  color: var(--theme-footer-muted);
}

.site-footer .social-links a {
  color: var(--ink);
}

.site-footer .social-links a:hover {
  color: var(--white);
}

/* Modern home option */
.modern-home {
  background: #ffffff;
  overflow-x: clip;
}

.modern-container {
  width: min(1280px, calc(100% - 48px));
}

.modern-home-top {
  position: relative;
  overflow: hidden;
  padding: 24px 0 18px;
  background:
    linear-gradient(180deg, #07111d 0%, #0d1b2a 45%, #eef2f6 100%),
    linear-gradient(115deg, color-mix(in srgb, var(--theme-accent) 18%, transparent), transparent 42%);
}

.modern-home-top::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

.modern-home-top > .modern-home-shell {
  position: relative;
  z-index: 1;
}

.modern-home-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-accent) 13%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(20, 34, 49, 0.98), rgba(7, 17, 29, 0.96));
  box-shadow: 0 28px 80px rgba(7, 17, 29, 0.34);
}

.home-search-band {
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

.home-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.home-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 7px 0 0 7px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--theme-text-on-light);
  font-weight: 800;
  outline: none;
}

.home-search input:focus {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-accent) 16%, transparent);
}

.home-search .btn-primary {
  min-height: 52px;
  border-radius: 0 7px 7px 0;
  box-shadow: none;
}

.top-category-strip {
  padding: 0;
  background: transparent;
}

.top-category-scroll {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.top-category-scroll::-webkit-scrollbar {
  height: 0;
}

.top-category-chip {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 108px;
  align-content: center;
  gap: 9px;
  justify-items: center;
  border: 0;
  border-radius: 0;
  padding: 14px 10px 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.top-category-chip:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.top-category-chip:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--theme-accent) 18%, transparent), rgba(255, 255, 255, 0.055));
  color: var(--theme-accent-hover);
}

.top-category-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.top-category-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.top-category-chip:hover .top-category-icon {
  transform: translateY(-1px);
  border-color: var(--theme-accent);
  background: color-mix(in srgb, var(--theme-accent) 16%, rgba(255, 255, 255, 0.06));
  color: #ffffff;
}

.modern-carousel {
  padding: 0;
  background: transparent;
}

.modern-carousel-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.modern-slide {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  min-height: clamp(340px, 32vw, 420px);
  align-items: center;
  justify-content: var(--slide-align, flex-start);
  padding: clamp(28px, 3vw, 38px);
  opacity: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 17, 29, var(--slide-overlay, 0.65)), rgba(7, 17, 29, var(--slide-overlay, 0.65))),
    var(--slide-image);
  background-position: var(--slide-position, center center);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: var(--slide-text-align, left);
  transition: opacity 0.65s ease;
}

.modern-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.modern-slide-content {
  width: min(650px, 100%);
}

.modern-slide h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

.modern-slide h1 span {
  display: block;
}

.modern-slide-subtitle {
  max-width: 560px;
  margin: 14px 0 18px;
  font-size: 1rem;
  line-height: 1.48;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(7, 17, 29, 0.52);
  color: #ffffff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-arrow.prev {
  left: 16px;
}

.carousel-arrow.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--theme-accent);
}

.quick-benefits {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0;
  margin-top: 0;
  background: transparent;
}

.quick-benefits .service-grid {
  width: 100%;
  gap: 0;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.quick-benefits .service-grid article {
  min-height: 96px;
  border: 0;
  border-left: 1px solid rgba(20, 32, 43, 0.09);
  border-radius: 0;
  padding: 18px;
  background: #ffffff;
  box-shadow: none;
  transition: background 0.18s ease;
}

.quick-benefits .service-grid article:first-child {
  border-left: 0;
}

.quick-benefits .service-grid span {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: color-mix(in srgb, var(--theme-accent) 13%, transparent);
  color: var(--theme-accent);
  transition: background 0.18s ease, color 0.18s ease;
}

.quick-benefits .service-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-benefits .service-grid article:hover {
  background: color-mix(in srgb, var(--theme-accent) 6%, #ffffff);
}

.quick-benefits .service-grid article:hover span {
  background: var(--theme-accent);
  color: #ffffff;
}

.quick-benefits .service-grid h3 {
  color: var(--theme-heading-on-light, #14202b);
  font-size: 1rem;
}

.quick-benefits .service-grid p {
  color: var(--theme-muted-on-light, #5d6b7a);
}

.modern-home .products-section {
  position: relative;
  margin-top: -34px;
  padding: 40px 0 64px;
  background:
    linear-gradient(180deg, #eef2f6 0%, #ffffff 24%, #f7f9fb 100%);
}

.modern-home .products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1280px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.45), transparent);
  transform: translateX(-50%);
}

.modern-home .products-section .modern-container,
.modern-home .category-blocks-section .modern-container {
  border: 1px solid rgba(20, 32, 43, 0.1);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 54px rgba(7, 17, 29, 0.08);
}

.modern-home .section-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(20, 32, 43, 0.1);
}

.modern-home .section-head .section-title {
  justify-content: flex-start;
}

.modern-home .section-title {
  margin-bottom: 30px;
  color: var(--theme-heading-on-light);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  justify-content: flex-start;
}

.modern-home .section-title span {
  width: 34px;
  height: 3px;
  background: var(--theme-accent);
}

.modern-home .btn-secondary {
  border: 1px solid color-mix(in srgb, var(--theme-accent) 46%, rgba(20, 32, 43, 0.16));
  background: #ffffff;
  color: var(--theme-heading-on-light);
  box-shadow: 0 10px 24px rgba(7, 17, 29, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.modern-home .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--theme-accent);
  background: color-mix(in srgb, var(--theme-accent) 9%, #ffffff);
}

.modern-home .product-card {
  border-color: rgba(20, 32, 43, 0.1);
  box-shadow: 0 12px 30px rgba(7, 17, 29, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.modern-home .product-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--theme-accent) 42%, rgba(20, 32, 43, 0.1));
  box-shadow: 0 20px 44px rgba(7, 17, 29, 0.12);
}

.modern-home .product-image {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.08), transparent 38%),
    #f3f6f8;
}

.modern-home .product-badge {
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(7, 17, 29, 0.18);
}

.modern-home .product-category {
  letter-spacing: 0;
  font-size: 0.78rem;
}

.modern-home .product-card h3 {
  font-size: 1rem;
}

.modern-home .product-price {
  color: #0b1b2a;
  font-size: 1.18rem;
}

.modern-home .product-stock {
  border: 1px solid currentColor;
  background: transparent;
}

.category-blocks-section {
  padding-top: 66px;
  background:
    linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
}

.category-block-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category-block {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 20px;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(7, 17, 29, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(7, 17, 29, 0.18);
}

.modern-home .promotions-section {
  padding: 70px 0 76px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-accent) 12%, transparent), transparent 34%),
    linear-gradient(180deg, #132231 0%, #07111d 100%);
}

.modern-home .promotions-section .modern-container {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.modern-home .promotions-section .section-title {
  color: #ffffff;
}

.modern-home .promo-grid {
  max-width: none;
}

.modern-home .promo-card {
  border-top-width: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.modern-home .promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
}

.modern-home .why-section {
  padding: 78px 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-accent) 12%, transparent), transparent 38%),
    linear-gradient(180deg, #132231, #07111d);
  color: #ffffff;
}

.modern-home .solutions-section > .container,
.modern-home .why-section > .container,
.modern-home .contact-section > .container {
  width: min(1280px, calc(100% - 48px));
}

.modern-home .why-section h2 {
  color: #ffffff;
}

.modern-home .why-list {
  color: rgba(255, 255, 255, 0.88);
}

.modern-home .solutions-section {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6f9 100%);
  color: var(--theme-text-on-light);
}

.modern-home .solutions-section h2,
.modern-home .solutions-grid h3 {
  color: var(--theme-heading-on-light);
}

.modern-home .solutions-grid p {
  color: var(--theme-muted-on-light);
}

.modern-home .solutions-grid article {
  border: 1px solid rgba(20, 32, 43, 0.1);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(7, 17, 29, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.modern-home .solutions-grid article:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--theme-accent) 40%, rgba(20, 32, 43, 0.1));
  box-shadow: 0 22px 48px rgba(7, 17, 29, 0.11);
}

.modern-home .contact-section {
  padding: 72px 0 34px;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
  color: var(--theme-text-on-light);
}

.modern-home .contact-info h2,
.modern-home .contact-info strong,
.modern-home .near-card h3 {
  color: var(--theme-heading-on-light);
}

.modern-home .contact-info span,
.modern-home .near-card p {
  color: var(--theme-muted-on-light);
}

.modern-home .near-card,
.modern-home .map-card {
  border: 1px solid rgba(20, 32, 43, 0.1);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(7, 17, 29, 0.07);
}

body:has(.modern-home) .site-footer {
  background:
    linear-gradient(180deg, #0d1b2a 0%, #07111d 100%);
}

body:has(.modern-home) .site-footer .footer-grid,
body:has(.modern-home) .site-footer .copyright {
  width: min(1280px, calc(100% - 48px));
}

.category-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0) 32%, rgba(7, 17, 29, 0.38) 60%, rgba(7, 17, 29, 0.85) 100%);
}

.category-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-block:hover img {
  transform: scale(1.06);
}

.category-block strong,
.category-block span {
  position: relative;
  z-index: 1;
}

.category-block strong {
  font-family: var(--display-font);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.category-block span {
  width: fit-content;
  margin-top: 10px;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--theme-accent);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (min-width: 760px) {
  .top-category-scroll {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .category-block-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .modern-home .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .modern-container {
    width: min(100% - 24px, 1280px);
  }

  .modern-home-top {
    padding: 14px 0 32px;
  }

  .modern-home-shell {
    gap: 10px;
    padding: 10px;
  }

  .home-search {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-search input,
  .home-search .btn-primary {
    border-radius: 7px;
  }

  .top-category-scroll {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-category-chip {
    min-height: 94px;
    padding: 10px 6px;
    font-size: 0.66rem;
  }

  .top-category-chip:nth-child(3n)::after {
    display: none;
  }

  .top-category-chip:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .top-category-icon {
    width: 46px;
    height: 46px;
  }

  .top-category-icon svg {
    width: 24px;
    height: 24px;
  }

  .modern-slide {
    min-height: 360px;
    padding: 34px 18px 52px;
  }

  .modern-slide h1 {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .modern-slide-subtitle {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .modern-slide .btn-primary {
    width: fit-content;
    max-width: 168px;
    min-height: 52px;
    padding: 0 12px;
    font-size: 0.76rem;
    line-height: 1.08;
    white-space: normal;
    text-align: center;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    right: 50%;
    bottom: 16px;
    transform: translateX(50%);
  }

  .modern-home .product-grid,
  .category-block-grid,
  .quick-benefits .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-benefits .service-grid {
    width: 100%;
    gap: 0;
  }

  .category-block {
    min-height: 136px;
    padding: 14px;
  }

  .category-block strong {
    font-size: 1.08rem;
  }

  .category-block span {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .quick-benefits .service-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 104px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    border-radius: 0;
    padding: 12px;
  }

  .quick-benefits .service-grid article:nth-child(-n + 2) {
    border-top: 0;
  }

  .quick-benefits .service-grid article:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quick-benefits .service-grid span {
    width: 40px;
    height: 40px;
  }

  .quick-benefits .service-grid h3 {
    font-size: 0.82rem;
  }

  .quick-benefits .service-grid p {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .modern-home .why-section {
    padding: 54px 0;
  }

  .modern-home .solutions-section > .container,
  .modern-home .why-section > .container,
  .modern-home .contact-section > .container {
    width: min(100% - 24px, 1280px);
  }

  .modern-home .products-section {
    margin-top: -16px;
    padding: 46px 0 50px;
  }

  .modern-home .products-section .modern-container,
  .modern-home .category-blocks-section .modern-container,
  .modern-home .promotions-section .modern-container {
    width: min(100% - 24px, 1280px);
    padding: 14px;
  }

  body:has(.modern-home) .site-footer .footer-grid,
  body:has(.modern-home) .site-footer .copyright {
    width: min(100% - 24px, 1280px);
  }

  .modern-home .section-head {
    gap: 14px;
    align-items: stretch;
  }

  .modern-home .section-head .section-title,
  .modern-home .section-title {
    justify-content: center;
    font-size: 1.55rem;
  }

  .modern-home .btn-secondary {
    width: 100%;
  }

  .modern-home .promotions-section,
  .category-blocks-section,
  .modern-home .solutions-section,
  .modern-home .contact-section {
    padding-top: 50px;
    padding-bottom: 54px;
  }
}

body.theme-kawaii {
  background: #fff8fc;
  color: #21164e;
}

body.theme-kawaii:has(.kawaii-home) .site-footer {
  background: linear-gradient(180deg, #ffd9ec, #ffc7e2);
}

/* Kawaii layout containment pass */
body.theme-kawaii .kawaii-container {
  width: min(1360px, calc(100% - 64px));
  max-width: 1360px;
  margin-inline: auto;
}

body.theme-kawaii .kawaii-header-inner.kawaii-container,
body.theme-kawaii .kawaii-footer-grid.kawaii-container,
body.theme-kawaii .kawaii-copyright.kawaii-container {
  width: min(1360px, calc(100% - 64px));
  max-width: 1360px;
}

body.theme-kawaii .kawaii-hero {
  display: block;
  min-height: auto;
}

body.theme-kawaii .kawaii-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  min-height: clamp(470px, 38vw, 560px);
}

body.theme-kawaii .kawaii-hero-copy {
  padding: clamp(44px, 5vw, 70px) clamp(18px, 2vw, 34px) 92px 0;
}

body.theme-kawaii .kawaii-hero h1,
body.theme-kawaii .kawaii-hero-title {
  font-size: clamp(3.15rem, 4.6vw, 5rem);
}

body.theme-kawaii .kawaii-hero-media {
  overflow: hidden;
}

body.theme-kawaii .kawaii-hero-media img {
  min-height: clamp(470px, 38vw, 560px);
}

body.theme-kawaii .kawaii-categories {
  padding: 40px 0 34px;
}

body.theme-kawaii .kawaii-category-grid {
  gap: clamp(16px, 1.55vw, 24px);
}

body.theme-kawaii .kawaii-category-card {
  min-height: clamp(200px, 16vw, 232px);
}

body.theme-kawaii .kawaii-welcome {
  display: block;
  padding: 42px 0;
}

body.theme-kawaii .kawaii-welcome-inner {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(300px, 1fr) minmax(390px, 1.25fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
}

body.theme-kawaii .kawaii-products {
  padding: 34px 0 50px;
}

body.theme-kawaii .kawaii-product-grid {
  gap: clamp(18px, 1.7vw, 26px);
}

body.theme-kawaii .kawaii-prefooter {
  display: block;
  padding: 22px 0;
}

body.theme-kawaii .kawaii-prefooter-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
}

body.theme-kawaii .kawaii-footer-grid {
  grid-template-columns: 1.1fr 0.85fr 0.95fr minmax(270px, 1.35fr);
  gap: clamp(22px, 3vw, 52px);
}

@media (max-width: 1180px) {
  body.theme-kawaii .kawaii-container,
  body.theme-kawaii .kawaii-header-inner.kawaii-container,
  body.theme-kawaii .kawaii-footer-grid.kawaii-container,
  body.theme-kawaii .kawaii-copyright.kawaii-container {
    width: min(100% - 40px, 1360px);
  }

  body.theme-kawaii .kawaii-hero-inner {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  }

  body.theme-kawaii .kawaii-welcome-inner {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  body.theme-kawaii .kawaii-welcome-inner .kawaii-welcome-icons {
    grid-column: 1 / -1;
  }

  body.theme-kawaii .kawaii-prefooter-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.theme-kawaii .kawaii-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.theme-kawaii .kawaii-hero-copy {
    padding: 44px 0 30px;
  }

  body.theme-kawaii .kawaii-hero-media img {
    min-height: 310px;
  }
}

@media (max-width: 620px) {
  body.theme-kawaii .kawaii-container,
  body.theme-kawaii .kawaii-header-inner.kawaii-container,
  body.theme-kawaii .kawaii-footer-grid.kawaii-container,
  body.theme-kawaii .kawaii-copyright.kawaii-container {
    width: min(100% - 28px, 1360px);
  }

  body.theme-kawaii .kawaii-categories,
  body.theme-kawaii .kawaii-products,
  body.theme-kawaii .kawaii-prefooter {
    padding-right: 0;
    padding-left: 0;
  }

  body.theme-kawaii .kawaii-welcome-inner,
  body.theme-kawaii .kawaii-prefooter-inner {
    grid-template-columns: 1fr;
  }

  body.theme-kawaii .kawaii-welcome {
    padding: 34px 0;
  }
}

/* Kawaii header and hero polish */
body.theme-kawaii .kawaii-topbar {
  min-height: 36px;
  padding: 0;
}

body.theme-kawaii .kawaii-topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 6vw, 70px);
  padding-block: 6px;
}

body.theme-kawaii .kawaii-site-header {
  padding: 10px 0 12px;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 252, 0.94), rgba(255, 242, 249, 0.86));
  box-shadow: 0 12px 28px rgba(115, 61, 124, 0.08);
}

body.theme-kawaii .kawaii-header-inner.kawaii-container {
  min-height: 78px;
  padding: 8px 18px;
  border: 1px solid rgba(240, 93, 164, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(115, 61, 124, 0.06);
}

body.theme-kawaii .kawaii-logo img {
  max-width: 218px;
  max-height: 58px;
  filter: none;
}

body.theme-kawaii .kawaii-header-actions a,
body.theme-kawaii .kawaii-header-actions button {
  width: 46px;
  height: 46px;
}

body.theme-kawaii .kawaii-hero {
  padding: 0;
  background:
    linear-gradient(90deg, #ffe1f0 0%, #ffe1f0 48%, #fff5fb 100%);
}

body.theme-kawaii .kawaii-hero-inner {
  overflow: hidden;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  min-height: clamp(455px, 35vw, 560px);
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.38) 0 58px, transparent 60px),
    linear-gradient(90deg, #ffe1f0 0%, #ffe4f2 44%, #fff6fb 100%);
}

body.theme-kawaii .kawaii-hero-copy {
  z-index: 3;
  max-width: 520px;
  padding: clamp(44px, 4.5vw, 72px) clamp(34px, 4vw, 64px) 92px 0;
}

body.theme-kawaii .kawaii-hero-media {
  position: relative;
  z-index: 1;
  min-height: inherit;
  margin-right: calc((100vw - min(1360px, calc(100vw - 64px))) / -2);
  overflow: hidden;
  border-radius: 0 0 0 54px;
  background: #fff1f8;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.56);
}

body.theme-kawaii .kawaii-hero-media::before {
  inset: 0 auto 0 -1px;
  z-index: 2;
  width: min(34%, 230px);
  background: linear-gradient(90deg, #ffe1f0 0%, rgba(255, 225, 240, 0.7) 38%, rgba(255, 225, 240, 0.18) 72%, transparent 100%);
  pointer-events: none;
}

body.theme-kawaii .kawaii-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(455px, 35vw, 560px);
  object-fit: cover;
  object-position: var(--kawaii-slide-position, 52% 50%);
}

body.theme-kawaii .kawaii-hero::after {
  content: none;
}

body.theme-kawaii .kawaii-hero-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: clamp(46px, 5vw, 72px);
  pointer-events: none;
}

body.theme-kawaii .kawaii-hero-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

body.theme-kawaii .kawaii-hero-divider path {
  fill: #fff8fc;
}

@media (max-width: 900px) {
  body.theme-kawaii .kawaii-about-hero > img {
    width: 100%;
    opacity: 0.28;
  }

  body.theme-kawaii .kawaii-about-hero .about-hero-overlay {
    background: linear-gradient(180deg, rgba(255, 242, 248, 0.94), rgba(255, 242, 248, 0.82));
  }

  body.theme-kawaii .kawaii-about-page .about-story-grid {
    grid-template-columns: 1fr;
  }

  body.theme-kawaii .kawaii-about-contact-grid,
  body.theme-kawaii .contact-page-grid,
  body.theme-kawaii .contact-page-hero-inner {
    grid-template-columns: 1fr;
  }

  body.theme-kawaii .contact-page-hero img {
    justify-self: center;
  }

  body.theme-kawaii .kawaii-site-header {
    padding: 8px 0;
  }

  body.theme-kawaii .kawaii-header-inner.kawaii-container {
    min-height: 70px;
    border-radius: 22px;
    padding: 8px 16px;
  }

  body.theme-kawaii .kawaii-logo img {
    max-width: 190px;
    max-height: 54px;
  }

  body.theme-kawaii .kawaii-hero-inner {
    min-height: auto;
  }

  body.theme-kawaii .kawaii-hero-copy {
    padding: 40px 0 30px;
  }

  body.theme-kawaii .kawaii-hero-media img {
    min-height: 300px;
  }

  body.theme-kawaii .kawaii-hero-divider {
    height: 46px;
  }
}

@media (max-width: 620px) {
  body.theme-kawaii .kawaii-topbar-inner {
    flex-direction: column;
    gap: 2px;
    padding-block: 7px;
  }

  body.theme-kawaii .kawaii-header-inner.kawaii-container {
    border-radius: 18px;
  }

  body.theme-kawaii .kawaii-logo img {
    max-width: 158px;
  }
}

body.theme-kawaii .site-footer .kawaii-social-links a:hover,
body.theme-kawaii .site-footer .kawaii-social-links a:focus-visible {
  background: #5d2c91;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Kawaii mobile reference pass */
body.theme-kawaii {
  overflow-x: clip;
}

body.theme-kawaii *,
body.theme-kawaii *::before,
body.theme-kawaii *::after {
  box-sizing: border-box;
}

body.theme-kawaii .kawaii-home,
body.theme-kawaii .kawaii-site-header,
body.theme-kawaii .kawaii-footer {
  max-width: 100%;
  overflow-x: clip;
}

body.theme-kawaii .kawaii-footer-logo,
body.theme-kawaii .kawaii-footer-logo img {
  padding: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

@media (max-width: 939px) {
  body.theme-kawaii .kawaii-site-header {
    overflow: visible;
  }

  body.theme-kawaii .kawaii-nav {
    display: none;
  }

  body.theme-kawaii .kawaii-mobile-menu {
    position: absolute;
    right: max(14px, env(safe-area-inset-right));
    left: max(14px, env(safe-area-inset-left));
    top: calc(100% - 4px);
    z-index: 80;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(240, 93, 164, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 34px rgba(115, 61, 124, 0.14);
  }

  body.theme-kawaii .kawaii-mobile-menu[hidden] {
    display: none;
  }

  body.theme-kawaii .kawaii-mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    color: #21164e;
    font-size: 0.92rem;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    text-transform: none;
  }

  body.theme-kawaii .kawaii-mobile-menu .mobile-category-title {
    padding: 7px 0 5px;
    text-align: left;
  }

  body.theme-kawaii .kawaii-mobile-menu .mobile-category-link {
    padding: 6px 0 6px 22px;
    text-align: left;
  }

  body.theme-kawaii .kawaii-mobile-menu .mobile-category-link.depth-1 {
    padding-left: 34px;
  }

  body.theme-kawaii .kawaii-mobile-menu a:hover,
  body.theme-kawaii .kawaii-mobile-menu a:focus-visible {
    background: #fff0f8;
    color: #5d2c91;
  }
}

@media (max-width: 480px) {
  body.theme-kawaii .kawaii-topbar {
    min-height: 32px;
    font-size: 0.76rem;
  }

  body.theme-kawaii .kawaii-topbar-inner {
    width: min(100% - 22px, 1360px);
    min-height: 32px;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    padding-block: 5px;
  }

  body.theme-kawaii .kawaii-topbar-inner span {
    min-width: 0;
    line-height: 1.15;
  }

  body.theme-kawaii .kawaii-topbar-inner span:nth-child(2) {
    text-align: right;
  }

  body.theme-kawaii .kawaii-site-header {
    padding: 7px 0 9px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(115, 61, 124, 0.08);
  }

  body.theme-kawaii .kawaii-header-inner.kawaii-container {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    width: min(100% - 18px, 1360px);
    min-height: 58px;
    padding: 8px 9px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  body.theme-kawaii .menu-toggle {
    order: 1;
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #fff0f8;
    box-shadow: 0 8px 18px rgba(115, 61, 124, 0.08);
  }

  body.theme-kawaii .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #5d2c91;
  }

  body.theme-kawaii .kawaii-logo {
    order: 2;
    justify-self: center;
    min-width: 0;
  }

  body.theme-kawaii .kawaii-logo img {
    display: block;
    max-width: min(150px, 42vw);
    max-height: 42px;
    object-fit: contain;
  }

  body.theme-kawaii .kawaii-header-actions {
    order: 3;
    gap: 5px;
    justify-self: end;
    margin-left: 0;
  }

  body.theme-kawaii .kawaii-header-actions a,
  body.theme-kawaii .kawaii-header-actions button {
    display: grid;
    width: 34px;
    height: 34px;
    background: #fff0f8;
    color: #5d2c91;
    box-shadow: none;
  }

  body.theme-kawaii .kawaii-header-actions a:nth-child(2) {
    display: none;
  }

  body.theme-kawaii .kawaii-header-actions svg {
    width: 18px;
    height: 18px;
  }

  body.theme-kawaii .kawaii-header-actions span {
    top: -5px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    font-size: 0.62rem;
    line-height: 16px;
  }

  body.theme-kawaii .kawaii-hero {
    min-height: 0;
    padding: 0;
    background: #ffd8ea;
  }

  body.theme-kawaii .kawaii-hero-inner {
    width: 100%;
    min-height: clamp(330px, 88vw, 390px);
    grid-template-columns: minmax(0, 59%) minmax(0, 41%);
    grid-template-rows: minmax(218px, auto) 76px;
    overflow: hidden;
    padding: 20px 14px 42px;
    background:
      radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.45) 0 24px, transparent 25px),
      radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.68) 0 38px, transparent 39px),
      linear-gradient(135deg, #ffd3e7 0%, #ffd8ea 48%, #ffeef7 100%);
  }

  body.theme-kawaii .kawaii-hero-copy {
    z-index: 4;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: start;
    justify-content: flex-start;
    min-width: 0;
    padding: 2px 0 0;
    text-align: left;
  }

  body.theme-kawaii .kawaii-eyebrow {
    max-width: 12rem;
    margin: 0 0 7px;
    color: #5d2c91;
    font-size: clamp(0.72rem, 3.2vw, 0.86rem);
    line-height: 1.15;
  }

  body.theme-kawaii .kawaii-hero h1,
  body.theme-kawaii .kawaii-hero-title {
    font-size: clamp(2.05rem, 10.2vw, 2.75rem);
    line-height: 0.9;
    -webkit-text-stroke-width: 2.5px;
    text-shadow: 0 7px 0 rgba(98, 50, 146, 0.06);
  }

  body.theme-kawaii .kawaii-hero-lead {
    max-width: 11.5rem;
    margin: 10px 0 0;
    font-size: clamp(0.76rem, 3.35vw, 0.9rem);
    font-weight: 800;
    line-height: 1.32;
  }

  body.theme-kawaii .kawaii-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 12px;
  }

  body.theme-kawaii .kawaii-btn {
    width: max-content;
    min-height: 34px;
    border-width: 1px;
    padding-inline: 14px;
    font-size: 0.72rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(230, 82, 157, 0.14);
  }

  body.theme-kawaii .kawaii-hero-media {
    z-index: 2;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: stretch;
    min-height: 0;
    margin: -4px -28px -12px -34px;
    overflow: hidden;
    border-radius: 0 0 0 78px;
    background: #ffd8ea;
  }

  body.theme-kawaii .kawaii-hero-media::before {
    inset: 0 auto 0 -1px;
    z-index: 2;
    width: 48%;
    background: linear-gradient(90deg, #ffd8ea 0%, rgba(255, 216, 234, 0.78) 36%, rgba(255, 216, 234, 0) 100%);
  }

  body.theme-kawaii .kawaii-hero-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 38%;
    background: linear-gradient(0deg, #ffd8ea 0%, rgba(255, 216, 234, 0) 100%);
    pointer-events: none;
  }

  body.theme-kawaii .kawaii-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: 58% 45%;
  }

  body.theme-kawaii .kawaii-hero-friends {
    position: absolute;
    right: auto;
    bottom: 38px;
    left: 45%;
    z-index: 5;
    gap: 2px;
    transform: none;
    pointer-events: none;
  }

  body.theme-kawaii .kawaii-hero-friends img {
    width: clamp(62px, 19vw, 82px);
    max-height: 96px;
    filter: drop-shadow(0 10px 10px rgba(109, 52, 115, 0.16));
  }

  body.theme-kawaii .kawaii-hero-friends img:first-child {
    width: clamp(48px, 15vw, 64px);
  }

  body.theme-kawaii .kawaii-sparkle {
    display: none;
  }

  body.theme-kawaii .kawaii-hero-divider {
    bottom: -1px;
    height: 34px;
  }

  body.theme-kawaii .kawaii-hero-divider path {
    fill: #fff8fc;
  }

  body.theme-kawaii .kawaii-categories {
    padding-block: 18px 14px;
  }

  body.theme-kawaii .kawaii-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.theme-kawaii .kawaii-category-card {
    min-height: 104px;
    align-content: center;
    gap: 7px;
    border-radius: 17px;
    padding: 8px 5px 9px;
    box-shadow: 0 8px 18px rgba(103, 66, 126, 0.08);
  }

  body.theme-kawaii .kawaii-category-card img {
    width: min(58px, 86%);
  }

  body.theme-kawaii .kawaii-category-card strong {
    max-width: 92px;
    font-size: 0.66rem;
    line-height: 1.12;
  }

  body.theme-kawaii .kawaii-welcome {
    padding: 22px 0;
  }

  body.theme-kawaii .kawaii-welcome-inner {
    grid-template-columns: 0.34fr 0.66fr;
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  body.theme-kawaii .kawaii-welcome-art img {
    width: min(94px, 28vw);
  }

  body.theme-kawaii .kawaii-welcome h2,
  body.theme-kawaii .kawaii-products h2 {
    font-size: 1.24rem;
    line-height: 1.14;
  }

  body.theme-kawaii .kawaii-welcome-copy p {
    margin: 8px 0 11px;
    font-size: 0.82rem;
    line-height: 1.36;
  }

  body.theme-kawaii .kawaii-welcome-copy .kawaii-btn {
    width: auto;
  }

  body.theme-kawaii .kawaii-welcome-icons {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
  }

  body.theme-kawaii .kawaii-welcome-icons article {
    min-width: 0;
    text-align: center;
  }

  body.theme-kawaii .kawaii-welcome-icons img {
    width: 44px;
    height: 38px;
    margin-inline: auto;
  }

  body.theme-kawaii .kawaii-welcome-icons h3 {
    margin-top: 6px;
    font-size: 0.66rem;
    line-height: 1.12;
  }

  body.theme-kawaii .kawaii-welcome-icons p {
    font-size: 0.6rem;
    line-height: 1.22;
  }

  body.theme-kawaii .kawaii-products {
    padding-block: 22px 28px;
  }

  body.theme-kawaii .kawaii-section-head {
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 13px;
  }

  body.theme-kawaii .kawaii-section-head a {
    font-size: 0.72rem;
  }

  body.theme-kawaii .kawaii-product-row::before,
  body.theme-kawaii .kawaii-product-row::after {
    content: none;
  }

  body.theme-kawaii .kawaii-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.theme-kawaii .kawaii-product-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    border-radius: 16px;
  }

  body.theme-kawaii .kawaii-product-image {
    aspect-ratio: 1 / 0.88;
  }

  body.theme-kawaii .kawaii-heart {
    top: 7px;
    right: 7px;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  body.theme-kawaii .kawaii-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 9px 9px 11px;
  }

  body.theme-kawaii .kawaii-product-body p {
    font-size: 0.62rem;
  }

  body.theme-kawaii .kawaii-product-body h3 {
    flex: 1;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  body.theme-kawaii .kawaii-product-body strong {
    font-size: 0.82rem;
  }

  body.theme-kawaii .kawaii-prefooter {
    padding-block: 16px;
  }

  body.theme-kawaii .kawaii-prefooter-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  body.theme-kawaii .kawaii-prefooter article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
    min-width: 0;
  }

  body.theme-kawaii .kawaii-prefooter img {
    width: 38px;
    height: 34px;
  }

  body.theme-kawaii .kawaii-prefooter strong {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  body.theme-kawaii .kawaii-footer-grid.kawaii-container {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 28px, 1360px);
    padding-top: 24px;
    padding-bottom: 20px;
    text-align: center;
  }

  body.theme-kawaii .kawaii-footer-logo img {
    display: block;
    max-width: 148px;
    max-height: 52px;
    margin-inline: auto;
  }

  body.theme-kawaii .kawaii-footer p {
    max-width: 18rem;
    margin-inline: auto;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  body.theme-kawaii .kawaii-social-links {
    justify-content: center;
  }

  body.theme-kawaii .kawaii-social-links a {
    width: 38px;
    height: 38px;
    margin-top: 0;
  }

  body.theme-kawaii .kawaii-footer h3 {
    margin-bottom: 8px;
  }

  body.theme-kawaii .kawaii-footer a {
    margin-top: 7px;
    font-size: 0.86rem;
  }

  body.theme-kawaii .kawaii-subscribe {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  body.theme-kawaii .kawaii-subscribe-copy {
    width: 100%;
  }

  body.theme-kawaii .kawaii-subscribe form {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  body.theme-kawaii .kawaii-subscribe input {
    min-width: 0;
    min-height: 44px;
    padding-inline: 12px;
  }

  body.theme-kawaii .kawaii-footer-decor {
    justify-self: center;
    width: min(112px, 36vw);
    max-height: 74px;
  }

  body.theme-kawaii .kawaii-copyright.kawaii-container {
    width: min(100% - 28px, 1360px);
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  body.theme-kawaii .kawaii-header-inner.kawaii-container {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    width: min(100% - 14px, 1360px);
    padding-inline: 7px;
  }

  body.theme-kawaii .kawaii-logo img {
    max-width: min(138px, 39vw);
  }

  body.theme-kawaii .kawaii-header-actions a,
  body.theme-kawaii .kawaii-header-actions button {
    width: 32px;
    height: 32px;
  }

  body.theme-kawaii .kawaii-hero-inner {
    min-height: clamp(334px, 94vw, 386px);
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    grid-template-rows: minmax(214px, auto) 74px;
    padding: 18px 12px 38px;
  }

  body.theme-kawaii .kawaii-hero h1,
  body.theme-kawaii .kawaii-hero-title {
    font-size: clamp(2rem, 9.8vw, 2.55rem);
  }

  body.theme-kawaii .kawaii-hero-lead {
    max-width: 10.7rem;
    font-size: 0.74rem;
  }

  body.theme-kawaii .kawaii-btn {
    min-height: 32px;
    padding-inline: 11px;
    font-size: 0.68rem;
  }

  body.theme-kawaii .kawaii-hero-media {
    margin-right: -26px;
    margin-left: -24px;
  }

  body.theme-kawaii .kawaii-hero-friends {
    bottom: 36px;
    left: 45%;
  }

  body.theme-kawaii .kawaii-hero-friends img {
    width: clamp(56px, 18vw, 70px);
  }

  body.theme-kawaii .kawaii-hero-friends img:first-child {
    width: clamp(44px, 14vw, 56px);
  }

  body.theme-kawaii .kawaii-category-card {
    min-height: 98px;
  }

  body.theme-kawaii .kawaii-category-card img {
    width: 52px;
  }

  body.theme-kawaii .kawaii-category-card strong,
  body.theme-kawaii .kawaii-welcome-icons h3 {
    font-size: 0.61rem;
  }

  body.theme-kawaii .kawaii-product-body h3 {
    font-size: 0.69rem;
  }
}

@media (max-width: 339px) {
  body.theme-kawaii .kawaii-topbar {
    font-size: 0.68rem;
  }

  body.theme-kawaii .kawaii-header-inner.kawaii-container {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    width: min(100% - 12px, 1360px);
    gap: 5px;
  }

  body.theme-kawaii .menu-toggle {
    width: 36px;
    height: 36px;
  }

  body.theme-kawaii .kawaii-logo img {
    max-width: 116px;
  }

  body.theme-kawaii .kawaii-header-actions {
    gap: 3px;
  }

  body.theme-kawaii .kawaii-header-actions a,
  body.theme-kawaii .kawaii-header-actions button {
    width: 30px;
    height: 30px;
  }

  body.theme-kawaii .kawaii-hero-inner {
    min-height: 324px;
    grid-template-columns: minmax(0, 61%) minmax(0, 39%);
    padding-inline: 10px;
  }

  body.theme-kawaii .kawaii-hero h1,
  body.theme-kawaii .kawaii-hero-title {
    font-size: 1.9rem;
  }

  body.theme-kawaii .kawaii-hero-lead {
    max-width: 10rem;
    font-size: 0.7rem;
  }

  body.theme-kawaii .kawaii-hero-actions {
    gap: 6px;
  }

  body.theme-kawaii .kawaii-btn {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 0.64rem;
  }

  body.theme-kawaii .kawaii-hero-friends {
    left: 49%;
  }

  body.theme-kawaii .kawaii-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-kawaii .kawaii-welcome-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }
}

@media (min-width: 481px) {
  body.theme-kawaii .kawaii-hero-friends {
    position: absolute;
    right: auto;
    bottom: clamp(42px, 5vw, 72px);
    left: clamp(360px, 37vw, 560px);
    z-index: 5;
    transform: none;
    pointer-events: none;
  }

  body.theme-kawaii .kawaii-hero-friends img {
    width: clamp(82px, 7.6vw, 118px);
    max-height: 142px;
  }

  body.theme-kawaii .kawaii-hero-friends img:first-child {
    width: clamp(66px, 6vw, 92px);
  }
}

/* Kawaii editorial hero composition */
body.theme-kawaii .kawaii-hero {
  background:
    linear-gradient(90deg, #ffe1f0 0%, #ffe7f3 45%, #fff6fb 100%);
}

body.theme-kawaii .kawaii-hero-slide {
  position: relative;
  overflow: hidden;
}

body.theme-kawaii .kawaii-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(455px, 35vw, 560px);
  isolation: isolate;
  overflow: hidden;
  background: #ffe1f0;
}

body.theme-kawaii .kawaii-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(60%, 820px);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.35) 0 58px, transparent 60px),
    linear-gradient(90deg, rgba(255, 225, 240, 0.97) 0%, rgba(255, 225, 240, 0.9) 30%, rgba(255, 225, 240, 0.58) 52%, rgba(255, 225, 240, 0.18) 76%, rgba(255, 225, 240, 0) 100%);
  pointer-events: none;
}

body.theme-kawaii .kawaii-hero-copy {
  z-index: 4;
  max-width: 520px;
  padding: clamp(44px, 4.5vw, 72px) 1.5rem 92px clamp(2.5rem, 5vw, 5rem);
}

body.theme-kawaii .kawaii-hero-media {
  position: absolute;
  inset: 0;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: 1;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #ffe1f0;
}

body.theme-kawaii .kawaii-hero-media::before {
  content: none;
}

body.theme-kawaii .kawaii-hero-media::after {
  content: none;
}

body.theme-kawaii .kawaii-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(455px, 35vw, 560px);
  object-fit: cover;
  object-position: 65% 50%;
}

@media (min-width: 481px) {
  body.theme-kawaii .kawaii-hero-friends {
    bottom: clamp(34px, 4.4vw, 62px);
    left: clamp(320px, 29vw, 500px);
    gap: 4px;
  }

  body.theme-kawaii .kawaii-hero-friends img {
    width: clamp(74px, 6.8vw, 104px);
    max-height: 126px;
  }

  body.theme-kawaii .kawaii-hero-friends img:first-child {
    width: clamp(58px, 5.2vw, 78px);
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  body.theme-kawaii .kawaii-hero-media {
    inset: 0;
  }
}

@media (max-width: 900px) and (min-width: 481px) {
  body.theme-kawaii .kawaii-hero-inner {
    grid-template-columns: 1fr;
    min-height: clamp(430px, 64vw, 540px);
    background: #ffe1f0;
  }

  body.theme-kawaii .kawaii-hero-inner::before {
    background:
      linear-gradient(180deg, rgba(255, 244, 250, 0.92) 0%, rgba(255, 244, 250, 0.7) 38%, rgba(255, 244, 250, 0.16) 62%, transparent 82%),
      linear-gradient(90deg, rgba(255, 225, 240, 0.72) 0%, rgba(255, 225, 240, 0.2) 52%, transparent 76%);
  }

  body.theme-kawaii .kawaii-hero-copy {
    max-width: 560px;
    padding: 40px 0 26px;
  }

  body.theme-kawaii .kawaii-hero-media {
    inset: 0;
    min-height: 100%;
    margin: 0;
    border-radius: 0;
  }

  body.theme-kawaii .kawaii-hero-media::before {
    content: none;
  }

  body.theme-kawaii .kawaii-hero-media::after {
    content: none;
  }
}

@media (max-width: 480px) {
  body.theme-kawaii .kawaii-hero-inner {
    min-height: clamp(330px, 88vw, 390px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(218px, auto) 76px;
    padding: 20px 14px 42px;
    background: #ffd8ea;
  }

  body.theme-kawaii .kawaii-hero-inner::before {
    background:
      radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.42) 0 22px, transparent 23px),
      linear-gradient(90deg, rgba(255, 216, 234, 0.92) 0%, rgba(255, 216, 234, 0.62) 45%, rgba(255, 216, 234, 0.12) 72%, transparent 100%),
      linear-gradient(0deg, rgba(255, 216, 234, 0.9) 0%, rgba(255, 216, 234, 0) 36%);
  }

  body.theme-kawaii .kawaii-hero-copy {
    max-width: none;
    width: min(58%, 13rem);
    padding: 2px 0 0;
  }

  body.theme-kawaii .kawaii-hero-media {
    inset: 0;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    margin: 0;
    border-radius: 0;
  }

  body.theme-kawaii .kawaii-hero-media::before {
    content: none;
  }

  body.theme-kawaii .kawaii-hero-media::after {
    content: none;
  }

  body.theme-kawaii .kawaii-hero-media img {
    min-height: 0;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.58;
  }

  body.theme-kawaii .kawaii-hero-friends {
    bottom: 34px;
    left: 43%;
  }
}

@media (max-width: 390px) {
  body.theme-kawaii .kawaii-hero-inner {
    min-height: clamp(334px, 94vw, 386px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(214px, auto) 74px;
    padding: 18px 12px 38px;
  }

  body.theme-kawaii .kawaii-hero-media {
    margin: 0;
  }
}

@media (max-width: 339px) {
  body.theme-kawaii .kawaii-hero-inner {
    min-height: 324px;
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 10px;
  }
}

@media (max-width: 480px) {
  body.theme-kawaii .kawaii-hero-copy {
    padding: 20px 14px 0;
  }
}

@media (max-width: 390px) {
  body.theme-kawaii .kawaii-hero-copy {
    padding: 18px 12px 0;
  }
}

@media (max-width: 339px) {
  body.theme-kawaii .kawaii-hero-copy {
    padding-inline: 10px;
  }
}

body.theme-kawaii .kawaii-category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  body.theme-kawaii .kawaii-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.theme-kawaii .kawaii-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.theme-kawaii .kawaii-category-card {
    min-height: 104px;
  }
}

@media (max-width: 339px) {
  body.theme-kawaii .kawaii-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Pollos asados theme */
body.theme-pollos_asados {
  --display-font: "Anton", "Arial Narrow", sans-serif;
  --body-font: "Montserrat", Arial, sans-serif;
  --pollos-charcoal: #120d0b;
  --pollos-charcoal-2: #1f1511;
  --pollos-red: #b81717;
  --pollos-red-hot: #e23222;
  --pollos-gold: #f5b62f;
  --pollos-cream: #fff5df;
  --pollos-muted: #c9b69d;
  --pollos-line: rgba(255, 245, 223, 0.16);
  --theme-header-bg: rgba(18, 13, 11, 0.96);
  --theme-header-text: #fff5df;
  --theme-accent: #e23222;
  --theme-accent-hover: #f5b62f;
  --theme-footer-bg: #120d0b;
  --theme-footer-text: #fff5df;
  --theme-footer-muted: #c9b69d;
  background: var(--pollos-charcoal);
  color: var(--pollos-cream);
}

body.theme-pollos_asados .pollos-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(245, 182, 47, 0.22);
  background:
    linear-gradient(180deg, rgba(26, 15, 11, 0.98), rgba(14, 10, 9, 0.96));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

body.theme-pollos_asados .pollos-header-inner {
  display: grid;
  grid-template-columns: minmax(168px, auto) minmax(0, 1fr) auto auto auto;
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
  width: min(1540px, calc(100% - 48px));
  min-height: 98px;
}

body.theme-pollos_asados .pollos-logo img,
body.theme-pollos_asados .pollos-footer-logo img {
  display: block;
  max-width: 214px;
  max-height: 72px;
  object-fit: contain;
}

body.theme-pollos_asados .pollos-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
}

body.theme-pollos_asados .pollos-nav a,
body.theme-pollos_asados .pollos-nav button {
  border: 0;
  background: transparent;
  color: var(--pollos-cream);
  cursor: pointer;
  font-size: clamp(0.84rem, 0.78vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-nav a:hover,
body.theme-pollos_asados .pollos-nav a.active,
body.theme-pollos_asados .pollos-nav button:hover,
body.theme-pollos_asados .pollos-nav button.active {
  color: var(--pollos-gold);
}

body.theme-pollos_asados .pollos-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-left: 1px solid rgba(245, 182, 47, 0.28);
  padding-left: 18px;
  color: var(--pollos-gold);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

body.theme-pollos_asados .pollos-order-btn,
body.theme-pollos_asados .pollos-btn,
body.theme-pollos_asados .pollos-footer-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 26px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-order-btn,
body.theme-pollos_asados .pollos-btn-red,
body.theme-pollos_asados .pollos-footer-cta {
  background: linear-gradient(135deg, var(--pollos-red), var(--pollos-red-hot));
  box-shadow: 0 14px 28px rgba(184, 23, 23, 0.28);
}

body.theme-pollos_asados .pollos-btn-yellow {
  background: linear-gradient(135deg, var(--pollos-gold), #ffd66f);
  color: #24140c;
}

body.theme-pollos_asados .pollos-order-icon {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(245, 182, 47, 0.34);
  border-radius: 999px;
  background: rgba(245, 182, 47, 0.08);
  color: var(--pollos-gold);
  cursor: pointer;
}

body.theme-pollos_asados .pollos-order-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

body.theme-pollos_asados .pollos-order-icon span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--pollos-red-hot);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 19px;
}

body.theme-pollos_asados .pollos-menu-toggle {
  display: none;
  border: 1px solid rgba(245, 182, 47, 0.34);
  border-radius: 999px;
  background: rgba(245, 182, 47, 0.08);
  color: var(--pollos-gold);
}

body.theme-pollos_asados .pollos-menu-toggle span {
  background: var(--pollos-gold);
}

body.theme-pollos_asados .pollos-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(226, 50, 34, 0.2), transparent 24%),
    radial-gradient(circle at 82% 4%, rgba(245, 182, 47, 0.1), transparent 18%),
    linear-gradient(180deg, #120d0b 0%, #1b110e 42%, #130d0b 100%);
}

body.theme-pollos_asados .pollos-hero {
  position: relative;
  min-height: clamp(690px, 82vh, 920px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 13, 11, 0.99) 0%, rgba(18, 13, 11, 0.9) 35%, rgba(18, 13, 11, 0.42) 62%, rgba(18, 13, 11, 0.78) 100%),
    radial-gradient(ellipse at 78% 50%, rgba(184, 23, 23, 0.32), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.036) 0 1px, transparent 1px 18px);
}

body.theme-pollos_asados .pollos-hero-bg {
  position: absolute;
  inset: -10% -8% 0 0;
  background:
    linear-gradient(105deg, rgba(18, 13, 11, 0.96) 0%, rgba(18, 13, 11, 0.72) 34%, rgba(18, 13, 11, 0.08) 62%, rgba(18, 13, 11, 0.78) 100%),
    radial-gradient(circle at 73% 45%, rgba(245, 182, 47, 0.3), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(226, 50, 34, 0.24), transparent 24%);
  pointer-events: none;
}

body.theme-pollos_asados .pollos-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(18, 13, 11, 0.78));
  pointer-events: none;
}

body.theme-pollos_asados .pollos-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(4px, 2vw, 34px);
  align-items: center;
  min-height: clamp(610px, 72vh, 820px);
  padding-block: clamp(48px, 6vw, 86px) 128px;
}

body.theme-pollos_asados .pollos-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: clamp(8px, 2vw, 24px) 0;
}

body.theme-pollos_asados .pollos-kicker,
body.theme-pollos_asados .pollos-section-head p,
body.theme-pollos_asados .pollos-promos-inner > div > p {
  margin: 0 0 14px;
  color: var(--pollos-gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(3.6rem, 7.8vw, 7.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-hero h1 span {
  display: block;
  color: var(--pollos-cream);
  font-size: 0.58em;
}

body.theme-pollos_asados .pollos-hero-copy > strong {
  display: block;
  width: fit-content;
  margin: 14px 0 18px;
  border-bottom: 5px solid var(--pollos-red-hot);
  color: var(--pollos-gold);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 1000;
  line-height: 1.05;
}

body.theme-pollos_asados .pollos-hero-copy p:not(.pollos-kicker) {
  max-width: 560px;
  color: #f5dfc2;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

body.theme-pollos_asados .pollos-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body.theme-pollos_asados .pollos-hero-media {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: clamp(-140px, -6vw, -32px);
  margin-left: clamp(-80px, -4vw, -18px);
}

body.theme-pollos_asados .pollos-hero-media img {
  display: block;
  width: min(118%, 980px);
  max-width: none;
  max-height: 760px;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 42px 52px rgba(0, 0, 0, 0.52));
  transform: scale(1.1);
}

body.theme-pollos_asados .pollos-hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 2% 8% 16%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 182, 47, 0.2), rgba(184, 23, 23, 0.18) 38%, transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

body.theme-pollos_asados .pollos-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100% - 40px, 1080px);
  margin: -96px auto 0;
}

body.theme-pollos_asados .pollos-benefits article,
body.theme-pollos_asados .pollos-feature-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--pollos-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(42, 25, 18, 0.94), rgba(22, 14, 11, 0.94));
  padding: 18px 20px;
  color: var(--pollos-cream);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

body.theme-pollos_asados .pollos-benefits img,
body.theme-pollos_asados .pollos-feature-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

body.theme-pollos_asados .pollos-torn-divider {
  position: absolute;
  right: -2px;
  bottom: -1px;
  left: -2px;
  z-index: 1;
  height: 92px;
  color: #f7eee1;
}

body.theme-pollos_asados .pollos-torn-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

body.theme-pollos_asados .pollos-torn-divider path {
  fill: #f7eee1;
}

body.theme-pollos_asados .pollos-menu-section {
  position: relative;
  isolation: isolate;
  padding: clamp(62px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 18px 18px, rgba(18, 13, 11, 0.055) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 20%, rgba(184, 23, 23, 0.08), transparent 26%),
    linear-gradient(180deg, #f7eee1, #fff8ec);
  background-size: 18px 18px, auto, auto;
  color: #201411;
}

body.theme-pollos_asados .pollos-section-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

body.theme-pollos_asados .pollos-section-head h2,
body.theme-pollos_asados .pollos-promos h2 {
  max-width: 760px;
  margin: 0;
  color: #21110d;
  font-family: var(--display-font);
  font-size: clamp(2.25rem, 4.4vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 34px;
  overflow-x: auto;
  padding: 6px 4px 8px;
  width: fit-content;
  max-width: 100%;
}

body.theme-pollos_asados .pollos-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(32, 20, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #2a1712;
  cursor: pointer;
  font-weight: 900;
  padding: 0 20px;
  box-shadow: 0 8px 18px rgba(32, 20, 17, 0.06);
}

body.theme-pollos_asados .pollos-tabs button.active,
body.theme-pollos_asados .pollos-tabs button:hover {
  border-color: var(--pollos-red);
  background: var(--pollos-red);
  color: #fff;
}

body.theme-pollos_asados .pollos-product-grid,
body.theme-pollos_asados .pollos-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 2.1vw, 30px);
}

body.theme-pollos_asados .pollos-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 223, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(45, 27, 18, 0.98), rgba(18, 13, 11, 0.99));
  color: var(--pollos-cream);
  box-shadow: 0 24px 46px rgba(18, 13, 11, 0.2);
}

body.theme-pollos_asados .pollos-product-image {
  display: block;
  aspect-ratio: 1 / 0.78;
  background:
    radial-gradient(circle at 50% 45%, rgba(245, 182, 47, 0.16), transparent 52%),
    #190f0c;
}

body.theme-pollos_asados .pollos-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

body.theme-pollos_asados .pollos-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

body.theme-pollos_asados .pollos-product-body p {
  margin: 0 0 7px;
  color: var(--pollos-gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-product-body h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
  line-height: 1.2;
}

body.theme-pollos_asados .pollos-product-body h3 a {
  color: var(--pollos-cream);
  text-decoration: none;
}

body.theme-pollos_asados .pollos-product-body span {
  flex: 1;
  color: var(--pollos-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

body.theme-pollos_asados .pollos-product-body strong {
  margin-top: 14px;
  color: #ffffff;
  font-size: 1.34rem;
  font-weight: 1000;
}

body.theme-pollos_asados .pollos-product-actions {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

body.theme-pollos_asados .pollos-product-actions > a,
body.theme-pollos_asados .pollos-product-actions .btn-add-quote {
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.88rem;
}

body.theme-pollos_asados .pollos-product-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 182, 47, 0.36);
  color: var(--pollos-gold);
  text-decoration: none;
}

body.theme-pollos_asados .pollos-product-actions .btn-add-quote {
  border: 0;
  background: var(--pollos-red);
  color: #fff;
}

body.theme-pollos_asados .pollos-product-actions .btn-add-quote svg {
  width: 18px;
  height: 18px;
}

body.theme-pollos_asados .pollos-promos {
  padding: clamp(68px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(245, 182, 47, 0.18), transparent 20%),
    linear-gradient(120deg, rgba(184, 23, 23, 0.88), rgba(31, 21, 17, 0.96) 58%, rgba(18, 13, 11, 0.98)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 20px);
}

body.theme-pollos_asados .pollos-promos h2 {
  color: #fff;
}

body.theme-pollos_asados .pollos-promos-lead {
  display: block;
  max-width: 360px;
  margin-top: 18px;
  color: #f5dfc2;
  font-size: 1rem;
  line-height: 1.6;
}

body.theme-pollos_asados .pollos-promos-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

body.theme-pollos_asados .pollos-promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child {
  position: sticky;
  top: 132px;
  border-left: 6px solid var(--pollos-gold);
  padding-left: clamp(18px, 2.5vw, 30px);
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child::after {
  content: "Pide caliente";
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 24px;
  border-radius: 8px;
  background: var(--pollos-gold);
  color: #2a160e;
  font-size: 0.84rem;
  font-weight: 1000;
  padding: 0 18px;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-feature-band {
  padding: 30px 0;
  border-top: 1px solid rgba(245, 182, 47, 0.2);
  border-bottom: 1px solid rgba(245, 182, 47, 0.2);
  background:
    linear-gradient(90deg, rgba(184, 23, 23, 0.18), rgba(20, 12, 9, 0.96), rgba(184, 23, 23, 0.18)),
    #140c09;
}

body.theme-pollos_asados .pollos-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(245, 182, 47, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(18, 13, 11, 0.5);
}

body.theme-pollos_asados .pollos-feature-grid article {
  justify-content: center;
  border: 0;
  border-right: 1px solid rgba(245, 182, 47, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: 92px;
  text-align: center;
}

body.theme-pollos_asados .pollos-feature-grid article:last-child {
  border-right: 0;
}

body.theme-pollos_asados .pollos-footer {
  border-top: 1px solid rgba(245, 182, 47, 0.24);
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 23, 23, 0.2), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(245, 182, 47, 0.08), transparent 18%),
    #120d0b;
  color: var(--pollos-cream);
}

body.theme-pollos_asados .pollos-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(140px, 0.75fr) minmax(210px, 1fr) minmax(230px, 1.1fr);
  gap: clamp(28px, 4.5vw, 68px);
  padding-block: 56px 38px;
}

body.theme-pollos_asados .pollos-footer h3 {
  margin: 0 0 14px;
  color: var(--pollos-gold);
  font-size: 1rem;
}

body.theme-pollos_asados .pollos-footer p,
body.theme-pollos_asados .pollos-footer a {
  color: var(--pollos-muted);
  line-height: 1.55;
}

body.theme-pollos_asados .pollos-footer a {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

body.theme-pollos_asados .pollos-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

body.theme-pollos_asados .pollos-social-links a {
  margin: 0;
  color: var(--pollos-gold);
  font-weight: 900;
}

body.theme-pollos_asados .pollos-footer-cta {
  width: fit-content;
  margin-top: 18px;
  color: #fff;
  box-shadow: 0 16px 30px rgba(184, 23, 23, 0.28);
}

body.theme-pollos_asados .pollos-copyright {
  border-top: 1px solid rgba(255, 245, 223, 0.12);
  color: var(--pollos-muted);
}

body.theme-pollos_asados .quote-floating {
  background: linear-gradient(135deg, var(--pollos-red), var(--pollos-red-hot));
  color: #fff;
}

@media (max-width: 1180px) {
  body.theme-pollos_asados .pollos-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    min-height: 84px;
  }

  body.theme-pollos_asados .pollos-nav,
  body.theme-pollos_asados .pollos-phone {
    display: none;
  }

  body.theme-pollos_asados .pollos-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  body.theme-pollos_asados .pollos-product-grid,
  body.theme-pollos_asados .pollos-promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.theme-pollos_asados .pollos-feature-grid,
  body.theme-pollos_asados .pollos-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.theme-pollos_asados .pollos-hero {
    min-height: 0;
  }

  body.theme-pollos_asados .pollos-hero-inner,
  body.theme-pollos_asados .pollos-promos-inner {
    grid-template-columns: 1fr;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    min-height: 0;
    padding-block: 30px 118px;
  }

  body.theme-pollos_asados .pollos-hero-media {
    order: -1;
    justify-content: center;
    margin: 0;
  }

  body.theme-pollos_asados .pollos-hero-media img {
    width: min(112%, 620px);
    max-height: 390px;
    transform: scale(1.04);
  }

  body.theme-pollos_asados .pollos-benefits {
    grid-template-columns: 1fr;
    margin-top: -70px;
  }

  body.theme-pollos_asados .pollos-section-head {
    display: grid;
  }

  body.theme-pollos_asados .pollos-product-grid,
  body.theme-pollos_asados .pollos-promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-pollos_asados .pollos-promos-inner > div:first-child {
    position: static;
  }

  body.theme-pollos_asados .pollos-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-pollos_asados .pollos-feature-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 182, 47, 0.16);
  }
}

@media (max-width: 520px) {
  body.theme-pollos_asados .pollos-header-inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
    min-height: 70px;
    gap: 10px;
    padding-right: 94px;
  }

  body.theme-pollos_asados .pollos-logo img {
    max-width: min(150px, 42vw);
    max-height: 50px;
  }

  body.theme-pollos_asados .pollos-order-btn {
    display: none;
  }

  body.theme-pollos_asados .pollos-order-icon,
  body.theme-pollos_asados .pollos-menu-toggle {
    width: 40px;
    height: 40px;
  }

  body.theme-pollos_asados .pollos-order-icon {
    display: none;
  }

  body.theme-pollos_asados .pollos-menu-toggle {
    position: fixed;
    top: 15px;
    right: 16px;
    z-index: 2000;
    display: inline-flex !important;
    transform: none;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    text-align: left;
  }

  body.theme-pollos_asados .pollos-hero h1 {
    font-size: clamp(2.25rem, 12.8vw, 3.55rem);
  }

  body.theme-pollos_asados .pollos-hero-copy > strong {
    font-size: clamp(1.04rem, 6vw, 1.55rem);
  }

  body.theme-pollos_asados .pollos-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.theme-pollos_asados .pollos-btn {
    width: 100%;
  }

  body.theme-pollos_asados .pollos-product-grid,
  body.theme-pollos_asados .pollos-promo-grid {
    gap: 10px;
  }

  body.theme-pollos_asados .pollos-product-body {
    padding: 12px;
  }

  body.theme-pollos_asados .pollos-product-body h3 {
    font-size: 0.86rem;
  }

  body.theme-pollos_asados .pollos-product-body span {
    font-size: 0.76rem;
  }

  body.theme-pollos_asados .pollos-product-body strong {
    font-size: 1rem;
  }

  body.theme-pollos_asados .pollos-product-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.theme-pollos_asados .pollos-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  body.theme-pollos_asados .pollos-product-grid,
  body.theme-pollos_asados .pollos-promo-grid {
    grid-template-columns: 1fr;
  }
}

/* Pollos asados: compact commercial refinement */
body.theme-pollos_asados .pollos-header-inner {
  min-height: 88px;
}

body.theme-pollos_asados,
body.theme-pollos_asados .pollos-home {
  overflow-x: hidden;
}

body.theme-pollos_asados .pollos-home *,
body.theme-pollos_asados .pollos-home *::before,
body.theme-pollos_asados .pollos-home *::after {
  box-sizing: border-box;
}

body.theme-pollos_asados .pollos-logo img {
  max-width: 190px;
  max-height: 64px;
}

body.theme-pollos_asados .pollos-nav {
  gap: clamp(16px, 1.7vw, 28px);
}

body.theme-pollos_asados .pollos-order-btn {
  min-height: 42px;
  padding: 0 18px;
}

body.theme-pollos_asados .pollos-hero {
  min-height: clamp(600px, 74vh, 780px);
}

body.theme-pollos_asados .pollos-hero-inner {
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  gap: 0;
  min-height: clamp(520px, 64vh, 700px);
  padding-block: clamp(34px, 5vw, 64px) 86px;
}

body.theme-pollos_asados .pollos-hero-copy {
  width: 100%;
  max-width: 600px;
  min-width: 0;
}

body.theme-pollos_asados .pollos-hero-inner > * {
  min-width: 0;
}

body.theme-pollos_asados .pollos-hero h1 {
  width: 100%;
  max-width: 8.8em;
  font-size: clamp(3.4rem, 7vw, 6.9rem);
  line-height: 0.83;
}

body.theme-pollos_asados .pollos-hero h1 span {
  color: #fff;
}

body.theme-pollos_asados .pollos-hero h1 mark {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: var(--pollos-gold);
  text-shadow: 0 5px 0 rgba(84, 18, 11, 0.42), 0 20px 44px rgba(0, 0, 0, 0.45);
}

body.theme-pollos_asados .pollos-hero-copy .pollos-hero-ribbon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 14px 0 12px;
  padding: 8px 18px 9px;
  border: 1px solid rgba(255, 226, 159, 0.24);
  border-radius: 4px;
  background: linear-gradient(135deg, #c71515, #e2291d);
  color: #fff;
  font-family: var(--pollos-display);
  font-size: clamp(1.12rem, 2.15vw, 2.05rem);
  font-weight: 1000;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(158, 13, 13, 0.4);
}

body.theme-pollos_asados .pollos-hero-copy > p:not(.pollos-kicker) {
  width: 100%;
  max-width: 500px;
  margin-top: 6px;
  font-size: clamp(0.98rem, 1.25vw, 1.17rem);
  overflow-wrap: anywhere;
}

body.theme-pollos_asados .pollos-btn {
  min-height: 43px;
  padding: 0 18px;
  border-radius: 5px;
  font-size: 0.86rem;
}

body.theme-pollos_asados .pollos-hero-actions {
  max-width: 100%;
}

body.theme-pollos_asados .pollos-hero-media {
  margin-left: clamp(-70px, -4vw, -28px);
  min-width: 0;
  overflow: hidden;
}

body.theme-pollos_asados .pollos-hero-media img {
  width: min(118%, 930px);
  max-height: clamp(440px, 62vh, 660px);
  transform: scale(1.08);
}

body.theme-pollos_asados .pollos-benefits {
  width: min(980px, calc(100% - 32px));
  margin-top: -72px;
  padding: 12px 16px;
  gap: 10px;
}

body.theme-pollos_asados .pollos-benefits article {
  min-height: 54px;
  padding: 8px 12px;
}

body.theme-pollos_asados .pollos-benefits img {
  width: 34px;
  height: 34px;
}

body.theme-pollos_asados .pollos-menu-section {
  padding-block: clamp(44px, 5.5vw, 78px);
}

body.theme-pollos_asados .pollos-section-head {
  justify-items: center;
  margin-bottom: 18px;
  text-align: center;
}

body.theme-pollos_asados .pollos-section-head p {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 15px 6px;
  border-radius: 4px;
  background: var(--pollos-red);
  color: #fff;
  font-size: 0.76rem;
  box-shadow: 0 12px 24px rgba(184, 23, 23, 0.22);
}

body.theme-pollos_asados .pollos-section-head h2 {
  max-width: 920px;
  font-size: clamp(2.05rem, 3.8vw, 3.8rem);
  line-height: 0.96;
}

body.theme-pollos_asados .pollos-tabs {
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

body.theme-pollos_asados .pollos-tabs button {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 5px;
  font-size: 0.76rem;
}

body.theme-pollos_asados .pollos-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

body.theme-pollos_asados .pollos-product-card {
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(40, 21, 14, 0.12);
}

body.theme-pollos_asados .pollos-product-image {
  aspect-ratio: 1 / 0.68;
  padding: 10px;
}

body.theme-pollos_asados .pollos-product-image img {
  max-height: 100%;
}

body.theme-pollos_asados .pollos-product-body {
  gap: 6px;
  padding: 12px;
}

body.theme-pollos_asados .pollos-product-body p {
  font-size: 0.68rem;
}

body.theme-pollos_asados .pollos-product-body h3 {
  min-height: 2.2em;
  font-size: 0.96rem;
  line-height: 1.08;
}

body.theme-pollos_asados .pollos-product-body span {
  min-height: 2.55em;
  font-size: 0.78rem;
  line-height: 1.28;
}

body.theme-pollos_asados .pollos-product-body strong {
  font-size: 1.08rem;
}

body.theme-pollos_asados .pollos-product-actions {
  grid-template-columns: 0.62fr 1fr;
  gap: 7px;
  margin-top: 4px;
}

body.theme-pollos_asados .pollos-product-actions a,
body.theme-pollos_asados .pollos-product-actions button {
  min-height: 36px;
  border-radius: 5px;
  font-size: 0.76rem;
}

body.theme-pollos_asados .pollos-red-statement {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 50%, rgba(245, 182, 47, 0.3), transparent 28%),
    linear-gradient(135deg, #ac1111 0%, #e3261a 58%, #8f0b0b 100%);
  color: #fff;
}

body.theme-pollos_asados .pollos-red-statement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
  padding-block: 20px;
}

body.theme-pollos_asados .pollos-red-statement p {
  max-width: 860px;
  margin: 0;
  font-family: var(--pollos-display);
  font-size: clamp(1.65rem, 3.4vw, 3.5rem);
  font-weight: 1000;
  line-height: 0.95;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-red-statement a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--pollos-gold);
  color: #1b0d09;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(42, 8, 8, 0.24);
}

body.theme-pollos_asados .pollos-promos {
  padding-block: clamp(46px, 6vw, 82px);
}

body.theme-pollos_asados .pollos-promos-inner {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: center;
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child {
  top: 92px;
}

body.theme-pollos_asados .pollos-promos-inner h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.93;
}

body.theme-pollos_asados .pollos-promos-lead {
  display: block;
  max-width: 420px;
  margin-top: 12px;
  color: rgba(255, 245, 223, 0.78);
  line-height: 1.5;
}

body.theme-pollos_asados .pollos-promo-grid {
  display: flex;
  grid-template-columns: none;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--pollos-red-hot) rgba(255, 245, 223, 0.1);
}

body.theme-pollos_asados .pollos-promo-grid .pollos-product-card {
  flex: 0 0 clamp(190px, 22vw, 245px);
  scroll-snap-align: start;
}

body.theme-pollos_asados .pollos-feature-band {
  padding-block: 24px;
}

body.theme-pollos_asados .pollos-feature-grid {
  gap: 0;
}

body.theme-pollos_asados .pollos-feature-grid article {
  min-height: 74px;
  padding: 14px;
}

body.theme-pollos_asados .pollos-bottom-strip {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%, rgba(0, 0, 0, 0.22)),
    var(--pollos-red);
  color: #fff;
}

body.theme-pollos_asados .pollos-bottom-strip .container {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding-block: 14px;
}

body.theme-pollos_asados .pollos-bottom-strip strong {
  color: var(--pollos-gold);
  font-family: var(--pollos-display);
  font-size: clamp(1.3rem, 2.4vw, 2.25rem);
  line-height: 0.95;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-bottom-strip span {
  font-weight: 800;
  line-height: 1.35;
}

body.theme-pollos_asados .pollos-bottom-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 5px;
  background: #15100d;
  color: #fff;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
}

@media (min-width: 1500px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1181px) and (max-width: 1499px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  body.theme-pollos_asados .pollos-header-inner {
    min-height: 78px;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    grid-template-columns: minmax(300px, 0.8fr) minmax(400px, 1.2fr);
  }

  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.theme-pollos_asados .pollos-hero-inner,
  body.theme-pollos_asados .pollos-promos-inner {
    grid-template-columns: 1fr;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    padding-block: 26px 100px;
  }

  body.theme-pollos_asados .pollos-hero-media {
    margin-left: 0;
  }

  body.theme-pollos_asados .pollos-hero-media img {
    width: min(112%, 610px);
    max-height: 360px;
  }

  body.theme-pollos_asados .pollos-red-statement-inner,
  body.theme-pollos_asados .pollos-bottom-strip .container {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: start;
  }

  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-pollos_asados .pollos-promo-grid {
    grid-template-columns: none;
  }

  body.theme-pollos_asados .pollos-promos-inner > div:first-child {
    position: static;
  }
}

@media (max-width: 520px) {
  body.theme-pollos_asados .pollos-header-inner {
    min-height: 66px;
  }

  body.theme-pollos_asados .pollos-hero-copy,
  body.theme-pollos_asados .pollos-hero h1 {
    max-width: calc(100vw - 24px);
  }

  body.theme-pollos_asados .pollos-hero-copy > p:not(.pollos-kicker) {
    max-width: min(calc(100vw - 24px), 31ch);
  }

  body.theme-pollos_asados .pollos-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
  }

  body.theme-pollos_asados .pollos-hero h1 mark {
    display: block;
  }

  body.theme-pollos_asados .pollos-hero-copy .pollos-hero-ribbon {
    margin-top: 10px;
    padding: 7px 12px 8px;
    font-size: clamp(1rem, 5.6vw, 1.35rem);
    line-height: 1;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    grid-template-columns: 1fr;
    gap: 9px;
    max-width: min(100%, 285px);
  }

  body.theme-pollos_asados .pollos-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  body.theme-pollos_asados .pollos-benefits {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  body.theme-pollos_asados .pollos-section-head h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  body.theme-pollos_asados .pollos-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  body.theme-pollos_asados .pollos-tabs button {
    flex: 0 0 auto;
  }

  body.theme-pollos_asados .pollos-product-body {
    padding: 10px;
  }

  body.theme-pollos_asados .pollos-product-body h3 {
    font-size: 0.84rem;
  }

  body.theme-pollos_asados .pollos-product-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  body.theme-pollos_asados .pollos-hero-actions {
    grid-template-columns: 1fr;
    max-width: min(100%, 285px);
  }
}

@media (max-width: 640px) {
  body.theme-pollos_asados .quote-floating {
    display: none !important;
  }
}

body.theme-pollos_asados .quote-floating {
  display: none !important;
}

/* Pollos asados: deep reference-style layout pass */
body.theme-pollos_asados {
  background:
    radial-gradient(circle at 12% 12%, rgba(226, 50, 34, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(245, 182, 47, 0.12), transparent 22%),
    linear-gradient(180deg, #130c09 0%, #21120d 48%, #100b09 100%);
}

body.theme-pollos_asados .pollos-home {
  background:
    repeating-linear-gradient(90deg, rgba(255, 245, 223, 0.026) 0 1px, transparent 1px 24px),
    radial-gradient(circle at 76% 8%, rgba(226, 50, 34, 0.2), transparent 26%),
    linear-gradient(180deg, #130c09 0%, #1d100c 52%, #110b09 100%);
}

body.theme-pollos_asados .pollos-site-header {
  background:
    linear-gradient(180deg, rgba(23, 13, 10, 0.99), rgba(12, 8, 7, 0.98));
}

body.theme-pollos_asados .pollos-header-inner,
body.theme-pollos_asados .pollos-menu-section > .container,
body.theme-pollos_asados .pollos-promos-inner,
body.theme-pollos_asados .pollos-red-statement-inner,
body.theme-pollos_asados .pollos-bottom-strip .container,
body.theme-pollos_asados .pollos-feature-grid {
  width: min(1320px, calc(100% - 48px));
}

body.theme-pollos_asados .pollos-hero {
  min-height: auto;
  padding: clamp(32px, 4.5vw, 62px) 0 0;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(10, 7, 6, 0.98), rgba(32, 17, 12, 0.78) 50%, rgba(10, 7, 6, 0.98)),
    radial-gradient(circle at 74% 38%, rgba(226, 50, 34, 0.23), transparent 28%);
}

body.theme-pollos_asados .pollos-hero-bg {
  inset: 0;
  background:
    linear-gradient(90deg, #0d0908 0%, rgba(13, 9, 8, 0.42) 18%, rgba(13, 9, 8, 0.12) 50%, rgba(13, 9, 8, 0.68) 84%, #0d0908 100%),
    radial-gradient(circle at 70% 44%, rgba(245, 182, 47, 0.16), transparent 22%);
}

body.theme-pollos_asados .pollos-hero::after {
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(13, 9, 8, 0.92));
}

body.theme-pollos_asados .pollos-hero-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: clamp(520px, 62vh, 690px);
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1.42fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(245, 182, 47, 0.2);
  border-radius: 10px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(11, 8, 7, 0.98) 0%, rgba(20, 12, 9, 0.95) 34%, rgba(20, 12, 9, 0.24) 58%, rgba(11, 8, 7, 0.74) 100%),
    radial-gradient(circle at 78% 34%, rgba(245, 182, 47, 0.17), transparent 28%),
    #120c09;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

body.theme-pollos_asados .pollos-hero-copy {
  align-self: center;
  max-width: 560px;
  padding: clamp(42px, 5vw, 72px) clamp(24px, 4.2vw, 64px);
}

body.theme-pollos_asados .pollos-kicker {
  margin-bottom: 10px;
  color: var(--pollos-gold);
  font-size: clamp(0.74rem, 0.82vw, 0.9rem);
  letter-spacing: 0.16em;
}

body.theme-pollos_asados .pollos-hero h1 {
  max-width: 6.3em;
  color: #fff;
  font-size: clamp(3.35rem, 5.7vw, 6.8rem);
  line-height: 0.78;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.44);
}

body.theme-pollos_asados .pollos-hero h1 span {
  color: #fff;
  font-size: 0.52em;
}

body.theme-pollos_asados .pollos-hero h1 mark {
  display: block;
  color: #ffc232;
}

body.theme-pollos_asados .pollos-hero-copy .pollos-hero-ribbon {
  margin: 14px 0 14px;
  padding: 9px 18px 10px;
  background: linear-gradient(180deg, #f02b21, #c81313);
  color: #fff;
  font-size: clamp(1.15rem, 2.25vw, 2.35rem);
  line-height: 0.98;
  box-shadow: 0 14px 0 rgba(92, 10, 9, 0.45), 0 22px 42px rgba(177, 16, 13, 0.34);
}

body.theme-pollos_asados .pollos-hero-copy > p:not(.pollos-kicker) {
  max-width: 460px;
  color: #fff1d8;
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
  line-height: 1.55;
}

body.theme-pollos_asados .pollos-hero-actions {
  margin-top: 24px;
  gap: 12px;
}

body.theme-pollos_asados .pollos-btn {
  min-height: 42px;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 0.82rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

body.theme-pollos_asados .pollos-hero-media {
  position: relative;
  align-items: stretch;
  justify-content: stretch;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.7) 0%, transparent 20%, transparent 72%, rgba(18, 12, 9, 0.45) 100%),
    radial-gradient(circle at 70% 42%, rgba(226, 50, 34, 0.16), transparent 36%);
}

body.theme-pollos_asados .pollos-hero-media::before {
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(16, 10, 8, 0.86) 0%, transparent 24%, transparent 74%, rgba(16, 10, 8, 0.38) 100%),
    radial-gradient(circle at 66% 42%, rgba(245, 182, 47, 0.18), transparent 36%);
  filter: none;
  z-index: 2;
}

body.theme-pollos_asados .pollos-hero-media img {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  min-height: clamp(520px, 62vh, 690px);
  object-fit: cover;
  object-position: center right;
  transform: none;
  filter: saturate(1.08) contrast(1.06);
}

body.theme-pollos_asados .pollos-benefits {
  width: min(1110px, calc(100% - 72px));
  margin-top: -34px;
  padding: 0;
  gap: 0;
  border: 1px solid rgba(245, 182, 47, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(22, 13, 10, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

body.theme-pollos_asados .pollos-benefits article {
  min-height: 76px;
  border: 0;
  border-right: 1px solid rgba(245, 182, 47, 0.16);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(46, 25, 18, 0.72), rgba(18, 12, 9, 0.86));
  padding: 14px 18px;
  box-shadow: none;
}

body.theme-pollos_asados .pollos-benefits article:last-child {
  border-right: 0;
}

body.theme-pollos_asados .pollos-benefits span {
  display: grid;
  gap: 3px;
  line-height: 1.05;
}

body.theme-pollos_asados .pollos-benefits small {
  color: rgba(255, 245, 223, 0.7);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

body.theme-pollos_asados .pollos-torn-divider {
  bottom: -46px;
  height: 112px;
  color: #140c09;
}

body.theme-pollos_asados .pollos-torn-divider path {
  fill: #140c09;
}

body.theme-pollos_asados .pollos-menu-section {
  margin-top: 0;
  padding-block: clamp(92px, 8vw, 126px) clamp(54px, 6vw, 86px);
  background:
    radial-gradient(circle at 24px 24px, rgba(255, 245, 223, 0.055) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(226, 50, 34, 0.22), transparent 25%),
    radial-gradient(circle at 15% 78%, rgba(245, 182, 47, 0.09), transparent 22%),
    linear-gradient(180deg, #140c09 0%, #24140f 46%, #140c09 100%);
  background-size: 22px 22px, auto, auto, auto;
  color: var(--pollos-cream);
}

body.theme-pollos_asados .pollos-section-head p {
  background: transparent;
  color: var(--pollos-gold);
  box-shadow: none;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
}

body.theme-pollos_asados .pollos-section-head h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

body.theme-pollos_asados .pollos-tabs {
  width: min(100%, 980px);
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(245, 182, 47, 0.18);
  border-radius: 8px;
  padding: 8px;
  background: rgba(10, 7, 6, 0.58);
}

body.theme-pollos_asados .pollos-tabs button {
  min-height: 34px;
  border-color: rgba(245, 182, 47, 0.16);
  background: rgba(255, 245, 223, 0.06);
  color: rgba(255, 245, 223, 0.88);
  padding: 0 14px;
}

body.theme-pollos_asados .pollos-product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

body.theme-pollos_asados .pollos-product-card {
  border-color: rgba(245, 182, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(47, 27, 18, 0.96), rgba(17, 11, 9, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

body.theme-pollos_asados .pollos-product-image {
  aspect-ratio: 1 / 0.62;
  padding: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(245, 182, 47, 0.18), transparent 55%),
    #160d0a;
}

body.theme-pollos_asados .pollos-product-image img {
  padding: 8px;
}

body.theme-pollos_asados .pollos-product-body {
  padding: 10px;
  gap: 5px;
}

body.theme-pollos_asados .pollos-product-body p {
  margin-bottom: 2px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

body.theme-pollos_asados .pollos-product-body h3 {
  min-height: 2.12em;
  margin-bottom: 0;
  font-size: 0.9rem;
}

body.theme-pollos_asados .pollos-product-body span {
  min-height: 2.4em;
  font-size: 0.72rem;
  line-height: 1.22;
}

body.theme-pollos_asados .pollos-product-body strong {
  margin-top: 4px;
  font-size: 1rem;
}

/* ============================================================
   Mejoras visuales sitio publico (hero, marcas, testimonios,
   breadcrumbs, specs, abierto-ahora, header sticky, reveal)
   ============================================================ */

.sticky-site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  transition: box-shadow 0.2s ease;
}

.sticky-site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(7, 17, 29, 0.35);
}

.header-quote {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--theme-header-text, #ffffff);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.header-quote svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.header-quote:hover {
  transform: translateY(-1px);
  border-color: var(--theme-accent);
  background: color-mix(in srgb, var(--theme-accent) 16%, transparent);
}

.header-quote [data-quote-count] {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  padding: 0 5px;
  background: var(--theme-accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
}

body.theme-light_commerce .header-quote {
  border-color: rgba(20, 32, 43, 0.26);
  background: rgba(20, 32, 43, 0.04);
}

.modern-slide-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 0 22px;
  background: rgba(7, 17, 29, 0.25);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(3px);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.btn-hero-secondary:hover {
  transform: translateY(-1px);
  border-color: #ffffff;
  background: rgba(7, 17, 29, 0.45);
}

.product-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--theme-accent, #ff7a00) 42%, rgba(20, 32, 43, 0.12));
  box-shadow: 0 20px 44px rgba(7, 17, 29, 0.14);
}

.product-image img.is-placeholder {
  object-fit: contain;
  background: #f3f6f8;
}

.product-detail-image img.is-placeholder {
  object-fit: contain;
  background: #f3f6f8;
}

.brands-section {
  padding: 0 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.brands-strip {
  display: grid;
  gap: 14px;
  justify-items: center;
  border: 1px solid rgba(20, 32, 43, 0.1);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 54px rgba(7, 17, 29, 0.08);
}

.brands-title {
  margin: 0;
  color: var(--theme-muted-on-light, #5d6b7a);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brands-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(20, 32, 43, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--theme-heading-on-light, #14202b);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.brand-chip:hover {
  border-color: var(--theme-accent, #ff7a00);
  background: color-mix(in srgb, var(--theme-accent, #ff7a00) 8%, transparent);
  color: var(--theme-accent, #ff7a00);
}

.promo-countdown {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--theme-accent, #ff7a00);
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.open-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 6px;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.open-now-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.open-now-badge.is-open {
  background: rgba(27, 178, 99, 0.16);
  color: #2dd380;
}

.open-now-badge.is-closed {
  background: rgba(255, 107, 107, 0.14);
  color: #ff8585;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 22px 0 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.breadcrumbs a {
  color: inherit;
  opacity: 0.68;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.breadcrumbs a:hover {
  opacity: 1;
  color: var(--theme-accent-hover, #ff8f1f);
}

.breadcrumb-sep {
  opacity: 0.45;
}

.breadcrumbs [aria-current="page"] {
  opacity: 0.92;
}

.product-spec-table {
  width: 100%;
  max-width: 480px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.product-spec-table th,
.product-spec-table td {
  padding: 9px 4px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  text-align: left;
  vertical-align: top;
}

.product-spec-table th {
  width: 42%;
  opacity: 0.68;
  font-weight: 700;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.catalog-count {
  margin: 0;
  color: var(--theme-muted-on-light, #5d6b7a);
  font-size: 0.95rem;
}

.catalog-count strong {
  color: var(--theme-heading-on-light, #14202b);
}

.catalog-clear {
  color: var(--theme-accent, #ff7a00);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .category-block img,
  .product-card,
  .btn-hero-secondary,
  .header-quote {
    transition: none;
  }
}

@media (max-width: 900px) {
  .header-quote {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .modern-slide-actions {
    gap: 9px;
  }

  .btn-hero-secondary {
    min-height: 44px;
    padding: 0 16px;
  }

  .brands-strip {
    padding: 20px 16px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

body.theme-pollos_asados .pollos-product-actions {
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 4px;
}

body.theme-pollos_asados .pollos-product-actions > a {
  display: none;
}

body.theme-pollos_asados .pollos-product-actions a,
body.theme-pollos_asados .pollos-product-actions button,
body.theme-pollos_asados .pollos-product-actions .btn-add-quote {
  min-height: 32px;
  border-radius: 4px;
  font-size: 0.7rem;
}

body.theme-pollos_asados .pollos-red-statement {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 45%, rgba(0, 0, 0, 0.24)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #990f0f 0%, #e9281d 48%, #a10d0d 100%);
}

body.theme-pollos_asados .pollos-red-statement-inner {
  min-height: clamp(118px, 10vw, 162px);
}

body.theme-pollos_asados .pollos-red-statement p {
  max-width: 960px;
  font-size: clamp(2rem, 4vw, 5rem);
}

body.theme-pollos_asados .pollos-promos {
  padding-block: clamp(48px, 6vw, 90px);
  background:
    radial-gradient(circle at 12% 35%, rgba(245, 182, 47, 0.14), transparent 24%),
    linear-gradient(90deg, rgba(125, 9, 9, 0.75), rgba(17, 10, 8, 0.98) 38%, rgba(22, 12, 9, 0.98));
}

body.theme-pollos_asados .pollos-promos-inner {
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1.62fr);
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(245, 182, 47, 0.18);
  border-left: 8px solid var(--pollos-red-hot);
  border-radius: 8px;
  padding: clamp(20px, 2.4vw, 34px);
  background:
    linear-gradient(180deg, rgba(174, 17, 15, 0.82), rgba(20, 12, 9, 0.95));
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child::after {
  width: fit-content;
}

body.theme-pollos_asados .pollos-promo-grid {
  gap: 10px;
  padding-bottom: 10px;
}

body.theme-pollos_asados .pollos-promo-grid .pollos-product-card {
  flex-basis: clamp(185px, 18vw, 230px);
}

body.theme-pollos_asados .pollos-feature-band {
  background:
    linear-gradient(90deg, #0d0807, #1b0e0b 50%, #0d0807);
}

body.theme-pollos_asados .pollos-feature-grid article {
  min-height: 70px;
  padding: 12px;
}

body.theme-pollos_asados .pollos-bottom-strip {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 50%, rgba(0, 0, 0, 0.2)),
    linear-gradient(135deg, #a80f0f, #ec2a1d 52%, #8d0909);
}

body.theme-pollos_asados .pollos-bottom-strip .container {
  min-height: 86px;
}

body.theme-pollos_asados .pollos-footer {
  background:
    repeating-linear-gradient(90deg, rgba(255, 245, 223, 0.022) 0 1px, transparent 1px 24px),
    radial-gradient(circle at 12% 20%, rgba(226, 50, 34, 0.18), transparent 26%),
    #100b09;
}

body.theme-pollos_asados .pollos-footer-grid {
  width: min(1320px, calc(100% - 48px));
}

@media (max-width: 1320px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  body.theme-pollos_asados .pollos-hero-inner {
    grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  }

  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.theme-pollos_asados .pollos-header-inner,
  body.theme-pollos_asados .pollos-menu-section > .container,
  body.theme-pollos_asados .pollos-promos-inner,
  body.theme-pollos_asados .pollos-red-statement-inner,
  body.theme-pollos_asados .pollos-bottom-strip .container,
  body.theme-pollos_asados .pollos-feature-grid,
  body.theme-pollos_asados .pollos-footer-grid,
  body.theme-pollos_asados .pollos-hero-inner {
    width: min(100% - 24px, 1320px);
  }

  body.theme-pollos_asados .pollos-hero {
    padding-top: 22px;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  body.theme-pollos_asados .pollos-hero-media {
    order: -1;
    min-height: 260px;
  }

  body.theme-pollos_asados .pollos-hero-media img {
    min-height: 260px;
    max-height: 360px;
    object-position: center right;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    padding: 20px 18px 32px;
  }

  body.theme-pollos_asados .pollos-hero h1 {
    max-width: 7em;
  }

  body.theme-pollos_asados .pollos-benefits {
    width: min(100% - 24px, 520px);
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  body.theme-pollos_asados .pollos-benefits article {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 182, 47, 0.16);
  }

  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-pollos_asados .pollos-promos-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.theme-pollos_asados .pollos-hero-copy {
    padding: 18px 14px 28px;
  }

  body.theme-pollos_asados .pollos-hero h1 {
    max-width: 6.2em;
    font-size: clamp(2.25rem, 12.4vw, 3.05rem);
  }

  body.theme-pollos_asados .pollos-hero-copy .pollos-hero-ribbon {
    font-size: clamp(1rem, 5.2vw, 1.32rem);
  }

  body.theme-pollos_asados .pollos-hero-copy > p:not(.pollos-kicker) {
    max-width: 32ch;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    max-width: 100%;
  }

  body.theme-pollos_asados .pollos-product-grid {
    gap: 8px;
  }

  body.theme-pollos_asados .pollos-product-image {
    aspect-ratio: 1 / 0.7;
  }

  body.theme-pollos_asados .pollos-red-statement p {
    font-size: clamp(1.7rem, 10vw, 2.55rem);
  }
}

@media (max-width: 360px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Pollos asados: reference hero correction */
body.theme-pollos_asados .pollos-hero {
  padding: clamp(26px, 3.2vw, 44px) 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #050403 0%, rgba(27, 14, 10, 0.94) 28%, rgba(27, 14, 10, 0.92) 72%, #050403 100%);
}

body.theme-pollos_asados .pollos-hero-bg {
  background:
    radial-gradient(circle at 52% 40%, rgba(245, 182, 47, 0.09), transparent 34%),
    linear-gradient(90deg, #050403 0%, rgba(5, 4, 3, 0.12) 24%, rgba(5, 4, 3, 0.1) 76%, #050403 100%);
}

body.theme-pollos_asados .pollos-hero-inner {
  position: relative;
  display: block;
  width: min(1320px, calc(100% - 48px));
  min-height: 0;
  height: clamp(440px, 42vw, 560px);
  aspect-ratio: 1320 / 560;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #090605;
  box-shadow: none;
}

body.theme-pollos_asados .pollos-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96) 0%, rgba(5, 4, 3, 0.84) 26%, rgba(5, 4, 3, 0.36) 46%, rgba(5, 4, 3, 0.08) 68%, rgba(5, 4, 3, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.18) 0%, transparent 52%, rgba(5, 4, 3, 0.42) 100%);
  pointer-events: none;
}

body.theme-pollos_asados .pollos-hero-copy {
  position: relative;
  z-index: 3;
  width: min(47%, 560px);
  max-width: none;
  padding: clamp(42px, 5vw, 66px) clamp(28px, 4.8vw, 72px);
}

body.theme-pollos_asados .pollos-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #090605;
}

body.theme-pollos_asados .pollos-hero-media::before {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.7) 0%, transparent 28%, transparent 76%, rgba(5, 4, 3, 0.55) 100%);
}

body.theme-pollos_asados .pollos-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center right;
  transform: none;
  filter: saturate(1.08) contrast(1.04);
}

body.theme-pollos_asados .pollos-hero h1 {
  max-width: 7.1em;
  font-size: clamp(3.2rem, 5.6vw, 6.3rem);
  line-height: 0.82;
}

body.theme-pollos_asados .pollos-hero h1 span {
  font-size: 0.58em;
}

body.theme-pollos_asados .pollos-hero-copy .pollos-hero-ribbon {
  max-width: 100%;
  margin: 12px 0 14px;
  padding: 7px 16px 8px;
  font-size: clamp(1.08rem, 1.95vw, 2rem);
  box-shadow: 0 9px 0 rgba(81, 8, 8, 0.48), 0 18px 32px rgba(177, 16, 13, 0.34);
}

body.theme-pollos_asados .pollos-hero-copy > p:not(.pollos-kicker) {
  max-width: 420px;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.48;
}

body.theme-pollos_asados .pollos-hero-actions {
  margin-top: 18px;
}

body.theme-pollos_asados .pollos-benefits {
  width: min(1160px, calc(100% - 96px));
  margin-top: -72px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.theme-pollos_asados .pollos-benefits article {
  min-height: 70px;
  border-right: 1px solid rgba(255, 245, 223, 0.25);
  background: transparent;
  padding: 10px 22px;
}

body.theme-pollos_asados .pollos-benefits article:last-child {
  border-right: 0;
}

body.theme-pollos_asados .pollos-benefits img {
  width: 48px;
  height: 48px;
}

body.theme-pollos_asados .pollos-torn-divider {
  bottom: -36px;
  height: 92px;
}

@media (max-width: 820px) {
  body.theme-pollos_asados .pollos-hero-inner {
    width: min(100% - 24px, 1320px);
    height: auto;
    min-height: 620px;
    aspect-ratio: auto;
  }

  body.theme-pollos_asados .pollos-hero-inner::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.08) 0%, rgba(5, 4, 3, 0.22) 38%, rgba(5, 4, 3, 0.96) 62%, rgba(5, 4, 3, 0.98) 100%);
  }

  body.theme-pollos_asados .pollos-hero-media {
    position: absolute;
    inset: 0;
    height: auto;
  }

  body.theme-pollos_asados .pollos-hero-media img {
    object-position: center right;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 28px 18px 30px;
  }

  body.theme-pollos_asados .pollos-benefits {
    width: min(100% - 24px, 520px);
    margin-top: -20px;
    border: 1px solid rgba(245, 182, 47, 0.22);
    border-radius: 8px;
    background: rgba(18, 11, 8, 0.95);
  }

  body.theme-pollos_asados .pollos-benefits article {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 182, 47, 0.16);
    padding: 12px 16px;
  }
}

@media (max-width: 520px) {
  body.theme-pollos_asados .pollos-hero {
    padding-top: 20px;
  }

  body.theme-pollos_asados .pollos-hero h1 {
    max-width: 6.8em;
    font-size: clamp(2.35rem, 12.8vw, 3.35rem);
  }

  body.theme-pollos_asados .pollos-hero-copy .pollos-hero-ribbon {
    width: fit-content;
    font-size: clamp(1rem, 5.5vw, 1.4rem);
  }
}

/* Pollos asados: hero spacing and benefit alignment fix */
body.theme-pollos_asados .pollos-hero-inner {
  height: clamp(475px, 43vw, 580px);
}

body.theme-pollos_asados .pollos-hero-copy {
  padding-top: clamp(44px, 4.7vw, 62px);
  padding-bottom: clamp(110px, 10vw, 142px);
}

body.theme-pollos_asados .pollos-hero-actions {
  position: relative;
  z-index: 5;
  align-items: center;
  margin-top: 18px;
}

body.theme-pollos_asados .pollos-hero-actions .pollos-btn {
  min-width: 128px;
  min-height: 44px;
}

body.theme-pollos_asados .pollos-benefits {
  z-index: 4;
  width: min(1110px, calc(100% - 132px));
  margin-top: -88px;
  pointer-events: none;
}

body.theme-pollos_asados .pollos-benefits article {
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 64px;
  padding: 10px 22px;
}

body.theme-pollos_asados .pollos-benefits img {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}

body.theme-pollos_asados .pollos-benefits span {
  min-width: 0;
  color: #fff;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 1.08;
}

body.theme-pollos_asados .pollos-benefits small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 245, 223, 0.82);
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  line-height: 1.22;
}

@media (max-width: 980px) {
  body.theme-pollos_asados .pollos-hero-copy {
    width: min(56%, 560px);
    padding-bottom: 128px;
  }

  body.theme-pollos_asados .pollos-benefits {
    width: min(100% - 48px, 1020px);
  }
}

@media (max-width: 820px) {
  body.theme-pollos_asados .pollos-hero-inner {
    height: auto;
    min-height: 660px;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    width: 100%;
    padding: 28px 18px 150px;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(100%, 410px);
    gap: 10px;
  }

  body.theme-pollos_asados .pollos-benefits {
    width: min(100% - 24px, 520px);
    margin-top: -126px;
    pointer-events: auto;
  }

  body.theme-pollos_asados .pollos-benefits article {
    min-height: 66px;
    padding: 11px 14px;
  }
}

@media (max-width: 520px) {
  body.theme-pollos_asados .pollos-hero-inner {
    min-height: 710px;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    padding: 24px 18px 168px;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 9px;
  }

  body.theme-pollos_asados .pollos-hero-actions .pollos-btn {
    width: 100%;
    min-height: 43px;
  }

  body.theme-pollos_asados .pollos-benefits {
    margin-top: -142px;
  }

  body.theme-pollos_asados .pollos-benefits span {
    font-size: 0.96rem;
  }

  body.theme-pollos_asados .pollos-benefits small {
    font-size: 0.75rem;
  }
}

/* Pollos asados: final hero overlap fix */
body.theme-pollos_asados .pollos-hero {
  padding-bottom: 28px !important;
}

body.theme-pollos_asados .pollos-hero-inner {
  height: clamp(440px, 40vw, 540px) !important;
}

body.theme-pollos_asados .pollos-hero-copy {
  padding-bottom: clamp(34px, 4vw, 52px) !important;
}

body.theme-pollos_asados .pollos-hero-actions {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 18px !important;
  max-width: 100% !important;
}

body.theme-pollos_asados .pollos-hero-actions .pollos-btn {
  width: auto !important;
  min-width: 128px !important;
  min-height: 42px !important;
}

body.theme-pollos_asados .pollos-benefits {
  position: relative !important;
  z-index: 3 !important;
  width: min(1110px, calc(100% - 96px)) !important;
  margin: 14px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  border: 1px solid rgba(245, 182, 47, 0.2) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: rgba(13, 8, 7, 0.92) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
  pointer-events: auto !important;
}

body.theme-pollos_asados .pollos-benefits article {
  min-height: 74px !important;
  align-items: center !important;
  border-right: 1px solid rgba(245, 182, 47, 0.16) !important;
  border-bottom: 0 !important;
  background: linear-gradient(180deg, rgba(41, 23, 16, 0.78), rgba(13, 8, 7, 0.9)) !important;
  padding: 12px 18px !important;
}

body.theme-pollos_asados .pollos-benefits article:last-child {
  border-right: 0 !important;
}

body.theme-pollos_asados .pollos-benefits span {
  display: grid !important;
  gap: 4px !important;
  color: #fff !important;
  line-height: 1.05 !important;
}

body.theme-pollos_asados .pollos-benefits small {
  color: rgba(255, 245, 223, 0.76) !important;
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
}

@media (max-width: 820px) {
  body.theme-pollos_asados .pollos-hero {
    padding-bottom: 18px !important;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    height: auto !important;
    min-height: 620px !important;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    padding-bottom: 30px !important;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.theme-pollos_asados .pollos-hero-actions .pollos-btn {
    width: 100% !important;
  }

  body.theme-pollos_asados .pollos-benefits {
    width: min(100% - 24px, 520px) !important;
    margin-top: 12px !important;
    grid-template-columns: 1fr !important;
  }

  body.theme-pollos_asados .pollos-benefits article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(245, 182, 47, 0.16) !important;
  }
}

@media (max-width: 520px) {
  body.theme-pollos_asados .pollos-hero-inner {
    min-height: 600px !important;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Pollos asados: reference rebuild */
body.theme-pollos_asados {
  --pollos-max: 1440px;
  --pollos-black: #050302;
  --pollos-panel: #111;
  --pollos-panel-2: #19110e;
  --pollos-red-deep: #9f0909;
  --pollos-red-bright: #e51f1b;
  --pollos-yellow: #ffc329;
  --pollos-text: #fff4df;
  background: var(--pollos-black) !important;
  color: var(--pollos-text);
}

body.theme-pollos_asados .pollos-site-header {
  border-bottom: 1px solid rgba(255, 195, 41, 0.22) !important;
  background: linear-gradient(180deg, rgba(10, 6, 5, 0.98), rgba(5, 3, 2, 0.98)) !important;
  box-shadow: none !important;
}

body.theme-pollos_asados .pollos-header-inner {
  width: min(var(--pollos-max), calc(100% - 56px)) !important;
  min-height: 82px !important;
  grid-template-columns: minmax(160px, auto) minmax(0, 1fr) auto auto auto !important;
}

body.theme-pollos_asados .pollos-logo img {
  max-width: 172px !important;
  max-height: 62px !important;
}

body.theme-pollos_asados .pollos-nav a,
body.theme-pollos_asados .pollos-nav button {
  color: #fff !important;
  font-size: 0.86rem !important;
}

body.theme-pollos_asados .pollos-nav a.active {
  color: var(--pollos-yellow) !important;
}

body.theme-pollos_asados .pollos-order-btn {
  min-height: 46px !important;
  border-radius: 7px !important;
  background: var(--pollos-red-bright) !important;
  box-shadow: 0 14px 30px rgba(229, 31, 27, 0.2) !important;
}

body.theme-pollos_asados .pollos-home {
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 31, 27, 0.14), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 26px),
    var(--pollos-black) !important;
}

body.theme-pollos_asados .pollos-hero {
  position: relative !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--pollos-black) !important;
}

body.theme-pollos_asados .pollos-hero-inner {
  position: relative !important;
  display: block !important;
  width: min(var(--pollos-max), 100%) !important;
  height: clamp(560px, 50vw, 720px) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: var(--pollos-black) !important;
  box-shadow: none !important;
}

body.theme-pollos_asados .pollos-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: url("../themes/pollos_asados/img/hero/hero.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

body.theme-pollos_asados .pollos-hero-shade,
body.theme-pollos_asados .pollos-hero-inner::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 27%, rgba(0, 0, 0, 0.47) 50%, rgba(0, 0, 0, 0.16) 76%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 58%, rgba(0, 0, 0, 0.86) 100%) !important;
  pointer-events: none !important;
}

body.theme-pollos_asados .pollos-hero-media {
  display: none !important;
}

body.theme-pollos_asados .pollos-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(610px, 48%) !important;
  max-width: none !important;
  padding: clamp(76px, 7vw, 112px) 0 0 clamp(42px, 6vw, 74px) !important;
}

body.theme-pollos_asados .pollos-kicker {
  margin: 0 0 12px !important;
  color: var(--pollos-yellow) !important;
  font-size: clamp(0.82rem, 0.95vw, 1rem) !important;
  font-weight: 1000 !important;
  letter-spacing: 0.16em !important;
}

body.theme-pollos_asados .pollos-hero-title {
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(4.1rem, 7.4vw, 7.6rem) !important;
  line-height: 0.78 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.56) !important;
}

body.theme-pollos_asados .pollos-hero-title .title-white {
  display: block !important;
  color: #fff !important;
  font-size: 0.62em !important;
}

body.theme-pollos_asados .pollos-hero-title .title-yellow {
  display: block !important;
  color: var(--pollos-yellow) !important;
}

body.theme-pollos_asados .pollos-hero-ribbon {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 18px 0 18px !important;
  border: 0 !important;
  border-radius: 4px !important;
  padding: 8px 18px 9px !important;
  background: linear-gradient(180deg, #ed2620, #bd0d0d) !important;
  color: #fff !important;
  font-family: var(--pollos-display) !important;
  font-size: clamp(1.32rem, 2.3vw, 2.35rem) !important;
  font-weight: 1000 !important;
  line-height: 0.94 !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 0 rgba(71, 4, 4, 0.58), 0 22px 38px rgba(0, 0, 0, 0.34) !important;
}

body.theme-pollos_asados .pollos-hero-copy > p:not(.pollos-kicker) {
  max-width: 450px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(1rem, 1.25vw, 1.17rem) !important;
  font-weight: 650 !important;
  line-height: 1.55 !important;
}

body.theme-pollos_asados .pollos-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  max-width: 100% !important;
  margin-top: 24px !important;
}

body.theme-pollos_asados .pollos-btn {
  width: auto !important;
  min-width: 158px !important;
  min-height: 52px !important;
  border-radius: 6px !important;
  padding: 0 24px !important;
  font-size: 0.92rem !important;
}

body.theme-pollos_asados .pollos-btn-yellow {
  background: linear-gradient(180deg, #ffd65a, var(--pollos-yellow)) !important;
  color: #120a05 !important;
}

body.theme-pollos_asados .pollos-btn-red {
  background: linear-gradient(180deg, #ef2b24, #c70f0f) !important;
  color: #fff !important;
}

body.theme-pollos_asados .pollos-benefits {
  position: absolute !important;
  left: clamp(42px, 6vw, 74px) !important;
  right: auto !important;
  bottom: 82px !important;
  z-index: 5 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: min(780px, calc(100% - 430px)) !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.theme-pollos_asados .pollos-benefits article {
  min-height: 70px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 6px 22px 6px 0 !important;
  box-shadow: none !important;
}

body.theme-pollos_asados .pollos-benefits article:not(:first-child) {
  padding-left: 22px !important;
}

body.theme-pollos_asados .pollos-benefits article:last-child {
  border-right: 0 !important;
}

body.theme-pollos_asados .pollos-benefits img {
  width: 52px !important;
  height: 52px !important;
}

body.theme-pollos_asados .pollos-benefits span {
  color: var(--pollos-yellow) !important;
  font-size: 0.88rem !important;
  font-weight: 1000 !important;
  line-height: 1.08 !important;
  text-transform: uppercase !important;
}

body.theme-pollos_asados .pollos-benefits small {
  margin-top: 5px !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

body.theme-pollos_asados .pollos-torn-divider {
  bottom: -1px !important;
  height: 78px !important;
  z-index: 3 !important;
}

body.theme-pollos_asados .pollos-torn-divider path {
  fill: #111 !important;
}

body.theme-pollos_asados .pollos-menu-section {
  margin: 0 !important;
  padding: 50px 0 24px !important;
  background:
    radial-gradient(circle at 22px 22px, rgba(255, 255, 255, 0.05) 0 1px, transparent 2px),
    linear-gradient(180deg, #111 0%, #151515 55%, #090909 100%) !important;
  background-size: 22px 22px, auto !important;
  color: #fff !important;
}

body.theme-pollos_asados .pollos-menu-section > .container,
body.theme-pollos_asados .pollos-promos-inner,
body.theme-pollos_asados .pollos-feature-grid,
body.theme-pollos_asados .pollos-bottom-strip .container,
body.theme-pollos_asados .pollos-footer-grid {
  width: min(var(--pollos-max), calc(100% - 56px)) !important;
}

body.theme-pollos_asados .pollos-section-head {
  max-width: none !important;
  margin-bottom: 18px !important;
}

body.theme-pollos_asados .pollos-section-head p {
  display: none !important;
}

body.theme-pollos_asados .pollos-section-head h2 {
  color: #fff !important;
  font-size: clamp(2.2rem, 3.9vw, 4.2rem) !important;
  line-height: 0.92 !important;
}

body.theme-pollos_asados .pollos-section-head h2::before,
body.theme-pollos_asados .pollos-section-head h2::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 4px;
  margin: 0 12px 0.24em;
  border-radius: 999px;
  background: var(--pollos-red-bright);
}

body.theme-pollos_asados .pollos-tabs {
  width: min(100%, 1120px) !important;
  margin-bottom: 18px !important;
  border: 0 !important;
  background: transparent !important;
  gap: 12px !important;
  padding: 0 !important;
}

body.theme-pollos_asados .pollos-tabs button {
  min-height: 34px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #fff !important;
  padding: 0 14px !important;
  font-size: 0.82rem !important;
  box-shadow: none !important;
}

body.theme-pollos_asados .pollos-tabs button.active,
body.theme-pollos_asados .pollos-tabs button:hover {
  background: var(--pollos-red-bright) !important;
  color: #fff !important;
}

body.theme-pollos_asados .pollos-product-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.theme-pollos_asados .pollos-product-card,
body.theme-pollos_asados .pollos-promo-teaser {
  min-width: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(30, 30, 30, 0.98), rgba(9, 9, 9, 0.98)) !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.theme-pollos_asados .pollos-product-image {
  aspect-ratio: 1 / 0.82 !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 195, 41, 0.14), transparent 58%),
    #0b0b0b !important;
}

body.theme-pollos_asados .pollos-product-image img {
  padding: 8px !important;
  object-fit: contain !important;
}

body.theme-pollos_asados .pollos-product-body {
  padding: 12px !important;
  gap: 6px !important;
}

body.theme-pollos_asados .pollos-product-body p {
  display: none !important;
}

body.theme-pollos_asados .pollos-product-body h3 {
  min-height: 2.28em !important;
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1.14 !important;
  text-transform: uppercase !important;
}

body.theme-pollos_asados .pollos-product-body span {
  min-height: 2.75em !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
}

body.theme-pollos_asados .pollos-product-body strong {
  margin: 6px 0 4px !important;
  color: var(--pollos-yellow) !important;
  font-size: 1.2rem !important;
}

body.theme-pollos_asados .pollos-product-actions {
  grid-template-columns: 1fr !important;
  margin-top: 3px !important;
}

body.theme-pollos_asados .pollos-product-actions > a {
  display: none !important;
}

body.theme-pollos_asados .pollos-product-actions .btn-add-quote,
body.theme-pollos_asados .pollos-product-actions button {
  min-height: 36px !important;
  border-radius: 5px !important;
  background: var(--pollos-red-bright) !important;
  color: #fff !important;
  font-size: 0.76rem !important;
  text-transform: uppercase !important;
}

body.theme-pollos_asados .pollos-promo-teaser {
  display: flex !important;
  min-height: 100% !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 18px !important;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.92)),
    repeating-linear-gradient(-28deg, rgba(229, 31, 27, 0.22) 0 8px, transparent 8px 20px),
    #1a0808 !important;
}

body.theme-pollos_asados .pollos-promo-teaser span {
  width: fit-content;
  margin-bottom: auto;
  padding: 6px 9px;
  background: var(--pollos-yellow);
  color: #160804;
  font-weight: 1000;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-promo-teaser h3 {
  margin: 28px 0 8px;
  color: #fff;
  font-family: var(--pollos-display);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-promo-teaser p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

body.theme-pollos_asados .pollos-promo-teaser a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 16px;
  border-radius: 5px;
  background: var(--pollos-red-bright);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

body.theme-pollos_asados .pollos-red-statement {
  display: none !important;
}

body.theme-pollos_asados .pollos-promos {
  padding: 24px 0 28px !important;
  background: #090909 !important;
}

body.theme-pollos_asados .pollos-promos-inner {
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr) !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(229, 31, 27, 0.85) !important;
  border-radius: 10px !important;
  background: #101010 !important;
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child {
  position: static !important;
  display: flex !important;
  min-height: 232px !important;
  flex-direction: column !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 26px !important;
  background:
    repeating-linear-gradient(-30deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, #d31313, #980909) !important;
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child::after {
  content: "Ver todas las promos" !important;
  min-height: 40px !important;
  margin-top: 18px !important;
  border-radius: 5px !important;
  background: var(--pollos-yellow) !important;
  color: #120a05 !important;
}

body.theme-pollos_asados .pollos-promos-inner > div:first-child > p {
  color: #fff !important;
  font-size: 0.78rem !important;
}

body.theme-pollos_asados .pollos-promos-inner h2 {
  color: #fff !important;
  font-size: clamp(2rem, 3vw, 3rem) !important;
}

body.theme-pollos_asados .pollos-promos-lead {
  color: rgba(255,255,255,0.86) !important;
  font-size: 0.88rem !important;
}

body.theme-pollos_asados .pollos-promo-grid {
  display: flex !important;
  gap: 0 !important;
  overflow-x: auto !important;
  padding: 0 !important;
  scroll-snap-type: x mandatory !important;
}

body.theme-pollos_asados .pollos-promo-grid .pollos-product-card {
  flex: 0 0 250px !important;
  border-width: 0 0 0 1px !important;
  border-radius: 0 !important;
  scroll-snap-align: start !important;
}

body.theme-pollos_asados .pollos-feature-band {
  padding: 0 !important;
  background:
    repeating-linear-gradient(-30deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #c70f0f, #9f0909) !important;
}

body.theme-pollos_asados .pollos-feature-grid {
  width: min(var(--pollos-max), 100%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.theme-pollos_asados .pollos-feature-grid article {
  min-height: 140px !important;
  flex-direction: column !important;
  justify-content: center !important;
  border-right: 1px solid rgba(255,255,255,0.22) !important;
  color: #fff !important;
  padding: 22px !important;
  text-align: center !important;
}

body.theme-pollos_asados .pollos-feature-grid img {
  width: 48px !important;
  height: 48px !important;
  filter: brightness(0) invert(1) !important;
}

body.theme-pollos_asados .pollos-bottom-strip {
  background:
    radial-gradient(circle at 50% 100%, rgba(229, 31, 27, 0.3), transparent 36%),
    #070707 !important;
}

body.theme-pollos_asados .pollos-bottom-strip .container {
  min-height: 88px !important;
  justify-content: center !important;
  text-align: center !important;
}

body.theme-pollos_asados .pollos-footer {
  background: #050302 !important;
}

@media (max-width: 1380px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    height: 600px !important;
  }

  body.theme-pollos_asados .pollos-hero-title {
    font-size: clamp(3.6rem, 6.5vw, 6rem) !important;
  }
}

@media (max-width: 1180px) {
  body.theme-pollos_asados .pollos-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  body.theme-pollos_asados .pollos-benefits {
    width: min(830px, calc(100% - 80px)) !important;
  }
}

@media (max-width: 820px) {
  body.theme-pollos_asados .pollos-header-inner,
  body.theme-pollos_asados .pollos-menu-section > .container,
  body.theme-pollos_asados .pollos-promos-inner,
  body.theme-pollos_asados .pollos-footer-grid {
    width: min(100% - 24px, var(--pollos-max)) !important;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    width: 100% !important;
    height: 680px !important;
  }

  body.theme-pollos_asados .pollos-hero-bg {
    background-position: 62% center !important;
  }

  body.theme-pollos_asados .pollos-hero-shade,
  body.theme-pollos_asados .pollos-hero-inner::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.54) 36%, rgba(0,0,0,0.88) 68%, rgba(0,0,0,0.98) 100%) !important;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    width: 100% !important;
    padding: 34px 30px 0 !important;
  }

  body.theme-pollos_asados .pollos-hero-title {
    max-width: 620px !important;
    font-size: clamp(3rem, 12vw, 5.1rem) !important;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.theme-pollos_asados .pollos-btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.theme-pollos_asados .pollos-benefits {
    left: 24px !important;
    right: 24px !important;
    bottom: 24px !important;
    width: auto !important;
    grid-template-columns: 1fr !important;
    border: 1px solid rgba(255, 195, 41, 0.2) !important;
    border-radius: 8px !important;
    background: rgba(8, 5, 4, 0.9) !important;
  }

  body.theme-pollos_asados .pollos-benefits article,
  body.theme-pollos_asados .pollos-benefits article:not(:first-child) {
    min-height: 58px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 195, 41, 0.16) !important;
    padding: 9px 14px !important;
  }

  body.theme-pollos_asados .pollos-benefits img {
    width: 40px !important;
    height: 40px !important;
  }

  body.theme-pollos_asados .pollos-menu-section {
    padding-top: 42px !important;
  }

  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.theme-pollos_asados .pollos-promos-inner {
    grid-template-columns: 1fr !important;
  }

  body.theme-pollos_asados .pollos-promo-grid .pollos-product-card {
    flex-basis: 210px !important;
  }

  body.theme-pollos_asados .pollos-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 520px) {
  body.theme-pollos_asados .pollos-header-inner {
    width: min(100% - 24px, var(--pollos-max)) !important;
  }

  body.theme-pollos_asados .pollos-hero-inner {
    height: 760px !important;
  }

  body.theme-pollos_asados .pollos-hero-copy {
    padding: 28px 18px 0 !important;
  }

  body.theme-pollos_asados .pollos-hero-title {
    font-size: clamp(2.6rem, 13vw, 3.65rem) !important;
  }

  body.theme-pollos_asados .pollos-hero-ribbon {
    font-size: clamp(1.04rem, 5.6vw, 1.45rem) !important;
  }

  body.theme-pollos_asados .pollos-hero-actions {
    grid-template-columns: 1fr !important;
    margin-top: 18px !important;
  }

  body.theme-pollos_asados .pollos-tabs {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 6px !important;
  }

  body.theme-pollos_asados .pollos-product-grid {
    gap: 8px !important;
  }

  body.theme-pollos_asados .pollos-product-body h3 {
    font-size: 0.86rem !important;
  }

  body.theme-pollos_asados .pollos-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 340px) {
  body.theme-pollos_asados .pollos-product-grid {
    grid-template-columns: 1fr !important;
  }
}
