:root {
    --header-red: #d90429;
    --header-red-hover: #ef233c;
    --header-red-neon: rgba(217, 4, 41, 0.7);
    --header-dark-bg: rgba(13, 17, 23, 0.85);
    --header-border: rgba(255, 255, 255, 0.15);
    --text-dark: #222222;
    --border-light: #e6e8ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.main-header {
    width: 100%;
    position: relative;
    z-index: 9999;
}

.container-1500 {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* ===================================================
   ALT BAR (ANA MENÜ)
   =================================================== */
.bottom-bar-bg {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: none;
}

.bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
    position: relative;
    flex-direction: row !important;
}

.logo-box img.desktop-logo {
    max-height: 75px;
    width: auto;
    display: block;
}

.logo-box img.mobile-logo {
    display: none;
}

.navigation-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navigation-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: row !important;
}

.navigation-menu ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.navigation-menu ul li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30%;
    height: 40%;
    width: 1px;
    background-color: var(--border-light);
}

.navigation-menu ul li:last-child::after {
    display: none;
}

.navigation-menu ul li a {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    padding: 0 20px;
    height: 100%;
    position: relative;
    transition: color 0.25s ease;
}

.navigation-menu ul li a i {
    font-size: 20px;
    color: #2b2b2b;
    transition: color 0.25s ease, transform 0.25s ease;
}

.navigation-menu ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 3px;
    background-color: var(--header-red);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.navigation-menu ul li:hover a i,
.navigation-menu ul li.active a i,
.navigation-menu ul li:hover a,
.navigation-menu ul li.active a {
    color: var(--header-red);
}

.navigation-menu ul li:hover a i,
.navigation-menu ul li.active a i {
    transform: translateY(-2px);
}

.navigation-menu ul li:hover a::before,
.navigation-menu ul li.active a::before {
    transform: scaleX(1) !important;
}

.right-action-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row !important;
}

.btn-catalog {
    background-color: rgba(18, 22, 29, 0.9);
    border: 1px solid rgba(217, 4, 41, 0.5);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    flex-direction: row !important;
}

.btn-catalog i {
    color: var(--header-red);
    font-size: 14px;
}

.btn-catalog:hover {
    border-color: var(--header-red);
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.desktop-hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: 10px;
    padding: 5px;
}

.desktop-hamburger-btn .line {
    display: block;
    height: 3px;
    background-color: #111111;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.desktop-hamburger-btn .line-1 { width: 28px; }
.desktop-hamburger-btn .line-2 { width: 18px; }
.desktop-hamburger-btn .line-3 { width: 28px; }

.desktop-hamburger-btn:hover .line-2 {
    width: 28px;
    background-color: var(--header-red);
}

.mobile-toggle-btn {
    display: none;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    flex-shrink: 0;
}

.mobile-toggle-btn .mobile-line {
    display: block;
    height: 2.5px;
    border-radius: 3px;
    background-color: #ffffff;
    transition: transform 0.35s cubic-bezier(0.68, -0.4, 0.32, 1.4),
                opacity 0.25s ease,
                width 0.3s ease;
}

.mobile-toggle-btn .mobile-line-1 { width: 26px; }
.mobile-toggle-btn .mobile-line-2 { width: 17px; margin-left: auto; }
.mobile-toggle-btn .mobile-line-3 { width: 26px; }

.mobile-toggle-btn .menu-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--header-red);
    box-shadow: 0 0 8px var(--header-red-neon);
    transition: opacity 0.25s ease, transform 0.25s ease;
    animation: dotBlink 1.8s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.mobile-toggle-btn.is-active .mobile-line-1 {
    transform: translateY(7.5px) rotate(45deg);
    width: 26px;
}

.mobile-toggle-btn.is-active .mobile-line-2 {
    opacity: 0;
    transform: translateX(-12px);
}

.mobile-toggle-btn.is-active .mobile-line-3 {
    transform: translateY(-7.5px) rotate(-45deg);
    width: 26px;
}

.mobile-toggle-btn.is-active .menu-dot {
    opacity: 0;
    transform: scale(0);
    animation: none;
}

.mobile-nav-header {
    display: none;
}

.mobile-nav-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--header-red);
    color: var(--header-red);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: var(--header-red);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.6);
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 10, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    z-index: 10500;
    transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-info-bar {
    display: none;
}

/* ===================================================
   SAĞA TAM YASLI & SLIDER UYUMLU KESİKLİ BİLGİ KUTUSU
   =================================================== */
.slanted-info-box {
    position: absolute;
    right: 0 !important;
    left: auto !important;
    top: 95px;
    z-index: 100;
    
    background: var(--header-dark-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid rgba(217, 4, 41, 0.4) !important;
    border-right: none !important;
    border-bottom: 2px solid var(--header-red);

    display: flex;
    align-items: center;
    padding: 10px 40px 10px 45px;
    gap: 25px;
    flex-direction: row !important;

    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(217, 4, 41, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex-direction: row !important;
}

.info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -13px !important;
    left: auto !important;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.info-item i {
    color: #ffffff;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.info-item:hover i {
    border-color: var(--header-red);
    color: var(--header-red);
    box-shadow: 0 0 12px rgba(217, 4, 41, 0.6);
    transform: rotate(10deg);
}

.info-text {
    display: flex;
    flex-direction: column;
    text-align: left !important;
}

.info-text small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.info-text span, 
.info-text a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--header-red-hover);
    text-shadow: 0 0 8px rgba(217, 4, 41, 0.5);
}

