:root {
  --bg: #eef5ff;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #11203f;
  --muted: #4a5a7a;
  --line: rgba(31, 63, 124, 0.12);
  --accent: #1d4ed8;
  --accent-strong: #0f2d7a;
  --accent-soft: #dcedff;
  --cyan: #28c7f7;
  --cyan-soft: #dff8ff;
  --magenta: #cf202e;
  --sun: #ffd447;
  --shadow: 0 24px 60px rgba(27, 57, 110, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(40, 199, 247, 0.22), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(240, 75, 165, 0.15), transparent 18%),
    radial-gradient(circle at 72% 28%, rgba(255, 200, 61, 0.16), transparent 14%),
    linear-gradient(180deg, #f6faff 0%, #edf4ff 38%, #f8fbff 100%);
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 20px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(126, 171, 255, 0.28);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(23, 47, 102, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-copy {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  box-shadow: 0 6px 14px rgba(27, 87, 214, 0.08);
  animation: brandPulse 7s ease-in-out infinite;
}

.brand-lockup img {
  display: block;
  width: 170%;
  max-width: none;
  height: 170%;
  object-fit: cover;
  object-position: 46% 24%;
}

.brand strong,
.section-heading h2,
.hero h1,
.split-copy h2,
.contact-panel h2,
.visual-card h2,
.promo-card h3,
.glass-card h3 {
  font-family: "Poppins", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.brand-word-primary {
  color: #211cff;
}

.brand-word-accent {
  color: #ff2429;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-strong);
  box-shadow: 0 8px 16px rgba(15, 45, 122, 0.07);
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--magenta), #a91622);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(126, 171, 255, 0.32);
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(23, 47, 102, 0.07);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(23, 47, 102, 0.14);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a,
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.nav a .bi,
.footer-links a .bi {
  margin-right: 6px;
  vertical-align: -1px;
}

.nav a:hover,
.footer-links a:hover,
.social-card:hover span {
  color: var(--accent-strong);
}

.nav a:hover,
.footer-links a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button,
.promo-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.nav-cta::before,
.button-primary::before,
.promo-card a::before,
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.38) 50%, transparent 85%);
  transform: translateX(-140%);
  transition: transform 700ms ease;
  z-index: -1;
}

.nav-cta,
.button-primary,
.promo-card a,
.whatsapp-float {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  color: white;
  box-shadow: 0 16px 28px rgba(27, 87, 214, 0.24);
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(0.15);
}

.nav-cta {
  padding: 9px 16px;
}

.nav-cta-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
  box-shadow: 0 12px 24px rgba(23, 47, 102, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.14);
}

.nav-cta-secondary:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 16px 28px rgba(23, 47, 102, 0.12);
}

.nav-cta-user {
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  margin-left: 10px;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(23, 47, 102, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.nav-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(23, 47, 102, 0.14);
  border-color: rgba(29, 78, 216, 0.26);
  background: rgba(255, 255, 255, 1);
}

.nav-cta-mobile {
  display: none;
}

.section {
  padding: 42px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  min-height: 84vh;
  padding-top: 30px;
}

.hero > *,
.split-section > *,
.promo-grid > *,
.social-grid > *,
.contact-grid > *,
.catalog-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.split-copy h1,
.contact-panel h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.split-copy p,
.contact-panel p,
.promo-card p,
.glass-card p,
.product-copy p,
.visual-card p,
.trust-item span,
.metric-card span,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.03rem;
}

.hero-copy,
.hero-visual,
.split-copy,
.info-panel,
.contact-panel,
.section-heading,
.product-copy,
.promo-card,
.social-card {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  padding: 15px 22px;
}

.button:hover,
.nav-cta:hover,
.promo-card a:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.nav-cta:hover::before,
.button-primary:hover::before,
.promo-card a:hover::before,
.whatsapp-float:hover::before {
  transform: translateX(140%);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(40, 103, 221, 0.12);
  box-shadow: 0 16px 28px rgba(31, 63, 124, 0.08);
}

