/*
 |--------------------------------------------------------------------------
 | Nova Header Styles
 |--------------------------------------------------------------------------
 | Tüm header stilleri tek noktada konsolide edilmiştir. Masaüstü ve mobil
 | davranışları ilgili medya sorguları altında gruplanmıştır.
 */

.loadingmessage,
.paymentloadingmessage {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0.85;
    z-index: 9999999;
    background: url("../images/loader.gif") 50% 50% no-repeat #f9f9f9;
}
.nova-auth-modal .modal-dialog {
    max-width: 920px;
}

.nova-language-modal .modal-dialog {
    max-width: 720px;
}

.nova-auth-modal .modal-content {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(116, 202, 255, 0.18);
    background: radial-gradient(circle at top, rgba(28, 60, 82, 0.98), rgba(10, 25, 38, 0.98));
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 48px 96px rgba(4, 10, 16, 0.55);
}

.nova-language-modal .modal-content {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(116, 202, 255, 0.18);
    background: radial-gradient(circle at top, rgba(28, 60, 82, 0.98), rgba(10, 25, 38, 0.98));
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 48px 96px rgba(4, 10, 16, 0.55);
}

.nova-auth-modal .modal-body {
    padding: clamp(28px, 4vw, 56px) clamp(24px, 5vw, 72px);
}

.nova-language-modal .modal-body {
    position: relative;
    padding: clamp(22px, 4vw, 44px) clamp(18px, 4vw, 44px);
}

.nova-language-modal .nova-language-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(14, 37, 54, 0.75);
    border: 1px solid rgba(116, 202, 255, 0.32);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.nova-language-modal .nova-language-close:hover,
.nova-language-modal .nova-language-close:focus {
    background: rgba(28, 76, 104, 0.85);
    transform: scale(1.05);
    outline: none;
}

.nova-language-modal .nova-language-modal-head {
    max-width: 540px;
    margin: 0 auto 18px;
    text-align: center;
}

.nova-language-modal .nova-language-title {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 10px;
}

.nova-language-modal .nova-language-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(215, 230, 246, 0.78);
}

.nova-language-modal .nova-language-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.nova-language-modal .nova-language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(116, 202, 255, 0.18);
    background: linear-gradient(160deg, rgba(12, 30, 46, 0.92), rgba(6, 18, 30, 0.92));
    box-shadow: 0 18px 36px rgba(4, 10, 16, 0.35);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.18s ease, border 0.18s ease, box-shadow 0.18s ease;
}

.nova-language-modal .nova-language-option:hover,
.nova-language-modal .nova-language-option:focus {
    transform: translateY(-2px);
    border-color: rgba(146, 224, 255, 0.45);
    box-shadow: 0 22px 44px rgba(4, 10, 16, 0.45);
    text-decoration: none;
    outline: none;
}

.nova-language-modal .nova-language-flag {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(14, 35, 52, 0.85);
    border: 1px solid rgba(116, 202, 255, 0.18);
}

.nova-language-modal .nova-language-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.nova-language-modal .nova-language-option.is-active {
    border-color: rgba(83, 193, 255, 0.6);
    box-shadow: 0 22px 44px rgba(46, 127, 255, 0.22);
}

.nova-language-modal .nova-language-option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.nova-language-modal .nova-language-option.is-disabled:hover,
.nova-language-modal .nova-language-option.is-disabled:focus {
    transform: none;
    box-shadow: 0 18px 36px rgba(4, 10, 16, 0.35);
    border-color: rgba(116, 202, 255, 0.18);
}

@media (min-width: 768px) {
    .nova-language-modal .nova-language-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .nova-language-modal .modal-dialog {
        margin: 16px;
    }
}

.nova-auth-modal .nova-auth-close {
    position: absolute;
    top: 22px;
    right: 26px;
    background: rgba(14, 37, 54, 0.75);
    border: 1px solid rgba(116, 202, 255, 0.32);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.nova-auth-modal .nova-auth-close:hover,
.nova-auth-modal .nova-auth-close:focus {
    background: rgba(28, 76, 104, 0.85);
    transform: scale(1.05);
}

.nova-auth-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(22px, 4vw, 36px);
}

.nova-auth-intro {
    max-width: 560px;
    margin: 0 auto;
}

.nova-auth-title {
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 10px;
}

.nova-navbar .nova-language-trigger {
    gap: 10px;
    align-items: center;
}

