/* ==========================================================================
   MOTOPARTES VENEZUELA C.A. — MODERN INDUSTRIAL COMMERCE DESIGN SYSTEM
   Hoja de estilos principal: motopartes.css
   ========================================================================== */

:root {
  /* Identidad Cromatica Oficial */
  --mp-navy: #042854;
  --mp-navy-dark: #021a38;
  --mp-navy-light: #0a3a78;
  --mp-cyan: #47B2E4;
  --mp-cyan-soft: rgba(71, 178, 228, 0.12);
  --mp-blue-btn: #1D4ED8;
  --mp-blue-btn-hover: #1E40AF;
  --mp-blue-btn-soft: rgba(29, 78, 216, 0.14);
  --mp-blue-btn-shadow: rgba(29, 78, 216, 0.35);
  --mp-blue-btn-shadow-hover: rgba(29, 78, 216, 0.45);
  --mp-yellow: #FFB000;
  --mp-yellow-hover: #e69e00;
  --mp-yellow-soft: rgba(255, 176, 0, 0.14);
  --mp-whatsapp: #25D366;
  --mp-whatsapp-hover: #20BA5A;
  
  /* Superficies y Neutros */
  --mp-bg: #F7F8FA;
  --mp-white: #FFFFFF;
  --mp-text: #172033;
  --mp-text-secondary: #334155;
  --mp-muted: #667085;
  --mp-border: #E4E7EB;
  --mp-border-light: #EEF1F4;
  
  /* Tipografia Comercial e Industrial */
  --mp-font-heading: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mp-font-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Radios y Sombras */
  --mp-radius-sm: 6px;
  --mp-radius-md: 10px;
  --mp-radius-lg: 16px;
  --mp-radius-pill: 9999px;
  --mp-shadow-xs: 0 1px 3px rgba(4, 40, 84, 0.05);
  --mp-shadow-card: 0 2px 8px rgba(4, 40, 84, 0.06);
  --mp-shadow-hover: 0 10px 25px rgba(4, 40, 84, 0.1);
  --mp-shadow-lg: 0 16px 36px rgba(4, 40, 84, 0.14);
}

/* ==========================================================================
   RESET & ISOLATION OF LEGACY SCI-FI / DARK OVERLAYS
   ========================================================================== */

html {
  width: 100% !important;
  height: auto !important;
  min-height: 100% !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
  scroll-behavior: smooth;
}

body {
  width: 100% !important;
  height: auto !important;
  min-height: 100% !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
  background-color: var(--mp-bg) !important;
  color: var(--mp-text) !important;
  font-family: var(--mp-font-body) !important;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

#app, #dynamic-themes-app, #app[data-spa="false"], body.woocommerce #app[data-spa="false"], body.woocommerce-page #app[data-spa="false"] {
  width: 100% !important;
  height: auto !important;
  min-height: 100vh !important;
  position: relative !important;
  overflow: visible !important;
}

.standard-page-container,
.woocommerce-page-container,
body.woocommerce,
body.woocommerce-page,
body.search,
body.search-results,
body.archive {
  height: auto !important;
  overflow-y: visible !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--mp-font-heading) !important;
  color: var(--mp-navy);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

/* Desactivacion estricta de canvas y particulas heredadas */
#bgCanvas,
#transitionOverlay,
#transitionCanvas,
.canvas-background,
.particle {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mp-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* ==========================================================================
   HEADER DE DOS NIVELES
   ========================================================================== */

.mp-site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background-color: var(--mp-white);
  box-shadow: 0 4px 18px rgba(4, 40, 84, 0.08);
  width: 100%;
}

/* Soporte para la barra de administración de WordPress cuando el usuario está conectado */
.admin-bar .mp-site-header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  .admin-bar .mp-site-header {
    top: 46px !important;
  }
}

/* Nivel 1: Barra Superior Navy */
.mp-topbar {
  background-color: var(--mp-navy);
  color: #d1d9e6;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-topbar .mp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mp-topbar-tagline {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.mp-topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mp-topbar-item {
  color: #e2e8f0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.mp-topbar-item:hover {
  color: #60a5fa;
}

.mp-topbar-item svg {
  flex-shrink: 0;
}

.mp-topbar-hours {
  color: #bfdbfe;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(13, 110, 253, 0.15);
  border: 1px solid rgba(13, 110, 253, 0.3);
  padding: 3px 10px;
  border-radius: 4px;
}

