* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #101010;
    --bg-soft: #161616;
    --surface: #1b1b1b;
    --surface-2: #212121;
    --surface-3: #272727;
    --line: #2d2d2d;
    --line-soft: #232323;
    --text: #f5f5f5;
    --muted: #b7b7b7;
    --muted-2: #8f8f8f;
    --red: #c80000;
    --red-hover: #a90000;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 20px 50px rgba(0,0,0,0.22);
    --container: 1100px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
      margin: 0;
  overflow-x: hidden;
}

body {
    font-family: 'Satoshi', 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(circle at top, rgba(200, 0, 0, 0.08), transparent 28%), var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  margin: 0;
  overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -50px;
    background: var(--white);
    color: #111;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    z-index: 200;
    transition: top 0.2s ease;
}

    .skip-link:focus {
        top: 16px;
    }

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

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
}

h1, h2, h3, h4 {
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.9rem;
}

h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

p {
    max-width: 65ch;
}

.lead {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 3px solid #b7b7b7;
}

.nav-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}


/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.brand-text {
    color: #9a9a9a;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo {
    width: 185px;
    height: auto;
    object-fit: contain;
}

.brand-fallback {
    display: none;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--white);
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-left: auto;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: #d0d0d0;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

/* hover underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--red);
    transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

.hamburger {
    position: fixed;
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    right: 0px;
}   

    .hamburger span {
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: var(--white);
        display: block;
    }

    .hamburger:focus-visible,
    .btn:focus-visible,
    .form-submit:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    a:focus-visible {
        outline: 2px solid var(--red);
        outline-offset: 3px;
    }

/* HERO */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.73)), url("images/Honda.png") center 20% / 100% no-repeat;
    color: #fff;
    padding: 6rem 0;

}

.hero-inner {
    text-align: center;
}

.hero-text {
    font-size: 1.06rem;
    margin: 1rem auto 0;
}

.hero-points {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 2rem 0 2.2rem;
}

    .hero-points span {
        border: 1px solid var(--line);
        background: rgba(255,255,255,0.02);
        color: #d8d8d8;
        padding: 0.7rem 1rem;
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 700;
    }

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero h1,
.hero-text,
.hero .eyebrow {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.92rem;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--red);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--red-hover);
    }

.btn-secondary {
    background-color: #0f0f0f;
    color: var(--white);
    border: 1px solid var(--line);
}

    .btn-secondary:hover {
        background-color: #2e2e2e;
        border-color: #4a4a4a;
    }

/* INFO */
.info-strip {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line-soft);
}

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

