:root,
.page-home {
  --color-primary: #ef4444;
  --color-secondary: #1f2937;
  --color-bg-light: #f5f5f5;
  --color-accent-beige: #fff7ed;
  --color-accent-blue: #eff6ff;
  --color-accent-pink: #fff1f2;
  --color-surface: #ffffff;
  --color-muted: #6b7280;
  --border-soft: rgba(31, 41, 55, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 15px 40px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 24px 60px rgba(17, 24, 39, 0.12);
}

body.page-home {
  background: var(--color-bg-light);
  color: var(--color-secondary);
  --wm-opacity: 0;
}

/* The main header now reuses the global styling defined in the header partial */

.page-home .search-form {
  position: relative;
  min-width: 230px;
  background: rgba(31, 41, 55, 0.04);
  border-radius: var(--radius-pill, 999px);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(31, 41, 55, 0.08);
}

.page-home .search-form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0.35rem 0.5rem 0.35rem 2.1rem;
  font-size: 0.95rem;
  color: var(--color-secondary);
  width: 100%;
}

.page-home .search-form__icon {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.page-home .header-links {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.page-home .link-account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 600;
}

.page-home .link-account__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(31, 41, 55, 0.08);
  color: var(--color-secondary);
}

.page-home .link-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--color-primary);
  transition: transform 0.2s ease;
}

.page-home .link-cart .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.7rem;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.3);
}

.page-home .link-cart:hover {
  transform: translateY(-2px);
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-modern {
  position: relative;
  min-height: 100vh;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 3.5rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #f8fbff;
}

.gradient-bg {
  background: linear-gradient(135deg, #111827 0%, rgba(124, 58, 237, 0.22) 40%, rgba(194, 65, 12, 0.35) 72%, #010101 100%);
  background-size: 220% 220%;
  animation: gradientFlow 18s ease-in-out infinite;
}

.gradient-bg::before,
.gradient-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gradient-bg::before {
  background-image: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  mix-blend-mode: screen;
}

.gradient-bg::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" fill="none"><filter id="n" x="0" y="0" width="100%" height="100%"><feTurbulence type="fractalNoise" baseFrequency="1.4" numOctaves="3" stitchTiles="stitch"></feTurbulence><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 -2"></feColorMatrix></filter><rect width="120" height="120" filter="url(%23n)" opacity="0.18"/></svg>');
  background-size: 240px 240px;
  opacity: 0.35;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-modern__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}


.hero-modern__card {
  display: grid;
  gap: 1.5rem;
}

.glass-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.65), rgba(17, 24, 39, 0.2));
  backdrop-filter: blur(22px);
  border-radius: 32px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: clamp(2.5rem, 4vw, 3.25rem);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.45);
  max-width: min(640px, 100%);
}

.glass-card > * {
  margin-left: 0;
  margin-right: 0;
}

.hero-modern__title {
  margin: 0;
  font-size: clamp(3.75rem, 8vw, 6.5rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #f9fafb;
  text-transform: none;
}

.hero-modern__title span {
  display: inline-block;
  margin-left: 0.35ch;
  color: #f97316;
  text-shadow: 0 12px 45px rgba(249, 115, 22, 0.35);
}

.hero-modern__subtitle {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.4;
}

.hero-modern__tagline {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(148, 163, 184, 0.85);
  font-style: italic;
  max-width: 420px;
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.9s ease forwards;
  animation-delay: calc((var(--fade-index, 0)) * 0.12s);
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-modern__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  overflow: hidden;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-modern {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.875rem;
  box-shadow: 0 15px 45px rgba(239, 68, 68, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: heroCtaPulse 4.8s ease-in-out infinite;
}

.cta-modern:hover {
  box-shadow: 0 32px 75px rgba(239, 68, 68, 0.55);
}

.hero-modern__cta:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 32px 75px rgba(239, 68, 68, 0.55);
}

.hero-modern__cta:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.6);
  outline-offset: 6px;
}

.hero-modern__cta span:first-child {
  position: relative;
  z-index: 2;
}

