:root {
  /* Paleta de colores */
  --color-bg: #F8F9FA;
  --color-white: #FFFFFF;
  --color-text: #2D3436;
  --color-text-light: #636E72;
  --color-accent: #FF8B94;
  --color-accent-dark: #E67E84;
  --color-accent-light: #FFF0F1;
  --color-border: #E9ECEF;
  --color-b2b-bg: #343A40;
  --color-b2b-text: #F8F9FA;
  --color-success: #5FB8A6;
  --color-warning: #FDCB6E;
  
  /* Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  /* Tipografía */
  --font-main: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3rem;
  
  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-accent: 0 4px 20px rgba(255,139,148,0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==================== UTILIDADES ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section-padding {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== BOTONES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 52px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,139,148,0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-large {
  font-size: var(--font-size-md);
  padding: 18px 36px;
  min-height: 60px;
  width: 100%;
  max-width: 400px;
}

.btn-b2b {
  background: var(--color-warning);
  color: var(--color-text);
  font-weight: 700;
}

.btn-b2b:hover {
  background: #e6b84d;
  transform: translateY(-2px);
}

/* ==================== BARRA DE ANUNCIO ==================== */
.announcement-bar {
  background: var(--color-text);
  color: var(--color-white);
  text-align: center;
  padding: 10px var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.announcement-bar span {
  color: var(--color-warning);
  font-weight: 700;
}

/* ==================== HEADER ==================== */
.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-light);
  transition: color 0.2s;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--color-accent);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Menú móvil */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: 80px var(--space-lg) var(--space-lg);
  transition: right 0.3s ease;
  z-index: 999;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile a {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero-title .highlight {
  color: var(--color-accent);
  position: relative;
}

.hero-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-image {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
}

.hero-mercado-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: 10;
  width: 80px;
  height: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-white);
  background: var(--color-white);
}
.hero-mercado-badge img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

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

/* ==================== CARRUSEL HERO ==================== */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-white);
}

.carousel-feature {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.carousel-slide.active .carousel-feature {
  animation-delay: 0.3s;
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-text strong {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.feature-text span {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  line-height: 1.4;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  z-index: 5;
  opacity: 0;
}

.hero-carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--color-white);
  color: var(--color-accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 92px;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
  background: var(--color-accent);
  border-color: var(--color-white);
  width: 24px;
  border-radius: 12px;
}

/* ==================== HERO OFFER HIGHLIGHT ==================== */
.hero-offer-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-md);
  flex-wrap: wrap;
  font-weight: 800;
}
.hero-offer-old {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  text-decoration: line-through;
  opacity: 0.7;
}
.hero-offer-arrow {
  font-size: var(--font-size-lg);
  color: var(--color-accent);
}
.hero-offer-new {
  font-size: var(--font-size-2xl);
  color: var(--color-accent);
}
.hero-offer-badge {
  font-size: var(--font-size-xs);
  font-weight: 700;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== HERO QUICK BUY ==================== */
.hero-quick-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.hero-quick-buy .quantity-selector {
  margin-bottom: 0;
}
.hero-quick-buy .btn {
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .hero-quick-buy {
    flex-direction: row;
    justify-content: center;
    max-width: 500px;
  }
  .hero-quick-buy .btn {
    width: auto;
    flex: 1;
  }
}

/* ==================== HERO FEATURES DROPDOWN ==================== */
.hero-features-dropdown {
  width: 100%;
  max-width: 400px;
  margin: var(--space-sm) auto 0;
}
.btn-features-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-features-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-features-toggle.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.features-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}
.btn-features-toggle.active .features-arrow {
  transform: rotate(180deg);
}
.hero-features-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -2px;
}
.hero-features-content.open {
  max-height: 600px;
  opacity: 1;
  padding: var(--space-md);
}
.features-grid-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.feature-mini {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
}
.feature-mini:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.feature-mini-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-mini-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}
.feature-mini-text strong {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
}
.feature-mini-text span {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hero-features-dropdown {
    max-width: 500px;
  }
  .features-grid-mini {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== BENEFICIOS ==================== */
.benefits {
  background: var(--color-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.benefit-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto var(--space-md);
}

.benefit-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.benefit-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==================== CARACTERÍSTICAS (HOTSPOTS) ==================== */
.features {
  background: var(--color-bg);
}

.features-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.features-image-wrapper {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.features-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.hotspot {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-md);
  animation: hotspotPulse 2s infinite;
  z-index: 2;
}

@keyframes hotspotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,139,148,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255,139,148,0); }
}