.button-secondary:hover {
  border-color: rgba(27, 87, 214, 0.24);
  box-shadow: 0 18px 30px rgba(31, 63, 124, 0.12);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.hero-stats article,
.trust-bar,
.social-card,
.promo-card,
.contact-panel,
.glass-card,
.metric-card,
.product-card,
.visual-card,
.info-panel,
.topbar {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-stats article {
  min-width: 155px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 244, 255, 0.82));
  box-shadow: 0 14px 32px rgba(31, 63, 124, 0.09);
}

.hero-stats strong,
.metric-card strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  will-change: transform;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.hero-visual::before {
  top: -22px;
  right: 16px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(40, 199, 247, 0.22), transparent 70%);
  animation: ambientFloat 14s ease-in-out infinite;
}

.hero-visual::after {
  left: -10px;
  bottom: 18px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(240, 75, 165, 0.16), transparent 70%);
  animation: ambientFloat 16s ease-in-out infinite reverse;
}

.hero-copy {
  will-change: transform;
}

.hero-carousel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(255, 212, 71, 0.2), transparent 20%),
    linear-gradient(145deg, rgba(8, 29, 80, 0.98), rgba(21, 62, 164, 0.9));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  max-width: min(86%, 480px);
  padding: 24px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(180deg, rgba(11, 31, 83, 0.4), rgba(9, 22, 57, 0.84));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(7, 20, 50, 0.28);
}

.hero-slide-overlay-sale {
  background:
    radial-gradient(circle at top right, rgba(255, 225, 0, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(113, 8, 15, 0.34), rgba(85, 9, 14, 0.9));
}

.hero-slide-overlay .card-chip {
  margin-bottom: 14px;
}

.hero-slide-overlay h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-slide-overlay p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.hero-slide-overlay .button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.hero-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-carousel-button,
.hero-carousel-dot {
  border: 0;
  cursor: pointer;
}

.hero-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: white;
  background: rgba(9, 22, 57, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(7, 20, 50, 0.24);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(9, 22, 57, 0.58);
  backdrop-filter: blur(10px);
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: transform 180ms ease, background-color 180ms ease, width 180ms ease;
}

.hero-carousel-dot.is-active {
  width: 26px;
  background: linear-gradient(135deg, #ffe100, #ff2429);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.visual-card img {
  height: 240px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(27, 57, 110, 0.16);
}

.visual-card:hover img {
  transform: scale(1.04);
}

.visual-card div,
.product-copy,
.promo-card,
.glass-card,
.metric-card,
.social-card,
.contact-panel {
  padding: 22px;
}

.visual-card-lg {
  grid-column: span 2;
}

.visual-card-lg img {
  height: 320px;
}

.card-chip,
.promo-badge,
.panel-tag,
.product-copy span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-strong);
  background: linear-gradient(135deg, var(--accent-soft), var(--cyan-soft));
  border-radius: var(--radius-sm);
}

.accent-card {
  display: flex;
  align-items: end;
  min-height: 100%;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 61, 0.26), transparent 26%),
    radial-gradient(circle at left bottom, rgba(240, 75, 165, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(10, 47, 135, 0.98), rgba(27, 87, 214, 0.88));
}

.accent-card .card-chip {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 248, 255, 0.82));
  box-shadow: 0 20px 45px rgba(31, 63, 124, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.trust-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(31, 63, 124, 0.1);
}

.category-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 10px;
}

.category-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(126, 171, 255, 0.24);
  box-shadow: 0 16px 34px rgba(27, 57, 110, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-card:hover,
.featured-spotlight:hover,
.micro-feature-card:hover,
.deal-banner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(27, 57, 110, 0.14);
}

.category-card-home {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 255, 0.96));
}

.category-card-clima {
  background: linear-gradient(180deg, rgba(239, 250, 255, 0.96), rgba(221, 244, 255, 0.96));
}

