:root {
  --navy-950: #031a35;
  --navy-900: #062a56;
  --navy-800: #0a3d75;
  --blue-700: #075cab;
  --blue-500: #0795e8;
  --cyan-300: #63c9ff;
  --orange-500: #f97316;
  --green-500: #12a15f;
  --ink-900: #10243b;
  --ink-700: #425c75;
  --ink-500: #687b91;
  --surface: #ffffff;
  --surface-soft: #f2f8fc;
  --line: #cfe1ed;
  --shadow-sm: 0 8px 24px rgba(6, 42, 86, .09);
  --shadow-md: 0 18px 48px rgba(6, 42, 86, .14);
  --shadow-lg: 0 30px 80px rgba(2, 24, 52, .28);
  --container: 1220px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --type-h1: clamp(3rem, 4.7vw, 4.55rem);
  --type-h2: clamp(2.15rem, 3.5vw, 3.55rem);
  --type-h3: clamp(1.45rem, 2.2vw, 2rem);
  --type-h4: 1.25rem;
  --type-body: 1rem;
  --type-body-secondary: .95rem;
  --type-label: .82rem;
  --type-caption: .75rem;
  --type-nav: .84rem;
  --type-button: .88rem;
  --type-meta: .8rem;
  --font-caption: var(--type-caption);
  --font-meta: var(--type-meta);
  --font-body-sm: var(--type-body-secondary);
  --font-body: var(--type-body);
  --font-display: "Space Grotesk", Manrope, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink-900);
  background: var(--surface);
  font-family: Manrope, system-ui, sans-serif;
  font-size: var(--type-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.dialog-open { overflow: hidden; }

button,
a { font: inherit; }

button { color: inherit; }
a { color: inherit; }
img,
svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip {
  position: fixed;
  top: -80px;
  left: var(--space-4);
  z-index: 3000;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 10px;
}

.skip:focus { top: var(--space-4); }

.topline {
  color: #fff;
  background: var(--navy-900);
  font-size: var(--type-caption);
  font-weight: 750;
}

.topline__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.topline__claim { white-space: nowrap; }

.topline__actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-6);
}

.topline__address,
.topline__phone {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.topline__address svg,
.topline__phone svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: currentColor;
}

.topline__address span {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topline__phone { white-space: nowrap; }
.topline__address:hover,
.topline__phone:hover { text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(207, 225, 237, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease;
}

.header.is-scrolled { box-shadow: 0 10px 32px rgba(6, 42, 86, .11); }

.header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-6);
}

.header__brand-zone {
  display: contents;
}

.brand {
  width: clamp(205px, 19vw, 254px);
  height: 62px;
  display: block;
  flex: 0 1 auto;
  text-decoration: none;
}

[data-brand-surface] {
  --logo-fit: contain;
  --logo-scale: 1;
  --logo-x: 50%;
  --logo-y: 50%;
  overflow: hidden;
}

[data-brand-surface] .brand__image {
  width: 100%;
  height: 100%;
  object-fit: var(--logo-fit);
  object-position: var(--logo-x) var(--logo-y);
  transform: scale(var(--logo-scale));
  transform-origin: center;
}

