/* ============================================================
   ANTILLES PROMOTIONS - Landing Page Stylesheet
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1a3a6b; --navy2: #122a52; --gold: #f5a623; --gold2: #e09010;
  --white: #ffffff; --light: #f4f6fb; --gray: #6b7280; --dark: #111827;
  --radius: 12px; --shadow: 0 4px 24px rgba(26,58,107,0.10);
  --shadow-lg: 0 8px 40px rgba(26,58,107,0.18);
}
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* TOP BAR */
.topbar { background: var(--navy2); color: rgba(255,255,255,0.85); font-size: 0.78rem; padding: 6px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-contact a { color: rgba(255,255,255,0.85); transition: color .2s; }
.topbar-contact a:hover { color: var(--gold); }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,0.75); transition: color .2s; display: flex; align-items: center; }
.topbar-social a:hover { color: var(--gold); }
.topbar-signin { background: var(--gold); color: var(--navy2) !important; font-weight: 700; padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; transition: background .2s; }
.topbar-signin:hover { background: var(--gold2); }

/* HEADER */
.header { background: var(--white); box-shadow: 0 2px 12px rgba(26,58,107,0.08); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; gap: 20px; }
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 64px; width: auto; object-fit: contain; }
.logo-fallback { display: none; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--navy); letter-spacing: 2px; }
.logo-sub { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.65rem; color: var(--gold); letter-spacing: 3px; }
.search-bar { flex: 1; display: flex; background: var(--light); border: 2px solid #e2e8f0; border-radius: 50px; overflow: visible; transition: border-color .2s, box-shadow .2s; position: relative; }
.search-bar:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,107,0.10); }
.search-bar input { flex: 1; border: none; background: transparent; padding: 10px 18px; font-size: 0.9rem; font-family: 'Open Sans', sans-serif; color: var(--dark); outline: none; }
.search-btn { background: var(--navy); border: none; padding: 0 18px; color: var(--white); cursor: pointer; display: flex; align-items: center; transition: background .2s; border-radius: 0 50px 50px 0; }
.search-btn:hover { background: var(--navy2); }
.btn-quote { background: var(--gold); color: var(--navy2); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; padding: 11px 22px; border-radius: 50px; white-space: nowrap; transition: background .2s, transform .15s; box-shadow: 0 2px 8px rgba(245,166,35,0.30); }
.btn-quote:hover { background: var(--gold2); transform: translateY(-1px); }

/* MAIN NAV */
.main-nav { background: var(--navy); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner > a, .nav-dropdown > a { color: rgba(255,255,255,0.88); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.82rem; padding: 13px 14px; display: block; transition: color .2s, background .2s; letter-spacing: 0.3px; white-space: nowrap; border-bottom: 3px solid transparent; }
.nav-inner > a:hover, .nav-dropdown > a:hover { color: var(--gold); background: rgba(255,255,255,0.06); border-bottom-color: var(--gold); }
.nav-highlight { color: var(--gold) !important; }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px; box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius); z-index: 200; overflow: hidden; }
.dropdown-menu a { color: var(--dark) !important; font-family: 'Open Sans', sans-serif; font-weight: 500; font-size: 0.85rem; padding: 10px 18px; display: block; border-bottom: 1px solid #f5f5f5; transition: background .15s; }
.dropdown-menu a:hover { background: var(--light); color: var(--navy) !important; }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* HERO */
.hero { position: relative; min-height: 520px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; background: url('https://www.antillespromotions.com/files/hero-promo.jpg') right center/cover no-repeat; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,25,55,0.92) 0%, rgba(10,25,55,0.85) 40%, rgba(10,25,55,0.45) 70%, rgba(10,25,55,0.15) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 70px 20px 40px; width: 100%; }
.hero-badge { display: inline-block; background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.4); color: var(--gold); font-size: 0.8rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; letter-spacing: 0.5px; }
.hero-content h1 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.4rem, 5.5vw, 3.8rem); color: var(--white); line-height: 1.1; margin-bottom: 18px; max-width: 640px; }
.hero-accent { color: var(--gold); }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 540px; margin-bottom: 30px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--navy2); font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 4px 16px rgba(245,166,35,0.35); display: inline-block; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(245,166,35,0.45); }
.btn-primary.large { padding: 16px 36px; font-size: 1rem; }
.btn-secondary { background: transparent; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 13px 28px; border-radius: 50px; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.5); transition: border-color .2s, background .2s; display: inline-block; }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; transition: background .2s, color .2s; white-space: nowrap; display: inline-block; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-dark { border: 2px solid var(--navy); color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 13px 28px; border-radius: 50px; font-size: 0.95rem; transition: background .2s, color .2s; display: inline-block; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-phone { background: var(--white); color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 16px 28px; border-radius: 50px; font-size: 1rem; transition: background .2s, transform .15s; display: inline-block; }
.btn-phone:hover { background: #f0f4ff; transform: translateY(-2px); }

/* HERO STATS */
.hero-stats { position: relative; z-index: 2; background: rgba(10,25,55,0.65); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.10); }
.hero-stats-inner { max-width: 1200px; margin: 0 auto; padding: 18px 20px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 40px; }
.stat strong { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--gold); }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.70); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* SECTION COMMONS */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 10px; }
.section-title.light { color: var(--white); }
.section-subtitle { color: var(--gray); font-size: 1rem; }
.section-subtitle.light { color: rgba(255,255,255,0.75); }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }

/* CATEGORIES */
.categories { padding: 72px 0; background: var(--light); }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
.category-card { background: var(--white); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; border: 2px solid transparent; text-decoration: none; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cat-img-wrap { width: 100%; height: 130px; overflow: hidden; position: relative; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.category-card:hover .cat-img-wrap img { transform: scale(1.07); }
.category-card span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; padding: 12px 8px; text-align: center; }
.cat-all { background: var(--navy); }
.cat-all span { color: var(--white); }
.cat-all-img { position: relative; }
.cat-all-overlay { position: absolute; inset: 0; background: rgba(26,58,107,0.65); display: flex; align-items: center; justify-content: center; }
.cat-all-icon { font-size: 2rem; }

/* FEATURE BANNER */
.feature-banner { padding: 72px 0; background: var(--white); }
.feature-banner-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-banner-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-banner-img img { width: 100%; height: 420px; object-fit: cover; }
.feature-label { display: inline-block; background: rgba(245,166,35,0.15); color: var(--gold2); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; border: 1px solid rgba(245,166,35,0.3); }
.feature-banner-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--navy); line-height: 1.25; margin-bottom: 16px; }
.feature-banner-text p { color: var(--gray); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.feature-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* PRODUCTS */
.products-section { padding: 72px 0; background: var(--light); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius); border: 1.5px solid #e8edf5; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; box-shadow: var(--shadow); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 1; }
.product-badge.best { background: var(--gold); color: var(--navy2); }
.product-badge.new { background: #10b981; }
.product-img-wrap { height: 220px; background: var(--light); overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem; color: var(--dark); margin-bottom: 6px; line-height: 1.4; }
.product-price { color: var(--navy); font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.btn-card { display: inline-block; background: var(--navy); color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; padding: 9px 16px; border-radius: 50px; text-align: center; margin-top: auto; transition: background .2s; }
.product-card:hover .btn-card { background: var(--gold); color: var(--navy2); }

/* PROMO STRIP */
.promo-strip { background: var(--navy); overflow: hidden; }
.promo-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--navy); }
.promo-strip-img { overflow: hidden; position: relative; align-self: stretch; background: var(--navy); }
.promo-strip-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 1; display: block; }
.promo-strip-content { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.promo-strip-content h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--white); line-height: 1.3; }
.promo-strip-content p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

/* WHY US */
.why-us { padding: 72px 0; background: var(--navy2); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: background .2s, transform .2s; }
.why-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--gold); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.65; }

/* SHOWCASE GRID */
.showcase { padding: 72px 0; background: var(--white); }
.showcase-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; }
.showcase-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.showcase-card img { width: 100%; height: auto; min-height: 200px; max-height: 320px; object-fit: cover; object-position: center top; transition: transform .4s; }
.showcase-card:hover img { transform: scale(1.05); }
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,55,0.80) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity .3s; }
.showcase-card:hover .showcase-overlay { opacity: 1; }
.showcase-overlay span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.showcase-overlay a { display: inline-block; background: var(--gold); color: var(--navy2); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; padding: 7px 16px; border-radius: 50px; width: fit-content; }

/* CTA BANNER */
.cta-banner { padding: 64px 0; background: linear-gradient(135deg, var(--gold) 0%, #f7b733 100%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy2); margin-bottom: 8px; }
.cta-text p { color: rgba(26,42,82,0.75); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 4px 16px rgba(26,58,107,0.30); }
.cta-banner .btn-primary:hover { background: var(--navy2); }

/* FOOTER */
.footer { background: #0d1f3c; color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.contact-list li { display: flex; align-items: flex-start; gap: 6px; font-size: 0.88rem; margin-bottom: 10px; }
.footer-logo-img { height: 60px; width: auto; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--white); letter-spacing: 2px; margin-bottom: 14px; }
.footer-logo-text span { display: block; font-size: 0.6rem; color: var(--gold); letter-spacing: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.70); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--gold); color: var(--navy2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); text-align: center; padding: 18px 20px; font-size: 0.8rem; color: rgba(255,255,255,0.40); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card.large { grid-column: span 2; }
  .feature-banner-inner { grid-template-columns: 1fr; gap: 36px; }
  .feature-banner-img img { height: 300px; }
}
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .btn-quote { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 0 20px; }
  .promo-strip-inner { grid-template-columns: 1fr; }
  .promo-strip-img { max-height: 220px; }
  .promo-strip-content { padding: 36px 28px; }
}
@media (max-width: 640px) {
  .topbar-contact { display: none; }
  .hero-content h1 { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .stat-divider { display: none; }
  .hero-stats-inner { gap: 16px; }
  .stat { padding: 8px 16px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card.large { grid-column: span 1; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SEARCH AUTOCOMPLETE DROPDOWN ===== */
.search-bar {
  position: relative;
}
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(26,58,107,0.18);
  z-index: 9999;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.search-dropdown::-webkit-scrollbar { width: 5px; }
.search-dropdown::-webkit-scrollbar-track { background: transparent; }
.search-dropdown::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }

.search-suggestion-category {
  padding: 8px 16px 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  border-top: 1px solid #f3f4f6;
  margin-top: 4px;
}
.search-suggestion-category:first-child {
  border-top: none;
  margin-top: 0;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .15s;
  border-radius: 0;
}
.search-suggestion-item:hover,
.search-suggestion-item.active {
  background: #f4f6fb;
}
.search-suggestion-item:last-child {
  border-radius: 0 0 12px 12px;
}

.sug-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.sug-label {
  flex: 1;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.90rem;
  color: #1a3a6b;
  font-weight: 500;
}
.sug-label mark {
  background: rgba(245,166,35,0.25);
  color: #1a3a6b;
  font-weight: 700;
  border-radius: 3px;
  padding: 0 2px;
}
.sug-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-fallback .sug-label {
  color: #6b7280;
}
.search-fallback .sug-label strong {
  color: #1a3a6b;
}

/* ===== LANGUAGE TOGGLE BUTTON ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.92);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background .2s, border-color .2s, color .2s;
}
.lang-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy2);
}
.lang-icon {
  font-size: 0.85rem;
}