.category-card-tech {
  background: linear-gradient(180deg, rgba(243, 245, 255, 0.96), rgba(228, 234, 255, 0.96));
}

.category-card-sale {
  background: linear-gradient(145deg, rgba(255, 247, 212, 0.98), rgba(255, 232, 140, 0.92));
  border-color: rgba(201, 32, 46, 0.2);
}

.category-card-label,
.micro-feature-kicker,
.footer-title {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.category-card strong,
.featured-spotlight h3,
.micro-feature-card h3,
.deal-banner h2 {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.category-card p,
.micro-feature-card p,
.deal-banner p,
.footer-brand-block p {
  margin: 0;
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.featured-spotlight,
.micro-feature-card,
.deal-banner-box {
  border-radius: 30px;
  border: 1px solid rgba(126, 171, 255, 0.24);
  box-shadow: 0 16px 34px rgba(27, 57, 110, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.featured-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.8fr);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 32, 63, 0.98), rgba(29, 78, 216, 0.94));
}

.featured-spotlight-copy {
  padding: 30px;
  color: white;
}

.featured-spotlight-copy p,
.featured-spotlight-copy h3,
.featured-spotlight-copy .panel-tag {
  color: white;
}

.featured-spotlight-visual {
  min-height: 100%;
}

.featured-spotlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.micro-feature-grid {
  display: grid;
  gap: 18px;
}

.micro-feature-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.94));
}

.micro-feature-card a {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 800;
  color: var(--accent-strong);
}

.deal-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: center;
}

.deal-banner-box {
  padding: 28px;
  background: linear-gradient(145deg, rgba(201, 32, 46, 0.97), rgba(255, 212, 71, 0.96));
}

.deal-banner-box strong,
.deal-banner-box p,
.deal-badge {
  color: white;
}

.deal-banner-box strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
}

.deal-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 32, 63, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i,
.feature-list i,
.social-card i,
.contact-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--accent-strong);
  background: linear-gradient(135deg, var(--accent-soft), var(--cyan-soft));
  font-size: 1.2rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2,
.contact-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.catalog-filters {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.catalog-filter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.catalog-filter-select-wrap {
  position: relative;
  min-width: min(100%, 360px);
}

.catalog-filter-select-wrap i {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--accent-strong);
  pointer-events: none;
}

.catalog-filter-select {
  width: 100%;
  padding: 14px 48px 14px 16px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 700;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.82);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-filter-select:hover {
  transform: translateY(-1px);
}

.catalog-filter-select:focus {
  outline: none;
  border-color: rgba(27, 87, 214, 0.28);
  box-shadow: 0 0 0 4px rgba(27, 87, 214, 0.12);
}

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 78, 216, 0.12);
}

.catalog-grid,
.promo-grid,
.social-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 117, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 255, 0.94));
  box-shadow: 0 18px 40px rgba(31, 63, 124, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
  animation: productCardGlow 4.8s ease-in-out infinite;
}

.product-card-sale {
  border-color: rgba(255, 71, 71, 0.46);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 0, 0.52), transparent 28%),
    radial-gradient(circle at left bottom, rgba(255, 36, 41, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 214, 0.99), rgba(255, 228, 92, 0.9));
  box-shadow: 0 20px 42px rgba(188, 28, 34, 0.18);
  animation: productCardSaleGlow 3.8s ease-in-out infinite;
}

.product-card:hover,
.social-card:hover,
.promo-card:hover {
  transform: translateY(-4px);
}

.product-card-sale:hover {
  box-shadow: 0 24px 46px rgba(188, 28, 34, 0.24);
}

.product-card:hover {
  box-shadow: 0 24px 48px rgba(36, 115, 255, 0.18);
}

.product-card img {
  display: block;
  width: 100%;
  height: 240px;
  padding: 10px 10px 0;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 700ms ease, filter 700ms ease;
}

.product-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.product-card.is-exiting {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  filter: blur(3px);
  pointer-events: none;
}

