.language-switch a{
  color: rgba(255,255,255,.9);
  font-weight: 800;
  font-size: .9rem;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  display:inline-block;
}
.language-switch a:hover{
  border-color: var(--primary);
  color: #fff;
}:root{
  --primary:#007bff;
  --dark:#212529;
  --text:#333;
  --light:#f8f9fa;
  --white:#fff;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
  --radius: 14px;
  --container: 1100px;
  --font: 'Roboto', sans-serif;
}

*{ margin:0; padding:0; box-sizing:border-box; }
body{ font-family:var(--font); color:var(--text); line-height:1.6; background:#fff; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.center{ text-align:center; }
.mt-24{ margin-top:24px; }

/* HEADER */
.main-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.logo{
  color:var(--white);
  font-weight:900;
  letter-spacing:.8px;
  font-size:1.3rem;
}

.main-nav ul{
  list-style:none;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}

.main-nav a{
  color:rgba(255,255,255,.9);
  font-weight:700;
  font-size:.95rem;
}

.main-nav a:hover{ color:var(--primary); }

/* BUTTONS */
.cta-button{
  display:inline-block;
  padding:10px 18px;
  border-radius:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.3px;
  transition: transform .15s ease, background-color .2s ease, color .2s ease;
  border: 2px solid transparent;
}

.cta-button.primary{
  background:var(--primary);
  color:var(--white);
}

.cta-button.primary:hover{ transform: translateY(-1px); }

.cta-button.secondary{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}

.cta-button.secondary:hover{
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== hero background ===== */

/* HERO */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content: center;
  text-align: center;
  padding-top: 80px; /* compensa el header */
    color:var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}




/* ===== PAGE-SPECIFIC HERO BACKGROUNDS  ===== */

/* Index page */
.page-index .hero-close{
  background-image: url('/pictures/real-store-final.jpg');
}

/* Brake page */
.page-brake .hero-close{
  background-image: url('/pictures/brake-hero.jpg');
}

/* Oil page */
.page-oil .hero-close{
  background-image: url('/pictures/oil-hero.jpg');
}

/* Engine & Check */
.page-engine .hero-close{
  background-image: url('/pictures/engine-diag-hero.png');
}

/* Suspension */
.page-suspension .hero-close{
  background-image: url('/pictures/suspension-hero.jpg');
}

/* Cooling */
.page-cooling .hero-close{
  background-image: url('/pictures/cooling-hero.jpg');
}

/* Electrical */
.page-electrical .hero-close{
  background: url('/pictures/electrical-hero.jpg');
}

/* volo */
.page-volo .hero-close{
  background: url('/pictures/volo.png');
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

.hero-content{
  position:relative;
  z-index: 2;
  max-width: 900px;
  padding: 70px 0;
 
}

.hero h1{
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  max-width: 900px;
  margin: 0 auto;
}

.hero h2{
  color: #ffffff;
  opacity: 0.95;
}

.hero-lead{
  margin: 18px auto 0;
  max-width: 850px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  opacity: .95;
}

.hero-cta{
  margin-top: 22px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.hero-trust{
  margin-top: 18px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0,0,0,.6);
}

/* SECTIONS */
.section{ padding: 70px 0; }
.section h2{
  text-align:center;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--dark);
  margin-bottom: 32px;
  text-transform: none;
  letter-spacing: 0.3px;
}

/* SERVICES GRID */
.services{ background: var(--light); }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.card{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align:left;
}

.card h3{
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p{ color: #444; }

/* TESTIMONIALS */
.testimonials{ background: #e9ecef; }

.testimonial-wrap{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:18px;
  align-items:stretch;
}

.quote{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  border-left: 6px solid var(--primary);
  text-align:left;
}

.quote-meta{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.stars{ color: gold; font-weight:900; }

.rating-box{
  background: linear-gradient(145deg, #0f1114, #1c2128);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08) ;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  text-align:center;
}

.rating-title{ opacity:.9; font-weight:700; }
.rating-number{ font-size: 3rem; font-weight: 900; letter-spacing: 1px; color: var(--primary); }
.rating-sub{ opacity:.9; }
.rating-link{
  margin-top: 8px;
  display:inline-block;
  color: var(--white);
  text-decoration: underline;
}

/* LOCATION */
.location{ background: #fff; }

.map-embed{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}

.location-bar{
  margin-top: 14px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:#333;
  background: #f6f7f9;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);

}
.location .center.mt-24{
  margin-top: 18px;
}

.location .cta-button{
  min-width: 160px;
  text-align: center;
}
.location .cta-button.secondary{
  background: #fff;
  border-width: 2px;
}
.location .cta-button.secondary:hover{
  background: rgba(0,123,255,.08);
}

/* FOOTER */
.main-footer{
  background: #343a40;
  color: #c9d1d9;
  padding: 22px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size: .95rem;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonial-wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .header-inner{ flex-direction:column; align-items:center; }
  .main-nav ul{ justify-content:center; }
  .grid{ grid-template-columns: 1fr; }
  .hero{ min-height: auto; }
  .hero-content{ padding: 56px 0; }
  .map-embed iframe{ height: 360px; }
}
.logo img{
  height: 80px;
  width: auto;
  display: block;
  transition: transform .2s ease;
}

.logo img:hover{
  transform: scale(1.03);
}
.dark-outline{
  color: var(--dark) !important;
  border-color: rgba(0,0,0,.25) !important;
}
.dark-outline:hover{
  border-color: var(--primary) !important;
  background: rgba(0,123,255,.08);
}/* Manual reviews grid */
.review-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card{
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: left;
  border: 1px solid rgba(0,0,0,.06);
}

.review-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.reviewer{
  color: var(--dark);
}

.review-text{
  color: #444;
}

/* buttons inside rating box on light bg */
.cta-button.secondary.dark-outline {
  background: #fff;
  border-width: 2px;

}

.rating-actions{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (max-width: 980px){
  .review-grid{ grid-template-columns: 1fr; }
}
/* ===== DARK LOCATION SECTION ===== */

.location{
  background: linear-gradient(145deg, #0f1114, #1a1f26);
  color: #ffffff;
}

.location h2{
  color: #ffffff;
}

.map-embed{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}

.location-bar{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #ffffff;
}

.location-bar strong{
  color: #ffffff;
}

/* Buttons on dark background */
.location .cta-button.secondary{
  color: #ffffff;
  border-color: rgba(255,255,255,.4);
}

.location .cta-button.secondary:hover{
  border-color: var(--primary);
  background: rgba(0,123,255,.15);
}
/* ===== LOCATION (Performance Aggressive) ===== */

.location{
  background: radial-gradient(circle at 20% 20%, #1b2430 0%, #0b0f14 55%, #05070a 100%);
  color: #fff;
  position: relative;
}

.location h2{
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Map card = heavy + aggressive */
.map-embed{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 60px rgba(0,0,0,.65);
}

/* Slightly darken map so it matches the theme */
.map-embed{
  position: relative;
}


/* Info bar = dark glass */
.location-bar{
  margin-top: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 12px 14px;
  color: rgba(255,255,255,.92);
}

.location-bar strong{
  color:#fff;
}

/* CTA row */
.location .center.mt-24{
  margin-top: 18px;
}

/* Buttons: punchy + visible */
.location .cta-button.primary{
  box-shadow: 0 14px 28px rgba(0,123,255,.28);
}

.location .cta-button.secondary{
  color:#fff;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.03);
}

.location .cta-button.secondary:hover{
  border-color: var(--primary);
  background: rgba(0,123,255,.14);
}

/* Optional: make buttons same width for symmetry */
.location .cta-button{
  min-width: 170px;
  text-align:center;
}
/* ===== LOCATION BRIGHT MAP STYLE ===== */

.location{
  background: #0c1117;
  color: #ffffff;
}

.location h2{
  color: #ffffff;
}

/* Bright floating map */
.map-embed{
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(0,123,255,.4);
  box-shadow: 
    0 0 40px rgba(0,123,255,.25),
    0 25px 60px rgba(0,0,0,.6);
  background: #ffffff; /* makes map pop */
}

/* Info bar subtle but visible */
.location-bar{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #ffffff;
}

/* Buttons */
.location .cta-button.secondary{
  border-color: rgba(255,255,255,.4);
  color: #ffffff;
}

.location .cta-button.secondary:hover{
  background: rgba(0,123,255,.15);
}
/* ===== SOCIAL FOOTER ===== */

.social-section{
  margin-top: 20px;
  text-align: center;
}

.social-section p{
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.social-icons{
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons a{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  transition:.3s ease;
}

.social-icons a:hover{
  background:#007bff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,123,255,.4);
}
/* Make CALL NOW visible and strong */
.cta-button.secondary{
  background: rgba(255,255,255,.05);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,.6);
  opacity: 1; /* remove faded look */
  box-shadow: 0 0 15px rgba(255,255,255,.15);
}

.cta-button.secondary:hover{
  background: #ffffff;
  color: #0c1117;
  box-shadow: 0 0 25px rgba(255,255,255,.5);
}/* FORCE CALL NOW BUTTON FIX */
.location .cta-button.secondary{
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
}

.location .cta-button.secondary:hover{
  background: #ffffff !important;
  color: #0c1117 !important;
}/* ===== Mobile Header Fix ===== */
@media (max-width: 768px){

  .main-header{
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
  }

  /* Logo smaller and never overflow */
  .logo{
    display:flex;
    justify-content:center;
    width: 100%;
  }
  .logo img{
    height: 44px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
  }

  /* Menu compact */
  .main-nav{
    width: 100%;
  }
  .main-nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    padding: 0;
    margin: 0;
  }
  .main-nav ul li a{
    padding: 6px 8px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Header CTA buttons: full width, not clipped */
  .header-ctas{
    width: 100%;
    display: flex;
    gap: 10px;
  }
  .header-ctas .cta-button{
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.95rem;
  }
}
/* ===== FORCE MOBILE LOGO SIZE ===== */
@media (max-width: 768px){

  .main-header{
    padding: 10px 12px !important;
  }

  .logo{
    width: 100% !important;
    text-align: center !important;
  }

  .logo img{
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
  }

}
/* ===== Reduce text logo on mobile ===== */
@media (max-width: 768px){

  .logo{
    font-size: 1rem !important;
    letter-spacing: .5px !important;
  }

}
/* ===== LOGO IMAGE CONTROL (all devices) ===== */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

/* This is the missing piece */
.logo img{
  height: 70px;        /* desktop size */
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display:block;
}

/* ===== MOBILE: smaller logo ===== */
@media (max-width: 768px){
  .logo img{
    height: 90px !important;
    max-height: 60px !important;
    width: auto;
  }
}
/* ===== SIGNS (Modern Centered) ===== */
.signs{
  background: #eef1f4; /* suave, moderno */
}

.signs h2{
  text-align: center;
}

.signs-card{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid rgba(0,0,0,.06);
}

.signs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.sign-item{
  text-align: center;
  padding: 14px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f6f7f9);
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 700;
  color: #111;
}

/* si quieres un “accent” agresivo sin que se vea exagerado */
.sign-item::before{
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: var(--primary);
  font-weight: 900;
}

.signs-note{
  margin-top: 16px;
  text-align: center;
  color: rgba(0,0,0,.72);
  font-weight: 600;
}

.signs-actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px){
  .signs-card{
    padding: 18px;
  }
  .signs-grid{
    grid-template-columns: 1fr;
  }
  .sign-item{
    text-align: left; /* en móvil se lee más natural */
  }
}
/* ===== POWER FAQ SECTION ===== */

.faq-power{
  background: #f4f6f8;
}

.faq-power .card{
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq-power .card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}



.faq-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.trust-line{
  font-weight:700;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
}

/* ===== BRAKE ROTOR POWER CLOSE ===== */

.faq-close{
  position: relative;
  margin-top: 60px;
  padding: 70px 30px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 35px 80px rgba(0,0,0,.6);
}

/* ===== PAGE-SPECIFIC FAQ BACKGROUNDS ===== */

/* Brake page */
.page-brake .faq-close{
  background-image: url('/pictures/brake-rotor-bg.jpg');
}

/* Oil page */
.page-oil .faq-close{
  background-image: url('/pictures/oil-service-bg.jpg');
}

/* Engine & Check */
.page-engine .faq-close{
  background-image: url('/pictures/engine-diag-bg.jpg');
}

/* Suspension */
.page-suspension .faq-close{
  background-image: url('/pictures/suspension-bg.jpg');
}

/* Cooling */
.page-cooling .faq-close{
  background-image: url('/pictures/cooling-bg.jpg');
}

/* Electrical */
.page-electrical .faq-close{
  background: url('/pictures/electrical-bg.jpg');
}

/* Strong dark overlay for readability */
.faq-close::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35),
    rgba(0,0,0,.45)
  );
  z-index: 0;
}

.faq-close > *{
  position: relative;
  z-index: 2;
}

.faq-close h3{
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: .8px;
  text-shadow: 0 8px 20px rgba(0,0,0,.6);
}

.faq-close p{
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  text-shadow: 0 6px 18px rgba(0,0,0,.6);
}

/* Buttons layout */
.faq-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

/* Make buttons stronger visually */
.faq-close .cta-button.primary{
  box-shadow: 0 0 25px rgba(0,123,255,.45);
}

.faq-close .cta-button.secondary{
  background: #ffffff;
  color: #111;
  border: 2px solid #ffffff;
  box-shadow: 0 0 25px rgba(255,255,255,.4);
}

.faq-close .cta-button.secondary:hover{
  background: #f0f0f0;
  color: #000;
}
/* Trust line */
.trust-line{
  font-weight:700;
  font-size:1rem;
  color: rgba(255,255,255,.9);
  margin-top: 8px;
}

/* Mobile adjustments */
@media (max-width:768px){
  .faq-close{
    padding: 50px 20px;
  }
  .faq-close h3{
    font-size: 1.5rem;
  }
  .faq-close p{
    font-size: 1rem;
  }
}
.service-link{
  text-decoration:none;
  color:inherit;
}
.service-link:hover .card{
  transform: translateY(-4px);
}
.rating-number{
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 0 25px rgba(0,123,255,.4);
}
@media (max-width: 768px){

  .faq-close .cta-button{
    width: 100%;
    margin-bottom: 12px;
    padding: 14px;
    font-size: 1rem;
  }

  .faq-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

}


.service-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.service-link .card{
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-link:hover .card{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.service-link:focus-visible{
  outline: 3px solid rgba(0,123,255,.6);
  outline-offset: 6px;
  border-radius: 16px;
}
.card{
  position: relative;
}

.card-arrow{
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform .2s ease;
}

.service-link:hover .card-arrow{
  transform: translateX(6px);
}

/* ===== Cooling Hero Mobile Adjustment ===== */
@media (max-width: 768px){

  .page-cooling .hero{
    background-size: 120%;      /* antes era cover (muy zoom) */
    background-position: center top;
  }

}

.service-areas {
  background: #0e1116;
  padding: 80px 20px;
  text-align: center;
}

.service-areas h2 {
  color: white;
  margin-bottom: 20px;
}

.areas-intro {
  color: #bfc4cc;
  max-width: 700px;
  margin: 0 auto 40px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.areas-grid a {
  background: #161b22;
  padding: 12px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.areas-grid a:hover {
  background: #007bff;
  transform: translateY(-3px);
}

.areas-note {
  color: #9fa6b2;
}

/* Dropdown click-based */
.dropdown { position: relative; }

.dropdown-toggle{
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  cursor: pointer;
  padding: 8px 10px;
}

/* cerrado por default */
.dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #111;
  min-width: 240px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 999;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown.open > .dropdown-menu { display: block; }
/* IMPORTANT: make sure hover/focus cannot force it open */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
  display: none !important;
}

/* Only open when JS adds .open */
.dropdown.open > .dropdown-menu{
  display: block !important;
}

/* Dropdown: SOLO abre con .open (no por hover/focus) */
.dropdown { position: relative; }

.dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #111;
  min-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 9999;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

/* fuerza a NO abrir por hover/focus */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
  display: none !important;
}

/* abre solo con clase */
.dropdown.open > .dropdown-menu{
  display: block !important;
}