:root {

    /* ======================================
       Colors
    ====================================== */

    --primary: #ef1f26;
    --primary-dark: #c90e15;

    --black: #070707;
    --text: #111111;
    --gray: #6c7077;
    --light-gray: #f5f6f7;
    --border: #e5e7ea;
    --white: #ffffff;

    /* ======================================
       Typography
    ====================================== */

    --font-family: "Inter", sans-serif;

    /* Display */
    --fs-display: clamp(3.5rem, 2.7rem + 2.8vw, 5.5rem);

    /* Headings */
    --fs-h1: clamp(3rem, 2.2rem + 2.2vw, 4.875rem);
    --fs-h2: clamp(2.25rem, 1.8rem + 1.6vw, 3.75rem);
    --fs-h3: clamp(1.5rem, 1.3rem + .7vw, 2rem);
    --fs-h4: clamp(1.25rem, 1.15rem + .35vw, 1.5rem);
    --fs-h5: clamp(1.125rem, 1.05rem + .2vw, 1.25rem);
    --fs-h6: clamp(1rem, .97rem + .15vw, 1.125rem);

    /* Body */
    --fs-body-lg: clamp(1.125rem, 1.05rem + .25vw, 1.25rem);
    --fs-body: clamp(.9375rem, .91rem + .18vw, 1rem);
    --fs-small: clamp(.8125rem, .79rem + .12vw, .875rem);
    --fs-xs: clamp(.6875rem, .67rem + .08vw, .75rem);

    /* Line Height */

    --lh-heading: 1.1;
    --lh-body: 1.7;

    /* Weight */

    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* ======================================
       Layout
    ====================================== */

    --container-width: 1440px;

    --section-space: 100px;

    /* ======================================
       Radius
    ====================================== */

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* ======================================
       Shadow
    ====================================== */

    --shadow-card: 0 18px 50px rgba(0,0,0,.12);
    --header-shadow: 0 10px 30px rgba(0,0,0,.08);
    --button-shadow: 0 10px 25px rgba(239,31,38,.22);

    /* ======================================
       Transition
    ====================================== */

    --transition: 250ms ease;

}
body{
    font-family: var(--font-family);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text);
}

h1{
    font-size:var(--fs-h1);
    line-height:1.08;
    font-weight:800;
    letter-spacing:-.04em;
}

h2{
    font-size:var(--fs-h2);
    line-height:1.1;
    font-weight:800;
    letter-spacing:-.035em;
}

h3{
    font-size:var(--fs-h3);
    line-height:1.2;
    font-weight:700;
}

h4{
    font-size:var(--fs-h4);
    line-height:1.25;
    font-weight:700;
}

h5{
    font-size:var(--fs-h5);
    line-height:1.3;
    font-weight:700;
}

h6{
    font-size:var(--fs-h6);
    line-height:1.35;
    font-weight:700;
}

p{
    font-size:var(--fs-body);
    line-height:var(--lh-body);
    color:var(--gray);
}

/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-family);
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
}


/* =========================
   Top Bar
========================= */

.topbar {
    position: relative;
    z-index: 1001;
    overflow: hidden;
    border-bottom: 1px solid rgba(239, 31, 38, 0.24);
    background:
        linear-gradient(90deg,
            #050505 0%,
            #121212 50%,
            #050505 100%);
    color: var(--white);
}

.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 280px;
    background: rgba(239, 31, 38, 0.07);
    filter: blur(55px);
    pointer-events: none;
    transform: translateX(-50%);
}

.topbar__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 8px;
}

.topbar__left,
.topbar__right {
    display: flex;
    align-items: center;
}

.topbar__left {
    gap: 14px;
}

.topbar__right {
    gap: 0;
}

.topbar__trust {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.topbar__dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary);
    animation: pulseDot 1.8s infinite ease-out;
}

@keyframes pulseDot {
    0% {
        box-shadow:
            0 0 0 0 rgba(239, 31, 38, 0.45),
            0 0 10px rgba(239, 31, 38, 0.7);
    }

    70% {
        box-shadow:
            0 0 0 10px rgba(239, 31, 38, 0),
            0 0 18px rgba(239, 31, 38, 0.3);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(239, 31, 38, 0),
            0 0 10px rgba(239, 31, 38, 0);
    }
}

.topbar__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border: 1px solid rgba(239, 31, 38, 0.28);
    border-radius: 50px;
    background: rgba(239, 31, 38, 0.1);
    color: #ff777b;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.topbar__item,
.topbar__phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.topbar__right>*+* {
    margin-left: 16px;
    padding-left: 16px;
}

