/* =========================================
   MVSalta Landing CSS - Estilo Leiten
   ========================================= */

:root {
  --yellow: #feca0a;
  --yellow-dark: #e6b800;
  --red: #e31818;
  --red-dark: #c01212;
  --dark: #1a1a1a;
  --dark-mid: #333;
  --gray: #f5f5f5;
  --text: #111;
  --muted: #777;
  --border: #e5e5e5;
  --white: #fff;
  --purple: #7c3aed;
}

*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); margin: 0; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  padding: 6px 0;
}
.top-bar-left { opacity: 0.75; }
.top-bar-links { display: flex; gap: 16px; align-items: center; }
.top-bar-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .2s;
}
.top-bar-links a:hover { color: var(--yellow); }

/* ===== MAIN HEADER ===== */
.main-header {
  background: var(--yellow);
  padding: 14px 0;
}
.brand-logo {
  font-size: 2.6rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -1px;
  line-height: 1;
}
.brand-grupo { color: #000; font-weight: 800; }
.brand-mv { color: var(--red); font-weight: 900; }
.brand-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.6;
}
.badge-rental {
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 6px;
  letter-spacing: 1px;
}
.header-info-wrap { text-align: right; }
.sucursal-line { font-size: 0.82rem; font-weight: 500; color: #1a1a1a; }
.change-branch {
  color: var(--dark);
  font-size: 0.78rem;
  text-decoration: none;
  margin-left: 6px;
  font-weight: 600;
}
.header-info-row {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
  flex-wrap: wrap;
}
.header-info-row i { margin-right: 3px; }
.open-badge { 
  background: #0a7a3e; 
  color: #fff; 
  padding: 2px 8px; 
  border-radius: 2px; 
  font-size: 0.72rem; 
}

/* ===== NAV WHITE BAR ===== */
.nav-white-bar {
  background: #fff;
  border-bottom: 2px solid #ddd;
  position: relative;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: stretch;
  height: 68px;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-red-block {
  background: var(--red);
  color: #fff;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-red-block:hover { background: var(--red-dark); color: #fff; }
.nav-red-block::after {
  content: '';
  position: absolute;
  right: -18px; top: 0;
  border-top: 68px solid var(--red);
  border-right: 18px solid transparent;
  transition: border-top-color .2s;
}
.nav-red-block:hover::after { border-top-color: var(--red-dark); }
.nav-red-pre { font-size: 0.65rem; font-weight: 500; opacity: 0.85; margin: 0; }
.nav-red-main { font-size: 1.05rem; font-weight: 900; margin: 0; letter-spacing: 0.5px; }

.nav-dropdowns { display: flex; align-items: stretch; }

.nav-dropdown-item {
  padding: 0 24px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border-right: 1px solid #eee;
  position: relative;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-dropdown-item:hover { background: var(--gray); }
.small-label { font-size: 0.62rem; color: var(--muted); margin-bottom: 1px; }
.main-label { font-size: 0.88rem; font-weight: 800; color: #000; display: flex; align-items: center; gap: 6px; white-space: nowrap; }

/* mega menu */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 68px; left: 0;
  background: #fff;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
  z-index: 999;
  padding: 24px;
  gap: 32px;
  min-width: 600px;
}
.nav-dropdown-item:hover .mega-dropdown { display: flex; }
.mega-col { min-width: 150px; }
.mega-col h6 { font-weight: 800; font-size: 0.75rem; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; letter-spacing: 0.5px; }
.mega-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: color .15s, padding-left .15s;
}
.mega-col a:hover { color: var(--red); padding-left: 5px; }

.nav-search {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.search-box {
  display: flex;
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s;
}
.search-box:focus-within { border-color: var(--yellow); }
.search-box input {
  border: none; outline: none;
  padding: 9px 14px;
  width: 100%; font-size: 0.85rem;
}
.search-box button {
  background: var(--yellow); border: none;
  padding: 0 16px; cursor: pointer; font-size: 1rem;
  transition: background .2s;
}
.search-box button:hover { background: var(--yellow-dark); }

.nav-platform {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #eee;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-platform:hover { background: var(--gray); }
.nav-platform .main-label { font-size: 0.78rem; color: #000; line-height: 1.2; }

/* ===== HERO CAROUSEL ===== */
.hero-slide {
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: #fff;
  margin-left: 6%;
  max-width: 520px;
}
.hero-tag {
  background: var(--yellow);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-content p { font-size: 1.05rem; opacity: .9; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--yellow); color: #000;
  font-weight: 800; font-size: 0.85rem;
  padding: 12px 28px; border-radius: 2px;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.5px; transition: background .2s, transform .2s;
}
.btn-hero-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); color: #000; }
.btn-hero-secondary {
  background: transparent; color: #fff;
  font-weight: 700; font-size: 0.85rem;
  padding: 12px 28px; border-radius: 2px;
  text-decoration: none; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.6);
  transition: background .2s, border-color .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* Triangles */
.hero-yellow-triangle, .hero-red-triangle {
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 120px solid var(--yellow);
  border-left: 280px solid transparent;
}
.hero-red-triangle { border-bottom-color: var(--red); }

/* ===== PRODUCT TABS ===== */
.prod-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #e5e5e5;
}
.prod-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.prod-tab:hover { color: var(--dark); }
.prod-tab.active { color: var(--dark); border-bottom-color: var(--yellow); }
.prod-tab-soon { color: var(--purple) !important; }
.prod-tab-soon.active { border-bottom-color: var(--purple) !important; }

/* ===== COMING SOON CARD ===== */
.card-coming-soon {
  border: 1.5px dashed #c4b5fd;
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
}
.card-coming-soon:hover {
  border-color: var(--purple);
  box-shadow: 0 10px 28px rgba(124,58,237,.15);
}
.badge-coming-soon {
  position: absolute; top: 10px; left: 10px;
  background: var(--purple);
  color: #fff;
  font-size: 0.65rem; font-weight: 800;
  padding: 4px 10px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.5px;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,100% { opacity:1; }
  50% { opacity:.7; }
}
.coming-soon-eta {
  position: absolute; top: 36px; left: 10px;
  background: rgba(124,58,237,.12);
  color: var(--purple);
  font-size: 0.6rem; font-weight: 700;
  padding: 3px 9px; border-radius: 2px;
  letter-spacing: 0.3px;
}

/* img blur for coming soon */
.img-prox-wrap { position: relative; }
.img-prox { filter: blur(3px) grayscale(30%); opacity: .7; transition: filter .3s; }
.card-coming-soon:hover .img-prox { filter: blur(1.5px) grayscale(0%); opacity: .85; }
.img-prox-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--purple); opacity: .6;
  pointer-events: none;
}

/* Price coming soon */
.price-prox { font-size: 0.95rem !important; color: var(--purple) !important; font-style: italic; }

/* Notify button */
.btn-notify {
  background: var(--purple) !important;
}
.btn-notify:hover { background: #6d28d9 !important; color: #fff; }

/* Prod items hidden/visible during filter */
.prod-item { transition: opacity .25s, transform .25s; }
.prod-item.hidden { display: none; }
.cat-strip { background: #fff; border-bottom: 2px solid #eee; padding: 0; overflow: hidden; }
.cat-strip-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  padding: 0;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-link {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 22px; text-decoration: none; color: var(--dark-mid);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3px; gap: 6px; flex-shrink: 0;
  border-right: 1px solid #eee;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.cat-link i { font-size: 1.3rem; color: var(--muted); transition: color .2s; }
.cat-link:hover, .cat-link.active {
  background: var(--yellow); color: #000;
}
.cat-link:hover i, .cat-link.active i { color: #000; }

/* ===== SECTION STYLES ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-size: 1.65rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.3px;
}
.section-title .highlight { color: var(--red); }
.section-sub { color: var(--muted); font-size: 0.88rem; margin: 4px 0 0; }
.btn-ver-mas {
  background: transparent; color: var(--dark);
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  border: 2px solid #ddd; padding: 8px 18px; border-radius: 3px;
  transition: border-color .2s, background .2s; white-space: nowrap;
}
.btn-ver-mas:hover { border-color: var(--yellow); background: var(--yellow); color: #000; }

/* ===== PRODUCT CARDS ===== */
.product-card {
  border: 1.5px solid #e8e8e8;
  background: #fff;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  border-color: var(--yellow);
}
.product-card.out-of-stock { opacity: 0.65; }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.65rem; font-weight: 800;
  padding: 3px 9px; text-transform: uppercase; letter-spacing: 0.5px;
  border-radius: 2px;
}
.badge-stock { background: #0a7a3e; color: #fff; }
.badge-warn { background: var(--yellow); color: #000; }
.badge-out { background: var(--red); color: #fff; }
.product-img-wrap { padding: 20px 20px 0; }
.product-img { width: 100%; height: 180px; object-fit: cover; display: block; border-radius: 1px; }
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex-grow: 1; }
.product-sku { font-size: 0.7rem; color: var(--muted); margin-bottom: 5px; }
.product-name {
  font-size: 0.9rem; font-weight: 700; color: var(--text);
  text-decoration: none; line-height: 1.35; margin-bottom: 12px;
  display: block; transition: color .2s; flex-grow: 1;
}
.product-name:hover { color: var(--red); }
.product-price-wrap { margin-bottom: 14px; }
.product-price { display: block; font-size: 1.25rem; font-weight: 900; color: var(--red); }
.product-mode { font-size: 0.72rem; color: var(--muted); }
.btn-cart {
  width: 100%; background: var(--dark); color: #fff;
  border: none; padding: 11px; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; transition: background .2s; border-radius: 2px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  text-decoration: none;
}
.btn-cart:hover { background: var(--yellow); color: #000; }
.btn-cart-disabled { background: #ccc; cursor: not-allowed; }
.btn-cart-disabled:hover { background: #ccc; color: #fff; }
.btn-alq { background: var(--red); }
.btn-alq:hover { background: var(--red-dark); color: #fff; }

/* Rental card badge */
.rental-card { border-top: 3px solid var(--yellow); }
.rental-label {
  position: absolute; top: 10px; right: 10px;
  background: var(--yellow); color: #000;
  font-size: 0.6rem; font-weight: 900; padding: 2px 7px;
  border-radius: 2px; letter-spacing: 1px;
}

/* ===== WHY US SECTION ===== */
.why-strip { background: #fff; }
.why-card { padding: 28px 20px; }
.why-icon {
  width: 64px; height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem; color: #000;
  transition: transform .25s;
}
.why-card:hover .why-icon { transform: scale(1.1); }
.why-icon.why-red { background: var(--red); color: #fff; }
.why-card h5 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ===== BRANDS ===== */
.brands-section { background: #fff; }
.brands-ticker-wrap { overflow: hidden; position: relative; }
.brands-ticker {
  display: flex;
  gap: 0;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}
.brands-ticker:hover { animation-play-state: paused; }
.brand-item {
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--muted);
  border-right: 1px solid #eee;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color .2s, background .2s;
  cursor: default;
}
.brand-item:hover { color: var(--red); background: var(--gray); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== EVENTS PREMIUM ===== */
.event-card-premium {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all .35s ease;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,.03);
}
.event-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border-color: var(--yellow);
}
.event-card-top {
  height: 120px;
  background: var(--yellow);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.event-badge {
  position: absolute; top: 15px; left: 15px;
  background: var(--dark); color: var(--yellow);
  font-size: 0.62rem; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.8px;
}
.event-card-date {
  background: #fff;
  width: 70px; height: 70px;
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border: 2px solid var(--dark);
}
.event-card-date .day { font-size: 1.8rem; font-weight: 900; line-height: 1; color: #000; }
.event-card-date .month { font-size: 0.65rem; font-weight: 800; color: var(--red); margin-top: 2px; }

.event-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.event-card-body h5 { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; line-height: 1.4; color: var(--dark); }
.event-card-body p { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.btn-event-detail {
  font-size: 0.85rem; font-weight: 700; color: var(--red);
  text-decoration: none; display: inline-flex; align-items: center;
  transition: gap .2s;
}
.btn-event-detail:hover { color: var(--dark); gap: 8px; }


/* ===== BRANCHES GLASSMorphism (Black Edition) ===== */
.branch-card-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 24px;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.branch-card-glass::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--yellow); opacity: 0; transition: opacity .3s;
}
.branch-card-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
}
.branch-card-glass.active { border-color: var(--yellow); }
.branch-card-glass.active::before { opacity: 1; }

.branch-card-icon {
  width: 44px; height: 44px;
  background: rgba(254, 202, 10, 0.1);
  color: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 20px;
}
.branch-card-glass h4 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.branch-card-glass .addr { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 20px; min-height: 48px; }
.branch-contact-info { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.branch-contact-info .c-item { font-size: 0.78rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 10px; }
.branch-contact-info .c-item i { width: 14px; color: var(--yellow); opacity: 0.8; }

.btn-wa-compact {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px;
  background: #fff; color: #000;
  border-radius: 8px; font-weight: 800; font-size: 0.8rem;
  text-decoration: none; transition: all .3s;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-wa-compact:hover { background: var(--yellow); transform: translateY(-2px); color: #000; }
.branch-card-glass.active .btn-wa-compact { background: var(--yellow); }


/* ===== CTA STRIP ===== */
.cta-section { background: var(--yellow); padding: 44px 0; }
.cta-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
}
.cta-inner h3 { font-size: 1.5rem; font-weight: 900; margin: 0; }
.cta-inner p { margin: 6px 0 0; font-size: 0.9rem; color: #333; }
.cta-btns { display: flex; gap: 12px; }
.cta-wa {
  background: #25d366; color: #fff;
  font-size: 0.9rem; font-weight: 800;
  padding: 13px 26px; border-radius: 3px;
  text-decoration: none; transition: background .2s;
  display: flex; align-items: center;
}
.cta-wa:hover { background: #1eb756; color: #fff; }
.cta-contact {
  background: var(--dark); color: #fff;
  font-size: 0.9rem; font-weight: 800;
  padding: 13px 26px; border-radius: 3px;
  text-decoration: none; transition: background .2s;
  display: flex; align-items: center;
}
.cta-contact:hover { background: #000; color: #fff; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: #1a1a1a; color: #fff;
  padding: 56px 0;
}
.newsletter-section h3 { font-size: 1.4rem; font-weight: 900; }
.newsletter-section p { color: rgba(255,255,255,.6); }
.newsletter-form { display: flex; gap: 0; border-radius: 3px; overflow: hidden; }
.newsletter-form input {
  flex-grow: 1; border: none; padding: 13px 16px;
  font-size: 0.88rem; outline: none;
}
.newsletter-form button {
  background: var(--yellow); color: #000;
  border: none; padding: 13px 24px;
  font-size: 0.85rem; font-weight: 800;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--yellow-dark); }
.newsletter-social { display: flex; align-items: center; gap: 12px; }
.newsletter-social span { font-size: 0.82rem; color: rgba(255,255,255,.5); }
.newsletter-social a {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem; text-decoration: none;
  transition: color .2s;
}
.newsletter-social a:hover { color: var(--yellow); }

/* ===== FOOTER ===== */
.main-footer {
  background: #000; color: rgba(255,255,255,0.85);
  padding-top: 56px; padding-bottom: 10px;
}
.footer-brand {
  display: flex; align-items: center; margin-bottom: 14px;
  font-size: 2.2rem; font-weight: 900; letter-spacing: -1px;
}
.footer-brand .brand-grupo { color: #fff; }
.footer-brand .brand-mv { color: #fff; }
.footer-brand .rental-badge { background: var(--yellow); color: #000; margin-left: 10px; }

.main-footer p.text-muted { color: rgba(255,255,255,0.6) !important; font-size: 0.88rem; }
.footer-cert { display: flex; flex-direction: column; gap: 5px; font-size: 0.72rem; color: var(--yellow); }
.footer-heading { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { font-size: 0.8rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-list i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-contact-list a:hover { color: var(--yellow); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25d366; color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 8px 14px; border-radius: 3px; text-decoration: none;
  transition: background .2s;
}
.footer-wa:hover { background: #1eb756; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 0.75rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--yellow); }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed; bottom: 30px; right: 30px;
  background: #0a7a3e; color: #fff;
  padding: 14px 22px; border-radius: 4px;
  font-size: 0.88rem; font-weight: 600;
  display: flex; align-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transform: translateY(100px); opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s;
  z-index: 9999;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-inner { flex-direction: column; height: auto; }
  .nav-red-block::after { display: none; }
  .nav-dropdowns { flex-wrap: wrap; width: 100%; }
  .hero-slide { height: 380px; }
  .hero-content h1 { font-size: 2rem; }
  .header-info-wrap { text-align: left; margin-top: 12px; }
  .header-info-row { justify-content: flex-start; }
  .top-bar-left { display: none; }
  .mega-dropdown { position: static; box-shadow: none; border: none; border-top: 1px solid #eee; }
}
@media (max-width: 767px) {
  .main-header { padding: 12px 0; }
  .brand-logo { font-size: 2rem; }
  .hero-slide { height: 300px; }
  .hero-content h1 { font-size: 1.6rem; }
  .cta-inner { text-align: center; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
