/* /assets/css/style.css */

:root{
  /* Colors (easy to tune to match the reference precisely) */
  --bg: #0b1220;               /* deep navy */
  --surface: #0f1a2e;          /* slightly lighter navy */
  --surface-2: #0b1527;
  --paper: #ffffff;
  --paper-2: #f6f8fb;
  --text: #0b1220;
  --text-2: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .12);

  --brand: #0b4aa2;            /* marine blue */
  --brand-2: #0a2f6e;          /* darker */
  --accent: #f2b100;           /* gold accent */
  --ok: #16a34a;

  /* Effects */
  --shadow: 0 14px 40px rgba(2, 6, 23, .18);
  --shadow-soft: 0 10px 30px rgba(2, 6, 23, .10);
  --radius: 18px;
  --radius-sm: 12px;

  /* Layout */
  --container: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0 0 12px; }
h1,h2,h3{ line-height:1.15; margin:0 0 10px; }
ul{ margin:0; padding:0; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.sep{ opacity:.7; margin:0 10px; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(242, 177, 0, .12);
  color: #8a6500;
  font-weight: 700;
  font-size: 12px;
}

.inline-link{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Topbar */
.topbar{
  background: var(--surface);
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:16px;
}
.topbar__left,
.topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.topbar__link{
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: 13px;
}
.topbar__link:hover{ color:#fff; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header--compact{ position: relative; top: auto; }
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap: 18px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.logo__mark{
  width:42px;
  height:42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .4px;
  box-shadow: var(--shadow-soft);
}
.logo__name{
  display:block;
  font-weight: 900;
  letter-spacing: .2px;
}
.logo__tag{
  display:block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

/* Nav + mobile toggle */
.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav--compact{ gap: 14px; }
.nav__link{
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}
.nav__link:hover{ color: var(--brand); }

.nav__toggle{
  display:none;
}
.nav__burger{
  display:none;
  width:44px;
  height:44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.nav__burger span{
  width:18px;
  height:2px;
  background:#0f172a;
  display:block;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover{ filter: brightness(1.04); }

.btn--ghost{
  background: #fff;
  border-color: var(--line);
  color: #0f172a;
}
.btn--ghost:hover{ border-color: rgba(11,74,162,.35); color: var(--brand); }

.btn--link{
  padding: 10px 4px;
  border-radius: 10px;
  background: transparent;
  color: var(--brand);
}
.btn--link:hover{ text-decoration: underline; text-underline-offset: 3px; }

.btn--small{ padding: 10px 14px; font-size: 14px; }
.btn--block{ width:100%; }

/* Hero */
.hero{
  position: relative;
  overflow:hidden;
  background: var(--surface-2);
  color: #fff;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.88), rgba(11,18,32,.62), rgba(11,18,32,.40)),
    url("/assets/images/boats/boat-675-open-1.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  padding: 64px 0;
}
.kicker{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 177, 0, .14);
  border: 1px solid rgba(242, 177, 0, .22);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero__title{
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.8px;
}
.hero__lead{
  color: rgba(255,255,255,.86);
  font-size: 16px;
  max-width: 52ch;
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin: 18px 0 14px;
}

.hero__badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.badge{
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 12px;
}
.badge__title{
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 3px;
}
.badge__text{
  font-weight: 600;
  font-size: 12px;
  color: rgba(255,255,255,.82);
}

/* Cards / forms */
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.22);
}
.card--padded{ padding: 18px; }
.card__title{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
}
.card__text{ color: var(--text-2); }

.hero__card .card{ padding: 18px; }
.mini-form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.field__label{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.field__input{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  font-weight: 700;
  color: #0f172a;
  outline: none;
}
.field__input:focus{
  border-color: rgba(11,74,162,.55);
  box-shadow: 0 0 0 4px rgba(11,74,162,.12);
}
.field__textarea{
  min-height: 120px;
  resize: vertical;
}
.field--full{ grid-column: 1 / -1; }

.tiny{
  font-size: 12px;
  color: rgba(15,23,42,.65);
  margin-top: 10px;
}
.tiny a{ color: var(--brand); font-weight: 800; }

/* Sections */
.section{
  padding: 64px 0;
}
.section--alt{
  background: var(--paper-2);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section__title{
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -.5px;
}
.section__lead{
  color: var(--muted);
  font-weight: 600;
  max-width: 64ch;
}

/* Grid cards */
.grid--cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.boat-card{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
}
.boat-card__media img{
  width:100%;
  height: 210px;
  object-fit: cover;
}
.boat-card__body{
  padding: 16px;
}
.boat-card__title{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
}
.boat-card__meta{
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.specs{
  list-style:none;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 14px;
}
.specs li{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
}
.specs span{
  display:block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.specs strong{
  display:block;
  font-size: 14px;
  color:#0f172a;
  font-weight: 900;
  margin-top: 2px;
}
.boat-card__cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}

/* Note */
.note{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(242,177,0,.10);
  border: 1px solid rgba(242,177,0,.22);
  color: #0f172a;
  font-weight: 700;
}
.note strong{ font-weight: 900; }

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}
.split--reverse{
  grid-template-columns: .9fr 1.1fr;
}
.split__media{
  display:flex;
  justify-content:flex-end;
}
.media-card{
  width: 100%;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.media-card img{
  width:100%;
  height: 340px;
  object-fit: cover;
}
.media-card__caption{
  padding: 12px 14px;
  font-weight: 800;
  color: #0f172a;
  border-top: 1px solid rgba(15,23,42,.08);
}

/* Features */
.feature-list{
  display:grid;
  gap: 10px;
  margin: 18px 0 8px;
}
.feature{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
}
.feature__icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(22,163,74,.14);
  border: 1px solid rgba(22,163,74,.26);
  color: var(--ok);
  font-weight: 1000;
}
.feature__text strong{ font-weight: 900; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery__item{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  background:#fff;
}
.gallery__item img{
  width:100%;
  height: 190px;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery__item:hover img{ transform: scale(1.03); }

/* FAQ */
.faq{
  display:grid;
  gap: 10px;
}
.faq__item{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  overflow:hidden;
}
.faq__q{
  padding: 14px 16px;
  font-weight: 900;
  cursor:pointer;
}
.faq__a{
  padding: 0 16px 14px;
  color: var(--text-2);
  font-weight: 600;
}

/* Contact cards */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 10px;
}
.contact-card{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.contact-card__title{
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 6px;
}
.contact-card__value{
  font-weight: 900;
  font-size: 15px;
  color: #0f172a;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card__hint{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}
/* Premium contact layout */
.contact-cards--premium{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 12px;
}

.contact-card--premium{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  min-height: 92px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-card--premium:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2, 6, 23, .12);
  border-color: rgba(11,74,162,.18);
}

.contact-card__icon{
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(11,74,162,.10), rgba(10,47,110,.16));
  border: 1px solid rgba(11,74,162,.12);
}

.contact-card__content{
  min-width: 0;
  flex: 1;
}

.contact-card--premium .contact-card__title{
  margin-bottom: 4px;
}

.contact-card--premium .contact-card__value{
  font-size: 15px;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-card--premium .contact-card__hint{
  margin-top: 4px;
}

/* Optional: keep cards a bit more compact on wide screens */
@media (min-width: 981px){
  .contact-cards--premium{
    max-width: 560px;
  }
}

/* Footer */
.footer{
  margin-top: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(15,23,42,.10);
}
.footer--simple{ margin-top: 26px; }
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__brand{
  font-weight: 1000;
}
.footer__small{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 6px;
}
.footer__right{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.footer__link{
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.footer__link:hover{ color: var(--brand); }

/* Booking page */
.booking .section__title{ margin-bottom: 6px; }
.booking__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}
.form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-weight: 700;
  color: var(--text-2);
  padding: 10px 2px 2px;
}
.check input{ margin-top: 4px; }
.form__actions{ margin-top: 12px; }
.steps{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-2);
  font-weight: 650;
}
.mini-title{
  margin: 0 0 6px;
  font-weight: 1000;
}
.muted{ color: var(--muted); font-weight: 650; }
.stack{ display:grid; gap: 10px; margin-top: 10px; }
.divider{
  height:1px;
  background: rgba(15,23,42,.10);
  margin: 14px 0;
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; padding: 46px 0; }
  .hero__badges{ grid-template-columns: 1fr; }
  .mini-form__grid{ grid-template-columns: 1fr; }
  .grid--cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split{ grid-template-columns: 1fr; }
  .split--reverse{ grid-template-columns: 1fr; }
  .split__media{ justify-content:stretch; }
  .media-card img{ height: 260px; }
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cards{ grid-template-columns: 1fr; }
  .booking__grid{ grid-template-columns: 1fr; }
  .form__grid{ grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav{ position: fixed; inset: 64px 12px auto 12px; background:#fff; border:1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 14px; display:none; flex-direction:column; align-items:stretch; }
  .nav__toggle{ display:block; position:absolute; opacity:0; pointer-events:none; }
  .nav__burger{ display:inline-flex; }
  .nav__toggle:checked ~ .nav{ display:flex; }
  .header__inner{ position:relative; }
}

@media (max-width: 600px){
  .grid--cards{ grid-template-columns: 1fr; }
}
/* === BOAT CARDS HEIGHT FIX === */

.boat-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.boat-card__body{
  display: flex;
  flex-direction: column;
  flex: 1;
}

.boat-card__cta{
  margin-top: auto;
}
/* === BOAT CARD SLIDER (first boat test) === */

.boat-slider{
  position: relative;
  overflow: hidden;
}

.boat-slider__link{
  display: block;
}

.boat-slider__image{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.boat-slider__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .68);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  font-size: 18px;
  line-height: 1;
  transition: background .15s ease, transform .15s ease;
}

.boat-slider__arrow:hover{
  background: rgba(11, 74, 162, .88);
}

.boat-slider__arrow--prev{
  left: 10px;
}

.boat-slider__arrow--next{
  right: 10px;
}

@media (max-width: 600px){
  .boat-slider__arrow{
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}
/* === MOBILE SWIPE SUPPORT === */

.boat-slider{
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.boat-slider__image{
  -webkit-user-drag: none;
  user-select: none;
}
/* === LIGHTBOX GALLERY === */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.lightbox.is-open{
  display: flex;
}

.lightbox__stage{
  max-width: min(1100px, calc(100vw - 140px));
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image{
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox__arrow--prev{
  left: 24px;
}

.lightbox__arrow--next{
  right: 24px;
}

.lightbox__close:hover,
.lightbox__arrow:hover{
  background: rgba(255,255,255,.2);
}

body.lightbox-open{
  overflow: hidden;
}

@media (max-width: 980px){
  .gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .lightbox{
    padding: 16px;
  }

  .lightbox__stage{
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 110px);
  }

  .lightbox__image{
    max-height: calc(100vh - 110px);
  }

  .lightbox__arrow{
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .lightbox__arrow--prev{
    left: 12px;
  }

  .lightbox__arrow--next{
    right: 12px;
  }

  .lightbox__close{
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}
.lightbox{
  touch-action: pan-y;
}

.lightbox__image{
  -webkit-user-drag: none;
  user-select: none;
}
/* === TOPBAR LANGUAGE SWITCHER / FLAGS ONLY === */

.lang-switcher{
  position: relative;
}

.lang-switcher__toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 54px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  cursor: pointer;
  line-height: 1;
}

.lang-switcher__toggle:hover{
  background: rgba(255,255,255,.10);
}

.lang-switcher__flag{
  font-size: 18px;
  line-height: 1;
}

.lang-switcher__caret{
  font-size: 11px;
  opacity: .9;
}

.lang-switcher__menu{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(2, 6, 23, .18);
  z-index: 300;
}

.lang-switcher:hover .lang-switcher__menu,
.lang-switcher:focus-within .lang-switcher__menu{
  display: grid;
}

.lang-switcher__item{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  transition: background .15s ease, transform .08s ease;
}

.lang-switcher__item:hover{
  background: rgba(11,74,162,.08);
}

.lang-switcher__item.is-active{
  background: rgba(11,74,162,.10);
}

/* Mobile adjustment */
@media (max-width: 680px){
  .topbar__inner{
    align-items: flex-start;
  }

  .topbar__right{
    margin-left: auto;
  }

  .lang-switcher__toggle{
    min-width: 50px;
    height: 34px;
    padding: 0 8px;
  }

  .lang-switcher__flag{
    font-size: 16px;
  }

  .lang-switcher__menu{
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    min-width: 108px;
    padding: 8px;
  }

  .lang-switcher__item{
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px){
  .topbar__inner{
    gap: 10px;
  }

  .topbar__left{
    gap: 8px;
  }

  .topbar__right{
    flex: 0 0 auto;
  }

  .lang-switcher__menu{
    right: 0;
  }
}
/* === LANGUAGE SWITCHER FLAG IMAGES === */

.lang-switcher__flag-img{
  display: block;
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15,23,42,.08);
}

.lang-switcher__toggle .lang-switcher__flag-img{
  width: 20px;
  height: 14px;
}

.lang-switcher__item .lang-switcher__flag-img{
  width: 22px;
  height: 16px;
}

@media (max-width: 680px){
  .lang-switcher__toggle .lang-switcher__flag-img{
    width: 18px;
    height: 13px;
  }

  .lang-switcher__item .lang-switcher__flag-img{
    width: 20px;
    height: 14px;
  }
}