.topbar__right>*+*::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-50%);
}

.topbar__phone {
    gap: 7px;
    color: var(--white);
    font-weight: 700;
    transition: color var(--transition);
}

.topbar__phone svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.topbar__phone:hover {
    color: #ff777b;
}

.topbar__mobile-text {
    display: none;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--header-shadow);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding-block: 8px;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand__logo {
    width: 80px;
    height: auto;
    object-fit: contain;
}


/* Navigation */
/* 
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.4vw, 38px);
    margin-inline: auto;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-block: 8px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    left: 50%;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
    transition:
        right var(--transition),
        left var(--transition);
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
    left: 0;
} */
/* =========================
   Main Navigation
========================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.4vw, 38px);
    margin-inline: auto;
}

.main-nav > a,
.nav-dropdown__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-block: 8px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--transition);
}

.main-nav > a::after,
.nav-dropdown__toggle::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    left: 50%;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
    transition:
        right var(--transition),
        left var(--transition);
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown__toggle:hover,
.nav-dropdown.open .nav-dropdown__toggle {
    color: var(--primary);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown.open .nav-dropdown__toggle::after {
    right: 0;
    left: 0;
}


/* =========================
   Global Dropdown
========================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown__toggle {
    gap: 6px;
}

.nav-dropdown__toggle svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown__toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 200;
    min-width: 220px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--header-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.nav-dropdown__menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    background: var(--white);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown.open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}


/* Reusable mega-menu modifier */

.nav-dropdown__menu--mega {
    width: 650px;
}


/* =========================
   Mega Menu Content
========================= */

.mega-menu__list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-menu__column {
    width: calc((100% - 48px) / 3);
    min-width: 0;
}

.mega-menu__heading {
    position: relative;
    display: flex;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--black);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    transition: color var(--transition);
}

.mega-menu__heading::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.mega-menu__heading:hover {
    color: var(--primary);
}

.mega-menu__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.mega-menu__links a {
    display: inline-flex;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    transition:
        color var(--transition),
        transform var(--transition);
}

.mega-menu__links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}


/* =========================
   1200px
========================= */

@media (max-width: 1200px) {
    .main-nav > a,
    .nav-dropdown__toggle {
        font-size: 14px;
    }

    .nav-dropdown__menu--mega {
        width: 600px;
    }
}


/* =========================
   1024px
========================= */

@media (max-width: 1024px) {
    .nav-dropdown {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        border-bottom: 1px solid var(--border);
    }

    .nav-dropdown__toggle {
        width: 100%;
        justify-content: space-between;
        padding-block: 14px;
        padding-inline: 0 !important;
        text-align: left;
    }

    .nav-dropdown__toggle::after {
        display: none;
    }

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

    .nav-dropdown__menu,
    .nav-dropdown__menu--mega {
        position: static;
        width: 100%;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 !important;
        border: 0;
        border-radius: 0;
        background: var(--white);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition:
            max-height var(--transition),
            padding var(--transition);
    }

    .nav-dropdown__menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown__menu {
        max-height: unset !important;
        padding-block: 0 !important;
        transform: none;
    }

    .mega-menu__list {
        gap: 22px;
    }

    .mega-menu__column {
        width: 100%;
    }
}


/* =========================
   767px
========================= */

@media (max-width: 767px) {
    .mega-menu__list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 22px;
    }

    .mega-menu__column {
        width: 100%;
    }

    .nav-dropdown__menu {
        padding-inline: 10px;
    }
}

/* Header Actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.login-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid transparent;
    border-radius: 999px;
    border-color: rgba(239, 31, 38, 0.16);
    background: rgba(239, 31, 38, 0.055);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.login-link svg {
    width: 18px;
    height: 18px;
}
.login-link:hover{
    background: var(--primary);
    color: var(--white);
}


/* =========================
   User Menu - Initials Avatar
========================= */

.user-menu {
    position: relative;
    flex-shrink: 0;
}

.user-menu__toggle {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(7, 7, 7, 0.10);
    border-radius: 999px;
    background: #ffffff;
    color: var(--black);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(7, 7, 7, 0.06);
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.user-menu__toggle:hover,
.user-menu.open .user-menu__toggle {
    border-color: rgba(239, 31, 38, 0.24);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 7, 7, 0.10);
    transform: translateY(-1px);
}

