@charset "UTF-8";

/* =========================================================
   ANTALYA TURLARI — TUR HEADER
   Referans görsele göre sıfırdan hazırlanmış final sürüm
========================================================= */

:root {
    --at-navy: #03152b;
    --at-navy-rgb: 3, 21, 43;
    --at-navy-2: #0b496e;
    --at-navy-2-rgb: 11, 73, 110;
    --at-cyan: #39d9e8;
    --at-cyan-rgb: 57, 217, 232;
    --at-coral: #ff6548;
    --at-coral-rgb: 255, 101, 72;
    --at-text: #f7fbff;
    --at-button-text: #ffffff;
    --at-header-height: 98px;
    --at-header-gap: 20px;
}

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

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

html {
    scroll-padding-top: calc(var(--at-header-height) + 24px);
}

body.is-home {
    padding-top: 0 !important;
}

body.is-inner {
    padding-top: 126px !important;
}

html.at-menu-open,
body.at-menu-open {
    overflow: hidden !important;
    touch-action: none;
}

/* =========================================================
   HEADER CONTAINER
========================================================= */

.at-header,
.at-header * {
    box-sizing: border-box;
}

.at-header {
    position: fixed !important;
    top: 12px !important;
    right: 20px !important;
    left: 20px !important;
    z-index: 99990 !important;
    height: var(--at-header-height) !important;
    min-height: var(--at-header-height) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none;
}

.at-header::after {
    display: none !important;
}

.at-header__bar {
    display: grid;
    grid-template-columns: minmax(300px, 350px) minmax(0, 1fr) auto;
    width: 100%;
    height: 100%;
    min-width: 0;
    align-items: center;
    gap: 28px;
    padding: 0 28px;
    border: 1px solid rgba(215, 240, 250, .35);
    border-radius: 20px;
    background:
        radial-gradient(circle at 95% 45%, rgba(var(--at-coral-rgb), .22), transparent 18%),
        linear-gradient(
            96deg,
            rgba(var(--at-navy-rgb), .98) 0%,
            rgba(var(--at-navy-2-rgb), .90) 58%,
            rgba(var(--at-navy-2-rgb), .68) 100%
        );
    color: var(--at-text);
    box-shadow:
        0 16px 42px rgba(0, 8, 22, .24),
        inset 0 1px rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    pointer-events: auto;
    transition:
        min-height .22s ease,
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.at-header.is-scrolled {
    top: 7px !important;
}

.at-header.is-scrolled .at-header__bar {
    min-height: 84px;
    border-color: rgba(215, 240, 250, .28);
    background:
        linear-gradient(
            96deg,
            rgba(var(--at-navy-rgb), .995),
            rgba(var(--at-navy-2-rgb), .96)
        );
    box-shadow:
        0 18px 46px rgba(0, 8, 22, .32),
        inset 0 1px rgba(255, 255, 255, .07);
}

/* =========================================================
   LOGO
========================================================= */

.at-header__logo {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    color: var(--at-text);
    text-decoration: none !important;
}

.at-header__logo img {
    display: block !important;
    width: 286px !important;
    height: 80px !important;
    max-width: 100% !important;
    max-height: 80px !important;
    object-fit: contain !important;
    object-position: left center !important;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.at-header__nav {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 2vw, 42px);
}

.at-header__nav-item {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
}

.at-header__nav-link {
    position: relative;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--at-text) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .24);
    white-space: nowrap;
    transition: color .18s ease, transform .18s ease;
}

.at-header__nav-link::after {
    position: absolute;
    right: 10%;
    bottom: 2px;
    left: 10%;
    height: 2px;
    border-radius: 999px;
    background: var(--at-cyan);
    box-shadow: 0 0 12px rgba(var(--at-cyan-rgb), .48);
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .18s ease;
}

.at-header__nav-link:hover,
.at-header__nav-link:focus-visible,
.at-header__nav-link.is-active {
    color: #fff !important;
    transform: translateY(-1px);
}

.at-header__nav-link:hover::after,
.at-header__nav-link:focus-visible::after,
.at-header__nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Dropdown */
.at-header__dropdown {
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    z-index: 20;
    display: grid;
    width: 250px;
    padding: 10px;
    border: 1px solid rgba(200, 231, 250, .24);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--at-navy-rgb), .99),
            rgba(var(--at-navy-2-rgb), .97)
        );
    box-shadow: 0 22px 50px rgba(0, 8, 22, .34);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.at-header__nav-item:hover .at-header__dropdown,
.at-header__nav-item:focus-within .at-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.at-header__dropdown > a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 12px;
    border-radius: 9px;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color .16s ease, background .16s ease, padding .16s ease;
}

.at-header__dropdown > a:hover,
.at-header__dropdown > a:focus-visible,
.at-header__dropdown > a.is-active {
    padding-left: 15px;
    color: #fff !important;
    background: rgba(var(--at-cyan-rgb), .10);
}

.at-header__dropdown svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--at-cyan);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   RIGHT ACTIONS
========================================================= */

.at-header__actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-left: 0;
}

.at-header__languages {
    display: flex;
    align-items: center;
    gap: 10px;
}

.at-header__language {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 6px;
    color: rgba(247, 252, 255, .86) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .18s ease, opacity .18s ease;
}

.at-header__language:hover,
.at-header__language.is-active {
    color: #fff !important;
}

.at-header__language:not(.is-active) {
    opacity: .9;
}

.at-header__flag {
    display: grid;
    width: 31px;
    height: 31px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .20);
    font-size: 23px;
    line-height: 1;
}

.at-header__divider {
    display: block;
    width: 1px;
    height: 32px;
    background: rgba(215, 239, 252, .34);
}

.at-header__whatsapp {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    color: var(--at-text) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
}

.at-header__whatsapp svg,
.at-mobile-menu__whatsapp svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #93edf2;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 7px rgba(var(--at-cyan-rgb), .28));
}

.at-header__search-cta {
    display: inline-flex;
    min-width: 122px;
    height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(255, 238, 227, .82) !important;
    border-radius: 12px;
    background: var(--at-coral) !important;
    color: var(--at-button-text) !important;
    box-shadow:
        0 10px 28px rgba(var(--at-coral-rgb), .42),
        0 0 24px rgba(var(--at-coral-rgb), .20),
        inset 0 1px rgba(255, 255, 255, .24);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .02em;
    text-decoration: none !important;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.at-header__search-cta:hover,
.at-header__search-cta:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
        0 14px 34px rgba(var(--at-coral-rgb), .52),
        0 0 30px rgba(var(--at-coral-rgb), .24);
}