.mp-topbar-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--mp-blue-btn);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mp-topbar-wa-badge:hover {
  background-color: var(--mp-blue-btn-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Nivel 2: Barra Principal Blanca */
.mp-navbar-main {
  background-color: var(--mp-white);
  padding: 12px 0;
}

.mp-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mp-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mp-brand-logo img {
  height: var(--mp-logo-height, 44px);
  width: auto;
  object-fit: contain;
  display: block;
}

.mp-nav-menu-wrap {
  display: flex;
  align-items: center;
}

.mp-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.mp-nav-list li a {
  text-decoration: none;
  font-family: var(--mp-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mp-navy);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.mp-nav-list li a:hover,
.mp-nav-list li.current-menu-item a,
.mp-nav-list li.mp-nav-active a {
  color: var(--mp-navy);
}

.mp-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--mp-yellow);
  transition: width 0.25s ease;
}

.mp-nav-list li a:hover::after,
.mp-nav-list li.current-menu-item a::after,
.mp-nav-list li.mp-nav-active a::after {
  width: 100%;
}

.mp-navbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mp-nav-search-form {
  position: relative;
  width: 230px;
}

.mp-nav-search-input {
  width: 100%;
  padding: 10px 38px 10px 14px;
  font-family: var(--mp-font-body);
  font-size: 0.88rem;
  color: var(--mp-text);
  background-color: #F1F3F5;
  border: 1px solid #E2E6EA;
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mp-nav-search-input:focus {
  border-color: var(--mp-navy);
  background-color: var(--mp-white);
  box-shadow: 0 0 0 3px rgba(4, 40, 84, 0.08);
}

.mp-nav-search-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--mp-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.mp-nav-search-submit:hover {
  color: var(--mp-navy);
}

.mp-btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--mp-blue-btn);
  color: #FFFFFF;
  font-family: var(--mp-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--mp-blue-btn-shadow);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.mp-btn-cta-whatsapp svg {
  color: #FFFFFF;
  fill: currentColor;
}

.mp-btn-cta-whatsapp:hover {
  background-color: var(--mp-blue-btn-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--mp-blue-btn-shadow-hover);
}

.mp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--mp-navy);
  cursor: pointer;
  padding: 6px;
}

.mp-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background-color: var(--mp-white);
  z-index: 2000;
  box-shadow: -4px 0 20px rgba(4, 40, 84, 0.15);
  padding: 24px 20px;
  flex-direction: column;
  overflow-y: auto;
}

.mp-mobile-drawer.is-open {
  display: flex;
}

.mp-mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(4, 40, 84, 0.6);
  z-index: 1999;
}

.mp-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mp-border);
}

.mp-mobile-drawer-close {
  background: none;
  border: none;
  color: var(--mp-navy);
  cursor: pointer;
  padding: 4px;
}

.mp-mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.mp-mobile-nav-list li {
  border-bottom: 1px solid var(--mp-border-light);
}

.mp-mobile-nav-list li a {
  display: block;
  padding: 12px 0;
  font-family: var(--mp-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mp-navy);
  text-decoration: none;
}

.mp-mobile-nav-list li a:hover {
  color: var(--mp-yellow-hover);
}

.mp-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   HERO ESTATICO CON BARRA DE CONFIANZA HORIZONTAL
   ========================================================================== */

.mp-hero-section {
  background-color: var(--mp-white);
  border-bottom: 1px solid var(--mp-border);
  padding: clamp(48px, 5vw, 72px) 0 clamp(40px, 4vw, 56px) 0;
}

.mp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 4.5vw, 64px);
}

.mp-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mp-hero-eyebrow {
  font-family: var(--mp-font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mp-yellow);
  margin-bottom: 12px;
}

.mp-hero-h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  color: var(--mp-navy);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.mp-hero-description {
  font-size: 1.15rem;
  color: var(--mp-muted);
  line-height: 1.65;
  margin: 0 0 32px 0;
  max-width: 620px;
}

.mp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--mp-blue-btn);
  color: #FFFFFF;
  font-family: var(--mp-font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 3px 12px var(--mp-blue-btn-shadow);
  transition: all 0.25s ease;
}

.mp-btn-primary:hover {
  background-color: var(--mp-blue-btn-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--mp-blue-btn-shadow-hover);
}

.mp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--mp-navy);
  font-family: var(--mp-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid var(--mp-navy);
  text-decoration: none;
  transition: all 0.25s ease;
}