.nova-navbar .nova-language-trigger .nova-language-trigger-code {
    font-weight: 700;
    letter-spacing: 0.6px;
}
.nova-auth-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(215, 230, 246, 0.78);
}

.nova-auth-panels {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
    padding: 14px 44px 14px 14px;
.nova-auth-panel {
    display: none;
    width: 100%;
    max-width: 440px;
    animation: novaAuthFade 0.28s ease;
}

.nova-auth-panel.active {
    display: block;
.nova-language-modal .nova-language-option::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(83, 193, 255, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.nova-language-modal .nova-language-option:hover::before,
.nova-language-modal .nova-language-option:focus::before {
    opacity: 1;
}

.nova-language-modal .nova-language-option.is-active::after {
    font-family: FontAwesome;
    content: "\f00c";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(83, 193, 255, 0.9), rgba(46, 127, 255, 0.9));
    box-shadow: 0 12px 24px rgba(46, 127, 255, 0.25);
}
}

.nova-auth-panel .nova-auth-card {
    border: none;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(12, 30, 46, 0.92), rgba(6, 18, 30, 0.92));
    box-shadow: 0 28px 48px rgba(4, 10, 16, 0.45);
.nova-language-modal .nova-language-option.is-disabled::before {
    opacity: 0;
}
    overflow: hidden;
    min-height: 100%;
}

.nova-auth-panel .nova-auth-card .card-header {
    background: linear-gradient(135deg, #4fb1ff, #2f89ff);
    border-bottom: none;
@media (max-width: 420px) {
    .nova-language-modal .nova-language-grid {
        grid-template-columns: 1fr;
    }
}
    padding: 24px;
}

.nova-auth-panel .nova-auth-card .card-header h3 {
    font-size: 20px;
    letter-spacing: 0.4px;
    .nova-language-modal .modal-body {
        max-height: calc(100vh - 96px);
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.nova-auth-panel .nova-auth-card .card-body {
    padding: clamp(22px, 3vw, 32px);
}

.nova-auth-panel .form-label {
    font-weight: 600;
    color: rgba(223, 236, 250, 0.92);
}

.nova-auth-panel .form-control {
    background: rgba(10, 25, 38, 0.95);
    border: 1px solid rgba(116, 202, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nova-auth-panel .form-control:focus {
    border-color: rgba(146, 224, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(83, 193, 255, 0.25);
}

.nova-auth-panel .btn {
    border-radius: 14px;
    padding: 12px 18px;
}

.nova-auth-panel .password-toggle {
    border-color: rgba(116, 202, 255, 0.18);
    color: rgba(215, 230, 246, 0.8);
}

.nova-auth-panel .password-toggle:hover {
    color: #ffffff;
    border-color: rgba(116, 202, 255, 0.35);
}

.nova-auth-panel .nova-auth-submit {
    background: linear-gradient(135deg, #53c1ff, #2e7fff);
    border: none;
    box-shadow: 0 20px 36px rgba(46, 127, 255, 0.35);
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.nova-auth-panel .nova-auth-submit:hover {
    background: linear-gradient(135deg, #4aa7ff, #2268ff);
}

.nova-auth-panel .nova-auth-submit:disabled {
    opacity: 0.6;
    box-shadow: none;
}

.nova-auth-panel .btn-outline-secondary {
    background: rgba(14, 35, 52, 0.85);
    border-color: rgba(116, 202, 255, 0.35);
    color: rgba(215, 230, 246, 0.85);
}

.nova-auth-panel .btn-outline-secondary:hover {
    color: #ffffff;
    border-color: rgba(146, 224, 255, 0.6);
}

.nova-auth-panel .auth-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nova-auth-panel .auth-actions p {
    color: rgba(215, 230, 246, 0.7);
}

.nova-auth-panel .dark-grey-text {
    color: #9ad5ff !important;
}

.nova-auth-panel .dark-grey-text:hover {
    color: #ffffff !important;
}

@keyframes novaAuthFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    .nova-auth-modal .modal-dialog {
        margin: 16px;
    }

    .nova-auth-modal .modal-body {
        padding: 24px 18px 32px;
    }

    .nova-auth-wrapper {
        gap: 20px;
    }

    .nova-auth-intro {
        text-align: center;
    }

    .nova-auth-panel {
        max-width: 100%;
    }
}

.paymentloadingmessage h3 {
    margin: 0;
    padding-top: 10rem;
    text-align: center;
    font-weight: 600;
    color: #22303d;
}

/* Header height primarily comes from this block's padding and the logo size below. */
.nova-navbar {
    background: rgba(10, 23, 33, 0.92) !important;
    border-bottom: 1px solid rgba(116, 202, 255, 0.15);
    box-shadow: 0 18px 36px rgba(4, 10, 16, 0.45);
    padding: 8 !important;
}

.nova-navbar .container {
    max-width: none;
    width: 100%;
    margin: 0;
}

body.theme-dark .nova-navbar {
    background: linear-gradient(140deg, rgba(10, 23, 33, 0.95), rgba(31, 75, 100, 0.9)) !important;
    border-bottom: 1px solid rgba(89, 151, 220, 0.3);
    box-shadow: var(--nova-shadow-sm, 0 12px 28px rgba(4, 10, 16, 0.35));
}

.nova-navbar .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: clamp(16px, 2vw, 28px);
}

/* Reduce this height to shrink the visual header further. */
.nova-navbar .logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(4, 10, 16, 0.35));
    transition: height 0.25s ease, transform 0.25s ease;
}

.nova-navbar .hw_40 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 14px rgba(4, 10, 16, 0.2);
}

.nova-navbar .nova-header-meta {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.4vw, 22px);
    margin-left: clamp(12px, 2vw, 30px);
}

.nova-navbar .nova-header-meta-item {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 14px);
    color: #d7e6f6;
    cursor: pointer;
    min-width: 140px;
}

.nova-navbar .nova-header-meta-item .label {
    font-size: 11px;
    letter-spacing: 1.2px;
    color: rgba(157, 198, 235, 0.75);
    white-space: nowrap;
    padding: 4px 6px;
    line-height: 1.4;
}

.nova-navbar .nova-header-meta-item .value,
.nova-navbar .nova-header-meta-item .btn-link {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.nova-navbar .nova-header-meta-item .btn-link {
    padding: 0;
    text-transform: none;
}

.nova-navbar .nova-header-meta-item .btn-link::after {
    margin-left: 8px;
}

.nova-navbar .nova-header-meta-item.location .value::after,
.nova-navbar .nova-header-meta-item.language .btn-link::after {
    font-family: FontAwesome;
    content: "\f107";
    margin-left: 6px;
    font-size: 11px;
    opacity: 0.8;
}

.nova-navbar .nova-header-meta-item.language .btn-link {
    background: transparent;
}

.nova-navbar .navbar-nav {
    align-items: center;
    gap: clamp(16px, 2.4vw, 32px);
}

.nova-navbar .nav-auth-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 16px);
    margin-left: auto !important;
    margin-right: 0 !important;
}

.nova-navbar .nav-auth-links .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    min-width: 124px;
    padding: 0.4rem 1.1rem;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
}