.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--color-white);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 220px;
  font-size: var(--font-size-sm);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--color-white);
}

.hotspot-tooltip h4 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
  font-size: var(--font-size-sm);
}

.hotspot-tooltip p {
  color: var(--color-text-light);
  font-size: var(--font-size-xs);
  line-height: 1.5;
}

.hotspot.active .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.features-list {
  display: none;
}

/* ==================== PRUEBA SOCIAL ==================== */
.social-proof {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--color-warning);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: var(--font-size-md);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.testimonial-author {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text-light);
}

/* Urgencia */
.urgency-box {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-white) 100%);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.urgency-box h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.countdown-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  min-width: 64px;
  box-shadow: var(--shadow-sm);
}

.countdown-item .number {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.countdown-item .label {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-top: 4px;
}

.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

.stock-dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==================== OFERTA Y CIERRE ==================== */
.offer {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
}

.offer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.offer-image {
  max-width: 400px;
  width: 100%;
  position: relative;
}

.offer-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.offer-checkmark {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-success);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-white);
}

.offer-details {
  width: 100%;
}

.offer-details h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.offer-details .subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.price-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
  border: 2px solid var(--color-border);
}

.price-old {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.price-current {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-xs);
}

.price-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

.guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-light);
  max-width: 100px;
  text-align: center;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ==================== SECCIÓN B2B ==================== */
.b2b-section {
  background: var(--color-b2b-bg);
  color: var(--color-b2b-text);
  text-align: center;
}

.b2b-section .section-title {
  color: var(--color-white);
}

.b2b-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.b2b-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  text-align: left;
}

.b2b-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.05);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}

.b2b-benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.b2b-benefit h4 {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-white);
}

.b2b-benefit p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copy {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

/* ==================== ANIMACIONES DE SCROLL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .hero-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .hero-trust {
    justify-content: flex-start;
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-inner {
    flex-direction: row;
    align-items: center;
  }
  
  .features-image-wrapper {
    flex: 1;
  }
  
  .features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
  }
  
  .features-list-item {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
  }
  
  .features-list-item h4 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: var(--font-size-base);
  }
  
  .features-list-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.5;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .offer-inner {
    flex-direction: row;
    text-align: left;
  }
  
  .offer-details {
    text-align: left;
  }
  
  .guarantees {
    justify-content: flex-start;
  }
  
  .b2b-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
}

/* ==================== ACCESSIBILITY ==================== */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================== CART ICON ==================== */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
  transition: color 0.2s;
  flex-shrink: 0;
}
.cart-icon:hover {
  color: var(--color-accent);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

/* ==================== OFFER GALLERY ==================== */
.offer-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.offer-main-image {
  position: relative;
  width: 100%;
}
.offer-main-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  transition: transform 0.3s ease;
}
.offer-thumbnails {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  justify-content: center;
}
.offer-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.offer-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.offer-thumbnail:hover,
.offer-thumbnail.active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.offer-thumbnail:hover img,
.offer-thumbnail.active img {
  transform: scale(1.1);
}

/* ==================== STAR RATING ==================== */
.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}
.star-rating .stars {
  display: flex;
  gap: 2px;
}
.star-rating .star {
  color: var(--color-warning);
  font-size: 1.25rem;
  line-height: 1;
}
.star-rating .rating-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  font-weight: 500;
}