.hero-modern__cta-glow {
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: translateX(-120%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.hero-modern__cta:hover .hero-modern__cta-glow {
  opacity: 0.35;
  animation: heroCtaGlow 2.4s ease-in-out infinite;
}

@keyframes heroCtaPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 15px 45px rgba(239, 68, 68, 0.35);
  }
  50% {
    transform: translate3d(0, -3px, 0) scale(1.02);
    box-shadow: 0 22px 60px rgba(239, 68, 68, 0.45);
  }
}

.hero-modern__showcase {
  position: relative;
}

.product-showcase {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  perspective: 1400px;
}

.product-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.85), rgba(17, 24, 39, 0.35));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 25px 80px rgba(15, 23, 42, 0.55);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-3d {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.45s ease;
  --parallax-rotate-x: 0deg;
  --parallax-rotate-y: 0deg;
  --parallax-translate-x: 0px;
  --parallax-translate-y: 0px;
  transform: translate3d(var(--parallax-translate-x), var(--parallax-translate-y), 0)
    rotateX(var(--parallax-rotate-x)) rotateY(var(--parallax-rotate-y));
}

.product-3d__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatOrbit 8s ease-in-out infinite;
}

.product-3d__layer {
  transform-style: preserve-3d;
  animation: rotate3dOrbit 16s linear infinite;
}

.product-3d img {
  max-width: min(100%, 380px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 50px 120px rgba(249, 115, 22, 0.45))
    drop-shadow(0 25px 65px rgba(15, 23, 42, 0.8));
  transition: transform 0.6s ease;
}

.carousel-slide:hover .product-3d img {
  transform: scale(1.08) translateY(-12px);
}

@keyframes floatOrbit {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-32px);
  }
}

@keyframes rotate3dOrbit {
  0% {
    transform: rotateY(0deg) rotateX(4deg);
  }
  50% {
    transform: rotateY(180deg) rotateX(10deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(4deg);
  }
}

.product-glow {
  position: absolute;
  inset: 10% 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.45) 0%, rgba(249, 115, 22, 0) 65%);
  filter: blur(45px);
  opacity: 0.7;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.product-shadow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.55) 0%, transparent 70%);
  filter: blur(18px);
  animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.5;
  }
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 30px;
  border-radius: 5px;
  background: #fff;
}

@media (max-width: 768px) {
  .product-showcase {
    max-width: 100%;
    height: 400px;
  }

  .product-3d img {
    max-height: 300px;
  }
}

.hero-modern__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-modern__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  animation: heroOrbFloat 18s ease-in-out infinite;
}

.hero-modern__orb--one {
  width: 320px;
  height: 320px;
  background: rgba(249, 115, 22, 0.28);
  top: 10%;
  left: 6%;
}

.hero-modern__orb--two {
  width: 420px;
  height: 420px;
  background: rgba(30, 41, 59, 0.6);
  bottom: 12%;
  right: 12%;
  animation-delay: -9s;
}

.hero-modern__orb--three {
  width: 260px;
  height: 260px;
  background: rgba(148, 163, 184, 0.35);
  top: 35%;
  right: 40%;
  animation-delay: -4s;
}

.hero-modern__scroll {
  position: absolute;
  bottom: clamp(2rem, 6vw, 3.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-modern__scroll-line {
  width: 3px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  animation: heroScrollPulse 2.4s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0%,
  100% {
    transform: translate(-10%, -10%) rotate(0deg);
  }
  50% {
    transform: translate(10%, 5%) rotate(8deg);
  }
}

@keyframes heroTitleShine {
  0%,
  90%,
  100% {
    filter: brightness(1);
  }
  45% {
    filter: brightness(1.18);
  }
}

@keyframes heroCtaGlow {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes heroProductFloat {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(6deg) translateY(0);
  }
  50% {
    transform: rotateY(-6deg) rotateX(3deg) translateY(-18px);
  }
}

@keyframes heroOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(35px, -30px) scale(1.08);
  }
  70% {
    transform: translate(-25px, 40px) scale(0.92);
  }
}