.product-card.is-entering {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(4px);
  animation: cardFilterIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--filter-delay, 0ms);
}

.product-copy h3,
.visual-card h2,
.feature-list h3,
.social-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.product-copy {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.product-copy p {
  display: -webkit-box;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 8px;
}

.price-row strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.price-row-sale strong {
  color: #ff2429;
}

.price-row small {
  color: var(--magenta);
  text-decoration: line-through;
}

.price-row-sale small {
  color: #c77700;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta-featured {
  color: #a91622;
  font-weight: 800;
}

.product-badge-sale {
  color: #8a140d;
  background: linear-gradient(135deg, #ffe100, #ffbf00);
  box-shadow: inset 0 0 0 1px rgba(181, 67, 0, 0.16);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-actions .button {
  flex: 1 1 0;
  min-width: 130px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.brand-purpose {
  display: grid;
  gap: 22px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.purpose-card,
.values-showcase,
.value-item {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(31, 63, 124, 0.08);
}

.purpose-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.92));
}

.purpose-card h3,
.values-headline h3 {
  margin: 2px 0 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  letter-spacing: -0.02em;
}

.purpose-card p,
.values-headline p,
.value-item p,
.values-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.purpose-card-mission {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 212, 71, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.92));
}

.purpose-card-vision {
  color: white;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 225, 0, 0.24), transparent 20%),
    linear-gradient(145deg, rgba(10, 47, 135, 0.97), rgba(27, 87, 214, 0.9));
}

.purpose-card-vision .panel-tag {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.purpose-card-vision p {
  color: rgba(255, 255, 255, 0.84);
}

.values-showcase {
  padding: 22px;
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 212, 71, 0.22), transparent 20%),
    radial-gradient(circle at 6% 90%, rgba(40, 199, 247, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.93));
}

.values-headline {
  max-width: 72ch;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.value-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  margin-top: 2px;
  border-radius: 12px;
  color: var(--accent-strong);
  background: linear-gradient(135deg, var(--accent-soft), var(--cyan-soft));
}

.value-item h4 {
  margin: 0 0 6px;
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.values-cta {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(126, 171, 255, 0.26);
  background: linear-gradient(135deg, rgba(14, 45, 122, 0.95), rgba(31, 88, 214, 0.9));
}

.values-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.values-cta .button {
  flex: 0 0 auto;
  min-width: 240px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-list article,
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 249, 255, 0.66)),
    radial-gradient(circle at top right, rgba(40, 199, 247, 0.16), transparent 36%),
    radial-gradient(circle at bottom left, rgba(240, 75, 165, 0.1), transparent 32%);
}

.glass-card,
.metric-card,
.promo-card,
.contact-panel,
.social-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(31, 63, 124, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.metric-card {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 200, 61, 0.24), transparent 18%),
    radial-gradient(circle at 78% 26%, rgba(207, 32, 46, 0.18), transparent 20%),
    linear-gradient(145deg, rgba(10, 47, 135, 0.96), rgba(27, 87, 214, 0.88));
  color: white;
}

.metric-card-danger {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 212, 71, 0.24), transparent 18%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(145deg, rgba(145, 15, 28, 0.98), rgba(29, 78, 216, 0.88));
}

.metric-card span {
  color: rgba(255, 255, 255, 0.82);
}

.promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-card {
  min-height: 100%;
}

.promo-card.highlight {
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 212, 71, 0.28), transparent 18%),
    linear-gradient(145deg, rgba(161, 21, 32, 0.98), rgba(207, 32, 46, 0.92));
}

.promo-card-danger {
  background: linear-gradient(145deg, rgba(255, 244, 244, 0.98), rgba(255, 232, 232, 0.94));
}

.promo-card-warning {
  background: linear-gradient(145deg, rgba(255, 248, 222, 0.98), rgba(255, 238, 184, 0.94));
}

.promo-card-primary {
  background: linear-gradient(145deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.94));
}