.user-menu__avatar,
.user-dropdown__avatar {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, var(--primary), #b90008);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}



/* Dropdown */

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 100;
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(7, 7, 7, 0.10);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(7, 7, 7, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: top right;
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.user-menu.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 23px;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(7, 7, 7, 0.10);
    border-left: 1px solid rgba(7, 7, 7, 0.10);
    background: #ffffff;
    transform: rotate(45deg);
}

.user-dropdown__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 10px 13px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(7, 7, 7, 0.08);
}

.user-dropdown__avatar {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 13px;
}

.user-dropdown__head strong {
    max-width: 145px;
    display: block;
    overflow: hidden;
    color: var(--black);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown__head small {
    display: block;
    margin-top: 3px;
    color: var(--gray);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.user-dropdown a {
    position: relative;
    z-index: 1;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--black);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.user-dropdown a:hover {
    background: rgba(239, 31, 38, 0.065);
    color: var(--primary);
    transform: translateX(2px);
}

.user-dropdown #logoutBtn {
    margin-top: 5px;
    color: var(--primary);
}

.user-dropdown #logoutBtn:hover {
    background: rgba(239, 31, 38, 0.085);
}


/* =========================
   Mobile
========================= */

@media (max-width: 767px) {
    .login-link {
        min-height: 38px;
        padding: 8px 9.5px;
        font-size: 13px;
    }

    .login-link svg {
        width: 17px;
        height: 17px;
    }

    .user-menu__toggle {
        min-width: 40px;
        min-height: 40px;
    }

    .user-menu__avatar {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        font-size: 11px;
    }
    .user-dropdown {
        right: -12px;
        width: 215px;
    }

    .user-dropdown::before {
        right: 24px;
    }
}

@media (max-width: 420px) {
    .user-dropdown {
        right: -8px;
        width: 205px;
    }
}
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 18px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--button-shadow);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.header-cta:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* Menu Button */

.menu-toggle {
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    padding: 0;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 10px;
    transition:
        transform var(--transition),
        opacity var(--transition);
    background: var(--white);
    }

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* 1200px */

@media (max-width: 1200px) {
    .topbar__inner {
        gap: 18px;
    }

    .topbar__left {
        gap: 10px;
    }

    .topbar__right>*+* {
        margin-left: 12px;
        padding-left: 12px;
    }

    .site-header__inner {
        gap: 24px;
    }

    .main-nav {
        gap: 22px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .header-actions {
        gap: 12px;
        /* flex: 1; */
        justify-content: flex-end;
    }

    .header-cta {
        padding-inline: 15px;
    }
    :root{
            --section-space: 70px;
    }
}


/* 1024px */


@media (max-width: 1024px) {
     .header-actions {
       
       flex: 1;
       
    }

    .topbar__badge,
    .topbar__hours {
        display: none;
    }

    .site-header__inner {
        gap: 18px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 100vw;
        max-height: 0;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        padding-inline: 20px;
        border-top: 1px solid var(--border);
        background: var(--white);
        box-shadow: var(--header-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition:
            max-height var(--transition),
            padding var(--transition),
            opacity var(--transition),
            visibility var(--transition);
    }

    /* .main-nav.open {
        max-height: 420px;
        padding-block: 14px;
        opacity: 1;
        visibility: visible;
    } */

    .main-nav.open {
        padding-block: 14px;
        opacity: 1;
        visibility: visible;
        overflow: auto !important;
        top: 100%;
        max-height: calc(100dvh - 150px);
        justify-content: flex-start;
        width: calc(100% + 40px);
        left: -20px;
        transform: translateX(0);
    }
    .main-nav>a:first-child{
        padding-top: 0 !important;
    }
    .main-nav>a {
        justify-content: flex-start;
        padding-block: 14px;
        border-bottom: 1px solid var(--border);
    }

    .main-nav .mega-menu__links  li {
        padding-bottom: 6px;
        border-bottom: 1px solid var(--border);
    }
    .main-nav .mega-menu__links li:last-child{
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .mega-menu__links{
        gap: 6px !important;
        margin-top: 10px;
    }
    .main-nav>a:last-child {
        border-bottom: 0;
    }
    .main-nav .mega-menu__column{
        padding-bottom: 14px;
    }
    .main-nav .mega-menu__column:not(:last-child){
        border-bottom: 1px solid var(--border);
    }

    .mega-menu__heading {
        border: none;
        padding-bottom: 0;
    }
    .main-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }
    :root{
            --section-space: 50px;
    }
}


/* 767px */

@media (max-width: 767px) {
    .topbar__inner {
        justify-content: space-between;
        gap: 12px;
        padding-block: 7px;
    }

    .topbar__desktop-text,
    .topbar__item {
        display: none;
    }

    .topbar__mobile-text {
        display: inline;
    }

    .topbar__trust,
    .topbar__phone {
        font-size: 9px;
    }

    .topbar__right>*+* {
        margin-left: 0;
        padding-left: 0;
    }

    .topbar__right>*+*::before {
        display: none;
    }

    .topbar__phone svg {
        width: 13px;
        height: 13px;
    }

    /* .container {
        width: min(calc(100% - 28px), var(--container-width));
    } */

    .topbar__inner {
        justify-content: center;
        padding-block: 6px;
    }

    .topbar__links {
        display: none;
    }

    .topbar__text {
        font-size: 9px;
        text-align: center;
    }

    .site-header__inner {
        padding-block: 7px;
    }

    .brand__logo {
        width: 68px;
    }

    .header-actions .header-cta {
        display: none;
    }

    .menu-toggle {
        width: 35px;
        height: 35px;
    }

    .main-nav {
        padding-inline: 14px;
    }
    :root{
        --section-space: 40px;
    }
    .login-link span {
        display: none;
    }
}

/* =========================
   Footer CTA
========================= */

.footer-cta {
    background: var(--black);
    color: var(--white);
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-block: 56px;
}

.footer-cta h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.footer-cta h2 strong {
    color: var(--primary);
}

.footer-cta__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.footer-button svg {
    width: 17px;
    height: 17px;
}

.footer-button:hover {
    transform: translateY(-2px);
}

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

.footer-button--primary:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
}

.footer-button--outline {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
}

.footer-button--outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}