.nova-auth-popover-wrapper {
    position: relative;
}
.nova-auth-popover-wrapper .nova-auth-trigger-btn {
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}
.nova-auth-popover-wrapper.is-open .nova-auth-trigger-btn {
    background: linear-gradient(135deg, #53c1ff, #2e7fff);
    border-color: rgba(146, 224, 255, 0.6);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(46, 127, 255, 0.35);
}
.nova-auth-popover {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: min(360px, 92vw);
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, -6px, 0);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1200;
    border-radius: 24px;
    border: 1px solid rgba(116, 202, 255, 0.18);
    background: linear-gradient(160deg, rgba(12, 30, 46, 0.96), rgba(6, 18, 30, 0.96));
    box-shadow: 0 36px 64px rgba(4, 10, 16, 0.55);
    padding: 22px 20px;
}
.nova-auth-popover.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.nova-auth-popover::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 36px;
    width: 18px;
    height: 18px;
    background: linear-gradient(160deg, rgba(12, 30, 46, 0.96), rgba(6, 18, 30, 0.96));
    border-top: 1px solid rgba(116, 202, 255, 0.18);
    border-left: 1px solid rgba(116, 202, 255, 0.18);
    transform: rotate(45deg);
    box-shadow: -12px -12px 24px rgba(4, 10, 16, 0.2);
}
.nova-auth-popover-inner {
    position: relative;
    z-index: 1;
}
.nova-auth-popover .nova-auth-panel {
    max-width: 100%;
}
.nova-auth-popover .nova-auth-card:not(.nova-auth-card-modern) {
    background: transparent;
    border: none;
    box-shadow: none;
}
.nova-auth-popover .nova-auth-card:not(.nova-auth-card-modern) .card-body {
    padding: 0;
}
.nova-auth-popover .nova-auth-card:not(.nova-auth-card-modern) .card-header {
    border-radius: 18px 18px 0 0;
}
.nova-auth-card-sm {
    min-width: 0;
}
.nova-auth-card-sm .card-body {
    padding: clamp(18px, 3vw, 26px) clamp(18px, 3vw, 24px);
}