.promo-card.highlight p,
.promo-card.highlight .promo-badge {
  color: rgba(255, 255, 255, 0.88);
}

.promo-card.highlight .promo-badge {
  background: rgba(255, 255, 255, 0.12);
}

.promo-card a {
  margin-top: 14px;
  padding: 12px 16px;
}

.social-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-card {
  justify-content: space-between;
}

.social-card span {
  font-weight: 800;
  color: var(--magenta);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 6px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(31, 63, 124, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(94, 105, 135, 0.88);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.24);
  outline-offset: 2px;
  border-color: rgba(29, 78, 216, 0.24);
}

.contact-form-message,
.form-message {
  grid-column: 1 / -1;
}

.form-message {
  margin: 0;
  color: var(--muted);
}

.contact-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 63, 124, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 87, 214, 0.18);
  box-shadow: 0 12px 24px rgba(27, 87, 214, 0.1);
}

.footer-links a:last-child,
.eyebrow,
.social-card:hover span {
  color: var(--accent);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 18px;
}

.footer-brand-block {
  max-width: 34ch;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links-group {
  min-width: 180px;
}

.footer strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 1.7rem;
  animation: whatsappPulse 5.6s ease-in-out infinite;
}

.chatbot {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 32;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.chatbot-toggle,
.chatbot-close,
.chatbot-chip,
.chatbot-form button {
  font: inherit;
}

.chatbot-toggle,
.chatbot-close {
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.chatbot-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #cf202e 0%, #1d4ed8 100%);
  box-shadow: 0 14px 26px rgba(17, 32, 63, 0.2);
  font-size: 1.2rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.chatbot-toggle-ping {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(255, 212, 71, 0.18);
}

.chatbot-toggle:hover,
.chatbot-close:hover,
.chatbot-chip:hover {
  transform: translateY(-2px);
}

.chatbot-toggle:hover {
  box-shadow: 0 18px 30px rgba(17, 32, 63, 0.24);
}

.chatbot-panel {
  width: min(320px, calc(100vw - 24px));
  max-height: min(500px, calc(100vh - 120px));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(40, 199, 247, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.94));
  box-shadow: 0 22px 44px rgba(17, 32, 63, 0.16);
  backdrop-filter: blur(18px);
}

.chatbot-panel[hidden] {
  display: none;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px 12px;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 71, 0.26), transparent 24%),
    linear-gradient(135deg, rgba(207, 32, 46, 0.98), rgba(29, 78, 216, 0.92));
}

.chatbot-eyebrow {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.chatbot-header h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
}

.chatbot-body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 12px 12px 8px;
  overflow: auto;
}

.chatbot-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
  box-shadow: 0 10px 18px rgba(17, 32, 63, 0.07);
}

.chatbot-message-user {
  justify-self: end;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  border-bottom-right-radius: 6px;
}

.chatbot-message-bot {
  justify-self: start;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(29, 78, 216, 0.08);
  border-bottom-left-radius: 6px;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 12px 10px;
}

.chatbot-chip {
  padding: 8px 12px;
  border: 1px solid rgba(29, 78, 216, 0.12);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.chatbot-chip:hover {
  border-color: rgba(29, 78, 216, 0.24);
  box-shadow: 0 12px 22px rgba(29, 78, 216, 0.12);
}

.chatbot-form {
  padding: 0 12px 12px;
}

.chatbot-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chatbot-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.chatbot-input-row input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(29, 78, 216, 0.12);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.chatbot-form .button {
  padding: 12px 16px;
}

.chatbot-input-row input:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.22);
  outline-offset: 2px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  height: 100vh;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: -20px 0 50px rgba(15, 45, 122, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform 320ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(7, 15, 31, 0.34);
}

.cart-header,
.cart-summary,
.cart-item,
.cart-item-actions {
  display: flex;
}

.cart-header,
.cart-summary {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(29, 78, 216, 0.1);
  cursor: pointer;
}