/* ==================== QUANTITY SELECTOR ==================== */
.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--color-white);
  margin-bottom: var(--space-md);
}
.quantity-selector button {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-selector button:hover {
  background: var(--color-accent-light);
}
.quantity-selector input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
  background: transparent;
  -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==================== HERO GIF ==================== */
.hero-gif-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.hero-gif-label {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-gif {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  object-fit: cover;
  background: var(--color-white);
}

/* ==================== OFFER GIF ==================== */
.offer-gif-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.offer-gif-label {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.offer-gif {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  object-fit: cover;
  background: var(--color-white);
}

/* ==================== OFFER BUTTONS ==================== */
.offer-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .offer-buttons {
    margin: 0;
  }
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--color-white);
  color: var(--color-text);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-success);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10000;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  font-weight: 600;
  font-size: var(--font-size-sm);
  max-width: 320px;
}
.toast-notification.show {
  transform: translateX(0);
}
.toast-notification .toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ==================== CART PAGE ==================== */
.cart-page {
  background: var(--color-bg);
  min-height: 100vh;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.cart-page-title {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}
.cart-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}
.cart-items {
  flex: 1;
}
.cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.cart-item:hover {
  box-shadow: var(--shadow-md);
}
.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-weight: 700;
  font-size: var(--font-size-base);
  margin-bottom: 4px;
  color: var(--color-text);
}
.cart-item-price {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cart-item-subtotal {
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--color-accent);
  min-width: 80px;
  text-align: right;
}
.cart-item-remove {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-bg);
  color: var(--color-text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cart-item-remove:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.cart-summary {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  height: fit-content;
}
.cart-summary h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-base);
  color: var(--color-text-light);
}
.cart-summary-row.total {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-text);
  border-top: 2px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}
.cart-summary-row .value {
  font-weight: 600;
  color: var(--color-text);
}
.cart-summary-row.total .value {
  color: var(--color-accent);
}
.cart-summary .btn {
  width: 100%;
  margin-top: var(--space-md);
}
.cart-summary .btn + .btn {
  margin-top: var(--space-sm);
}
.cart-empty {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin: 0 auto;
}
.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}
.cart-empty h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.cart-empty p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cart-mercado-badge {
  margin-top: var(--space-md);
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  background: var(--color-white);
}
.cart-mercado-badge img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.cart-shipping-badge {
  margin-top: var(--space-sm);
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cart-shipping-badge .shipping-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cart-shipping-badge img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  background: var(--color-white);
  padding: 8px;
}

/* ==================== CART FORM ==================== */
.cart-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.cart-right {
  flex-shrink: 0;
}
.cart-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.cart-form-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.cart-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 139, 148, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.cart-security-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-light);
}
.security-icon {
  width: 28px;
  height: 28px;
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.cart-delivery-note {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  background: var(--color-accent-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-accent);
  margin-top: var(--space-sm);
}
.cart-delivery-note strong {
  color: var(--color-accent-dark);
}

/* ==================== CART ONE CLICK ==================== */
.cart-one-click {
  margin-top: var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}
.one-click-divider {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.cart-one-click .btn-b2b {
  width: 100%;
  background: var(--color-warning);
  color: var(--color-text);
  font-weight: 700;
  font-size: var(--font-size-sm);
  padding: 14px 20px;
  min-height: 48px;
}
.cart-one-click .btn-b2b:hover {
  background: #e6b84d;
  transform: translateY(-2px);
}
.one-click-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .offer-gallery {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
    margin: 0;
  }
  .offer-thumbnails {
    flex-direction: column;
  }
  .cart-container {
    flex-direction: row;
    align-items: flex-start;
  }
  .cart-right {
    width: 320px;
    flex-shrink: 0;
  }
  .cart-summary {
    width: 100%;
  }
}

/* ==================== CART SUMMARY PRICE & TIMER ==================== */
.cart-summary-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.price-real {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
  text-decoration: line-through;
  font-weight: 500;
}
.price-oferta {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.cart-timer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-accent-light);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  animation: timerPulse 2s infinite;
}
@keyframes timerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,139,148,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,139,148,0); }
}
.timer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.timer-display {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.timer-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timer-value {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ==================== SOCIAL TOAST NOTIFICATION ==================== */
.social-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  transform: translateY(200%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.social-toast.show {
  transform: translateY(0);
  pointer-events: auto;
}
.social-toast-inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.social-toast-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  text-transform: uppercase;
}
.social-toast-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.social-toast-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}
.social-toast-text strong {
  color: var(--color-accent-dark);
  font-weight: 700;
}
.social-toast-time {
  font-size: var(--font-size-xs);
  color: var(--color-success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.social-toast-status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: statusBlink 2s infinite;
  display: inline-block;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.social-toast-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.social-toast-close:hover {
  background: var(--color-accent);
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .social-toast {
    left: 30px;
    right: auto;
    bottom: 30px;
  }
  .social-toast-inner {
    margin: 0;
  }
}

/* ==================== WHATSAPP FLOAT BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
.whatsapp-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  background: var(--color-text);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--color-text);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