.mp-btn-secondary:hover {
  background-color: var(--mp-navy);
  color: var(--mp-white);
  transform: translateY(-2px);
}

.mp-btn-wa-hero {
  background-color: #FFFFFF !important;
  border: 1.5px solid #D1D5DB !important;
  color: var(--mp-navy) !important;
}

.mp-btn-wa-hero svg {
  color: #25D366;
}

.mp-btn-wa-hero:hover {
  border-color: var(--mp-navy) !important;
  background-color: #F8FAFC !important;
  color: var(--mp-navy) !important;
}

/* ==========================================================================
   HERO SLIDER: TARJETAS DE NAVEGACIÓN Y PROGRESO
   ========================================================================== */

.mp-hero-nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 32px;
  width: 100%;
}

.mp-hero-nav-card {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid var(--mp-border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  font-family: inherit;
  width: 100%;
  box-shadow: 0 2px 8px rgba(4, 40, 84, 0.04);
  outline: none;
}

.mp-hero-nav-card:hover {
  border-color: var(--mp-blue-btn);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(4, 40, 84, 0.08);
}

.mp-hero-nav-card.is-active {
  border-color: var(--mp-orange);
  background: #FFFBF5;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
  transform: translateY(-2px);
}

.mp-nav-card-icon {
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.mp-nav-card-label {
  font-family: var(--mp-font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--mp-navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.mp-hero-nav-card.is-active .mp-nav-card-label {
  color: var(--mp-navy);
}

.mp-nav-card-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 152, 0, 0.2);
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}

.mp-nav-card-progress-bar {
  display: block;
  height: 100%;
  background: var(--mp-orange);
  transition: width 50ms linear;
}

/* 4 INDICADORES DE CONFIANZA DISTRIBUIDOS A ANCHO COMPLETO */
.mp-hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(40px, 4.5vw, 56px);
  padding-top: clamp(28px, 3vw, 36px);
  border-top: 1px solid var(--mp-border);
  width: 100%;
}

.mp-hero-trust-col {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background-color: #FAFBFD;
  border: 1px solid var(--mp-border-light);
  border-radius: var(--mp-radius-md);
  transition: all 0.25s ease;
}

.mp-hero-trust-col:hover {
  background-color: var(--mp-white);
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(4, 40, 84, 0.05);
}

.mp-hero-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--mp-radius-md);
  background-color: rgba(4, 40, 84, 0.06);
  color: var(--mp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mp-hero-trust-col:hover .mp-hero-trust-icon {
  background-color: var(--mp-navy);
  color: var(--mp-yellow);
}

.mp-hero-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mp-hero-trust-text strong {
  font-family: var(--mp-font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--mp-navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mp-hero-trust-text span {
  font-size: 0.78rem;
  color: var(--mp-muted);
  margin-top: 2px;
}

.mp-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mp-hero-media-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.mp-hero-dot-grid {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

.mp-hero-media-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--mp-white);
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(4, 40, 84, 0.08);
}

.mp-hero-media-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 380px;
  max-height: 520px;
  overflow: hidden;
  background: #FFFFFF;
}

.mp-hero-media-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mp-hero-media-slide img,
.mp-hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #FFFFFF;
}

/* Transiciones fluidas Alpine.js */
.mp-fade-enter {
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mp-fade-enter-start {
  opacity: 0;
  transform: scale(0.96);
}
.mp-fade-enter-end {
  opacity: 1;
  transform: scale(1);
}

/* Controles flotantes de diapositivas */
.mp-hero-media-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 40, 84, 0.88);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.mp-hero-nav-arrow {
  background: transparent;
  border: none;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.mp-hero-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: scale(1.1);
}

