/* ===== SG INSTALACIONES - Demo 2 - Elegant B&W + Gold ===== */
:root {
  --primary: #111111;
  --primary-light: #2C2C2C;
  --primary-dark: #000000;
  --accent: #B8964E;
  --accent-light: #D4B06A;
  --accent-dark: #96783E;
  --dark: #0A0A0A;
  --gray-900: #1A1A1A;
  --gray-700: #555555;
  --gray-500: #8A8A8A;
  --gray-300: #D5D5D5;
  --gray-100: #F4F4F4;
  --light: #FAFAFA;
  --white: #FFFFFF;
  --success: #4A7C59;
  --danger: #9B3B3B;
  --whatsapp: #25D366;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-300);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit;
  border: none; outline: none;
}
button { cursor: pointer; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; position: relative; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--gray-900); }
.section-primary { background: var(--primary); color: var(--white); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  background: rgba(184,150,78,0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-300);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--gray-300);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===== GEOMETRIC SHAPES (DECORATIVE) ===== */
.geo-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.geo-1 { width: 300px; height: 300px; background: var(--accent); top: -50px; right: -80px; }
.geo-2 { width: 200px; height: 200px; background: var(--primary-light); bottom: -60px; left: -60px; }
.geo-3 { width: 150px; height: 150px; background: var(--accent); top: 30%; left: 5%; border-radius: 30%; transform: rotate(45deg); }
.geo-4 { width: 100px; height: 100px; background: var(--primary); bottom: 20%; right: 10%; border-radius: 20%; transform: rotate(30deg); }
.geo-triangle {
  position: absolute;
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--accent);
  opacity: 0.04;
  pointer-events: none;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img {
  height: 55px;
  width: auto;
  filter: brightness(1.4) contrast(1.1);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-300);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(184,150,78,0.12);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--gray-300);
  transition: var(--transition);
}
.nav-cart:hover { background: rgba(255,255,255,0.2); }
.nav-cart svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-badge.show { display: flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gray-300);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><path fill="%23E67E22" fill-opacity="0.05" d="M0,224L60,218.7C120,213,240,203,360,218.7C480,235,600,277,720,277.3C840,277,960,235,1080,213.3C1200,192,1320,192,1380,192L1440,192L1440,600L1380,600C1320,600,1200,600,1080,600C960,600,840,600,720,600C600,600,480,600,360,600C240,600,120,600,60,600L0,600Z"/></svg>') no-repeat bottom center;
  background-size: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--accent-light);
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent-light); }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  margin: 0 auto 32px;
  line-height: 1.7;
  max-width: 600px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 4px;
}
.hero-strip {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  padding-bottom: 30px;
}
.hero-strip-track {
  display: flex;
  gap: 16px;
  animation: heroStripScroll 30s linear infinite;
  width: max-content;
}
.hero-strip-track img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.hero-strip:hover .hero-strip-track {
  animation-play-state: paused;
}
@keyframes heroStripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-geo-1 {
  position: absolute;
  width: 400px; height: 400px;
  border: 3px solid rgba(184,150,78,0.15);
  border-radius: 50%;
  top: -100px; right: -150px;
}
.hero-geo-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(184,150,78,0.08);
  border-radius: 30%;
  bottom: 10%; left: -5%;
  transform: rotate(45deg);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-900);
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--gray-300);
  font-size: 0.95rem;
}
.trust-item svg {
  width: 32px; height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== HOW WE WORK (3 Steps) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.step-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--gray-900);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.step-card p {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}