@keyframes heroScrollPulse {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ============================================
   HERO PREMIUM - ULTRA PROFESIONAL
   ============================================ */

.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 10vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 50%, #ffffff 100%);
}

/* Fondo con gradiente sutil */
.hero-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(255, 237, 213, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
  will-change: transform;
}

.gradient-orb--1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #FF6B35 0%, #F97316 100%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.gradient-orb--2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #fb923c 0%, #fdba74 100%);
  bottom: -100px;
  left: -80px;
  animation-delay: -7s;
}

.gradient-orb--3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #FF9E00 0%, #FF6B35 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -80px) scale(1.1);
  }
  66% {
    transform: translate(-80px, 50px) scale(0.9);
  }
}

/* Textura de ruido sutil */
.noise-texture {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="300" height="300" filter="url(%23n)" opacity="0.05"/></svg>');
  background-size: 300px 300px;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

/* Partículas flotantes */
.floating-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle-dot {
  position: absolute;
  width: var(--particle-size, 3px);
  height: var(--particle-size, 3px);
  background: linear-gradient(135deg, #FF6B35, #f97316);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
  top: var(--particle-y);
  left: var(--particle-x);
  animation: particleFloat var(--particle-duration, 8s) ease-in-out infinite;
  animation-delay: var(--particle-delay, 0s);
  filter: blur(var(--particle-blur, 0px));
  mix-blend-mode: screen;
  will-change: transform, opacity;
  opacity: 0;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate3d(var(--particle-drift, 0px), 0, 0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: var(--particle-opacity, 0.55);
    transform: translate3d(var(--particle-drift, 0px), -20px, 0) scale(var(--particle-scale, 1));
  }
  90% {
    opacity: calc(var(--particle-opacity, 0.55) * 0.9);
    transform: translate3d(var(--particle-drift, 0px), calc(-100vh * var(--particle-height, 1)), 0) scale(var(--particle-scale, 1));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--particle-drift, 0px), calc(-100vh * var(--particle-height, 1)), 0) scale(0);
  }
}

/* Contenido principal */
.hero-premium__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header con título */
.hero-premium__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* Banner de envío gratis */
.free-shipping-banner {
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideInDown 0.8s ease forwards;
}

.shipping-banner__content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.shipping-banner__content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shipping-banner__icon {
  width: 24px;
  height: 24px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: truck-drive 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes truck-drive {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.shipping-banner__text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  z-index: 1;
}

.shipping-banner__highlight {
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shipping-banner__separator {
  opacity: 0.7;
  font-weight: 400;
}

.shipping-banner__condition {
  font-weight: 500;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #FF6B35, #f97316);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-badge__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF6B35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Título épico */
.hero-premium__title {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-align: center;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--line-delay);
  opacity: 0;
  transform: translateY(100%);
}

.title-word--accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF6B35 0%, #f97316 50%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(255, 107, 53, 0.3));
}

.title-word--accent::after {
  content: '';
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -60%;
  width: 42%;
  background: linear-gradient(
    95deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.92) 46%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-220%) skewX(-18deg);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  filter: blur(0.4px);
  animation: heroAccentShimmer 4.5s ease-in-out infinite;
}