.mp-hero-counter-badge {
  font-family: var(--mp-font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
  letter-spacing: 0.05em;
  user-select: none;
}

.mp-hero-counter-sep {
  opacity: 0.5;
  font-size: 0.72rem;
}

/* ==========================================================================
   BUSCADOR PRINCIPAL PRIORITARIO
   ========================================================================== */

.mp-search-section {
  padding: 60px 0 40px 0;
  background-color: var(--mp-navy);
  background-image: radial-gradient(circle at 50% 30%, rgba(71, 178, 228, 0.1) 0%, rgba(2, 26, 56, 0) 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-search-card {
  background-color: #073670;
  border: 1px solid #134785;
  border-radius: var(--mp-radius-lg);
  padding: 44px 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.mp-search-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px 0;
}

.mp-search-subtitle {
  font-size: 1.05rem;
  color: #93c5fd;
  margin: 0 auto 28px auto;
  max-width: 620px;
}

.mp-search-form {
  display: flex;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 24px auto;
}

.mp-search-input-wrap {
  position: relative;
  flex: 1;
}

.mp-search-input-wrap svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  transition: color 0.2s ease;
}

.mp-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  font-family: var(--mp-font-body);
  font-size: 1rem;
  color: #0f172a;
  background-color: #FFFFFF;
  border: 2px solid #cbd5e1;
  border-radius: var(--mp-radius-md);
  outline: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mp-search-input::placeholder {
  color: #64748b;
  opacity: 0.9;
}

.mp-search-input:focus {
  border-color: var(--mp-yellow, #FFB000);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.22);
  color: #0f172a;
}

.mp-search-input-wrap:focus-within svg {
  color: var(--mp-navy, #042854);
}

.mp-search-submit {
  padding: 16px 32px;
  background-color: var(--mp-blue-btn);
  color: #FFFFFF;
  font-family: var(--mp-font-heading);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--mp-radius-md);
  cursor: pointer;
  box-shadow: 0 3px 12px var(--mp-blue-btn-shadow);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.mp-search-submit:hover {
  background-color: var(--mp-blue-btn-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--mp-blue-btn-shadow-hover);
}

.mp-popular-models-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.mp-models-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.mp-model-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--mp-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mp-model-pill:hover {
  background-color: var(--mp-blue-btn);
  color: #FFFFFF;
  border-color: var(--mp-blue-btn);
  transform: translateY(-1px);
}

.mp-search-compatibility-note {
  font-size: 0.8rem;
  color: #93c5fd;
  margin-top: 14px;
}

/* ==========================================================================
   CATEGORIAS (6 TARJETAS BLANCAS)
   ========================================================================== */

.mp-categories-section {
  padding: 50px 0;
}

.mp-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.mp-section-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--mp-navy);
  margin: 0 0 10px 0;
}

.mp-section-header p {
  font-size: 1.05rem;
  color: var(--mp-muted);
  margin: 0 auto;
  max-width: 600px;
}

.mp-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.mp-category-card {
  background-color: var(--mp-white);
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-md);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mp-shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mp-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--mp-yellow);
  box-shadow: var(--mp-shadow-hover);
}

.mp-cat-image-wrap {
  width: 100%;
  height: 145px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--mp-border-light);
}

.mp-cat-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.mp-category-card:hover .mp-cat-image-wrap img {
  transform: scale(1.05);
}

.mp-cat-content {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-cat-title {
  font-family: var(--mp-font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--mp-navy);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mp-cat-arrow {
  color: var(--mp-yellow);
  font-size: 1.15rem;
  font-weight: 800;
  transition: transform 0.25s ease;
  margin-left: 6px;
}

.mp-category-card:hover .mp-cat-arrow {
  transform: translateX(3px);
  color: var(--mp-navy);
}

/* ==========================================================================
   PRODUCTOS DESTACADOS (PRODUCTOS MAS BUSCADOS)
   ========================================================================== */

.mp-featured-products-section {
  padding: 50px 0 60px 0;
  background-color: var(--mp-bg);
}

.mp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mp-product-card {
  background-color: var(--mp-white);
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--mp-shadow-card);
  transition: all 0.25s ease;
  position: relative;
}

.mp-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mp-shadow-hover);
  border-color: #cbd5e1;
}

.mp-product-thumb {
  width: 100%;
  height: 200px;
  padding: 16px;
  box-sizing: border-box;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--mp-border-light);
}

.mp-product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mp-product-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mp-product-brand {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mp-muted);
  margin-bottom: 4px;
}

.mp-product-title {
  font-family: var(--mp-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mp-navy);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.mp-product-title a {
  color: inherit;
  text-decoration: none;
}

.mp-product-title a:hover {
  color: var(--mp-cyan);
}

.mp-product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.mp-product-sku {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mp-muted);
  background-color: var(--mp-bg);
  padding: 3px 8px;
  border-radius: var(--mp-radius-sm);
  border: 1px solid var(--mp-border);
}

.mp-product-stock-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: #059669;
}

.mp-product-card-footer {
  padding: 12px 18px 16px 18px;
  border-top: 1px solid var(--mp-border-light);
}