/* =========================
   Main Footer
========================= */

.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-main {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    padding-block: 64px;
}


/* =========================
   Footer Brand
========================= */

.footer-brand {
    width: 340px;
    flex-shrink: 0;
}

.footer-brand__logo {
    display: inline-flex;
    margin-bottom: 22px;
}

.footer-brand__logo img {
    width: 100px;
    height: auto;
}

.footer-brand__description {
    max-width: 320px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.65;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.footer-contact svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: var(--primary);
}

.footer-contact a {
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}


/* =========================
   Social Links
========================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.82);
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.footer-socials a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 17px;
    height: 17px;
}


/* =========================
   Footer Links
========================= */
/* =========================
   Footer Links
========================= */

.footer-links {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
}

.footer-column {
    width: calc((100% - 120px) / 4);
    min-width: 0;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a {
    position: relative;
    display: inline-flex;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.3;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* =========================
   Footer Bottom
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 25px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}

.footer-bottom__status {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-bottom__status svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}

.show_mobile_btn{
    display: none !important;
}
/* =========================
   Breakpoint: 1200px
========================= */

@media (max-width: 1200px) {
    .footer-main__inner {
        gap: 50px;
    }

    .footer-brand {
        width: 280px;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-column {
        width: calc((100% - 72px) / 4);
    }

    .footer-column h3 {
        font-size: 13px;
        letter-spacing: 0.06em;
    }

    .footer-column a {
        font-size: 13px;
    }
}

/* =========================
   Breakpoint: 1024px
========================= */

@media (max-width: 1024px) {
    .footer-cta__inner {
        padding-block: 48px;
    }

    .footer-main__inner {
        flex-wrap: wrap;
        gap: 50px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-brand__description {
        max-width: 550px;
    }

    .footer-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 40px 20px;
    }

    .footer-column {
        width: calc((100% - 90px) / 4);
    }
}


/* =========================
   Breakpoint: 767px
========================= */

@media (max-width: 767px) {
    .footer-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 40px;
    }

    .footer-cta h2 {
        font-size: 34px;
    }

    .footer-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-button {
        width: 100%;
    }

    .footer-main__inner {
        padding-block: 46px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-column {
         width: calc((100% - 30px) / 2);
    }

    .footer-column h3 {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .footer-column ul {
        gap: 12px;
    }

    .footer-column a {
        font-size: 14px;
    }

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 22px;
    }
    .hide_mobile_btn{
        display: none !important;
    }
    .show_mobile_btn{
        display: inline-flex !important;
    }
}


/* =========================
   Breakpoint: 575px
========================= */

@media (max-width: 575px) {
    .footer-links {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 36px;
    }
    .footer-column {
        width: 100%;
    }
}


.iti__search-input-wrapper .iti__country-selector {
    overflow: hidden;
}
.iti__search-input-wrapper input.iti__search-input {
    padding-left: 30px;
    border: none !important;
    border-radius: 0 !IMPORTANT;
}
.iti--input-container .iti__country-list{
    border-radius: 0 !important;
}