.iitem {
    padding: 1.2rem 1.4rem;
    border-right: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .iitem:last-child {
        border-right: 0;
    }

.label {
    color: var(--muted-2);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.iitem a,
.iitem span:last-child {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

    .iitem a:hover {
        color: #ff5c5c;
    }

/* SECTIONS */
.section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-dark {
    background: var(--bg-soft);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

/* SERVICES SECTION */
.services-wrap {
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-heading .lead {
    margin-inline: auto;
    max-width: 700px;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.scard {
    background: var(--surface);
    padding: 1.5rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.18s ease, background 0.18s ease;
}

    .scard:hover {
        background: var(--surface-2);
        transform: translateY(-2px);
    }

.scard-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-bottom: 0.75rem;
}

    .scard-head h3 {
        margin: 0;
        line-height: 1.1;
    }

.tjanster-icon {
    width: 48px;
    height: 48px;
    display: block;
    flex: 0 0 auto;
}

.tjanster-text {
    font-size: 16px !important;
}

.scard p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gitem {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    position: relative;
}

.gallery-btn {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    display: block;
}

    .gallery-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .gallery-btn:hover img {
        transform: scale(1.04);
        opacity: 0.94;
    }

.gph {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
}

    .modal.open {
        display: block;
    }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(92vw, 1000px);
    max-height: 90vh;
    margin: 4vh auto;
    padding: 1rem;
    border-radius: 14px;
    background: #111;
    border: 1px solid #2e2e2e;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

    .modal-content img {
        width: 100%;
        max-height: calc(90vh - 2rem);
        object-fit: contain;
        border-radius: 10px;
    }

.modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

    .modal-close:hover {
        background: rgba(255,255,255,0.18);
    }


.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.gallery-page-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--text);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.gallery-page-btn:hover:not(:disabled) {
    background: var(--surface-3);
    border-color: #4a4a4a;
    transform: translateY(-1px);
}

.gallery-page-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.gallery-page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

/* CONTACT */
.contact-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.cinfo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crow {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}

    .crow h3 {
        margin-bottom: 0.45rem;
    }

    .crow a,
    .crow p {
        color: var(--muted);
    }

        .crow a:hover {
            color: var(--white);
            text-decoration: underline;
        }

.divider {
    display: none;
}

.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
}

/* FORM */
.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.flash {
    display: none;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

    .flash.show {
        display: block;
    }

.flash-ok {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #9be6b0;
}

.flash-err {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #ffb2b2;
}

.fg {
    margin-bottom: 1rem;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.fg label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--text);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

    .fg input::placeholder,
    .fg textarea::placeholder {
        color: #8d8d8d;
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(200, 0, 0, 0.14);
        background: #242424;
        outline: none;
    }

.fg textarea {
    min-height: 120px;
    resize: vertical;
}

.reg-field input {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.form-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 10px;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

    .form-submit:hover {
        background: var(--red-hover);
        transform: translateY(-1px);
    }

.fnote {
    color: var(--muted-2);
    text-align: center;
    font-size: 0.82rem;
    margin-top: 0.75rem;
}

/* FOOTER */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-inner {
    width: auto;
    max-width: 100%;
    padding: 1.5rem 1rem;
    text-align: center;
    white-space: nowrap;
    color: var(--muted-2);
    font-size: 0.82rem;
}

/* Review */

#recensioner {
  position: relative;
  background-image: url("images/Pawel.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#recensioner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

#recensioner .container {
  position: relative;
  z-index: 1;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.75rem;
}

.review-form-card {
  margin-top: 0;
}

.reviews-panel {
  min-width: 0;
}

.reviews-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pagination-btn {
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--surface-3);
}

.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pagination-info {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.no-reviews {
  color: rgba(255, 255, 255, 0.8);
  max-width: none;
}

.review-item {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  color: #f4f4f4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.review-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.review-date {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.review-stars {
  color: #ffd54a;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.review-comment {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  white-space: pre-wrap;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.15rem;
  align-items: center;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  font-size: 2rem;
  line-height: 1;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ffd54a;
}

.star-rating label:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.flash {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.flash.show {
  display: block;
}

.flash-ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #9be6b0;
}

.flash-err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #ffb2b2;
}

/* Social Media */

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  background: var(--surface-3);
  border-color: #4a4a4a;
  color: #fff;
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .review-top {
    align-items: flex-start;
  }

  .star-rating label {
    font-size: 1.7rem;
  }

  .reviews-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .pagination-btn {
    width: 100%;
  }

  .pagination-info {
    text-align: center;
  }
}


/* MOBILE */
@media (max-width: 900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .iitem {
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

        .iitem:last-child {
            border-bottom: 0;
        }
}

@media (max-width: 760px) {
    .nav-inner {
        min-height: 78px;
    }

    .logo {
        width: 140px;
    }

    .hamburger {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        padding: 1rem;
        background: #0f0f0f;
        border-top: 1px solid var(--line-soft);
        border-bottom: 1px solid var(--line-soft);
        flex-direction: column;
        gap: 0.2rem;
    }

    .nav.open .nav-links {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 10px;
        text-align: center;
    }

    .fg-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 4rem;
    }
}

@media (max-width: 520px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .container {
        width: min(100% - 1.2rem, var(--container));
    }

    .hero-points {
        gap: 0.6rem;
    }

        .hero-points span {
            width: 100%;
        }

    .btn {
        width: 100%;
    }

    .footer-inner {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 400px) {

    .brand {
    position: relative;
    left: -10px;
    height: 130px;
    }

    .brand-text h3 {
        font-size: 15px;
    }

    .brand-text{
    left: -10px !important;
    font-size: 10px;
    }

}

/* NAV ACTIONS: SOCIALA MEDIER + SPRÅKVÄLJARE */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-left: 1.6rem;
    flex-shrink: 0;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-social .social-link {
    width: 36px;
    height: 36px;
}

.nav-social .social-link svg {
    width: 18px;
    height: 18px;
}

.nav-social .social-link:hover {
    background: rgba(200, 0, 0, 0.16);
    border-color: var(--red);
    color: var(--white);
}

/* Språkväljare */
.lang-switch {
    position: relative;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 36px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: #d0d0d0;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lang-btn:hover {
    background: var(--surface-3);
    border-color: #4a4a4a;
    color: var(--white);
}

.lang-caret {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.lang-switch.open .lang-caret {
    transform: rotate(180deg);
}

.flag {
    display: inline-flex;
    width: 22px;
    height: 15px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 176px;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: #141414;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    display: none;
    z-index: 200;
}

.lang-switch.open .lang-menu {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.55rem 0.6rem;
    border: 0;
    border-radius: 6px;
    background: none;
    color: #d0d0d0;
    font: inherit;
    font-size: 0.88rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
    background: var(--surface-2);
    color: var(--white);
}

.lang-option[aria-selected="true"] {
    background: rgba(200, 0, 0, 0.16);
    color: var(--white);
}

@media (max-width: 1050px) {
    .nav-links {
        gap: 1.3rem;
    }

    .nav-actions {
        margin-left: 0.9rem;
        gap: 0.6rem;
    }

    .logo {
        width: 150px;
    }
}

@media (max-width: 950px) {
    .brand-text {
        display: none;
    }
}

@media (max-width: 760px) {
    .brand {
        min-width: 0;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 52px;
        gap: 0.5rem;
    }

    .nav-social {
        gap: 0.35rem;
    }
}

@media (max-width: 560px) {
    .logo {
        width: 115px;
    }

    .lang-code {
        display: none;
    }

    .nav-actions {
        margin-right: 56px;
        gap: 0.4rem;
    }

    .nav-social .social-link {
        width: 32px;
        height: 32px;
    }

    .nav-social .social-link svg {
        width: 16px;
        height: 16px;
    }

    .lang-btn {
        height: 32px;
        padding: 0 0.5rem;
        gap: 0.35rem;
    }
}

@media (max-width: 400px) {
    .logo {
        width: 92px;
    }

    .nav-actions {
        margin-right: 52px;
        gap: 0.3rem;
    }

    .nav-social .social-link {
        width: 30px;
        height: 30px;
    }
}