/* =========================================================
   HAMBURGER
========================================================= */

.at-header__menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 13px;
    background: rgba(255, 255, 255, .07);
    cursor: pointer;
}

.at-header__menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: #fff;
}

/* =========================================================
   INNER PAGE BANNER
========================================================= */

.at-page-banner {
    position: relative;
    min-height: 220px;
    margin-top: -126px;
    padding: 160px 24px 40px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(var(--at-cyan-rgb), .16), transparent 30%),
        linear-gradient(135deg, var(--at-navy), var(--at-navy-2));
}

.at-page-banner__inner {
    width: min(100%, 1320px);
    margin: 0 auto;
}

.at-page-banner nav {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
}

.at-page-banner nav a {
    color: var(--at-cyan) !important;
    text-decoration: none !important;
}

.at-page-banner h1 {
    margin: 11px 0 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -.035em;
}

/* =========================================================
   MOBILE DRAWER
========================================================= */

.at-mobile-menu,
.at-mobile-menu *,
.at-mobile-overlay {
    box-sizing: border-box;
}

.at-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100010;
    display: flex;
    width: min(430px, 92vw);
    height: 100dvh;
    flex-direction: column;
    overflow: hidden;
    border-left: 1px solid rgba(179, 227, 247, .20);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--at-cyan-rgb), .18), transparent 35%),
        linear-gradient(160deg, var(--at-navy), var(--at-navy-2) 65%, var(--at-navy));
    color: #fff;
    box-shadow: -28px 0 65px rgba(0, 8, 22, .46);
    opacity: 0;
    visibility: hidden;
    transform: translateX(105%);
    transition: transform .28s ease, opacity .24s ease, visibility .28s ease;
}

.at-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.at-mobile-menu__head {
    display: flex;
    min-height: 90px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.at-mobile-menu__head img {
    display: block;
    width: 230px;
    max-width: 68vw;
    height: 66px;
    object-fit: contain;
    object-position: left center;
}

.at-mobile-menu__head button {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    cursor: pointer;
}

.at-mobile-menu__head button span {
    position: absolute;
    top: 21px;
    left: 11px;
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
}

.at-mobile-menu__head button span:first-child {
    transform: rotate(45deg);
}

.at-mobile-menu__head button span:last-child {
    transform: rotate(-45deg);
}

.at-mobile-menu__nav {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 20px;
}

.at-mobile-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.at-mobile-menu__row {
    display: flex;
    min-height: 53px;
    align-items: center;
    justify-content: space-between;
}

.at-mobile-menu__row > a {
    display: flex;
    min-width: 0;
    min-height: 53px;
    flex: 1 1 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    color: rgba(255, 255, 255, .90) !important;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none !important;
}

.at-mobile-menu__row > a.is-active,
.at-mobile-menu__sub > a.is-active {
    color: var(--at-cyan) !important;
}

.at-mobile-menu__row svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.at-mobile-menu__toggle {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .78);
    cursor: pointer;
}

.at-mobile-menu__toggle svg {
    transition: transform .2s ease;
}

.at-mobile-menu__toggle.is-open svg,
.at-mobile-menu__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.at-mobile-menu__sub {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .24s ease, opacity .2s ease, padding .2s ease;
}

.at-mobile-menu__sub.is-open {
    display: block;
    max-height: 600px;
    padding: 1px 0 9px 13px;
    opacity: 1;
}

.at-mobile-menu__sub > a {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 0 12px;
    border-left: 1px solid rgba(var(--at-cyan-rgb), .28);
    color: rgba(255, 255, 255, .70) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.at-mobile-menu__bottom {
    flex: 0 0 auto;
    padding: 18px 20px calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 9, 23, .20);
}

.at-mobile-menu__languages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.at-mobile-menu__languages a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 11px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .82) !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}

.at-mobile-menu__languages a.is-active {
    border-color: rgba(var(--at-cyan-rgb), .48);
    color: #fff !important;
}

.at-mobile-menu__whatsapp,
.at-mobile-menu__cta {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
}

.at-mobile-menu__whatsapp {
    gap: 9px;
    border: 1px solid rgba(107, 244, 160, .28);
    background: rgba(37, 211, 102, .10);
    color: #fff !important;
}

.at-mobile-menu__cta {
    border: 1px solid rgba(255, 238, 227, .72);
    background: var(--at-coral);
    color: var(--at-button-text) !important;
    box-shadow: 0 10px 24px rgba(var(--at-coral-rgb), .27);
}

.at-mobile-menu__phone {
    display: block;
    margin-top: 11px;
    color: rgba(255, 255, 255, .62) !important;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
}

.at-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 8, 22, .68);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity .24s ease, visibility .24s ease;
}

.at-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1600px) {
    .at-header__bar {
        grid-template-columns: minmax(260px, 290px) minmax(0, 1fr) auto;
        gap: 20px;
        padding-inline: 22px;
    }

    .at-header__logo img {
        width: 252px !important;
        height: 74px !important;
    }

    .at-header__nav {
        gap: 24px;
    }

    .at-header__nav-link {
        font-size: 14px;
    }

    .at-header__actions {
        gap: 10px;
    }

    .at-header__languages {
        gap: 7px;
    }

    .at-header__whatsapp {
        font-size: 12px;
    }

    .at-header__search-cta {
        min-width: 112px;
        padding-inline: 16px;
    }
}

@media (max-width: 1380px) {
    .at-header__bar {
        grid-template-columns: minmax(225px, 245px) minmax(0, 1fr) auto;
        gap: 15px;
        padding-inline: 18px;
    }

    .at-header__logo img {
        width: 220px !important;
        height: 68px !important;
    }

    .at-header__nav {
        gap: 17px;
    }

    .at-header__nav-link {
        font-size: 13px;
    }

    .at-header__language > span:last-child,
    .at-header__whatsapp > span {
        display: none;
    }

    .at-header__search-cta {
        min-width: 104px;
        height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 1120px) {
    :root {
        --at-header-height: 82px;
    }

    body.is-inner {
        padding-top: 108px !important;
    }

    .at-header {
        top: 10px !important;
        right: 14px !important;
        left: 14px !important;
        height: var(--at-header-height) !important;
        min-height: var(--at-header-height) !important;
    }

    .at-header__bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 82px;
        gap: 14px;
        padding-inline: 16px;
        border-radius: 18px;
    }

    .at-header__logo img {
        width: 238px !important;
        height: 68px !important;
    }

    .at-header__nav,
    .at-header__selectors,
    .at-header__divider,
    .at-header__whatsapp,
    .at-header__search-cta {
        display: none !important;
    }

    .at-header__actions {
        margin-left: auto;
    }

    .at-header__menu-button {
        display: block;
    }

    .at-page-banner {
        margin-top: -108px;
        padding-top: 140px;
    }
}