@media (max-width: 575.98px) {
    .nova-auth-popover {
        left: 50%;
        right: auto;
        transform: translate3d(-50%, -6px, 0);
        width: min(100vw - 24px, 360px);
    }

    .nova-auth-popover.is-open {
        transform: translate3d(-50%, 0, 0);
    }

    .nova-auth-popover::before {
        right: 50%;
        transform: translateX(50%) rotate(45deg);
    }

    .nova-auth-card-sm .card-body {
        padding: 18px;
    }
}

.nova-auth-card-modern {
    position: relative;
    border: 1px solid rgba(116, 202, 255, 0.25);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(10, 25, 39, 0.95), rgba(8, 20, 33, 0.92));
    box-shadow: 0 28px 64px rgba(4, 10, 16, 0.45);
    overflow: hidden;
    padding: 32px clamp(24px, 3vw, 36px);
    backdrop-filter: blur(12px);
}

.nova-auth-card-modern__top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.nova-auth-card-modern__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(140deg, rgba(83, 193, 255, 0.2), rgba(46, 127, 255, 0.35));
    border: 1px solid rgba(116, 202, 255, 0.28);
    color: #9fceff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    font-size: 20px;
}

.nova-auth-card-modern__body {
    padding: 0;
}

.nova-auth-card-modern .alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.nova-auth-card-modern .alert-danger {
    background: rgba(255, 87, 87, 0.16);
    border-color: rgba(255, 130, 130, 0.35);
    color: #ffd7d7;
}

.nova-auth-card-modern .alert-success {
    background: rgba(83, 193, 255, 0.16);
    border-color: rgba(83, 193, 255, 0.35);
    color: #d8f2ff;
}

.nova-auth-card-modern .error {
    color: #ff7a7a;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-top: 10px;
}

.nova-auth-field {
    margin-bottom: 18px;
}

.nova-auth-field:last-of-type {
    margin-bottom: 22px;
}

.nova-auth-field .form-label {
    font-weight: 600;
    letter-spacing: 0.25px;
    color: rgba(215, 230, 246, 0.92);
    margin-bottom: 10px;
}

.nova-auth-input-wrapper,
.nova-auth-input-group {
    position: relative;
    border: 1px solid rgba(116, 202, 255, 0.18);
    border-radius: 14px;
    background: rgba(10, 25, 38, 0.86);
    box-shadow: inset 0 0 0 1px rgba(84, 178, 255, 0.08);
}

.nova-auth-input {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 14px;
    transition: box-shadow 0.2s ease, border 0.2s ease;
}

.nova-auth-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(83, 193, 255, 0.25);
}

.nova-auth-input-group .nova-auth-input {
    padding-right: 50px;
}

.nova-auth-input-group .input-group-append {
    display: flex;
    margin-left: 0;
}

.nova-auth-input-group .input-group-append .btn {
    height: 100%;
    border: none;
}

.nova-auth-input-group .password-toggle-icon {
    height: 100%;
    align-self: stretch;
}

.password-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0 16px;
    color: rgba(215, 230, 246, 0.8);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.password-toggle-icon:hover,
.password-toggle-icon:focus {
    color: #ffffff;
    outline: none;
}

.password-toggle-icon i {
    pointer-events: none;
}