[data-brand-surface] .brand__text {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  color: var(--logo-text, #0f2747);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

.social-links {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, .55vw, 7px);
  flex-wrap: nowrap;
}

.social-link {
  width: clamp(30px, 2.6vw, 36px);
  height: clamp(30px, 2.6vw, 36px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--blue-700);
  border: 1px solid transparent;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(6, 42, 86, .13);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.social-link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(6, 42, 86, .2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: currentColor;
}

.social-link--facebook { background: #1877f2; }
.social-link--instagram { background: #e4405f; }
.social-link--instagram svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link--instagram .social-link__dot { fill: currentColor; stroke: none; }
.social-link--tiktok { background: #111; }
.social-link--email { background: #0f5ea8; }
.social-link--linkedin { background: #0a66c2; }
.social-link--youtube { background: #f00; }
.social-link--telegram { background: #229ed9; }
.social-link.is-unlinked { opacity: .56; cursor: default; box-shadow: none; }
.social-link.is-unlinked:hover { transform: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav a {
  padding: 10px 10px;
  border-radius: 10px;
  font-size: var(--type-nav);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.nav a:hover { color: var(--blue-700); background: var(--surface-soft); }

.nav .nav__store {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--space-2);
  padding-inline: 20px;
  color: #fff;
  background: var(--blue-700);
}

.nav .nav__store:hover {
  color: #fff;
  background: var(--blue-500);
  transform: translateY(-1px);
}

.nav__mobile-head,
.menu,
.nav-backdrop { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.hero-carousel { isolation: isolate; }

.hero-carousel__viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
  transition: height .38s ease;
}

.hero-slide {
  --slide-accent: var(--cyan-300);
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px) scale(.99);
  transition: opacity .45s ease, transform .58s ease, visibility .45s;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--slide-accent) 23%, transparent), transparent 34%),
    radial-gradient(circle at 58% 100%, rgba(84, 198, 243, .11), transparent 34%);
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  inset: auto;
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hero-slide--oem { background: var(--navy-900); }
.hero-slide--quality { --slide-accent: #a78bfa; background: #082f61; }
.hero-slide--retail { --slide-accent: #19c7b0; background: #06396a; }
.hero-slide--logistics { --slide-accent: #38d27e; background: #06294e; }

.hero-slide__inner {
  position: relative;
  min-height: clamp(680px, 62vw, 760px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: var(--space-12);
  padding-block: 52px 112px;
}

.hero-slide__inner--brand { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }

.hero__copy { position: relative; z-index: 2; min-width: 0; }

.kicker {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #bfeaff;
  font-size: var(--font-caption);
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker i {
  width: 32px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--orange-500);
  border-radius: 999px;
}

.hero h1,
.hero-slide h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h1);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.hero h1 em,
.hero-slide h2 em {
  display: block;
  color: var(--slide-accent);
  font-style: normal;
}

.hero-slide .hero__copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #d2e6f5;
  font-size: var(--type-body);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: var(--type-button);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover { color: #fff; transform: translateY(-2px); }
.button--orange { background: var(--orange-500); box-shadow: 0 14px 30px rgba(249, 115, 22, .23); }
.button--orange:hover { background: #fb8c3c; }
.button--glass { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.34); }
.button--glass:hover { background: rgba(255,255,255,.15); }
.button--green { background: var(--green-500); box-shadow: 0 14px 30px rgba(18,161,95,.2); }
.button--green:hover { background: #0f8f54; }
.button--light { margin-top: var(--space-6); color: var(--navy-900); background: #fff; }
.button--light:hover { color: var(--blue-700); background: #eaf7ff; }

.hero__proof {
  display: flex;
  gap: var(--space-8);
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero__proof div { min-width: 0; display: grid; }
.hero__proof strong { color: #fff; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; }
.hero__proof span { color: #9fc2db; font-size: var(--font-caption); line-height: 1.35; }

.hero-brand-stage,
.hero__visual {
  position: relative;
  min-width: 0;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.hero-brand-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 44px 40px;
  color: var(--navy-900);
  background: #fff;
}

.hero-brand-stage::before,
.hero-brand-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-brand-stage::before { width: 300px; height: 300px; right: -145px; top: -160px; background: #54c6f3; }
.hero-brand-stage::after { width: 150px; height: 150px; left: -76px; bottom: -76px; background: #a78bfa; }
.hero-brand-stage__eyebrow { position: absolute; top: 30px; color: var(--blue-700); font-size: var(--font-caption); font-weight: 900; letter-spacing: .16em; }
.hero-brand-stage img { position: relative; width: min(76%, 330px); max-height: 310px; object-fit: contain; }
.hero-brand-stage p { position: relative; max-width: 500px; margin: 14px 0 18px; color: var(--ink-700); font-size: var(--type-body-secondary); font-weight: 650; line-height: 1.55; text-align: center; }
.hero-brand-stage > div { position: relative; display: flex; align-items: center; gap: 10px; color: var(--blue-700); font-size: var(--font-caption); font-weight: 900; letter-spacing: .1em; }
.hero-brand-stage > div i { width: 5px; height: 5px; background: var(--green-500); border-radius: 50%; }

.hero__visual { margin: 0; background: #dff3ff; }
.hero__visual > img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual--product > img { object-position: 64% center; }
.hero__visual figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; padding: 14px 16px; color: #fff; background: rgba(4,26,50,.9); border-left: 5px solid var(--slide-accent); border-radius: 14px; backdrop-filter: blur(12px); }
.hero__visual figcaption b { font-size: var(--type-label); }
.hero__visual figcaption span { color: #cfe6f5; font-size: var(--font-caption); }

.hero-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: 24px 0 0; padding: 0; list-style: none; }
.hero-tags li { padding: 7px 11px; color: #dff4ff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.17); border-radius: 999px; font-size: var(--font-caption); font-weight: 800; }

.hero-carousel__controls {
  position: absolute;
  bottom: 52px;
  left: 50%;
  z-index: 8;
  width: min(calc(100% - 40px), var(--container));
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-carousel__arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.hero-carousel__arrow:hover { color: var(--navy-900); background: #fff; transform: translateY(-2px); }
.hero-carousel__dots { display: flex; align-items: center; gap: 7px; }
.hero-carousel__dots button { width: 9px; height: 9px; padding: 0; background: #7ca0bf; border: 0; border-radius: 999px; cursor: pointer; transition: width .22s ease, background .22s ease; }
.hero-carousel__dots button.is-active { width: 28px; background: var(--orange-500); }
.hero-carousel__count { min-width: 55px; color: #99bed8; font-size: var(--font-caption); font-weight: 800; }
.hero-carousel__count b { color: #fff; font-size: .82rem; }
.hero-carousel__progress { width: 96px; height: 3px; overflow: hidden; background: rgba(255,255,255,.2); border-radius: 9px; }
.hero-carousel__progress i { display: block; width: 0; height: 100%; background: var(--cyan-300); }
.hero-carousel__progress i.is-running { animation: hero-progress 7s linear forwards; }
.hero-carousel.is-paused .hero-carousel__progress i { animation-play-state: paused; }

.hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  overflow: hidden;
  color: #d3e9f8;
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--font-caption);
  font-weight: 900;
  letter-spacing: .14em;
  white-space: nowrap;
}

.hero__ticker i { width: 5px; height: 5px; flex: 0 0 auto; background: var(--orange-500); border-radius: 50%; }
@keyframes hero-progress { from { width: 0; } to { width: 100%; } }

.section { padding-block: 80px; }
.overline { display: block; margin-bottom: 14px; color: var(--blue-700); font-size: var(--font-caption); font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.overline--light { color: #7fd4ff; }

.section-title h2,
.section-heading h2,
.brands h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: var(--space-16);
  align-items: start;
}

.intro__copy > p { margin: 4px 0 0; color: var(--ink-500); font-size: var(--type-body); line-height: 1.78; }
.intro blockquote { margin: 24px 0 0; padding: 16px 20px; color: var(--navy-900); background: #e8f5fd; border-left: 5px solid var(--orange-500); font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; }

.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: var(--space-4); margin-top: 40px; }
.value { min-width: 0; display: grid; align-content: start; gap: 10px; padding: 24px; color: #fff; border-radius: 22px; }
.value small { font-size: var(--font-caption); font-weight: 900; letter-spacing: .11em; opacity: .88; }
.value h3 { margin: 4px 0 0; font-family: var(--font-display); font-size: var(--type-h3); line-height: 1.1; }
.value p { margin: 0; font-size: var(--type-body-secondary); line-height: 1.62; opacity: .94; }
.value--blue { background: var(--blue-700); }
.value--cyan { background: #087ea7; }
.value--orange { background: var(--orange-500); }

.story-gallery { display: grid; grid-template-columns: minmax(0, 38fr) minmax(0, 62fr); gap: var(--space-4); margin-top: var(--space-4); }
.story-photo { position: relative; min-width: 0; min-height: 360px; margin: 0; overflow: hidden; background: var(--surface-soft); border-radius: 24px; box-shadow: var(--shadow-sm); }
.story-photo img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.story-photo figcaption { position: absolute; right: 16px; bottom: 16px; left: 16px; display: grid; padding: 13px 16px; color: #fff; background: rgba(6,42,86,.9); border-left: 5px solid var(--orange-500); border-radius: 13px; backdrop-filter: blur(10px); }
.story-photo figcaption b { font-size: var(--type-label); }
.story-photo figcaption span { color: #cbe4f5; font-size: var(--font-caption); }

.solutions { color: #fff; background: #081f3a; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr); gap: var(--space-12); align-items: end; margin-bottom: 40px; }
.section-heading > p { margin: 0; color: #acc4d8; font-size: var(--type-body); line-height: 1.7; }
.section-heading--dark > p { color: var(--ink-500); }
.section-heading--dark > div { max-width: 790px; }
.solutions__grid { width: min(100%, 1080px); display: grid; grid-template-columns: repeat(2, minmax(0, 520px)); align-items: start; justify-content: center; gap: var(--space-4); margin-inline: auto; }
.solution { min-width: 0; padding: 28px; color: #fff; background: #0e3158; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; }
.solution--primary { background: var(--blue-700); }
.solution small { color: #95dfff; font-size: var(--font-caption); font-weight: 900; letter-spacing: .14em; }
.solution h3 { margin: 14px 0 10px; font-family: var(--font-display); font-size: var(--type-h3); line-height: 1.08; }
.solution p { max-width: 520px; margin: 0; color: #d0e2f0; font-size: var(--type-body-secondary); line-height: 1.65; }
.solution a { display: inline-block; margin-top: 24px; color: #fff; border-bottom: 2px solid var(--orange-500); font-weight: 850; text-decoration: none; }

.categories { background: var(--surface-soft); }
.text-link { color: var(--blue-700); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); }
.category-grid .cat-card { position: relative; width: 100%; min-height: 98px; overflow: hidden; }
.category-grid .cat-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--blue-500); }
.category-grid .cat-card:nth-child(4n + 2)::before { background: var(--orange-500); }
.category-grid .cat-card:nth-child(4n + 3)::before { background: #0da892; }
.category-grid .cat-card:nth-child(4n)::before { background: var(--navy-800); }
.category-grid .cat-card__name { overflow: visible; text-overflow: clip; white-space: normal; }
.category-grid .cat-card__count { font-size: var(--font-caption); }

.featured { margin-top: var(--space-12); padding: 28px; background: #fff; border: 1px solid #dcebf4; border-radius: 24px; box-shadow: var(--shadow-sm); }
.featured__head { display: flex; align-items: end; justify-content: space-between; gap: var(--space-6); margin-bottom: var(--space-6); }
.featured__head h3 { margin: 0; font-family: var(--font-display); font-size: var(--type-h3); }
.featured__head a { color: var(--blue-700); font-weight: 850; text-decoration: none; }
.product-strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--space-3); }
.mini-product { min-width: 0; display: grid; grid-template-rows: 140px auto 1fr auto; padding: 10px; color: var(--ink-900); background: #f7fbfe; border: 1px solid #d8e9f4; border-radius: 15px; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.mini-product:hover { color: var(--ink-900); border-color: var(--blue-500); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.mini-product__media { min-width: 0; display: grid; place-items: center; overflow: hidden; background: #fff; border-radius: 11px; }
.mini-product img { width: 100%; height: 100%; object-fit: contain; }
.mini-product small { margin-top: 9px; color: var(--blue-700); font-size: var(--font-caption); font-weight: 900; }
.mini-product > strong { margin-top: 4px; font-size: var(--type-label); line-height: 1.4; }
.mini-product > b { margin-top: 8px; color: var(--navy-900); font-size: var(--type-body-secondary); }

.brands { color: #fff; background: var(--blue-700); }
.brands__inner { display: grid; grid-template-columns: minmax(0, 40fr) minmax(0, 60fr); gap: var(--space-12); align-items: center; }
.brands p { margin-bottom: 0; color: #cbe5f5; font-size: var(--type-body); line-height: 1.72; }
.brand-cloud { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); }
.brand-card { min-width: 0; min-height: 88px; display: grid; place-items: var(--brand-card-align, center); padding: var(--brand-card-padding, 16px); color: var(--brand-card-text, var(--navy-900)); background: var(--brand-card-bg, #fff); border: var(--brand-card-border-width, 1px) solid var(--brand-card-border, #d5e5f0); border-radius: var(--brand-card-radius, 16px); box-shadow: var(--brand-card-shadow, none); text-align: var(--brand-card-align, center); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.brand-card strong { overflow-wrap: anywhere; }
.brand-card img { width: auto; max-width: 100%; height: var(--brand-card-logo, 64px); object-fit: contain; }
.brand-card--hover-lift:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(6,42,86,.18); }
.brand-card--hover-border:hover { border-color: var(--cyan-300); }
.brand-card--hover-soft:hover { box-shadow: 0 12px 30px rgba(6,42,86,.14); }

.logistics { position: relative; min-height: 480px; margin-top: 40px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 24px 70px rgba(1,18,39,.28); }
.logistics > img { width: 100%; height: 480px; object-fit: cover; object-position: center 52%; }
.logistics > div { position: absolute; bottom: var(--space-6); left: var(--space-6); width: min(520px, calc(100% - 48px)); padding: 22px; color: #fff; background: rgba(4,26,50,.92); border-left: 6px solid var(--orange-500); border-radius: var(--radius-md); backdrop-filter: blur(12px); }
.logistics h3 { margin: 0; font-family: var(--font-display); font-size: var(--type-h3); line-height: 1.12; }
.logistics p { margin: 9px 0 0; color: #c5deef; font-size: var(--type-body-secondary); line-height: 1.6; }

.contact { background: #fff; }
.contact__inner { display: grid; gap: var(--space-6); }
.contact__heading { display: flex; align-items: end; justify-content: space-between; gap: var(--space-6); }
.contact__heading h2 { max-width: none; font-size: var(--type-h2); }
.contact__card { position: relative; display: grid; grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(180px, 1fr)); gap: var(--space-2); padding: 10px; overflow: hidden; color: var(--contact-text, #fff); background: var(--contact-bg, var(--navy-900)); border: 1px solid var(--contact-border, #2b5f91); border-radius: var(--contact-radius, 24px); box-shadow: var(--contact-shadow, 0 24px 58px rgba(2,24,52,.24)); }
.contact__card > .contact-action { min-width: 0; min-height: 96px; display: flex; align-items: center; gap: var(--space-3); padding: 14px; color: inherit; background: var(--contact-panel, var(--navy-800)); border: 0; border-radius: 13px; text-align: left; text-decoration: none; }
.contact__card button.contact-action { width: 100%; cursor: pointer; }
.contact__card > a.contact-action { cursor: pointer; }
.contact__card > a.contact-action:hover,
.contact__card > button.contact-action:hover { color: inherit; background: color-mix(in srgb, var(--contact-panel, var(--navy-800)) 82%, var(--contact-accent, var(--cyan-300))); }
.contact__card .contact-action__icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; color: var(--contact-accent, var(--cyan-300)); background: color-mix(in srgb, var(--contact-accent, var(--cyan-300)) 15%, transparent); border: 1px solid color-mix(in srgb, var(--contact-accent, var(--cyan-300)) 28%, transparent); border-radius: 11px; }
.contact__card .contact-action__icon svg { width: 20px; height: 20px; }
.contact__card .contact-action__copy { min-width: 0; display: grid; gap: 2px; }
.contact__card .contact-action__copy small { color: var(--contact-label, var(--cyan-300)); font-size: var(--type-caption); font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact__card .contact-action__copy strong { color: var(--contact-text, #fff); font-size: var(--type-body-secondary); line-height: 1.42; overflow-wrap: anywhere; }
.contact-action__chevron { margin-left: auto; color: var(--contact-accent, var(--cyan-300)); font-size: 1.7rem; line-height: 1; }

.map-sheet-backdrop { position: fixed; inset: 0; z-index: 1900; background: rgba(3, 26, 53, .58); backdrop-filter: blur(5px); }
.map-sheet { position: fixed; top: 50%; left: 50%; z-index: 2000; width: min(520px, calc(100% - 32px)); padding: var(--space-6); color: var(--ink-900); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 30px 90px rgba(3,26,53,.32); transform: translate(-50%, -50%); }
.map-sheet header { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); }
.map-sheet header small { color: var(--blue-700); font-size: var(--font-caption); font-weight: 900; letter-spacing: .14em; }
.map-sheet h2 { margin: 3px 0 0; font-family: var(--font-display); font-size: var(--type-h4); line-height: 1.15; }
.map-sheet header button { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; padding: 0; color: var(--navy-900); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.map-sheet > p { margin: var(--space-4) 0; color: var(--ink-500); font-size: var(--type-body-secondary); line-height: 1.55; }
.map-sheet__actions { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.map-sheet__actions a,
.map-sheet__actions button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; color: var(--navy-900); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 12px; font-weight: 800; text-align: center; text-decoration: none; cursor: pointer; }
.map-sheet__actions a:hover,
.map-sheet__actions button:hover { color: #fff; background: var(--blue-700); border-color: var(--blue-700); }
.map-sheet__status { min-height: 20px; display: block; margin-top: var(--space-2); color: var(--green-500); font-size: .76rem; font-weight: 800; text-align: center; }

.footer-identity {
  --footer-identity-space: 80px;
  position: relative;
  min-height: var(--footer-identity-space);
  display: grid;
  align-items: center;
  padding-block: 12px;
  color: var(--ink-900);
  text-align: center;
}
#contenido:has(> #contacto:not([hidden])) ~ .footer-identity {
  margin-top: calc(-1 * var(--footer-identity-space));
}
.footer-identity p {
  margin: 0;
  font-family: inherit;
  font-size: clamp(.95rem, 1.5vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: break-word;
}
@media (max-width: 760px) {
  .footer-identity p { max-width: calc(100vw - 196px); margin-inline: auto; }
}
@media (max-width: 700px) {
  .footer-identity { --footer-identity-space: 68px; }
}
@media (max-width: 580px) {
  .footer-identity { --footer-identity-space: 60px; }
  .footer-identity p { max-width: calc(100vw - 176px); font-size: .875rem; }
}
.footer { padding-block: 26px; color: #d2e6f5; background: var(--navy-950); }
.footer .footer__inner { width: calc(100% - 80px); display: flex; align-items: center; justify-content: flex-start; text-align: left; }
.footer p { margin: 0; font-size: var(--type-meta); font-weight: 400; letter-spacing: normal; }
@media (max-width: 1100px) {
  .footer .footer__inner { width: calc(100% - 32px); }
}
@media (max-width: 580px) {
  .footer .footer__inner { width: calc(100% - 28px); }
}
@media (max-width: 390px) {
  .footer .footer__inner { width: calc(100% - 24px); }
}

.cdp-wa-float { z-index: 900; }
.status { position: fixed; bottom: 16px; left: 16px; z-index: 890; max-width: calc(100% - 100px); padding: 9px 13px; color: #fff; background: var(--navy-900); border-radius: 10px; box-shadow: var(--shadow-sm); font-size: var(--font-caption); }
.status--ok { background: var(--green-500); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .header { background: #fff; backdrop-filter: none; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header__inner { min-height: 76px; gap: var(--space-3); }
  .brand { width: 205px; height: 56px; }
  .social-links { gap: 4px; }
  .social-link { width: 32px; height: 32px; border-radius: 10px; }
  .social-link svg { width: 19px; height: 19px; }
  .menu { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; flex: 0 0 auto; padding: 9px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
  .menu span { width: 100%; height: 2px; background: var(--navy-900); border-radius: 999px; transition: transform .18s ease, opacity .18s ease; }
  .menu b { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-backdrop { position: fixed; inset: 0; z-index: 1050; display: block; padding: 0; background: rgba(3,26,53,.55); border: 0; backdrop-filter: blur(4px); }
  .nav { position: fixed; top: 0; right: 0; bottom: 0; z-index: 1100; width: min(380px, calc(100% - 32px)); height: 100dvh; display: flex; flex-direction: column; align-items: stretch; gap: 4px; padding: 20px; overflow-y: auto; visibility: hidden; opacity: 0; pointer-events: none; background: #fff; box-shadow: -24px 0 70px rgba(3,26,53,.22); clip-path: inset(0 0 0 100%); transition: opacity .2s ease, clip-path .25s ease, visibility .25s; }
  .nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; clip-path: inset(0); }
  .nav__mobile-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-4); padding-bottom: var(--space-4); border-bottom: 1px solid var(--line); }
  .nav__mobile-head strong { color: var(--navy-900); font-family: var(--font-display); font-size: 1.1rem; }
  .nav__mobile-head button { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; color: var(--navy-900); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
  .nav a { padding: 13px 14px; font-size: .95rem; }
  .nav .nav__store { margin: var(--space-3) 0 0; }
  .hero-slide__inner { grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr); gap: var(--space-8); }
  .hero h1,
  .hero-slide h2 { font-size: clamp(2.7rem, 5.3vw, 4rem); }
  .hero-brand-stage,
  .hero__visual { height: 465px; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mini-product { grid-template-rows: 165px auto 1fr auto; }
  .brand-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 78px; }
  .topline__address { display: none; }
  .brand { width: 188px; }
  .hero-slide__inner,
  .hero-slide__inner--brand { min-height: 0; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-content: center; gap: var(--space-6); padding-block: 46px 118px; }
  .hero h1,
  .hero-slide h2 { max-width: 670px; font-size: clamp(2.55rem, 7vw, 3.45rem); }
  .hero-slide .hero__copy > p { max-width: 690px; }
  .hero-brand-stage,
  .hero__visual { width: 100%; height: 430px; }
  .hero-carousel__controls { bottom: 52px; }
  .intro__grid,
  .section-heading,
  .brands__inner { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .values { grid-template-columns: minmax(0, 1fr); }
  .story-gallery { grid-template-columns: minmax(0, 1fr); }
  .story-photo,
  .story-photo img { min-height: 360px; }
  .solutions__grid { grid-template-columns: minmax(0, 1fr); }
  .brands__inner { align-items: start; }
  .logistics { min-height: 430px; }
  .logistics > img { height: 430px; }
  .contact__card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .topline__inner { justify-content: center; }
  .topline__claim { display: none; }
  .topline__actions { width: 100%; justify-content: center; }
  .header__inner { min-height: 70px; }
  .brand { width: 158px; height: 50px; }
  .social-links { gap: 3px; }
  .social-link { width: 30px; height: 30px; border-radius: 9px; }
  .social-link svg { width: 17px; height: 17px; }
  .menu { width: 42px; height: 42px; }
  .section { padding-block: 68px; }
  .hero-slide__inner,
  .hero-slide__inner--brand { grid-template-columns: minmax(0, 1fr); }
  .section-heading { margin-bottom: var(--space-8); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid .cat-card { min-height: 86px; grid-template-columns: minmax(0, 1fr) auto; padding: 14px !important; gap: 10px !important; }
  .category-grid .cat-card__icon { display: none; }
  .category-grid .cat-card__subtitle { display: none; }
  .featured { padding: 20px; }
  .featured__head { align-items: start; }
  .product-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-product { grid-template-rows: 145px auto 1fr auto; }
  .brand-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
  :root {
    --type-h1: clamp(2.15rem, 11.4vw, 2.75rem);
    --type-h2: clamp(2rem, 10vw, 2.55rem);
    --type-h3: 1.35rem;
    --type-h4: 1.2rem;
    --type-body: 1rem;
    --type-body-secondary: .94rem;
    --type-label: .82rem;
    --type-nav: 1rem;
    --type-button: 1rem;
  }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topline__inner { min-height: 34px; }
  .header__inner { gap: 8px; }
  .brand { width: 132px; height: 46px; }
  .social-links { gap: 2px; }
  .social-link { width: 27px; height: 27px; }
  .social-link svg { width: 16px; height: 16px; }
  .menu { width: 40px; height: 40px; padding: 8px; }
  .hero-slide__inner,
  .hero-slide__inner--brand { min-height: 0; align-content: start; gap: var(--space-6); padding-block: 38px 112px; }
  .kicker { align-items: flex-start; margin-bottom: 14px; font-size: var(--font-caption); letter-spacing: .11em; }
  .kicker i { width: 26px; margin-top: 5px; }
  .hero h1,
  .hero-slide h2 { font-size: var(--type-h1); line-height: 1.01; overflow-wrap: normal; text-wrap: balance; }
  .hero-slide .hero__copy > p { margin-top: 18px; font-size: var(--type-body-secondary); line-height: 1.62; }
  .hero__actions { display: grid; margin-top: 22px; }
  .button {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    font-size: var(--type-button);
    font-weight: 850;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }
  .solution a,
  .featured__head a,
  .text-link { min-height: 44px; display: inline-flex; align-items: center; font-size: 1rem; line-height: 1.3; }
  .nav a { min-height: 48px; display: flex; align-items: center; font-size: var(--type-nav); line-height: 1.25; }
  .nav .nav__store { min-height: 52px; font-size: var(--type-nav); }
  .hero__proof { justify-content: space-between; gap: 10px; margin-top: 24px; padding-top: 18px; }
  .hero__proof strong { font-size: 1.08rem; }
  .hero__proof span { font-size: var(--font-caption); }
  .hero-brand-stage,
  .hero__visual { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; border-radius: 22px; }
  .hero-brand-stage { padding: 48px 20px 24px; }
  .hero-brand-stage__eyebrow { top: 20px; font-size: var(--font-caption); }
  .hero-brand-stage img { width: min(72%, 230px); max-height: 205px; }
  .hero-brand-stage p { margin: 8px 0 11px; font-size: var(--type-label); line-height: 1.45; }
  .hero-brand-stage > div { gap: 6px; font-size: var(--font-caption); }
  .hero__visual figcaption { right: 10px; bottom: 10px; left: 10px; padding: 10px 12px; }
  .hero-tags { margin-top: 18px; }
  .hero-carousel__controls { bottom: 50px; width: calc(100% - 28px); gap: 8px; }
  .hero-carousel__arrow { width: 38px; height: 38px; }
  .hero-carousel__progress { display: none; }
  .hero-carousel__dots { gap: 5px; }
  .hero-carousel__dots button.is-active { width: 22px; }
  .hero-carousel__count { min-width: 48px; }
  .hero__ticker { justify-content: flex-start; padding-inline: 14px; gap: 16px; }
  .section { padding-block: 60px; }
  .section-title h2,
  .section-heading h2,
  .brands h2,
  .contact h2 { font-size: var(--type-h2); }
  .intro__copy > p { font-size: var(--type-body); }
  .intro blockquote { font-size: 1.05rem; }
  .values { margin-top: var(--space-8); }
  .value { padding: 22px; }
  .value h3 { font-size: var(--type-h3); }
  .value p { font-size: var(--type-body-secondary); }
  .story-photo,
  .story-photo img { min-height: 300px; }
  .solution { padding: 22px; }
  .solution h3 { font-size: var(--type-h3); }
  .category-grid { grid-template-columns: minmax(0, 1fr); }
  .category-grid .cat-card { min-height: 76px; }
  .featured__head { display: grid; gap: var(--space-2); }
  .mini-product { grid-template-rows: 128px auto 1fr auto; }
  .brand-cloud { gap: 10px; }
  .brand-card { min-height: 76px; }
  .logistics { min-height: 380px; margin-top: var(--space-8); border-radius: 22px; }
  .logistics > img { height: 380px; }
  .logistics > div { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 17px; }
  .logistics h3 { font-size: var(--type-h3); }
  .contact__card { grid-template-columns: minmax(0, 1fr); }
  .contact__card > .contact-action { min-height: 68px; padding: 12px; }
  .contact__card .contact-action__copy strong { font-size: var(--type-body-secondary); }
  .map-sheet { top: auto; right: 0; bottom: 0; left: 0; width: 100%; padding: 22px 18px calc(22px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; transform: none; }
  .map-sheet__actions { grid-template-columns: minmax(0, 1fr); }
  .footer { padding-block: 22px; }
  .status { bottom: 12px; left: 12px; max-width: calc(100% - 88px); }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .menu { width: 38px; height: 38px; }
  .hero h1,
  .hero-slide h2 { font-size: var(--type-h1); }
}

@media (max-width: 430px) {
  .brand { width: 122px; }
  .social-links { gap: 2px; }
  .social-link { width: 28px; height: 28px; }
  .social-link svg { width: 17px; height: 17px; }
  .social-links[data-visible-social-count="5"] .social-link,
  .social-links[data-visible-social-count="6"] .social-link { width: 25px; height: 25px; }
  .social-links[data-visible-social-count="7"] .social-link { width: 23px; height: 23px; }
}

@media (max-width: 390px) {
  .brand { width: 120px; }
  .social-links { gap: 2px; }
}

@media (max-width: 370px) {
  .header__inner { gap: 8px; }
  .brand { width: 108px; }
  .social-link { width: 27px; height: 27px; }
  .social-links[data-visible-social-count="7"] .social-link { width: 22px; height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .hero-carousel__viewport { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-carousel__progress i { width: 100%; }
}

/* CONDIMPLAST_4511_HOTFIX_BEGIN */


/* Tarjetas iguales — prioridad al texto */

.values{
  align-items:stretch;
  grid-auto-rows:1fr;
}

.value{
  height:100%;
  min-height:0;
}

.value p{
  overflow:visible;
  text-overflow:clip;
  -webkit-line-clamp:unset;
  line-clamp:unset;
}


.solutions__grid{
  align-items:stretch;
  grid-auto-rows:1fr;
}

.solution{
  height:100%;
  min-height:0;
  display:flex;
}

.solution>div{
  width:100%;
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.solution p{
  flex:1 1 auto;
  overflow:visible;
  text-overflow:clip;
}

.solution a{
  align-self:flex-start;
  margin-top:auto;
  padding-top:22px;
}


/* Contacto / pie */

.contact__card{
  background:
    linear-gradient(
      135deg,
      #073b75 0%,
      #082f5d 100%
    );

  border-color:
    rgba(255,255,255,.18);
}

.contact__card h2,
.contact__card h3,
.contact__card strong{
  color:#fff;
}

.contact__card p,
.contact__card span{
  color:
    rgba(255,255,255,.92);
}


/* Todos los iconos:
   recuadro blanco + dibujo blanco */

.contact__card
.contact-action__icon{
  color:#fff!important;

  background:
    rgba(255,255,255,.035)!important;

  border:
    1.5px solid
    rgba(255,255,255,.96)!important;

  box-shadow:none!important;
}

.contact__card
.contact-action__icon svg{
  display:none!important;
}

.contact__card
.contact-action__icon::before{
  content:"";

  display:block;

  width:20px;
  height:20px;

  background:#fff;

  -webkit-mask:
    center/contain
    no-repeat;

  mask:
    center/contain
    no-repeat;
}

.contact__card
[data-contact-icon="map"]::before{
  -webkit-mask-image:
    url("/assets/ui/contact-map.svg");

  mask-image:
    url("/assets/ui/contact-map.svg");
}

.contact__card
[data-contact-icon="phone"]::before{
  -webkit-mask-image:
    url("/assets/ui/contact-phone.svg");

  mask-image:
    url("/assets/ui/contact-phone.svg");
}

.contact__card
[data-contact-icon="whatsapp"]::before{
  -webkit-mask-image:
    url("/assets/ui/whatsapp-mark.svg");

  mask-image:
    url("/assets/ui/whatsapp-mark.svg");
}

.contact__card
[data-contact-icon="clock"]::before{
  -webkit-mask-image:
    url("/assets/ui/contact-clock.svg");

  mask-image:
    url("/assets/ui/contact-clock.svg");
}

.contact-action__chevron{
  color:#fff!important;
}


/* WhatsApp flotante:
   centro verde + logo blanco */

.cdp-wa-float{
  background:#25d366!important;

  color:#fff!important;

  border:
    1px solid
    rgba(255,255,255,.86)!important;

  box-shadow:
    0 14px 34px
    rgba(37,211,102,.30),
    0 0 0 1px
    rgba(37,211,102,.08);

  overflow:visible;

  isolation:isolate;
}


/* ondas verdes transparentes */

.cdp-wa-float::before,
.cdp-wa-float::after{
  content:"";

  position:absolute;

  inset:-1px;

  z-index:-1;

  pointer-events:none;

  border-radius:50%;

  background:
    rgba(37,211,102,.38);

  opacity:0;

  transform:scale(.96);

  animation:
    condimplast-wa-pulse
    2.6s
    cubic-bezier(.2,.65,.3,1)
    infinite;
}

.cdp-wa-float::after{
  animation-delay:1.3s;
}

.cdp-wa-float
.whatsapp-mark{
  width:31px;
  height:31px;

  filter:none!important;
}

.cdp-wa-float:hover,
.cdp-wa-float:focus-visible{
  background:#25d366!important;

  box-shadow:
    0 16px 38px
    rgba(37,211,102,.34),
    0 0 0 4px
    rgba(37,211,102,.18);
}

@keyframes
condimplast-wa-pulse{

  0%{
    opacity:.60;
    transform:scale(.96);
  }

  65%,
  100%{
    opacity:0;
    transform:scale(1.58);
  }
}


@media
(prefers-reduced-motion:reduce){

  .cdp-wa-float::before,
  .cdp-wa-float::after{
    display:none;
    animation:none;
  }
}


/* móvil: contenido manda */

@media(max-width:860px){

  .values,
  .solutions__grid{
    grid-auto-rows:auto;
  }

  .value,
  .solution{
    height:auto;
  }
}

@media(max-width:580px){

  .cdp-wa-float{
    width:58px;
    height:58px;
  }

  .cdp-wa-float
  .whatsapp-mark{
    width:28px;
    height:28px;
  }
}


/* CONDIMPLAST_4511_HOTFIX_END */

/* CONDIMPLAST_RESPONSIVE_ROOT_FIX_V2_BEGIN
   Causa raíz: un único breakpoint de 1100px activaba simultáneamente
   el drawer móvil y reducía Productos destacados de 6 a 3 columnas.
   Entre 961px y 1100px se conserva navegación horizontal compacta
   y una grilla fluida de productos. El drawer queda para <=960px. */

.featured .product-strip {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.featured .mini-product {
  grid-template-rows: clamp(118px, 14vw, 150px) auto 1fr auto;
  padding: 9px;
}

.featured .mini-product__media {
  min-height: 0;
}

.featured .mini-product img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 961px) and (max-width: 1100px) {
  .header__inner {
    min-height: 76px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(8px, 1vw, 14px);
  }

  .brand {
    width: clamp(178px, 18vw, 205px);
    height: 56px;
  }

  .social-links {
    gap: 3px;
  }

  .social-link {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .social-link svg {
    width: 17px;
    height: 17px;
  }

  .menu,
  .nav-backdrop {
    display: none !important;
  }

  .nav,
  .nav.is-open {
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    clip-path: none;
    transition: none;
  }

  .nav__mobile-head {
    display: none !important;
  }

  .nav a {
    min-height: 0;
    padding: 9px 7px;
    border-radius: 9px;
    font-size: clamp(.72rem, 1.05vw, .82rem);
    line-height: 1.2;
  }

  .nav .nav__store {
    min-height: 42px;
    margin: 0 0 0 4px;
    padding-inline: 12px;
    font-size: clamp(.74rem, 1vw, .82rem);
  }

}

@media (max-width: 960px) {
  .nav {
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    bottom: auto;
    width: min(350px, calc(100% - 24px));
    height: auto;
    max-height: calc(100dvh - 24px - env(safe-area-inset-top));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: -18px 24px 60px rgba(3,26,53,.24);
  }

  .nav-backdrop {
    background: rgba(3,26,53,.46);
    backdrop-filter: blur(3px);
  }

  .nav__mobile-head {
    margin-bottom: 10px;
    padding-bottom: 14px;
  }

  .nav a {
    padding: 12px 13px;
    border: 1px solid transparent;
    border-radius: 11px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--blue-700);
    background: var(--surface-soft);
    border-color: var(--line);
  }

  .nav .nav__store {
    margin-top: 10px;
    border-color: transparent;
  }
}

@media (max-width: 580px) {
  .nav {
    top: max(8px, env(safe-area-inset-top));
    right: 8px;
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px - env(safe-area-inset-top));
    padding: 16px;
    border-radius: 18px;
  }
}

/* CONDIMPLAST_RESPONSIVE_ROOT_FIX_V2_END */


/* ============================================================================
   CONDIMPLAST_UI_ROOT_V3 — estabilidad visual de marca + WhatsApp
   ========================================================================== */
/* La marca textual del header no depende de webfonts remotas: evita FOUT/FOIT
   y mantiene una sola representación tipográfica durante toda la navegación. */
[data-brand-surface] .brand__text {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-synthesis: none;
}

/* WhatsApp: sin aro blanco exterior. Las ondas son anillos verdes transparentes
   que crecen desde el botón para que el efecto de expansión sea legible. */
.cdp-wa-float {
  border: 0 !important;
  outline: 0;
  box-shadow: 0 12px 30px rgba(37,211,102,.34) !important;
}
.cdp-wa-float::before,
.cdp-wa-float::after {
  inset: 0;
  background: transparent;
  border: 2px solid rgba(37,211,102,.48);
  opacity: 0;
  transform: scale(1);
  animation: condimplast-wa-green-ring 2.5s cubic-bezier(.2,.65,.3,1) infinite;
}
.cdp-wa-float::after { animation-delay: 1.25s; }
@keyframes condimplast-wa-green-ring {
  0%   { opacity: .58; transform: scale(1); }
  72%,
  100% { opacity: 0; transform: scale(1.56); }
}
@media (prefers-reduced-motion: reduce) {
  .cdp-wa-float::before,
  .cdp-wa-float::after { animation: none; opacity: 0; }
}

/* ==========================================================================
   CONDIMPLAST_MOBILE_HEADER_V2 — compacto, proporcional y auto-adaptativo
   ========================================================================== */
@media (max-width: 700px) {
  .header__inner {
    width: min(calc(100% - 24px), var(--container));
    min-height: 60px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 6px;
    row-gap: 0;
    padding-block: 4px;
  }

  .header__brand-zone { display: contents; }

  .brand {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 44px;
    display: flex;
    align-items: center;
  }

  .brand:has(.brand__image:not([hidden])) {
    width: min(142px, 38vw);
  }

  [data-brand-surface] .brand__text:not([hidden]) {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 44px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-wrap: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: clamp(1rem, 4.30vw, 1.12rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.035em;
  }

  .social-links {
    --social-size: 34px;
    --social-gap: 4px;
    width: auto;
    min-width: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--social-size);
    align-items: center;
    justify-content: end;
    gap: var(--social-gap);
    margin: 0;
  }

  .social-links[data-visible-social-count="0"] { display: none; }

  .social-link {
    width: var(--social-size);
    height: var(--social-size);
    min-width: var(--social-size);
    min-height: var(--social-size);
    border-radius: 10px;
    box-shadow: 0 5px 14px rgba(6, 42, 86, .14);
  }

  .social-link svg {
    width: 58%;
    height: 58%;
  }

  .social-links[data-visible-social-count="1"],
  .social-links[data-visible-social-count="2"] {
    --social-size: 38px;
    --social-gap: 5px;
  }

  .social-links[data-visible-social-count="3"] {
    --social-size: 36px;
    --social-gap: 4px;
  }

  .social-links[data-visible-social-count="5"] {
    --social-size: 31px;
    --social-gap: 3px;
  }

  .social-links[data-visible-social-count="6"] {
    --social-size: 28px;
    --social-gap: 3px;
  }

  .social-links[data-visible-social-count="7"] {
    --social-size: 25px;
    --social-gap: 2px;
  }

  .brand:has(+ .social-links[data-visible-social-count="6"]) .brand__text:not([hidden]),
  .brand:has(+ .social-links[data-visible-social-count="7"]) .brand__text:not([hidden]) {
    font-size: clamp(.84rem, 3.75vw, .96rem);
  }

  .menu {
    width: 44px;
    height: 44px;
    margin-left: 0;
    padding: 9px;
    border-radius: 12px;
  }
}

@media (max-width: 430px) {
  .header__inner {
    width: min(calc(100% - 20px), var(--container));
    min-height: 58px;
    column-gap: 5px;
    padding-block: 3px;
  }

  .brand {
    height: 42px;
  }

  [data-brand-surface] .brand__text:not([hidden]) {
    height: 42px;
    font-size: clamp(.98rem, 4.40vw, 1.08rem);
    letter-spacing: -.032em;
  }

  .brand:has(.brand__image:not([hidden])) {
    width: min(132px, 36vw);
  }

  .social-links {
    --social-size: 33px;
    --social-gap: 3px;
  }

  .social-links[data-visible-social-count="1"],
  .social-links[data-visible-social-count="2"] {
    --social-size: 36px;
    --social-gap: 4px;
  }

  .social-links[data-visible-social-count="3"] {
    --social-size: 34px;
  }

  .social-links[data-visible-social-count="5"] {
    --social-size: 30px;
  }

  .social-links[data-visible-social-count="6"] {
    --social-size: 27px;
    --social-gap: 2px;
  }

  .social-links[data-visible-social-count="7"] {
    --social-size: 24px;
    --social-gap: 2px;
  }

  .menu {
    width: 42px;
    height: 42px;
    padding: 8px;
  }
}

@media (max-width: 380px) {
  .header__inner {
    width: min(calc(100% - 16px), var(--container));
    min-height: 56px;
    column-gap: 4px;
    padding-block: 2px;
  }

  .brand {
    height: 40px;
  }

  [data-brand-surface] .brand__text:not([hidden]) {
    height: 40px;
    font-size: clamp(.95rem, 4.45vw, 1.03rem);
    letter-spacing: -.03em;
  }

  .social-links {
    --social-size: 31px;
    --social-gap: 3px;
  }

  .social-links[data-visible-social-count="1"],
  .social-links[data-visible-social-count="2"] {
    --social-size: 34px;
  }

  .social-links[data-visible-social-count="3"] {
    --social-size: 32px;
  }

  .social-links[data-visible-social-count="5"] {
    --social-size: 28px;
    --social-gap: 2px;
  }

  .social-links[data-visible-social-count="6"] {
    --social-size: 25px;
    --social-gap: 2px;
  }

  .social-links[data-visible-social-count="7"] {
    --social-size: 22px;
    --social-gap: 2px;
  }

  .brand:has(+ .social-links[data-visible-social-count="6"]) .brand__text:not([hidden]),
  .brand:has(+ .social-links[data-visible-social-count="7"]) .brand__text:not([hidden]) {
    font-size: clamp(.76rem, 3.7vw, .86rem);
  }

  .menu {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}
/* CONDIMPLAST_MOBILE_HEADER_V2_END */