@media (max-width: 640px) {
    :root {
        --at-header-height: 72px;
    }

    body.is-inner {
        padding-top: 92px !important;
    }

    .at-header {
        top: 9px !important;
        right: 9px !important;
        left: 9px !important;
        height: var(--at-header-height) !important;
        min-height: var(--at-header-height) !important;
    }

    .at-header.is-scrolled {
        top: 5px !important;
    }

    .at-header__bar {
        min-height: 72px;
        padding-inline: 12px;
        border-radius: 16px;
    }

    .at-header__logo {
        max-width: calc(100% - 60px);
    }

    .at-header__logo img {
        width: min(218px, 68vw) !important;
        height: 61px !important;
    }

    .at-header__menu-button {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .at-page-banner {
        min-height: 190px;
        margin-top: -92px;
        padding: 124px 16px 32px;
    }

    .at-page-banner h1 {
        font-size: 30px;
    }
}

@media (max-width: 380px) {
    .at-header__logo img {
        width: min(190px, 65vw) !important;
    }

    .at-mobile-menu__head,
    .at-mobile-menu__nav,
    .at-mobile-menu__bottom {
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .at-header *,
    .at-mobile-menu,
    .at-mobile-menu *,
    .at-mobile-overlay {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .at-header__bar {
        background: rgba(3, 21, 43, .98) !important;
    }
}

/* === ORTAK 1360PX HEADER HİZASI — 2026-07-28 === */
@media (min-width: 641px) {
    html body .at-header {
        right: auto !important;
        left: 50% !important;
        width: min(calc(100% - 48px), 1360px) !important;
        max-width: 1360px !important;
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 640px) {
    html body .at-header {
        right: auto !important;
        left: 50% !important;
        width: calc(100% - 32px) !important;
        transform: translateX(-50%) !important;
    }
}

/* === TAM EKRAN HEADER SON OVERRIDE — 2026-07-28 === */
@media (min-width: 1121px) {
    html body .at-header {
        left: 20px !important;
        right: 20px !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important;
    }

    html body .at-header__bar {
        width: 100% !important;
        max-width: none !important;
        padding-inline: clamp(20px, 2.2vw, 36px) !important;
    }
}
/* =========================================================
   ANTALYA TURLARI — PREMIUM HEADER FINAL
   Masaüstü, tablet ve mobil son rötuşlar
   ========================================================= */

@media (min-width: 1121px) {
    :root {
        --at-header-height: 92px;
    }

    .at-header {
        top: 10px !important;
        height: 92px !important;
        min-height: 92px !important;
    }

    .at-header.is-scrolled {
        top: 6px !important;
        height: 84px !important;
        min-height: 84px !important;
    }

    .at-header__bar {
        grid-template-columns:
            minmax(220px, 270px)
            minmax(0, 1fr)
            auto !important;
        gap: clamp(18px, 1.55vw, 30px) !important;
        min-height: 92px;
        padding-inline: clamp(22px, 2vw, 34px) !important;
        border-color: rgba(220, 244, 255, .30);
        border-radius: 19px;
        background:
            radial-gradient(circle at 96% 50%, rgba(var(--at-coral-rgb), .18), transparent 20%),
            linear-gradient(
                96deg,
                rgba(var(--at-navy-rgb), .97) 0%,
                rgba(5, 48, 76, .91) 58%,
                rgba(var(--at-navy-2-rgb), .74) 100%
            );
        box-shadow:
            0 18px 48px rgba(0, 8, 22, .28),
            inset 0 1px 0 rgba(255, 255, 255, .11),
            inset 0 -1px 0 rgba(255, 255, 255, .03);
        -webkit-backdrop-filter: blur(24px) saturate(155%);
        backdrop-filter: blur(24px) saturate(155%);
    }

    .at-header.is-scrolled .at-header__bar {
        min-height: 84px;
        background:
            radial-gradient(circle at 96% 50%, rgba(var(--at-coral-rgb), .14), transparent 19%),
            linear-gradient(
                96deg,
                rgba(var(--at-navy-rgb), .99),
                rgba(6, 52, 80, .96)
            );
        box-shadow:
            0 20px 52px rgba(0, 8, 22, .34),
            inset 0 1px 0 rgba(255, 255, 255, .09);
    }

    .at-header__logo img {
        width: clamp(210px, 14.5vw, 252px) !important;
        height: 70px !important;
        max-height: 70px !important;
        transition: transform .22s ease, filter .22s ease;
    }

    .at-header__logo:hover img {
        transform: translateY(-1px);
        filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .20));
    }

    .at-header__nav {
        gap: clamp(20px, 1.65vw, 32px);
    }

    .at-header__nav-link {
        min-height: 48px;
        color: rgba(247, 251, 255, .88) !important;
        font-size: clamp(13px, .85vw, 15px);
        font-weight: 700;
        letter-spacing: .012em;
        text-shadow: 0 2px 12px rgba(0, 0, 0, .20);
        transition:
            color .18s ease,
            transform .18s ease,
            text-shadow .18s ease;
    }

    .at-header__nav-link::after {
        right: 6%;
        bottom: 1px;
        left: 6%;
        height: 3px;
        background: linear-gradient(90deg, #29d7e7, #62ecf3);
        box-shadow:
            0 0 13px rgba(var(--at-cyan-rgb), .48),
            0 3px 12px rgba(var(--at-cyan-rgb), .20);
        transform: scaleX(.18);
        transform-origin: center;
    }

    .at-header__nav-link:hover,
    .at-header__nav-link:focus-visible,
    .at-header__nav-link.is-active {
        color: #fff !important;
        transform: translateY(-2px);
        text-shadow: 0 0 15px rgba(var(--at-cyan-rgb), .26);
    }

    .at-header__actions {
        gap: clamp(8px, .75vw, 13px);
    }

    .at-header__languages {
        gap: 7px;
    }

    .at-header__language {
        min-height: 38px;
        gap: 5px;
        color: rgba(255, 255, 255, .78) !important;
        font-size: 11px;
    }

    .at-header__flag {
        width: 30px;
        height: 30px;
        border-color: rgba(255, 255, 255, .38);
        background: rgba(255, 255, 255, .075);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .10),
            0 4px 12px rgba(0, 0, 0, .18);
        font-size: 20px;
        transition:
            border-color .18s ease,
            background .18s ease,
            transform .18s ease;
    }

    .at-header__language:hover .at-header__flag,
    .at-header__language.is-active .at-header__flag {
        border-color: rgba(var(--at-cyan-rgb), .72);
        background: rgba(var(--at-cyan-rgb), .13);
        transform: translateY(-1px);
    }

    .at-header__whatsapp {
        min-height: 44px;
        padding: 0 4px;
        color: rgba(255, 255, 255, .90) !important;
        font-size: 12px;
        transition: color .18s ease, transform .18s ease;
    }

    .at-header__whatsapp:hover,
    .at-header__whatsapp:focus-visible {
        color: #fff !important;
        transform: translateY(-1px);
    }

    .at-header__whatsapp svg {
        width: 25px;
        height: 25px;
        stroke: #67ebda;
        filter: drop-shadow(0 0 8px rgba(71, 235, 214, .28));
    }

    .at-header__divider {
        height: 30px;
        background: linear-gradient(
            180deg,
            transparent,
            rgba(220, 243, 255, .34),
            transparent
        );
    }

    .at-header__search-cta {
        min-width: 112px;
        height: 52px;
        padding-inline: 19px;
        border-color: rgba(255, 241, 232, .78) !important;
        border-radius: 13px;
        background:
            linear-gradient(135deg, #ff7a58 0%, #ff5c3e 100%) !important;
        box-shadow:
            0 12px 30px rgba(var(--at-coral-rgb), .37),
            0 0 25px rgba(var(--at-coral-rgb), .17),
            inset 0 1px 0 rgba(255, 255, 255, .28);
        font-size: 14px;
        letter-spacing: .025em;
    }

    .at-header__search-cta:hover,
    .at-header__search-cta:focus-visible {
        transform: translateY(-2px) scale(1.015);
        box-shadow:
            0 16px 37px rgba(var(--at-coral-rgb), .48),
            0 0 31px rgba(var(--at-coral-rgb), .22);
    }

    .at-header__dropdown {
        top: calc(100% + 2px);
        width: 260px;
        padding: 10px;
        border-color: rgba(205, 237, 251, .25);
        border-radius: 16px;
        background:
            radial-gradient(circle at 100% 0, rgba(var(--at-cyan-rgb), .10), transparent 35%),
            linear-gradient(
                145deg,
                rgba(var(--at-navy-rgb), .995),
                rgba(var(--at-navy-2-rgb), .975)
            );
        box-shadow:
            0 25px 56px rgba(0, 8, 22, .39),
            inset 0 1px 0 rgba(255, 255, 255, .06);
        -webkit-backdrop-filter: blur(22px) saturate(140%);
        backdrop-filter: blur(22px) saturate(140%);
    }
}

/* Orta masaüstü: taşma olmadan bütün menüyü korur */
@media (min-width: 1121px) and (max-width: 1450px) {
    .at-header__bar {
        grid-template-columns:
            minmax(190px, 220px)
            minmax(0, 1fr)
            auto !important;
        gap: 13px !important;
        padding-inline: 18px !important;
    }

    .at-header__logo img {
        width: 205px !important;
        height: 64px !important;
    }

    .at-header__nav {
        gap: clamp(12px, 1vw, 17px) !important;
    }

    .at-header__nav-link {
        font-size: 12.5px;
    }

    .at-header__actions {
        gap: 8px;
    }

    .at-header__language > span:last-child,
    .at-header__whatsapp > span {
        display: none;
    }

    .at-header__search-cta {
        min-width: 100px;
        height: 49px;
        padding-inline: 14px;
        font-size: 13px;
    }
}

/* Tablet ve mobil header */
@media (max-width: 1120px) {
    .at-header__bar {
        border-color: rgba(220, 244, 255, .31);
        background:
            radial-gradient(circle at 100% 50%, rgba(var(--at-cyan-rgb), .11), transparent 34%),
            linear-gradient(
                100deg,
                rgba(var(--at-navy-rgb), .985),
                rgba(var(--at-navy-2-rgb), .91)
            );
        box-shadow:
            0 14px 38px rgba(0, 8, 22, .28),
            inset 0 1px 0 rgba(255, 255, 255, .09);
        -webkit-backdrop-filter: blur(20px) saturate(145%);
        backdrop-filter: blur(20px) saturate(145%);
    }

    .at-header__menu-button {
        position: relative;
        display: grid;
        place-items: center;
        border-color: rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .09);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
        transition:
            background .18s ease,
            border-color .18s ease,
            transform .18s ease;
    }

    .at-header__menu-button:hover,
    .at-header__menu-button:focus-visible {
        border-color: rgba(var(--at-cyan-rgb), .58);
        background: rgba(var(--at-cyan-rgb), .12);
        transform: translateY(-1px);
    }

    .at-header__menu-button span {
        width: 22px;
        height: 2px;
        margin: 3px auto;
        transition: transform .2s ease, opacity .2s ease;
    }

    .at-mobile-menu {
        width: min(420px, 92vw);
        border-left-color: rgba(190, 231, 249, .22);
        background:
            radial-gradient(circle at 100% 0, rgba(var(--at-cyan-rgb), .19), transparent 35%),
            linear-gradient(
                160deg,
                rgba(var(--at-navy-rgb), .995),
                rgba(var(--at-navy-2-rgb), .97) 66%,
                rgba(var(--at-navy-rgb), .995)
            );
        box-shadow: -30px 0 72px rgba(0, 8, 22, .52);
        -webkit-backdrop-filter: blur(24px) saturate(145%);
        backdrop-filter: blur(24px) saturate(145%);
    }

    .at-mobile-menu__head {
        min-height: 84px;
        padding: 9px 18px;
        background: rgba(255, 255, 255, .025);
    }

    .at-mobile-menu__head img {
        width: min(220px, 64vw);
        height: 62px;
    }

    .at-mobile-menu__nav {
        padding: 14px 18px 20px;
    }

    .at-mobile-menu__item {
        border-bottom-color: rgba(255, 255, 255, .075);
    }

    .at-mobile-menu__row {
        min-height: 55px;
    }

    .at-mobile-menu__row > a {
        min-height: 55px;
        padding-inline: 7px;
        color: rgba(255, 255, 255, .88) !important;
        font-size: 15px;
        font-weight: 750;
        transition:
            color .18s ease,
            background .18s ease,
            padding .18s ease;
    }

    .at-mobile-menu__row > a:hover,
    .at-mobile-menu__row > a:focus-visible,
    .at-mobile-menu__row > a.is-active {
        padding-left: 12px;
        color: #fff !important;
        background: linear-gradient(
            90deg,
            rgba(var(--at-cyan-rgb), .11),
            transparent 78%
        );
    }

    .at-mobile-menu__toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-color: rgba(255, 255, 255, .12);
    }

    .at-mobile-menu__sub > a {
        min-height: 42px;
        color: rgba(255, 255, 255, .70) !important;
    }

    .at-mobile-menu__bottom {
        background: rgba(0, 9, 23, .28);
    }
}

@media (max-width: 640px) {
    :root {
        --at-header-height: 68px;
    }

    body.is-inner {
        padding-top: 88px !important;
    }

    .at-header {
        top: 7px !important;
        width: calc(100% - 18px) !important;
        height: 68px !important;
        min-height: 68px !important;
    }

    .at-header.is-scrolled {
        top: 4px !important;
    }

    .at-header__bar {
        min-height: 68px;
        gap: 8px;
        padding-inline: 10px;
        border-radius: 15px;
    }

    .at-header__logo {
        max-width: calc(100% - 54px);
    }

    .at-header__logo img {
        width: min(196px, 62vw) !important;
        height: 54px !important;
        max-height: 54px !important;
    }

    .at-header__menu-button {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .at-mobile-menu {
        width: min(390px, 94vw);
    }

    .at-mobile-menu__head {
        min-height: 76px;
        padding-inline: 14px;
    }

    .at-mobile-menu__head img {
        width: min(200px, 62vw);
        height: 56px;
    }

    .at-mobile-menu__nav {
        padding: 11px 14px 18px;
    }

    .at-mobile-menu__bottom {
        padding:
            14px
            14px
            calc(16px + env(safe-area-inset-bottom));
    }

    .at-page-banner {
        margin-top: -88px;
        padding-top: 116px;
    }
}

@media (max-width: 380px) {
    .at-header {
        width: calc(100% - 14px) !important;
    }

    .at-header__bar {
        padding-inline: 8px;
    }

    .at-header__logo img {
        width: min(178px, 60vw) !important;
        height: 50px !important;
    }

    .at-header__menu-button {
        width: 40px;
        height: 40px;
    }

    .at-mobile-menu__row > a {
        font-size: 14px;
    }
}


/* =========================================================
   HEADER DİL + PARA BİRİMİ SEÇİCİLERİ
   ========================================================= */
.at-header__selectors {
    display: flex;
    align-items: center;
    gap: 7px;
}

.at-header__selector {
    position: relative;
}

.at-header__selector-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 4px 9px 4px 5px;
    border: 1px solid rgba(218, 239, 252, .28);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    font: inherit;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.at-header__selector-button:hover,
.at-header__selector-button:focus-visible,
.at-header__selector.is-open .at-header__selector-button {
    border-color: rgba(var(--at-cyan-rgb), .72);
    background: rgba(var(--at-cyan-rgb), .12);
    transform: translateY(-1px);
}

.at-header__selector-button > svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .18s ease;
}

.at-header__selector.is-open .at-header__selector-button > svg {
    transform: rotate(180deg);
}

.at-header__selector-icon,
.at-header__currency-symbol {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1;
}

.at-header__currency-symbol {
    color: var(--at-cyan);
    font-size: 17px;
    font-weight: 900;
}

.at-header__selector-code {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .025em;
}

.at-header__selector-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 100;
    width: 260px;
    padding: 10px;
    border: 1px solid rgba(208, 235, 249, .24);
    border-radius: 17px;
    background:
        linear-gradient(145deg, rgba(var(--at-navy-rgb), .99), rgba(var(--at-navy-2-rgb), .98));
    box-shadow: 0 24px 56px rgba(0, 8, 22, .42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(9px) scale(.98);
    transform-origin: top right;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.at-header__selector.is-open .at-header__selector-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.at-header__selector-title {
    display: block;
    padding: 8px 10px 9px;
    color: var(--at-cyan);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.at-header__selector-option {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    padding: 6px 9px;
    border-radius: 11px;
    color: rgba(255, 255, 255, .86) !important;
    text-decoration: none !important;
    transition: color .16s ease, background .16s ease, transform .16s ease;
}

.at-header__selector-option:hover,
.at-header__selector-option:focus-visible,
.at-header__selector-option.is-active {
    color: #fff !important;
    background: rgba(var(--at-cyan-rgb), .11);
    transform: translateX(2px);
}

.at-header__option-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 11px;
    background: rgba(255, 255, 255, .06);
    font-size: 21px;
}

.at-header__option-icon--currency {
    color: var(--at-cyan);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.at-header__selector-option > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.at-header__selector-option strong {
    font-size: 13px;
    line-height: 1.15;
}

.at-header__selector-option small {
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    font-weight: 750;
}

.at-header__option-check {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--at-cyan);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.at-mobile-menu__preferences {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.at-mobile-preference {
    padding: 15px;
    border: 1px solid rgba(205, 233, 249, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
}

.at-mobile-preference h3 {
    margin: 0 0 11px;
    color: var(--at-cyan);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.at-mobile-preference__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.at-mobile-preference__grid a {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 11px;
    color: rgba(255, 255, 255, .84);
    background: rgba(255, 255, 255, .035);
    font-size: 12px;
    text-decoration: none;
}

.at-mobile-preference__grid a.is-active {
    border-color: rgba(var(--at-cyan-rgb), .62);
    color: #fff;
    background: rgba(var(--at-cyan-rgb), .12);
}

.at-mobile-preference__grid a > span:first-child {
    font-size: 20px;
}

.at-mobile-preference__grid--currency {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.at-mobile-preference__grid--currency a {
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-inline: 4px;
}

.at-mobile-preference__currency {
    color: var(--at-cyan);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px !important;
    font-weight: 900;
}

@media (max-width: 1480px) and (min-width: 1121px) {
    .at-header__selector-button {
        padding-right: 6px;
    }

    .at-header__selector-code {
        display: none;
    }
}

@media (max-width: 1120px) {
    .at-header__selectors {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .at-mobile-preference__grid {
        grid-template-columns: 1fr;
    }

    .at-mobile-preference__grid--currency {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


/* =========================================================
   HEADER DİL + PARA BİRİMİ — PREMIUM FINAL DÜZELTMELER
   ========================================================= */

/* Tetikleyiciler daha temiz ve eşit */
.at-header__selector-button {
    min-width: 88px;
    min-height: 44px;
    justify-content: center;
    gap: 7px;
    padding: 5px 10px 5px 6px;
}

.at-header__selector-button--currency {
    min-width: 94px;
}

.at-header__selector-icon,
.at-header__currency-symbol {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
}

.at-header__selector-code {
    min-width: 22px;
    text-align: center;
}

.at-header__selector-code--single,
.at-header__selector-code--currency {
    display: inline-block !important;
}

/* İki dropdown aynı genişlikte */
.at-header__selector-menu,
.at-header__selector-menu--currency {
    width: 240px !important;
    padding: 12px !important;
    border-radius: 20px !important;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(255, 255, 255, .06) !important;
}

/* Açılış animasyonu */
.at-header__selector.is-open .at-header__selector-menu {
    animation: atHeaderSelectorShow .18s ease both;
}

@keyframes atHeaderSelectorShow {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Başlık */
.at-header__selector-title {
    padding: 8px 10px 11px;
    color: #18d5e6;
    font-size: 11px;
    letter-spacing: .14em;
}

/* Seçenekler */
.at-header__selector-option {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    min-height: 56px;
    gap: 11px;
    padding: 7px 10px;
    border: 1px solid transparent;
    border-radius: 13px;
    transform: none;
}

.at-header__selector-option:hover,
.at-header__selector-option:focus-visible {
    border-color: rgba(var(--at-cyan-rgb), .28);
    color: #fff !important;
    background: rgba(var(--at-cyan-rgb), .12);
    transform: translateX(4px);
}

.at-header__selector-option:hover .at-header__option-icon,
.at-header__selector-option:focus-visible .at-header__option-icon {
    border-color: rgba(var(--at-cyan-rgb), .55);
    color: var(--at-cyan);
    background: rgba(var(--at-cyan-rgb), .10);
}

.at-header__selector-option.is-active {
    border-color: rgba(var(--at-cyan-rgb), .62);
    color: #fff !important;
    background: rgba(17, 53, 85, .96);
    box-shadow: 0 0 18px rgba(34, 211, 238, .18);
    transform: none;
}

.at-header__option-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    transition:
        border-color .18s ease,
        color .18s ease,
        background .18s ease,
        transform .18s ease;
}

.at-header__selector-option strong {
    color: inherit;
    font-size: 13px;
    font-weight: 800;
}

.at-header__selector-option small {
    margin-top: 1px;
    color: rgba(255, 255, 255, .52);
}

.at-header__selector-option.is-active small {
    color: rgba(255, 255, 255, .72);
}

/* Dropdownlar arasındaki header ayırıcı daha hafif */
.at-header__divider {
    opacity: .45;
}

/* Küçük masaüstünde kodları tamamen kaybetme */
@media (max-width: 1480px) and (min-width: 1121px) {
    .at-header__selector-code--single,
    .at-header__selector-code--currency {
        display: inline-block !important;
    }

    .at-header__selector-button {
        min-width: 82px;
        padding-right: 8px;
    }

    .at-header__selector-button--currency {
        min-width: 90px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .at-header__selector.is-open .at-header__selector-menu {
        animation: none;
    }
}


/* =========================================================
   HEADER DİL + PARA BİRİMİ — MOBILE FINAL
   Masaüstü para birimi butonu mavi kalma sorunu giderildi.
   Mobil menü dil/para alanları sadeleştirildi.
   ========================================================= */

/* Masaüstü: dil ve para butonları aynı nötr görünüm */
.at-header__selector-button,
.at-header__selector-button--currency {
    border-color: rgba(255, 255, 255, .20) !important;
    color: rgba(255, 255, 255, .92) !important;
    background: rgba(255, 255, 255, .055) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .07) !important;
}

.at-header__selector-button--currency .at-header__currency-symbol {
    color: rgba(255, 255, 255, .88) !important;
    border-color: rgba(255, 255, 255, .22) !important;
    background: rgba(255, 255, 255, .055) !important;
}

.at-header__selector-button:hover,
.at-header__selector-button:focus-visible,
.at-header__selector.is-open .at-header__selector-button,
.at-header__selector.is-open .at-header__selector-button--currency {
    border-color: rgba(var(--at-cyan-rgb), .58) !important;
    color: #fff !important;
    background: rgba(var(--at-cyan-rgb), .08) !important;
    box-shadow:
        0 0 0 1px rgba(var(--at-cyan-rgb), .08),
        0 8px 20px rgba(0, 0, 0, .16) !important;
}

.at-header__selector.is-open .at-header__currency-symbol,
.at-header__selector-button--currency:hover .at-header__currency-symbol {
    color: var(--at-cyan) !important;
    border-color: rgba(var(--at-cyan-rgb), .50) !important;
    background: rgba(var(--at-cyan-rgb), .09) !important;
}

/* Mobil menü */
@media (max-width: 1120px) {
    .at-mobile-menu {
        width: min(420px, calc(100vw - 26px)) !important;
    }

    .at-mobile-menu__bottom {
        padding: 16px !important;
    }

    .at-mobile-menu__preferences {
        gap: 12px !important;
        margin-bottom: 14px !important;
    }

    .at-mobile-preference {
        padding: 13px !important;
        border-color: rgba(205, 233, 249, .13) !important;
        border-radius: 15px !important;
        background: rgba(255, 255, 255, .035) !important;
    }

    .at-mobile-preference h3 {
        margin-bottom: 10px !important;
        font-size: 11px !important;
        letter-spacing: .12em !important;
    }

    .at-mobile-preference__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .at-mobile-preference__grid a {
        min-height: 44px !important;
        gap: 8px !important;
        padding: 6px 9px !important;
        border-color: rgba(255, 255, 255, .11) !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, .025) !important;
        font-size: 11px !important;
    }

    .at-mobile-preference__grid a > span:first-child {
        min-width: 24px !important;
        color: rgba(255, 255, 255, .72) !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        text-align: center !important;
    }

    .at-mobile-preference__grid a strong {
        overflow: hidden !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .at-mobile-preference__grid a.is-active {
        border-color: rgba(var(--at-cyan-rgb), .56) !important;
        color: #fff !important;
        background: rgba(var(--at-cyan-rgb), .09) !important;
        box-shadow: inset 0 0 0 1px rgba(var(--at-cyan-rgb), .05) !important;
    }

    /* Para birimi tek sıra ve eşit */
    .at-mobile-preference__grid--currency {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .at-mobile-preference__grid--currency a {
        min-height: 58px !important;
        justify-content: center !important;
        gap: 3px !important;
        padding: 7px 3px !important;
    }

    .at-mobile-preference__currency {
        min-width: auto !important;
        color: rgba(255, 255, 255, .78) !important;
        font-size: 18px !important;
    }

    .at-mobile-preference__grid--currency a.is-active .at-mobile-preference__currency {
        color: var(--at-cyan) !important;
    }

    .at-mobile-menu__whatsapp,
    .at-mobile-menu__cta {
        min-height: 48px !important;
        border-radius: 11px !important;
        font-size: 13px !important;
    }

    .at-mobile-menu__phone {
        padding-top: 7px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 520px) {
    .at-mobile-menu {
        width: calc(100vw - 18px) !important;
        max-width: 380px !important;
    }

    .at-mobile-menu__head {
        min-height: 82px !important;
        padding: 10px 12px !important;
    }

    .at-mobile-menu__head img {
        width: 164px !important;
        height: auto !important;
        max-height: 56px !important;
    }

    .at-mobile-menu__nav {
        padding-inline: 12px !important;
    }

    .at-mobile-menu__bottom {
        padding: 12px !important;
    }

    .at-mobile-preference {
        padding: 11px !important;
    }

    .at-mobile-preference__grid a {
        min-height: 42px !important;
        padding-inline: 8px !important;
    }

    .at-mobile-preference__grid a strong {
        font-size: 10.5px !important;
    }

    .at-mobile-preference__grid--currency {
        gap: 5px !important;
    }

    .at-mobile-preference__grid--currency a {
        min-height: 55px !important;
        padding-inline: 2px !important;
    }
}

@media (max-width: 370px) {
    .at-mobile-preference__grid {
        grid-template-columns: 1fr !important;
    }

    .at-mobile-preference__grid--currency {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* =========================================================
   MOBILE DİL / PARA BİRİMİ ACCORDION FINAL
   ========================================================= */

/* Masaüstü para ikonu hover/open durumunda mavi olmaz */
.at-header__selector-button--currency:hover .at-header__currency-symbol,
.at-header__selector.is-open .at-header__selector-button--currency .at-header__currency-symbol,
.at-header__selector-button--currency:focus-visible .at-header__currency-symbol {
    color: rgba(255, 255, 255, .90) !important;
    border-color: rgba(255, 255, 255, .24) !important;
    background: rgba(255, 255, 255, .055) !important;
}

/* Mobil accordion */
@media (max-width: 1120px) {
    .at-mobile-menu__preferences {
        display: grid !important;
        gap: 10px !important;
    }

    .at-mobile-preference {
        padding: 0 !important;
        overflow: hidden !important;
        border: 1px solid rgba(205, 233, 249, .14) !important;
        border-radius: 15px !important;
        background: rgba(255, 255, 255, .035) !important;
    }

    .at-mobile-preference__toggle {
        width: 100% !important;
        min-height: 58px !important;
        display: grid !important;
        grid-template-columns: 38px minmax(0, 1fr) 20px !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        border: 0 !important;
        color: #fff !important;
        background: transparent !important;
        font: inherit !important;
        text-align: left !important;
        cursor: pointer !important;
    }

    .at-mobile-preference__toggle:hover,
    .at-mobile-preference__toggle:focus-visible,
    .at-mobile-preference.is-open .at-mobile-preference__toggle {
        background: rgba(var(--at-cyan-rgb), .065) !important;
    }

    .at-mobile-preference__toggle-icon {
        width: 36px !important;
        height: 36px !important;
        display: grid !important;
        place-items: center !important;
        border: 1px solid rgba(255, 255, 255, .18) !important;
        border-radius: 11px !important;
        background: rgba(255, 255, 255, .045) !important;
        font-size: 18px !important;
    }

    .at-mobile-preference__toggle-icon--currency {
        color: rgba(255, 255, 255, .90) !important;
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 18px !important;
        font-weight: 900 !important;
    }

    .at-mobile-preference__toggle-copy {
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
    }

    .at-mobile-preference__toggle-copy strong {
        font-size: 12px !important;
        font-weight: 850 !important;
        letter-spacing: .08em !important;
        text-transform: uppercase !important;
    }

    .at-mobile-preference__toggle-copy small {
        overflow: hidden !important;
        color: rgba(255, 255, 255, .62) !important;
        font-size: 11px !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .at-mobile-preference__toggle > svg {
        width: 18px !important;
        height: 18px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        transition: transform .18s ease !important;
    }

    .at-mobile-preference.is-open .at-mobile-preference__toggle > svg {
        transform: rotate(180deg) !important;
    }

    .at-mobile-preference__panel {
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        border-top: 1px solid transparent !important;
        transition:
            max-height .24s ease,
            opacity .18s ease,
            border-color .18s ease !important;
    }

    .at-mobile-preference__panel[hidden] {
        display: block !important;
    }

    .at-mobile-preference.is-open .at-mobile-preference__panel {
        max-height: 420px !important;
        opacity: 1 !important;
        border-top-color: rgba(205, 233, 249, .11) !important;
    }

    .at-mobile-preference__panel .at-mobile-preference__grid {
        padding: 10px !important;
    }

    .at-mobile-preference__grid a {
        min-height: 44px !important;
    }

    .at-mobile-preference__grid--currency a {
        min-height: 58px !important;
    }
}

@media (max-width: 520px) {
    .at-mobile-preference__toggle {
        min-height: 54px !important;
        grid-template-columns: 34px minmax(0, 1fr) 18px !important;
        padding: 9px 10px !important;
    }

    .at-mobile-preference__toggle-icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 10px !important;
        font-size: 16px !important;
    }

    .at-mobile-preference__panel .at-mobile-preference__grid {
        padding: 8px !important;
    }
}


/* =========================================================
   GOOGLE TRANSLATE + GERCEK BAYRAKLAR - FINAL
   ========================================================= */
.at-google-translate {
    position: fixed !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    left: -9999px !important;
    top: -9999px !important;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-logo-link {
    display: none !important;
}

body {
    top: 0 !important;
}

.at-header__selector-icon {
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
}

.at-header__selector-icon img {
    width: 30px;
    height: 20px;
    display: block;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.24);
}

.at-header__option-icon--flag {
    overflow: hidden;
    padding: 0;
    background: rgba(255,255,255,.07);
}

.at-header__option-icon--flag img,
.at-mobile-preference__flag img {
    width: 32px;
    height: 22px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}

.at-mobile-preference__flag {
    width: 38px;
    height: 30px;
    display: grid !important;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
}

@media (min-width: 1121px) {
    .at-header__selector-button .at-header__selector-icon {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* =========================================================
   GOOGLE TRANSLATE BAR GIZLEME + OVAL BAYRAKLAR — FINAL FIX
   ========================================================= */
html,
body {
    top: 0 !important;
    margin-top: 0 !important;
}

/* Google Translate'in eski ve yeni ust banner varyasyonlari */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate,
iframe.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-xl07Ob-OEVmcd,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Google ceviri bazen body'ye inline top degeri yazar. */
body[style*="top:"] {
    top: 0 !important;
}

/* Header ana secicide oval bayrak */
.at-header__selector-icon {
    width: 38px !important;
    height: 26px !important;
    min-width: 38px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    padding: 0 !important;
    background: rgba(255,255,255,.10) !important;
}

.at-header__selector-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 999px !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.26) !important;
}

/* Desktop dropdown bayraklari oval */
.at-header__option-icon--flag {
    width: 42px !important;
    height: 30px !important;
    min-width: 42px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    padding: 2px !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
}

.at-header__option-icon--flag img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 999px !important;
    box-shadow: none !important;
}

/* Mobil dil secimindeki bayraklar da ayni oval form */
.at-mobile-preference__flag {
    width: 42px !important;
    height: 30px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    padding: 2px !important;
}

.at-mobile-preference__flag img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 999px !important;
    box-shadow: none !important;
}


/* =========================================================
   MOBILE LANGUAGE / CURRENCY COMPACT FINAL + ROUND FLAGS
   ========================================================= */
/* Tum dil bayraklari tam yuvarlak */
.at-header__selector-icon,
.at-header__option-icon--flag,
.at-mobile-preference__flag,
.at-mobile-preference__toggle-icon--flag {
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.at-header__selector-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
}

.at-header__option-icon--flag {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
}

.at-header__selector-icon img,
.at-header__option-icon--flag img,
.at-mobile-preference__flag img,
.at-mobile-preference__toggle-icon--flag img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    box-shadow: none !important;
}

@media (max-width: 1120px) {
    .at-mobile-menu__preferences {
        gap: 8px !important;
    }

    .at-mobile-preference {
        border-radius: 14px !important;
    }

    .at-mobile-preference__toggle {
        min-height: 56px !important;
        grid-template-columns: 38px minmax(0, 1fr) 20px !important;
        gap: 11px !important;
        padding: 8px 12px !important;
    }

    .at-mobile-preference__toggle-icon {
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
    }

    .at-mobile-preference__toggle-icon--flag {
        border: 2px solid rgba(255,255,255,.20) !important;
        background: rgba(255,255,255,.08) !important;
    }

    .at-mobile-preference__toggle-icon--currency {
        border-radius: 50% !important;
        font-size: 16px !important;
    }

    .at-mobile-preference__toggle-copy {
        flex-direction: row !important;
        align-items: center !important;
        gap: 9px !important;
        line-height: 1 !important;
    }

    .at-mobile-preference__toggle-copy strong {
        flex: 0 0 auto !important;
        font-size: 12px !important;
        letter-spacing: .055em !important;
        white-space: nowrap !important;
    }

    .at-mobile-preference__toggle-copy small {
        min-width: 0 !important;
        color: rgba(255,255,255,.84) !important;
        font-size: 12px !important;
        font-weight: 750 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .at-mobile-preference__toggle > svg {
        justify-self: end !important;
        margin: 0 !important;
    }

    .at-mobile-preference__panel .at-mobile-preference__grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        padding: 8px !important;
    }

    .at-mobile-preference__grid a {
        min-height: 48px !important;
        display: grid !important;
        grid-template-columns: 36px minmax(0,1fr) auto !important;
        align-items: center !important;
        gap: 10px !important;
        border-radius: 11px !important;
        padding: 6px 10px !important;
    }

    .at-mobile-preference__flag {
        width: 34px !important;
        height: 34px !important;
        border: 1px solid rgba(255,255,255,.18) !important;
        background: rgba(255,255,255,.07) !important;
    }

    .at-mobile-preference__grid a strong {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .at-mobile-preference__grid--currency a {
        min-height: 48px !important;
        grid-template-columns: 36px minmax(0,1fr) !important;
    }

    .at-mobile-preference__currency {
        width: 34px !important;
        height: 34px !important;
        display: grid !important;
        place-items: center !important;
        border-radius: 50% !important;
        font-size: 14px !important;
        font-weight: 900 !important;
    }
}

@media (max-width: 520px) {
    .at-mobile-preference__toggle {
        min-height: 54px !important;
        grid-template-columns: 36px minmax(0,1fr) 18px !important;
        gap: 9px !important;
        padding: 8px 10px !important;
    }

    .at-mobile-preference__toggle-icon {
        width: 34px !important;
        height: 34px !important;
    }

    .at-mobile-preference__toggle-copy {
        gap: 7px !important;
    }

    .at-mobile-preference__toggle-copy strong,
    .at-mobile-preference__toggle-copy small {
        font-size: 11px !important;
    }
}