.cart-list {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 0;
  overflow: auto;
}

.cart-item {
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(31, 63, 124, 0.08);
  border-radius: 18px;
  background: white;
}

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
}

.cart-item h4 {
  margin: 0 0 6px;
}

.cart-item p {
  margin: 0 0 10px;
  color: var(--muted);
}

.cart-item-actions {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-item-actions button {
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  cursor: pointer;
}

.cart-summary {
  padding-top: 18px;
  border-top: 1px solid rgba(31, 63, 124, 0.08);
}

.cart-summary-actions {
  display: grid;
  gap: 10px;
}

.empty-state {
  padding: 22px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(31, 63, 124, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.992);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.page-ready .hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-ready .hero-copy,
.page-ready .hero-visual {
  opacity: 1;
}

.page-ready .hero-copy {
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.34), calc(var(--parallax-y, 0px) * -0.34), 0);
}

.page-ready .hero-visual {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
}

.page-ready .hero-copy > :nth-child(1) { animation-delay: 80ms; }
.page-ready .hero-copy > :nth-child(2) { animation-delay: 160ms; }
.page-ready .hero-copy > :nth-child(3) { animation-delay: 240ms; }
.page-ready .hero-copy > :nth-child(4) { animation-delay: 320ms; }
.page-ready .hero-copy > :nth-child(5) { animation-delay: 400ms; }

.page-ready .hero-visual {
  animation: heroVisualIn 980ms cubic-bezier(0.22, 1, 0.36, 1) both 180ms;
}

.page-ready .topbar {
  animation: navSlideIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes brandPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(27, 87, 214, 0.14);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(27, 87, 214, 0.17);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 16px 28px rgba(27, 87, 214, 0.24);
  }
  50% {
    box-shadow: 0 16px 32px rgba(27, 87, 214, 0.28), 0 0 0 7px rgba(40, 199, 247, 0.06);
  }
}

@keyframes cardFilterIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes productCardGlow {
  0%,
  100% {
    border-color: rgba(44, 117, 255, 0.2);
    box-shadow: 0 18px 40px rgba(31, 63, 124, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 255, 0.94));
  }
  33% {
    border-color: rgba(36, 193, 255, 0.5);
    box-shadow: 0 22px 46px rgba(27, 87, 214, 0.18);
    background: linear-gradient(180deg, rgba(248, 253, 255, 0.98), rgba(208, 239, 255, 0.98));
  }
  66% {
    border-color: rgba(24, 132, 255, 0.56);
    box-shadow: 0 24px 50px rgba(0, 114, 255, 0.2);
    background: linear-gradient(180deg, rgba(245, 251, 255, 0.98), rgba(190, 230, 255, 0.98));
  }
}