.nova-auth-card-modern__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nova-auth-card-modern__actions .nova-auth-submit {
    font-weight: 600;
    letter-spacing: 0.35px;
    border-radius: 14px;
    padding: 13px 16px;
    background: linear-gradient(135deg, #53c1ff, #2e7fff);
    border: none;
    box-shadow: 0 22px 40px rgba(46, 127, 255, 0.38);
}

.nova-auth-card-modern__actions .nova-auth-submit:hover {
    background: linear-gradient(135deg, #4aa7ff, #266eff);
}

.nova-auth-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(215, 230, 246, 0.75);
    flex-wrap: wrap;
}

.nova-auth-cta-text {
    white-space: nowrap;
}

.nova-auth-cta-link {
    font-weight: 600;
    color: #9ad5ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nova-auth-cta-link:hover,
.nova-auth-cta-link:focus {
    color: #ffffff;
}

.nova-auth-register-btn {
    min-height: 44px;
    min-width: 132px;
    font-weight: 600;
    border-radius: 10px;
}

.nova-auth-input::placeholder {
    color: rgba(215, 230, 246, 0.5);
}

@media (max-width: 575.98px) {
    .nova-auth-card-modern {
        padding: 28px 22px;
    }

    .nova-auth-card-modern__icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
}
.nova-navbar .navbar-nav .nav-link {
    color: rgba(215, 230, 246, 0.85) !important;
    font-weight: 600;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

body.theme-dark .nova-navbar .navbar-nav .nav-link,
body.theme-dark .nova-navbar-brand,
body.theme-dark .nova-navbar .navbar-toggler {
    color: var(--nova-text-secondary, rgba(215, 230, 246, 0.85)) !important;
    font-weight: 500;
}

.nova-navbar .navbar-nav .nav-link:hover,
.nova-navbar .navbar-nav .nav-link:focus,
.nova-navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

body.theme-dark .nova-navbar .navbar-nav .nav-link:hover,
body.theme-dark .nova-navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

/* Location dropdown styling: softer corners, glow, and extra spacing. */
.nova-navbar .dropdown-menu {
    background: linear-gradient(155deg, rgba(12, 32, 50, 0.96), rgba(5, 18, 30, 0.94));
    border: 1px solid rgba(116, 202, 255, 0.26);
    border-radius: 22px;
    padding: 14px 12px;
    box-shadow: 0 28px 52px rgba(4, 10, 16, 0.58);
    backdrop-filter: blur(6px);
    overflow: hidden;
}

body.theme-dark .nova-navbar .dropdown-menu {
    background: rgba(8, 22, 33, 0.9);
    border: 1px solid rgba(89, 151, 220, 0.28);
}


.nova-navbar .dropdown-menu .dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(215, 230, 246, 0.94);
    border-radius: 16px;
    padding: 12px 16px;
    background: rgba(115, 189, 255, 0.08);
    border: 1px solid rgba(115, 189, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border 0.18s ease;
}

.nova-navbar .dropdown-menu .dropdown-item + .dropdown-item {
    margin-top: 10px;
}

.nova-navbar .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(116, 202, 255, 0.28), rgba(66, 154, 255, 0.32));
    border-color: rgba(146, 224, 255, 0.45);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(46, 127, 255, 0.35);
    transform: translateX(4px) scale(1.015);
}

/* -----------------------------------------------------------------------
 * Masaüstü özel davranışlar (>= 992px)
 * --------------------------------------------------------------------- */
@media (min-width: 992px) {
    .nova-navbar .container {
        padding-top: 0;
        padding-bottom: 0;
        align-items: center;
        max-width: none;
        width: calc(100% - 7cm);
        margin-left: auto;
        margin-right: 6cm;
        padding-left: clamp(24px, 4vw, 72px);
        padding-right: clamp(16px, 3vw, 48px);
    }

    .nova-navbar .navbar-nav.ml-lg-auto {
        margin-left: 0 !important;
    }

    .nova-navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .nova-navbar .nav-auth-links {
        margin-left: auto !important;
        padding-right: 0;
    }

    .nova-navbar .nav-auth-links .btn {
        min-height: 36px;
        padding: 0.45rem 1.2rem;
    }
}

/* -----------------------------------------------------------------------
 * Mobil görünüm (<= 991.98px)
 * --------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .nova-navbar {
        padding: 12px 0;
    }

    .nova-navbar .container {
        width: 100%;
        padding: 0 12px;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nova-navbar .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 0;
    }

    .nova-navbar .logo-image {
        height: 40px;
    }

    .nova-navbar .navbar-toggler {
        border: none;
        padding: 6px 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
    }

    body.theme-dark .nova-navbar .navbar-toggler {
        border: 1px solid rgba(89, 151, 220, 0.35);
    }

    .nova-navbar .navbar-toggler:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(116, 202, 255, 0.25);
    }

    .nova-navbar .navbar-collapse {
        width: 100%;
        margin: 0;
        display: none;
        padding: 0;
        background: rgba(6, 16, 25, 0.92);
        border-radius: 12px;
        border: 1px solid rgba(116, 202, 255, 0.12);
        overflow: hidden;
        box-shadow: 0 10px 24px rgba(4, 10, 16, 0.32);
    }

    .nova-navbar .navbar-collapse.show,
    .nova-navbar .navbar-collapse.collapsing {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 50vh;
        overflow-y: auto;
    }

    .nova-navbar .nova-header-meta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        border-bottom: 1px solid rgba(116, 202, 255, 0.12);
    }

    .nova-navbar .nova-header-meta-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 8px 10px;
        background: rgba(12, 30, 46, 0.78);
        border: 1px solid rgba(116, 202, 255, 0.14);
        border-radius: 10px;
        width: 100%;
        color: #d7e6f6;
    }

    .nova-navbar .nova-header-meta-item .label {
        font-size: 10px;
        letter-spacing: 0.9px;
        color: rgba(157, 198, 235, 0.68);
        text-transform: uppercase;
    }

    .nova-navbar .nova-header-meta-item .value,
    .nova-navbar .nova-header-meta-item .btn-link {
        font-size: 12px;
    }

    .nova-navbar .nav-auth-links {
        flex-direction: column;
        padding: 10px 12px 12px;
        gap: 8px;
        margin-left: 0;
        border-bottom: 1px solid rgba(116, 202, 255, 0.12);
    }

    .nova-navbar .nav-auth-links .btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 9px;
    }

    .nova-navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 6px 0 8px;
        gap: 2px;
    }

    .nova-navbar .navbar-nav .nav-link {
        width: 100%;
        padding: 10px 14px;
        font-size: 12px;
        text-transform: none;
        border-bottom: 1px solid rgba(116, 202, 255, 0.1);
    }

    .nova-navbar .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: calc(100% - 16px);
        margin: 4px auto 10px;
        background: rgba(8, 22, 33, 0.86);
        border-radius: 10px;
        border: 1px solid rgba(116, 202, 255, 0.12);
        box-shadow: none;
    }

    .nova-navbar .navbar-nav .dropdown-item {
        padding: 9px 14px;
        font-size: 12px;
    }

    .nova-navbar .navbar-nav .nav-link:last-child,
    .nova-navbar .navbar-nav .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    .nova-navbar.menu-open {
        padding: 6px 0 10px;
    }

    .nova-navbar.menu-open .logo-image {
        height: 28px;
    }

    .nova-navbar.menu-open .navbar-collapse {
        transform: scale(0.97);
        border-radius: 11px;
        box-shadow: 0 6px 16px rgba(4, 10, 16, 0.28);
    }

    .nova-navbar.menu-open .navbar-collapse.show,
    .nova-navbar.menu-open .navbar-collapse.collapsing {
        max-height: 50vh;
        height: 50vh;
    }

    .nova-navbar.menu-open .nova-header-meta {
        padding: 10px 12px;
        gap: 6px;
    }

    .nova-navbar.menu-open .nova-header-meta-item {
        gap: 4px;
        padding: 7px 10px;
        border-radius: 8px;
        font-size: 11px;
    }

    .nova-navbar.menu-open .nova-header-meta-item .label {
        font-size: 9.5px;
        letter-spacing: 0.8px;
    }

    .nova-navbar.menu-open .nova-header-meta-item .value,
    .nova-navbar.menu-open .nova-header-meta-item .btn-link {
        font-size: 11px;
    }

    .nova-navbar.menu-open .nav-auth-links {
        padding: 8px 12px 10px;
        gap: 6px;
    }

    .nova-navbar.menu-open .nav-auth-links .btn {
        width: 100%;
        min-height: 44px;
        padding: 8px 11px;
        font-size: 11px;
        border-radius: 8px;
    }

    .nova-navbar.menu-open .navbar-nav {
        padding: 4px 0 6px;
        gap: 2px;
    }

    .nova-navbar.menu-open .navbar-nav .nav-link {
        padding: 9px 14px;
        font-size: 11px;
    }

    .nova-navbar.menu-open .navbar-nav .dropdown-menu {
        margin: 4px auto 8px;
        border-radius: 9px;
    }

    .nova-navbar.menu-open .navbar-nav .dropdown-item {
        padding: 8px 12px;
        font-size: 11px;
    }
}