.mp-btn-quote-card {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: var(--mp-navy);
  color: var(--mp-white);
  font-family: var(--mp-font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--mp-radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.mp-btn-quote-card:hover {
  background-color: var(--mp-blue-btn);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--mp-blue-btn-shadow);
}

/* ==========================================================================
   MARCAS QUE DISTRIBUIMOS (CARRUSEL CON FLECHAS)
   ========================================================================== */

.mp-brands-section {
  padding: 55px 0;
  background-color: var(--mp-navy-dark);
  background-image: linear-gradient(180deg, var(--mp-navy-dark) 0%, var(--mp-navy) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-brands-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.mp-brands-title {
  font-family: var(--mp-font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mp-brands-desc {
  font-size: 0.95rem;
  color: #93c5fd;
  margin: 0;
}

.mp-carousel-controls {
  display: flex;
  gap: 8px;
}

.mp-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--mp-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mp-carousel-btn:hover {
  background-color: var(--mp-blue-btn);
  color: #FFFFFF;
  border-color: var(--mp-blue-btn);
}

.mp-brands-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 8px 2px;
}

.mp-brands-carousel-track::-webkit-scrollbar {
  display: none;
}

.mp-brand-card {
  flex: 0 0 calc((100% - (6 * 16px)) / 7);
  min-width: 170px;
  scroll-snap-align: start;
  background-color: #073670;
  border: 1px solid #14498a;
  border-radius: var(--mp-radius-md);
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.mp-brand-card:hover {
  background-color: #0c4389;
  border-color: #38bdf8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.mp-brand-logo-sim {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.mp-brand-logo-img {
  display: block;
  max-width: 90px;
  max-height: 40px;
  object-fit: contain;
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 4px 6px;
}

.mp-brand-initial {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-brand-name {
  font-family: var(--mp-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mp-brand-sub {
  font-size: 0.74rem;
  color: #93c5fd;
  text-transform: uppercase;
}

/* ==========================================================================
   BLOQUE INFERIOR HIBRIDO (70% BENEFICIOS + 30% WHATSAPP)
   ========================================================================== */

.mp-hybrid-section {
  padding: 60px 0 70px 0;
  background-color: var(--mp-bg);
}

.mp-hybrid-grid {
  display: grid;
  grid-template-columns: 68% 30%;
  gap: 24px;
  align-items: stretch;
}

.mp-hybrid-benefits-card {
  background-color: #FFFFFF;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  padding: 38px 34px;
  box-shadow: var(--mp-shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mp-hybrid-eyebrow {
  font-family: var(--mp-font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mp-yellow-hover);
  margin-bottom: 6px;
  display: block;
}

.mp-hybrid-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--mp-navy);
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.mp-hybrid-subtitle {
  font-size: 0.95rem;
  color: var(--mp-muted);
  margin: 0 0 28px 0;
  max-width: 650px;
}

.mp-hybrid-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mp-hybrid-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #F8FAFC;
  border: 1px solid #EEF2F6;
  padding: 16px;
  border-radius: var(--mp-radius-md);
}

.mp-benefit-vector-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #FFFFFF;
  border: 1px solid var(--mp-border);
  color: var(--mp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-benefit-vector-text h4 {
  font-family: var(--mp-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mp-navy);
  margin: 0 0 4px 0;
}

.mp-benefit-vector-text p {
  font-size: 0.84rem;
  color: var(--mp-muted);
  margin: 0;
  line-height: 1.35;
}

.mp-hybrid-quote-card {
  background-color: var(--mp-navy);
  color: #FFFFFF;
  border-radius: var(--mp-radius-lg);
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--mp-shadow-lg);
}

.mp-quote-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mp-quote-card-title {
  font-family: var(--mp-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.mp-quote-card-lead {
  font-size: 0.92rem;
  color: #CBD5E1;
  margin: 0 0 26px 0;
  line-height: 1.5;
}

.mp-btn-quote-action {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  padding: 14px 20px;
}

/* ==========================================================================
   CTA FINAL DE COTIZACION
   ========================================================================== */

.mp-final-cta-section {
  padding: 50px 0 80px 0;
}

.mp-final-cta-box {
  background-color: var(--mp-white);
  border: 2px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  padding: 50px 30px;
  text-align: center;
  box-shadow: var(--mp-shadow-card);
}

.mp-final-cta-box h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--mp-navy);
  margin: 0 0 12px 0;
}

.mp-final-cta-box p {
  font-size: 1.1rem;
  color: var(--mp-muted);
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* ==========================================================================
   FOOTER INSTITUCIONAL NAVY
   ========================================================================== */

.mp-site-footer {
  background-color: var(--mp-navy);
  color: #d1d9e6;
  padding: 60px 0 0 0;
  font-size: 0.92rem;
  border-top: 3px solid var(--mp-yellow);
}

.mp-footer-grid {
  display: grid;
  grid-template-columns: 32% 20% 22% 26%;
  gap: 36px;
  margin-bottom: 50px;
}

.mp-footer-col h4 {
  font-family: var(--mp-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px 0;
  position: relative;
  padding-bottom: 8px;
}

.mp-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--mp-yellow);
}

.mp-footer-logo img {
  height: var(--mp-footer-logo-height, 48px);
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.mp-footer-bio {
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 0 16px 0;
}

.mp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mp-footer-links li {
  margin-bottom: 10px;
}

.mp-footer-links li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mp-footer-links li a:hover {
  color: var(--mp-yellow);
}

.mp-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mp-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #cbd5e1;
}

.mp-contact-list li svg {
  color: var(--mp-yellow);
  flex-shrink: 0;
  margin-top: 3px;
}

.mp-contact-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mp-contact-list li a:hover {
  color: var(--mp-yellow);
}

.mp-footer-bottom {
  background-color: var(--mp-navy-dark);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #94a3b8;
}

.mp-footer-bottom .mp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mp-footer-bottom a {
  color: var(--mp-yellow);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.mp-footer-bottom a:hover {
  color: #ffcd57;
  text-decoration: underline;
}

/* ==========================================================================
   WOOCOMMERCE COMMERCE ARCHITECTURE & CARDS
   ========================================================================== */

/* Shop Loop Grid */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  background-color: var(--mp-white) !important;
  border: 1px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-md) !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: var(--mp-shadow-card) !important;
  transition: all 0.25s ease !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--mp-shadow-hover) !important;
  border-color: #cbd5e1 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product > a:first-child {
  display: block !important;
  padding: 0 !important;
  text-decoration: none !important;
  color: var(--mp-text) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.woocommerce ul.products li.product img {
  margin: 0 auto 12px auto !important;
  max-height: 180px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  padding: 14px !important;
  border-bottom: 1px solid var(--mp-border-light) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
  font-family: var(--mp-font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--mp-navy) !important;
  padding: 0 18px !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  width: 100% !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
  text-align: left !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  min-height: 2.7em !important;
}

.woocommerce ul.products li.product .price {
  font-size: 0.95rem !important;
  color: var(--mp-muted) !important;
  padding: 0 18px !important;
  margin-bottom: 10px !important;
}

/* Single Product B2B */
.woocommerce div.product {
  background-color: var(--mp-white);
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  padding: 36px;
  box-shadow: var(--mp-shadow-card);
}

.woocommerce ul.products li.product .dt-loop-sku-badge-wrap {
  padding: 0 18px !important;
  margin: 0 0 8px 0 !important;
  box-sizing: border-box !important;
  width: 100% !important;
  text-align: left !important;
}

.dt-sku-badge,
.catalog-quote-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background-color: var(--mp-bg) !important;
  border: 1px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-sm) !important;
  padding: 3px 8px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: var(--mp-navy) !important;
  margin: 0 !important;
}

/* Loop button */
.woocommerce ul.products li.product .dt-whatsapp-quote-btn,
.woocommerce ul.products li.product .button {
  background: var(--mp-navy) !important;
  color: #FFFFFF !important;
  font-family: var(--mp-font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  border-radius: 6px !important;
  padding: 11px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  margin: 8px 18px 18px 18px !important;
  width: calc(100% - 36px) !important;
  box-sizing: border-box !important;
}

.woocommerce ul.products li.product .dt-whatsapp-quote-btn:hover,
.woocommerce ul.products li.product .button:hover {
  background: var(--mp-blue-btn) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px var(--mp-blue-btn-shadow) !important;
}

/* Single product button */
.woocommerce div.product .dt-whatsapp-quote-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background-color: var(--mp-blue-btn) !important;
  color: #FFFFFF !important;
  font-family: var(--mp-font-heading) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  padding: 14px 28px !important;
  border-radius: var(--mp-radius-md) !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 3px 12px var(--mp-blue-btn-shadow) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.woocommerce div.product .dt-whatsapp-quote-btn:hover {
  background-color: var(--mp-blue-btn-hover) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px var(--mp-blue-btn-shadow-hover) !important;
}

/* ==========================================================================
   LARGE DISPLAY ENHANCEMENTS (>= 1400px & >= 1600px)
   ========================================================================== */

@media (min-width: 1400px) {
  .mp-container {
    max-width: 1400px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .mp-hero-section {
    padding: 70px 0 60px 0;
  }

  .mp-hero-grid {
    gap: 56px;
  }

  .mp-hero-h1 {
    font-size: 3.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
  }

  .mp-hero-description {
    font-size: 1.2rem;
    max-width: 620px;
    margin-bottom: 36px;
  }

  .mp-hero-media-wrapper {
    max-width: 720px;
  }

  .mp-hero-trust-row {
    gap: 24px;
    margin-top: 52px;
    padding-top: 36px;
  }

  .mp-hero-trust-col {
    padding: 16px 20px;
  }

  .mp-hero-trust-text strong {
    font-size: 0.92rem;
  }

  .mp-hero-trust-text span {
    font-size: 0.82rem;
  }

  .mp-search-form {
    max-width: 860px;
  }

  .mp-categories-grid {
    gap: 20px;
  }

  .mp-cat-image-wrap {
    height: 160px;
  }

  .mp-products-grid {
    gap: 26px;
  }

  .mp-product-thumb {
    height: 220px;
  }
}

@media (min-width: 1600px) {
  .mp-container {
    max-width: 1560px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .mp-hero-section {
    padding: 80px 0 65px 0;
  }

  .mp-hero-grid {
    gap: 68px;
  }

  .mp-hero-h1 {
    font-size: 4.2rem;
  }

  .mp-hero-description {
    font-size: 1.22rem;
    max-width: 660px;
  }

  .mp-hero-media-wrapper {
    max-width: 780px;
  }

  .mp-hero-media-card img {
    max-height: 580px;
  }

  .mp-hero-trust-row {
    gap: 28px;
    margin-top: 60px;
    padding-top: 40px;
  }

  .mp-search-form {
    max-width: 920px;
  }

  .mp-categories-grid {
    gap: 24px;
  }

  .mp-cat-image-wrap {
    height: 175px;
  }

  .mp-products-grid {
    gap: 30px;
  }

  .mp-product-thumb {
    height: 235px;
  }
}

@media (min-width: 1920px) {
  .mp-container {
    max-width: 1680px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOBILE FIRST PARADIGM)
   ========================================================================== */

@media (max-width: 1100px) {
  .mp-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .mp-hero-trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .mp-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .mp-products-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .mp-hybrid-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .mp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .mp-nav-menu-wrap,
  .mp-nav-search-form {
    display: none;
  }
  
  .mp-mobile-toggle {
    display: block;
  }
  
  /* Ocultar barra superior navy en móviles y tablets para dejar únicamente el navbar limpio */
  .mp-topbar {
    display: none !important;
  }

  /* En móviles, ocultar el botón cotizar del navbar principal: se muestra únicamente el logo y el menú hamburguesa */
  .mp-navbar-right .mp-btn-cta-whatsapp {
    display: none !important;
  }
  
  .mp-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .mp-hero-left {
    align-items: flex-start;
    text-align: left;
  }
  
  .mp-hero-ctas {
    justify-content: flex-start;
  }

  .mp-hero-nav-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 24px;
  }

  .mp-hero-media-slides {
    min-height: 280px;
    max-height: 380px;
  }
  
  .mp-hero-trust-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }
  
  .mp-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .mp-products-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
}

@media (max-width: 600px) {
  .mp-brand-logo img {
    max-height: 38px;
    max-width: calc(100vw - 80px);
  }

  .mp-hero-nav-cards {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 18px;
  }

  .mp-hero-nav-card {
    padding: 8px 10px;
    gap: 6px;
  }

  .mp-nav-card-label {
    font-size: 0.74rem;
  }

  .mp-hero-media-slides {
    min-height: 220px;
    max-height: 290px;
  }
  
  .mp-hero-trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .mp-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .mp-products-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
  
  .mp-hybrid-benefits-card {
    padding: 24px 20px;
  }
  
  .mp-hybrid-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .mp-hybrid-quote-card {
    padding: 28px 20px;
  }
  
  .mp-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .mp-search-form {
    flex-direction: column;
  }
  
  .mp-search-submit {
    width: 100%;
  }
}

/* ==========================================================================
   WOOCOMMERCE STORE, CATALOG & SINGLE PRODUCT EXPANDED SYSTEM
   ========================================================================== */

/* Overrides de Glassmorphism Legacy en Tienda */
.woocommerce-glass-card,
.standard-page-glass-card {
  background: var(--mp-white) !important;
  border: 1px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-lg) !important;
  box-shadow: var(--mp-shadow-card) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--mp-text) !important;
  padding: 32px !important;
}

.standard-page-container {
  background-color: var(--mp-bg) !important;
  padding: 40px 20px 60px 20px !important;
}

/* Header Hub de Tienda */
.dt-shop-header-hub {
  background: transparent !important;
  border-bottom: 1px solid var(--mp-border) !important;
  padding-bottom: 24px !important;
  margin-bottom: 30px !important;
}

.dt-parts-search-inner {
  background: var(--mp-white) !important;
  border: 2px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-md) !important;
  box-shadow: var(--mp-shadow-xs) !important;
  transition: all 0.2s ease !important;
}

.dt-parts-search-inner:focus-within {
  border-color: var(--mp-navy) !important;
  box-shadow: 0 0 0 4px rgba(4, 40, 84, 0.08) !important;
}

.dt-parts-search-field {
  color: var(--mp-text) !important;
  font-family: var(--mp-font-body) !important;
  font-size: 0.95rem !important;
}

.dt-parts-search-field::placeholder {
  color: var(--mp-muted) !important;
}

.dt-parts-search-submit {
  background-color: var(--mp-blue-btn) !important;
  color: #FFFFFF !important;
  font-family: var(--mp-font-heading) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  border-radius: var(--mp-radius-sm) !important;
  padding: 10px 20px !important;
  transition: all 0.2s ease !important;
}

.dt-parts-search-submit:hover {
  background-color: var(--mp-blue-btn-hover) !important;
  color: #FFFFFF !important;
}

/* Category Filter Pills en Tienda */
.dt-parts-categories-bar {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-top: 16px !important;
}

.dt-parts-pill {
  background: var(--mp-white) !important;
  border: 1px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-pill) !important;
  color: var(--mp-navy) !important;
  font-family: var(--mp-font-heading) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  padding: 6px 14px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.dt-parts-pill:hover,
.dt-parts-pill.active {
  background-color: var(--mp-navy) !important;
  color: var(--mp-white) !important;
  border-color: var(--mp-navy) !important;
}

/* Layout Grid de Catálogo: Sidebar + Grid */
.dt-woocommerce-layout-grid {
  display: block !important;
  width: 100% !important;
}

.dt-woocommerce-main-content {
  width: 100% !important;
  max-width: 100% !important;
}

/* Single Product B2B View */
.woocommerce div.product .product_title {
  font-family: var(--mp-font-heading) !important;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: var(--mp-navy) !important;
  margin-bottom: 10px !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--mp-muted) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.woocommerce div.product .dt-single-whatsapp-quote-wrap {
  margin: 24px 0 !important;
  padding: 20px !important;
  background-color: var(--mp-bg) !important;
  border: 1px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-md) !important;
}

.woocommerce div.product .dt-whatsapp-quote-btn {
  width: 100% !important;
  max-width: 360px !important;
}

/* Pestañas de Producto y Compatibilidad Técnica */
.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce-tabs ul.tabs {
  border-bottom: 2px solid var(--mp-border) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding: 0 0 10px 0 !important;
  margin-bottom: 24px !important;
  list-style: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after,
.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after {
  display: none !important;
  content: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-tabs ul.tabs li {
  background-color: #F1F4F8 !important;
  border: 1.5px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-sm) !important;
  margin: 0 !important;
  display: inline-flex !important;
  transition: all 0.2s ease !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover,
.woocommerce-tabs ul.tabs li:hover {
  background-color: #EEF7FC !important;
  border-color: var(--mp-navy) !important;
  transform: translateY(-2px) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-tabs ul.tabs li a {
  font-family: var(--mp-font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  color: var(--mp-navy) !important;
  padding: 11px 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce-tabs ul.tabs li.active {
  background-color: var(--mp-navy) !important;
  border-color: var(--mp-navy) !important;
  box-shadow: 0 4px 12px rgba(4, 40, 84, 0.22) !important;
  transform: translateY(-2px) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li.active a {
  color: #FFFFFF !important;
}

.woocommerce-Tabs-panel--dt_moto_compatibility,
.woocommerce-Tabs-panel--dt_vehicle_compatibility {
  padding: 8px 0 !important;
}