@keyframes productCardSaleGlow {
  0%,
  100% {
    border-color: rgba(255, 71, 71, 0.46);
    box-shadow: 0 20px 42px rgba(188, 28, 34, 0.18);
    background:
      radial-gradient(circle at top right, rgba(255, 208, 0, 0.52), transparent 28%),
      radial-gradient(circle at left bottom, rgba(255, 36, 41, 0.24), transparent 34%),
      linear-gradient(180deg, rgba(255, 249, 214, 0.99), rgba(255, 228, 92, 0.9));
  }
  33% {
    border-color: rgba(255, 196, 0, 0.82);
    box-shadow: 0 24px 50px rgba(215, 85, 0, 0.3);
    background:
      radial-gradient(circle at top right, rgba(255, 232, 121, 0.72), transparent 30%),
      radial-gradient(circle at left bottom, rgba(255, 76, 59, 0.36), transparent 36%),
      linear-gradient(180deg, rgba(255, 251, 227, 0.99), rgba(255, 214, 66, 0.94));
  }
  66% {
    border-color: rgba(255, 112, 52, 0.88);
    box-shadow: 0 26px 52px rgba(226, 62, 18, 0.32);
    background:
      radial-gradient(circle at top right, rgba(255, 198, 48, 0.76), transparent 28%),
      radial-gradient(circle at left bottom, rgba(255, 53, 53, 0.42), transparent 34%),
      linear-gradient(180deg, rgba(255, 247, 209, 0.99), rgba(255, 183, 57, 0.96));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .page-ready .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

.product-card.is-hidden {
  display: none;
}

@media (hover: none), (max-width: 1080px) {
  .page-ready .hero-copy,
  .page-ready .hero-visual {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .catalog-grid,
  .promo-grid,
  .social-grid,
  .contact-grid,
  .trust-bar,
  .category-ribbon,
  .showcase-grid,
  .featured-spotlight,
  .deal-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .store-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: clip;
  }

  .site-shell {
    width: min(100% - 20px, 1240px);
  }

  .topbar,
  .hero-actions,
  .hero-stats,
  .footer,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    position: sticky;
    top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 20px;
  }

  .brand {
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-cta {
    display: none;
  }

  .topbar-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: end;
  }

  .cart-toggle,
  .menu-toggle {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 10px;
    padding: 12px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.94));
    border: 1px solid rgba(126, 171, 255, 0.22);
    box-shadow: 0 18px 34px rgba(23, 47, 102, 0.1);
  }

  .nav.is-open {
    display: grid;
  }

  .nav {
    gap: 14px;
    text-align: center;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 6px;
  }

  .hero,
  .hero-grid,
  .trust-bar,
  .catalog-grid,
  .split-section,
  .purpose-grid,
  .values-grid,
  .showcase-grid,
  .featured-spotlight,
  .category-ribbon,
  .promo-grid,
  .social-grid,
  .contact-grid,
  .deal-banner,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    line-height: 0.98;
  }

  .split-copy h1,
  .contact-panel h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .hero {
    gap: 24px;
    padding-top: 28px;
  }

  .section {
    padding: 30px 0;
  }

  .hero-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions .button,
  .hero-stats article,
  .product-actions .button {
    width: 100%;
  }

  .values-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .values-cta .button {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats article {
    min-width: 0;
  }

  .visual-card-lg {
    grid-column: span 1;
  }

  .visual-card img,
  .visual-card-lg img,
  .product-card img {
    height: 220px;
  }

  .hero-slide img {
    min-height: 440px;
  }

  .hero-slide-overlay {
    inset: auto 14px 14px 14px;
    max-width: none;
    padding: 18px;
  }

  .hero-carousel-controls {
    right: 14px;
    bottom: 14px;
  }

  .social-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid a {
    font-size: 0.96rem;
  }

  .whatsapp-float {
    display: none;
  }

  .chatbot {
    display: none;
  }

  .chatbot-toggle {
    width: 48px;
    height: 48px;
  }

  .chatbot-panel {
    width: min(100vw - 18px, 310px);
    max-height: min(68vh, 460px);
  }

  .chatbot-input-row {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
    padding: 18px;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: calc(100% - 16px);
  }

  .topbar {
    top: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-lockup {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 14px;
  }

  .hero {
    gap: 18px;
    padding-top: 10px;
  }

  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero h1,
  .section-heading h2,
  .split-copy h2,
  .contact-panel h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .split-copy h1,
  .contact-panel h1 {
    font-size: clamp(1.9rem, 10.5vw, 2.7rem);
  }

  .visual-card div,
  .product-copy,
  .promo-card,
  .glass-card,
  .metric-card,
  .social-card,
  .contact-panel {
    padding: 18px;
  }

  .catalog-filters {
    margin-bottom: 0;
  }

  .contact-grid a,
  .nav a {
    padding: 14px;
  }

  .chatbot {
    right: 8px;
    left: 8px;
    bottom: 72px;
    justify-items: end;
  }

  .chatbot-panel {
    width: min(100%, 100vw - 16px);
    max-height: min(64vh, 430px);
  }

}