@keyframes heroAccentShimmer {
  0%,
  60% {
    transform: translateX(-220%) skewX(-18deg);
    opacity: 0;
  }
  70% {
    opacity: 0.85;
  }
  84% {
    transform: translateX(210%) skewX(-18deg);
    opacity: 0.4;
  }
  100% {
    transform: translateX(250%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes titleSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtítulo */
.hero-premium__subtitle {
  margin: 2rem auto 0;
  max-width: 600px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: var(--fade-delay);
}

.hero-premium__subtitle-text {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 1.4em;
  letter-spacing: 0.015em;
}

.hero-premium__subtitle-text::after {
  content: '';
  display: none;
}

.hero-premium__subtitle-text.is-typing::after,
.hero-premium__subtitle-text.is-complete::after {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-left: 6px;
  background: currentColor;
  opacity: 0.7;
  animation: heroTypingCaret 0.85s steps(1) infinite;
}

.hero-premium__subtitle-text.is-complete::after {
  animation-duration: 1.2s;
  opacity: 0.9;
}

.hero-premium__subtitle-text.is-static::after {
  display: none;
}

@keyframes heroTypingCaret {
  0%, 45% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid de productos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto 4rem;
  max-width: 1200px;
}

/* Card 3D de producto */
.product-card-3d {
  position: relative;
  opacity: 0;
  animation: cardFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.1s * var(--card-index));
  text-decoration: none;
  display: block;
  color: inherit;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card-3d__inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-card-3d:hover .product-card-3d__inner {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2),
              0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Efectos de brillo */
.product-card-3d__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.product-card-3d:hover .product-card-3d__shine {
  left: 100%;
}

.product-card-3d__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.product-card-3d:hover .product-card-3d__glow {
  opacity: 1;
}

/* Contenido de la card */
.product-card-3d__content {
  position: relative;
  z-index: 1;
}

.product-card-3d__image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.product-card-3d__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.product-card-3d:hover .product-card-3d__image {
  transform: scale(1.1);
}

.product-card-3d__info {
  text-align: center;
}

.product-card-3d__name {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.product-card-3d__price {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B35, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Borde animado */
.product-card-3d__border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, #FF6B35, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card-3d:hover .product-card-3d__border {
  opacity: 1;
}

/* CTA Section */
.hero-premium__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: var(--fade-delay);
}

/* Botón premium */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: linear-gradient(135deg, #FF6B35 0%, #F72585 100%);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.btn-premium:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 107, 53, 0.6);
}

.btn-premium__text {
  position: relative;
  z-index: 2;
}

.btn-premium__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F72585 0%, #7209B7 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-premium:hover .btn-premium__bg {
  opacity: 1;
}

.btn-premium__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-premium:hover .btn-premium__shine {
  left: 100%;
}

.btn-premium__arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.btn-premium:hover .btn-premium__arrow {
  transform: translateX(4px);
}

/* Stats */
.hero-premium__stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.875rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator__line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
  border-radius: 2px;
}

.scroll-indicator__text {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .hero-premium__stats {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding: 5rem 0 3rem;
  }

  .hero-premium__header {
    margin-bottom: 3rem;
  }

  .shipping-banner__content {
    padding: 12px 20px;
    gap: 10px;
  }

  .shipping-banner__icon {
    width: 20px;
    height: 20px;
  }

  .shipping-banner__text {
    font-size: 0.85rem;
    gap: 6px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .product-card-3d__inner {
    padding: 1.5rem;
  }

  .product-card-3d__image-wrapper {
    height: 200px;
  }

  .hero-premium__stats {
    gap: 2rem;
  }

  .stat-item__value {
    font-size: 2rem;
  }

  .btn-premium {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .gradient-orb--1 {
    width: 400px;
    height: 400px;
  }

  .gradient-orb--2 {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .shipping-banner__content {
    padding: 10px 16px;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }

  .shipping-banner__text {
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
  }

  .shipping-banner__separator {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-premium__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-card-3d__image-wrapper {
    height: 180px;
  }

  .scroll-indicator {
    display: none;
  }
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--color-secondary);
}

.section-heading p {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
  max-width: 520px;
}

.landing-promotions {
  padding: clamp(3rem, 6vw, 4rem) 0;
}

.landing-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.promo-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promo-card__type {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-card__title {
  margin: 0;
  color: var(--color-secondary);
  font-size: 1.2rem;
}

.promo-card__body {
  color: var(--color-muted);
  margin: 0;
}

.promo-card__code {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(31, 41, 55, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
}

.landing-products {
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 5.5rem);
}

.landing-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.landing-product-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(31, 41, 55, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(17, 24, 39, 0.12);
}

.landing-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.landing-product-card__figure {
  background: rgba(31, 41, 55, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.landing-product-card__figure img {
  max-width: 80%;
  transition: transform 0.35s ease;
}

.landing-product-card:hover img {
  transform: scale(1.05);
}

.landing-product-card__quick {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-secondary);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.landing-product-card:hover .landing-product-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.landing-product-card__body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.landing-product-card__title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-secondary);
  min-height: 2.6em;
}

.landing-product-card__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
}

.landing-product-card__price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.landing-product-card__compare {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.landing-product-card__cta {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
}

.landing-product-card__link {
  flex: 1;
  border-radius: 999px;
}

.landing-product-card__cta .btn-primary {
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
}

.landing-products__loader,
.landing-products__empty {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.landing-products__spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid rgba(239, 68, 68, 0.2);
  border-top-color: var(--color-primary);
  animation: landing-spin 0.8s linear infinite;
}

@keyframes landing-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   SECTION: LANDING BENEFITS (PROMOCIONES)
   ============================================ */
.landing-benefits {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.landing-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Heading */
.section-heading {
  text-align: left;
  margin-bottom: 3rem;
}

.section-heading--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-secondary);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Benefit Card Premium */
.benefit-card-premium {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.2);
}

.benefit-card-premium:hover::before {
  opacity: 1;
}

/* Featured Card (10% OFF) */
.benefit-card-premium--featured {
  background: linear-gradient(135deg, #ffedd5 0%, #ffffff 100%);
  border: 2px solid #f97316;
  transform: scale(1.05);
}

.benefit-card-premium--featured::before {
  opacity: 1;
  height: 5px;
}

.benefit-card-premium--featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 16px 50px rgba(249, 115, 22, 0.25);
}

/* Icon */
.benefit-card-premium__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fed7aa 0%, #ffedd5 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.benefit-card-premium__icon svg {
  width: 30px;
  height: 30px;
  color: #f97316;
  stroke-width: 2.5;
}

.benefit-card-premium:hover .benefit-card-premium__icon {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  transform: rotate(5deg) scale(1.1);
}

.benefit-card-premium:hover .benefit-card-premium__icon svg {
  color: white;
}

/* Badge */
.benefit-card-premium__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.benefit-card-premium__badge--featured {
  background: #f97316;
  color: white;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Title */
.benefit-card-premium__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Description */
.benefit-card-premium__description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.benefit-card-premium__description strong {
  color: #f97316;
  font-weight: 700;
}

/* Highlight */
.benefit-card-premium__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 10px;
  border-left: 3px solid #f97316;
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-top: auto;
}

.benefit-card-premium__icon-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Benefits CTA */
.benefits-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.benefits-cta__text {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin: 0;
}

.btn-benefits-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-benefits-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-benefits-cta:hover::before {
  left: 100%;
}

.btn-benefits-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.btn-benefits-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-benefits-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .hero-modern__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-modern__card {
    text-align: center;
    justify-items: center;
  }

  .hero-modern__subtitle {
    margin-inline: auto;
  }

  .hero-modern__tagline {
    margin-inline: auto;
  }

  .hero-modern__cta {
    margin-inline: auto;
  }

  .hero-modern__showcase {
    justify-self: center;
  }

  .hero-modern__scroll {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card-premium--featured {
    transform: scale(1);
  }

  .benefit-card-premium--featured:hover {
    transform: translateY(-8px);
  }

}

@media (max-width: 768px) {
  .hero-modern {
    padding: clamp(3.5rem, 10vw, 5rem) 0 clamp(4rem, 12vw, 5.5rem);
  }

  .hero-modern__card {
    padding: 2.25rem;
  }

  .product-3d img {
    width: min(420px, 100%);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card-premium {
    padding: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .landing-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-product-card__cta {
    flex-direction: column;
  }

  .landing-product-card__link,
  .landing-product-card__cta .btn-primary {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-modern {
    padding: 3rem 0 4.5rem;
  }

  .hero-modern__card {
    padding: 2rem;
    gap: 1.25rem;
  }

  .hero-modern__title {
    font-size: clamp(2.85rem, 11vw, 4.1rem);
  }

  .product-3d img {
    width: min(320px, 100%);
  }

  .hero-modern__subtitle {
    font-size: clamp(1.2rem, 5vw, 1.4rem);
  }

  .hero-modern__tagline {
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
  }

  .landing-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