.lang-flags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-direction: row !important;
}

.lang-flags img {
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-flags img:hover {
    transform: scale(1.25);
    box-shadow: 0 0 10px var(--header-red);
}

.mobile-catalog-holder {
    display: none;
}

/* RESPONSIVE DÜZENLEMELER */
@media (max-width: 1400px) {
    .slanted-info-box {
        gap: 18px;
        padding: 8px 25px 8px 35px;
    }
    .info-text span, .info-text a {
        font-size: 11px;
    }
}

@media (max-width: 1150px) {
    .info-item.lang-item {
        display: none;
    }
}

@media (max-width: 992px) {
    .slanted-info-box,
    .desktop-hamburger-btn,
    .right-action-box .btn-catalog {
        display: none;
    }

    .bottom-bar-bg {
        background-color: #ffffff;
        border-bottom: 1px solid var(--border-light);
    }

    .bottom-bar-inner {
        height: 78px;
    }

    .mobile-toggle-btn .mobile-line {
        background-color: #1a1a1a;
    }

    .right-action-box {
        display: contents;
    }

    .logo-box {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .mobile-toggle-btn {
        display: flex;
        order: 1;
    }

    .logo-box img.desktop-logo {
        display: none;
    }

    .logo-box img.mobile-logo {
        display: block;
        max-height: 62px;
    }

    .mobile-info-bar {
        display: flex;
        align-items: stretch;
        width: 100%;
        background: var(--header-dark-bg);
        border-bottom: 2px solid var(--header-red);
        position: relative;
        z-index: 20;
        flex-direction: row !important;
    }

    .mobile-info-item {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        position: relative;
        min-width: 0;
        flex-direction: row !important;
    }

    .mobile-info-item:first-child::after {
        content: '';
        position: absolute;
        right: 0 !important;
        left: auto !important;
        top: 18%;
        height: 64%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.15);
    }

    .mobile-info-item i {
        color: #ffffff;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.05);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px dashed rgba(255, 255, 255, 0.25);
        flex-shrink: 0;
    }

    .mobile-info-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
        text-align: left !important;
    }

    .mobile-info-text small {
        color: rgba(255, 255, 255, 0.55);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .mobile-info-text a {
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
    }

    .mobile-lang-flags {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 3px;
        flex-wrap: wrap;
        flex-direction: row !important;
    }

    .mobile-lang-flags img {
        width: 24px;
        height: 16px;
        object-fit: cover;
        border-radius: 2.5px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.4);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navigation-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        left: 0 !important;
        right: auto !important;
        width: min(320px, 82%);
        height: 100vh;
        background: #ffffff;
        border-top: none;
        border-right: 1px solid rgba(217, 4, 41, 0.25);
        box-shadow: 15px 0 45px rgba(0, 0, 0, 0.15);
        padding: 0;
        transform: translateX(-100%);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10600;
        overflow-y: auto;
    }

    .navigation-menu.mobile-active {
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 22px 18px 22px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
        flex-direction: row !important;
    }

    .mobile-nav-logo {
        max-height: 32px;
        width: auto;
    }

    /* MOBİL MENÜ LİSTE SIRALAMASINI DİKET HALE GETİREN KRİTİK ALAN */
    .navigation-menu ul {
        flex-direction: column !important;
        align-items: stretch !important;
        height: auto !important;
        padding: 8px 0 !important;
        display: flex !important;
        width: 100% !important;
    }

    .navigation-menu ul li {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        opacity: 0;
        transform: translateX(-16px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .navigation-menu.mobile-active ul li { opacity: 1; transform: translateX(0); }
    .navigation-menu.mobile-active ul li:nth-child(1) { transition-delay: 0.08s; }
    .navigation-menu.mobile-active ul li:nth-child(2) { transition-delay: 0.13s; }
    .navigation-menu.mobile-active ul li:nth-child(3) { transition-delay: 0.18s; }
    .navigation-menu.mobile-active ul li:nth-child(4) { transition-delay: 0.23s; }
    .navigation-menu.mobile-active ul li:nth-child(5) { transition-delay: 0.28s; }
    .navigation-menu.mobile-active ul li:nth-child(6) { transition-delay: 0.33s; }

    .navigation-menu ul li::after {
        display: none;
    }

    .navigation-menu ul li a {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 14px 24px !important;
        font-size: 14px !important;
        gap: 15px !important;
        color: #2b2b2b !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
        width: 100% !important;
        height: auto !important;
    }

    .navigation-menu ul li a i {
        color: #2b2b2b;
        font-size: 17px;
        width: 20px;
        text-align: center;
    }

    .navigation-menu ul li:hover a i,
    .navigation-menu ul li.active a i,
    .navigation-menu ul li:hover a,
    .navigation-menu ul li.active a {
        color: var(--header-red) !important;
    }

    .navigation-menu ul li a::before {
        display: none;
    }

    .mobile-catalog-holder {
        display: block;
        padding: 20px 22px;
        margin-top: auto;
    }

    .mobile-catalog-holder .btn-catalog {
        justify-content: center;
        width: 100%;
    }
}

.lang-flags a.active-lang img,
.mobile-lang-flags a.active-lang img {
    border: 2px solid #00d2ff;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
    transform: scale(1.1);
}