.step-connector {
  display: none;
}
@media (min-width: 769px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 68px;
    right: -22px;
    width: 44px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    z-index: 1;
  }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--gray-900);
  padding: 8px;
}
.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body .btn {
  margin-top: auto;
  align-self: center;
}
.service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.service-body p {
  color: var(--gray-300);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-tag {
  display: inline-block;
  background: rgba(184,150,78,0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.service-tag-green {
  background: rgba(74,124,89,0.1);
  color: var(--success);
}

/* ===== PRODUCTS TEASER ===== */
.products-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.product-teaser {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.product-teaser:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-teaser-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--gray-900);
  padding: 8px;
}
.product-teaser-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-teaser-body .btn {
  margin-top: auto;
  align-self: center;
  justify-content: center;
  text-align: center;
}
.product-teaser-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.product-teaser-body p {
  color: var(--gray-300);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ===== COVERAGE SECTION ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.coverage-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}
.coverage-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.coverage-card svg {
  width: 36px; height: 36px;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.coverage-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
.coverage-card p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-location {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}
.faq-item {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  width: 100%;
  text-align: left;
  color: var(--white);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== VIDEOS GRID ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.videos-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 620px;
  justify-content: center;
}
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 9/16;
  cursor: pointer;
}
.video-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.video-play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-left: 3px;
}
.video-play-btn:hover {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-play-btn:hover svg {
  color: var(--white);
}
.video-card.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}
.video-card:hover .video-play-btn {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .video-play-btn {
    width: 44px;
    height: 44px;
  }
  .video-play-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .videos-grid {
    gap: 8px;
  }
  .video-play-btn {
    width: 36px;
    height: 36px;
  }
  .video-play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 80px;
  margin-bottom: 16px;
  filter: brightness(1.4) contrast(1.1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-social a svg { width: 20px; height: 20px; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--accent); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-contact li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}
.footer-legal {
  font-size: 0.78rem;
  opacity: 0.5;
  margin-top: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 32px; height: 32px; color: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== SHOP / TIENDA ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
}
.shop-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 30px 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 79px;
  z-index: 50;
}
.cat-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  color: var(--gray-300);
  transition: var(--transition);
  border: 2px solid transparent;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 0;
}
.product-card {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.badge-warranty { background: var(--success); color: var(--white); }
.badge-free-install { background: var(--primary); color: var(--white); }
.badge-new { background: var(--accent); color: var(--white); }
.product-card-img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: var(--gray-900);
  padding: 8px;
  transition: var(--transition);
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-img-wrapper {
  overflow: hidden;
  position: relative;
}
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.product-card-body .product-desc {
  font-size: 0.88rem;
  color: var(--gray-300);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 16px;
}
.product-price small {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 400;
}
.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.product-card-actions .btn { flex: 1; justify-content: center; }

/* ===== CART ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}
.cart-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
}
.cart-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.cart-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.cart-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: middle;
}
.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--gray-900);
  border-radius: var(--radius-sm);
}
.cart-item-name { font-weight: 700; font-size: 0.95rem; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}
.cart-qty button:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.cart-qty span { font-weight: 700; min-width: 30px; text-align: center; }
.cart-remove {
  background: none;
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.cart-remove:hover { text-decoration: underline; }
.cart-summary {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  padding: 30px;
  max-width: 400px;
  margin-left: auto;
}
.cart-summary h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.cart-summary-row.total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 16px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty svg { width: 80px; height: 80px; color: var(--gray-500); margin-bottom: 20px; }
.cart-empty h3 { font-size: 1.3rem; color: var(--gray-300); margin-bottom: 12px; }

/* ===== CHECKOUT ===== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--gray-300);
}
.form-group label span { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--gray-900);
  color: var(--white);
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,150,78,0.15);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23566573' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.08);
}
.form-check:hover { border-color: var(--accent); }
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 20px; height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-check label { cursor: pointer; font-weight: 600; }

/* ===== CALENDAR ===== */
.calendar-widget {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--primary);
  color: var(--white);
}
.calendar-header h3 { font-size: 1.1rem; font-weight: 700; }
.calendar-nav {
  display: flex;
  gap: 8px;
}
.calendar-nav button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.calendar-nav button:hover { background: rgba(255,255,255,0.3); }
.calendar-grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.calendar-day-name {
  padding: 12px 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
}
.calendar-day {
  padding: 10px 4px;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 2px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.calendar-day:hover { background: rgba(255,255,255,0.1); }
.calendar-day.today {
  border: 2px solid var(--accent);
  font-weight: 700;
}
.calendar-day.selected {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
}
.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-day.empty { cursor: default; }
.calendar-day.empty:hover { background: transparent; }
.time-slots {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.time-slots h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}
.time-slot {
  padding: 10px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-300);
}
.time-slot:hover { border-color: var(--accent); color: var(--accent); }
.time-slot.selected {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.time-slot.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

/* ===== GALLERY / LIGHTBOX ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--gray-900);
  padding: 8px;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: var(--transition);
}
.gallery-item:hover::after {
  background: rgba(0,0,0,0.2);
}

/* ===== ORDER CONFIRMATION MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-icon {
  width: 80px; height: 80px;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon svg { width: 40px; height: 40px; color: var(--success); }
.modal h2 { font-size: 1.5rem; margin-bottom: 12px; }
.modal p { color: var(--gray-300); margin-bottom: 24px; line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  background: var(--gray-900);
  padding: 8px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-card .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-top: 4px;
}

/* ===== BOOKING FORM ===== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { padding: 0 24px; }
  .hero-strip-track img { width: 280px; height: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .service-body { text-align: center; }
  .service-body .btn { align-self: center; }
  .section { padding: 50px 0; }
  .nav-logo img { height: 42px; }
  .nav-menu {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .hamburger { display: flex; }
  .nav { padding: 10px 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-content { padding: 0 20px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-strip-track img { width: 240px; height: 180px; }
  .hero-strip { margin-top: 30px; padding-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer h4::after { left: 50%; transform: translateX(-50%); }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto 16px; }
  .footer-links { text-align: center; }
  .trust-items { gap: 24px; }
  .trust-item { font-size: 0.85rem; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-teaser-grid { grid-template-columns: 1fr 1fr; }

  /* Cart table responsive */
  .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
  }
  .cart-table thead { display: none; }
  .cart-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 16px;
  }
  .cart-table td {
    padding: 8px 0;
    border: none;
    text-align: right;
  }
  .cart-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    font-size: 0.85rem;
  }
  .cart-item-info { justify-content: flex-end; }
  .cart-summary { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 16px; }
  .hero-title { font-size: 1.8rem; }
  .hero-badge { font-size: 0.8rem; }
  .hero-strip-track img { width: 200px; height: 150px; }
  .hero-strip { margin-top: 20px; padding-bottom: 16px; }
  .hero-strip-track { gap: 10px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .products-teaser-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.scroll-top svg { width: 24px; height: 24px; }

/* ===== GUARANTEE BANNER ===== */
.guarantee-banner {
  background: linear-gradient(90deg, var(--success), #5A9A6B);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.guarantee-banner svg { width: 20px; height: 20px; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-900);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-info-card svg {
  width: 24px; height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* New services highlight */
.new-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== SERVICES PAGE DETAIL ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-detail-card {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-detail-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--gray-900);
  padding: 8px;
}
.service-detail-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-detail-body .btn {
  margin-top: auto;
  align-self: flex-start;
}
.service-detail-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-detail-body p {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-detail-body ul {
  margin-bottom: 20px;
}
.service-detail-body ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.93rem;
  color: var(--gray-300);
}
.service-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Notification toast */
.toast {
  position: fixed;
  top: 100px;
  right: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateX(0); }
.toast svg { width: 20px; height: 20px; color: var(--success); }
