:root {
    --yg-primary: #1B5190;
    --yg-accent: #56B7E8;
    --yg-ink: #10243D;
    --yg-muted: #66758A;
    --yg-soft: #F4F9FD;
    --yg-border: #E6EEF7;
    --yg-shadow: 0 18px 44px rgba(16, 36, 61, 0.12);
}

/* Gelişmiş site araması */
.search-modal {
    align-items: flex-start;
    padding: clamp(28px, 7vh, 74px) 20px;
    background: rgba(6, 39, 96, .72);
    backdrop-filter: blur(14px);
}

.search-modal-inner {
    width: min(900px, 100%);
    max-height: calc(100dvh - clamp(56px, 14vh, 148px));
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(1, 20, 52, .3);
}

.search-modal-close {
    top: 22px;
    right: 22px;
    z-index: 3;
    width: 44px;
    height: 44px;
    color: #062760;
    background: #f1f6fc;
    border: 0;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.search-modal-close:hover {
    color: #fff;
    background: #062760;
    transform: rotate(5deg);
}

.search-modal-content {
    display: flex;
    flex-direction: column;
    max-height: inherit;
    padding: 34px 38px 22px;
}

.search-modal-eyebrow {
    width: fit-content;
    margin-bottom: 5px;
    color: #1e70e0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.search-modal-content h2 {
    margin: 0 64px 22px 0;
    color: #062760;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -.035em;
}

.search-modal-form {
    margin: 0;
}

.search-modal-field {
    min-height: 66px;
    padding: 0 18px;
    background: #f5f8fc;
    border: 1px solid #dce7f3;
    border-radius: 18px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.search-modal-field:focus-within {
    background: #fff;
    border-color: rgba(30, 112, 224, .55);
    box-shadow: 0 0 0 4px rgba(30, 112, 224, .09);
}

.search-modal-field .searchinput {
    height: 64px;
    padding: 0;
    color: #10243d;
    font-size: 17px;
    font-weight: 600;
}

.search-modal-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #718096;
    background: transparent;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: scale(.85);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.search-modal-clear.is-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.search-modal-clear i {
    font-size: 21px;
}

.search-suggestions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.search-suggestions[hidden] {
    display: none;
}

.search-suggestions > span {
    margin-right: 3px;
    color: #7a899c;
    font-size: 12px;
    font-weight: 650;
}

.search-suggestions button {
    min-height: 34px;
    padding: 0 13px;
    color: #23405f;
    background: #fff;
    border: 1px solid #dce7f3;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.search-suggestions button:hover {
    color: #fff;
    background: #062760;
    border-color: #062760;
}

.search-result-status {
    min-height: 20px;
    margin-top: 15px;
    color: #718096;
    font-size: 12px;
    font-weight: 650;
}

.search-results {
    gap: 0;
    max-height: none;
    margin: 0 -8px 0 0;
    padding: 0 8px 0 0;
    overflow: auto;
    border-top: 0;
    scrollbar-color: #bfd0e3 transparent;
    scrollbar-width: thin;
}

.search-result-group + .search-result-group {
    margin-top: 12px;
}

.search-result-group-title {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px 7px;
    color: #062760;
    background: rgba(255, 255, 255, .96);
    font-size: 12px;
    font-weight: 800;
}

.search-result-group-title small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    color: #1e70e0;
    background: #edf5ff;
    border-radius: 999px;
    font-size: 10px;
}

.search-result-item {
    gap: 14px;
    min-height: 76px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-bottom-color: #edf1f6;
    border-radius: 14px;
}

.search-result-item:hover,
.search-result-item.is-active {
    color: #062760;
    background: #f4f8fd;
    border-color: #dce8f4;
}

.search-result-media {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    border: 1px solid #e3ebf4;
    border-radius: 12px;
}

.search-result-body {
    flex: 1;
}

.search-result-type {
    color: #1e70e0;
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.search-result-item strong {
    color: #10243d;
    font-size: 14px;
}

.search-result-item small {
    -webkit-line-clamp: 1;
}

.search-result-arrow {
    flex: 0 0 auto;
    color: #9aabba;
    font-size: 18px;
    transition: color .18s ease, transform .18s ease;
}

.search-result-item:hover .search-result-arrow,
.search-result-item.is-active .search-result-arrow {
    color: #1e70e0;
    transform: translate(2px, -2px);
}

.search-empty-state {
    min-height: 84px;
    padding: 20px 12px;
    background: #f7f9fc;
    border: 1px dashed #d6e2ef;
    border-radius: 14px;
}

@media (max-width: 767px) {
    .search-modal {
        align-items: flex-end;
        padding: 0;
        background: rgba(6, 39, 96, .68);
    }

    .search-modal-inner {
        width: 100%;
        max-height: 94dvh;
        border-radius: 24px 24px 0 0;
    }

    .search-modal-content {
        padding: 26px 18px 14px;
    }

    .search-modal-close {
        top: 18px;
        right: 18px;
        width: 40px;
        height: 40px;
    }

    .search-modal-content h2 {
        margin-bottom: 18px;
        font-size: 27px;
    }

    .search-modal-field {
        min-height: 58px;
        padding: 0 14px;
        border-radius: 16px;
    }

    .search-modal-field .searchinput {
        height: 56px;
        font-size: 15px;
    }

    .search-suggestions > span {
        flex-basis: 100%;
    }

    .search-results {
        max-height: none;
    }

    .search-result-item {
        padding-right: 6px;
    }

    .search-result-media {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .search-result-item small {
        display: none;
    }

}

body {
    background: #fff;
    color: var(--yg-ink);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
}

.header {
    position: relative;
    z-index: 1040;
    background: #fff;
    border-bottom: 1px solid rgba(27, 81, 144, 0.08);
}

.headerMiniBar {
    background: #062760;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar-modern-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    gap: 18px;
}

.topbar-contact,
.topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-contact a,
.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease;
}

.topbar-contact i {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.topbar-contact a:hover,
.topbar-social a:hover {
    color: #fff;
}

.topbar-social {
    gap: 4px;
}

.topbar-social a {
    width: 26px;
    height: 28px;
    color: rgba(255, 255, 255, .88);
    border-radius: 50%;
}

.topbar-social i {
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
}

.topbar-social a:hover {
    color: #fff;
    background: #1e70e0;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 10vh 18px 32px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.search-modal-open {
    overflow: hidden;
}

.search-modal-inner {
    position: relative;
    width: min(760px, 100%);
}

.search-modal-close {
    position: absolute;
    top: -54px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--yg-primary);
    background: #fff;
    border: 1px solid var(--yg-border);
    border-radius: 50%;
    box-shadow: none;
}

.search-modal-close i {
    font-size: 21px;
    line-height: 1;
}

.search-modal-content {
    padding: 8px 0 0;
}

.search-modal-label {
    margin-bottom: 10px;
    color: var(--yg-primary);
    font-size: 12px;
    font-weight: 750;
}

.search-modal-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.search-modal-field i {
    color: var(--yg-primary);
    font-size: 21px;
    line-height: 1;
}

.search-modal-field .searchinput {
    flex: 1;
    width: 100%;
    height: 56px;
    padding: 0;
    color: var(--yg-ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 17px;
    font-weight: 500;
}

.search-modal-field .searchinput::placeholder {
    color: #94A3B8;
}

.search-results {
    display: grid;
    gap: 0;
    max-height: 54vh;
    margin-top: 10px;
    padding-right: 4px;
    overflow: auto;
    border-top: 1px solid var(--yg-border);
}

.search-results:empty {
    display: none;
    border-top: 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 2px;
    color: var(--yg-ink);
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--yg-border);
    border-radius: 0;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease;
}

.search-result-item:hover {
    color: var(--yg-primary);
    background: #fff;
}

.search-result-type {
    color: var(--yg-primary);
    font-size: 10px;
    font-weight: 750;
}

.search-result-media {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: var(--yg-soft);
    border-radius: 8px;
}

.search-result-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-body {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.search-result-item strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.search-result-item small {
    color: var(--yg-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.search-empty-state {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 14px 2px;
    color: var(--yg-muted);
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--yg-border);
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
}

.search-empty-state i {
    color: var(--yg-accent);
    font-size: 20px;
}

.search-loading-icon {
    animation: ygSearchSpin 0.9s linear infinite;
}

@keyframes ygSearchSpin {
    to {
        transform: rotate(360deg);
    }
}

#navbar,
.navbar {
    min-height: 86px;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    border: 0;
    border-radius: 0;
    backdrop-filter: blur(16px);
}

body.yg-menu-fixed {
    padding-top: 86px;
}

body.yg-menu-fixed #navbar,
body.yg-menu-fixed .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1045;
    box-shadow: 0 14px 34px rgba(16, 36, 61, 0.10);
}

body.yg-menu-fixed .headerMiniBar {
    display: none;
}

body.yg-menu-fixed .logo {
    width: 168px;
}

.navbar .container {
    gap: 18px;
}

.navbar-collapse {
    align-items: center;
}

.logo {
    width: 194px;
    max-height: 66px;
    object-fit: contain;
    margin: 0;
}

.modern-main-nav {
    align-items: center;
    gap: 4px;
    margin-left: auto;
    margin-right: auto;
}

.header-actions {
    margin-left: 18px;
}

.navbar .nav-link,
.navbar-nav .nav-item .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--yg-ink);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease;
}

.navbar .nav-item:hover > .nav-link,
.navbar .nav-link:focus {
    color: var(--yg-primary);
    background: var(--yg-soft);
}

.navbar .dropdown-menu,
.dropdown-menu {
    min-width: 230px;
    padding: 8px;
    margin-top: 10px;
    background: #fff;
    background-color: #fff;
    border: 1px solid var(--yg-border);
    border-radius: 8px;
    box-shadow: var(--yg-shadow);
}

.modern-dropdown {
    min-width: 280px;
    padding: 10px;
    border-top: 3px solid var(--yg-accent);
}

.modern-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 26px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--yg-border);
    border-top: 1px solid var(--yg-border);
    transform: rotate(45deg);
}

.donation-dropdown {
    min-width: 440px;
    columns: 2;
    column-gap: 8px;
}

.donation-dropdown li,
.corporate-dropdown li,
.media-dropdown li,
.account-dropdown li {
    break-inside: avoid;
}

.navbar .dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 11px 12px;
    color: var(--yg-ink);
    background: transparent;
    background-color: transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.navbar .dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:hover {
    color: var(--yg-primary);
    background: var(--yg-soft);
    background-color: var(--yg-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
}

.mobile-header-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.mobile-menu-meta {
    display: none;
}

.mobile-menu-head,
.mobile-menu-quick {
    display: none;
}

#searchAc,
#girisbuton,
#profileMenuButton,
#cartOpen,
.header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--yg-primary);
    background: transparent;
    border: 0;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

#searchAc:hover,
#searchAc:focus,
#girisbuton:hover,
#girisbuton:focus,
#profileMenuButton:hover,
#profileMenuButton:focus,
#cartOpen:hover,
#cartOpen:focus,
.header-action:hover,
.header-action:focus {
    color: var(--yg-primary);
    background: var(--yg-soft);
}

.header-action i,
#searchAc i,
#girisbuton i,
#profileMenuButton i,
#cartOpen i {
    font-size: 20px;
    line-height: 1;
}

.header-donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 4px 16px 4px 5px;
    color: #fff;
    background: #062760;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(6, 39, 96, .16);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.header-donate-button i {
    display: inline-flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    color: #1E70E0;
    background: #fff;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 3px 10px rgba(3, 24, 60, .16);
    transition: color .2s ease, transform .2s ease;
}

.header-donate-button:hover {
    color: #fff;
    background: #0B3A7A;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(6, 39, 96, .22);
}

.header-donate-button:hover i {
    color: #062760;
    transform: scale(1.04) rotate(-5deg);
}

.header-donate-button:focus-visible {
    outline: 3px solid rgba(30, 112, 224, .22);
    outline-offset: 3px;
}

.profile-action {
    position: relative;
    display: inline-flex;
}

.profile-action .account-dropdown {
    top: calc(100% + 12px) !important;
    right: 50% !important;
    left: auto !important;
    min-width: 148px;
    padding: 8px;
    transform: translateX(50%) !important;
}

.profile-action .account-dropdown::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

@media all and (min-width: 992px) {
    .profile-action:hover .account-dropdown {
        display: block;
    }
}

.cart-count {
    position: absolute;
    top: 2px;
    right: -2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    color: var(--yg-primary);
    background: #fff;
    border: 0;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.header-cart-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header-mini-cart {
    position: absolute;
    top: calc(100% + 15px);
    right: -72px;
    z-index: 40;
    width: 380px;
    overflow: hidden;
    color: var(--yg-ink);
    background: #fff;
    border: 1px solid #dfe8f2;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(6, 39, 96, .20);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(9px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.header-mini-cart::before {
    content: "";
    position: absolute;
    right: 82px;
    bottom: 100%;
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 1px solid #dfe8f2;
    border-left: 1px solid #dfe8f2;
    transform: translateY(8px) rotate(45deg);
}

.header-cart-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -12px;
    width: 80px;
    height: 18px;
}

.header-cart-menu:hover .header-mini-cart,
.header-cart-menu:focus-within .header-mini-cart,
.header-cart-menu.is-open .header-mini-cart {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-mini-cart-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 16px 18px;
    background: #f6f9fd;
    border-bottom: 1px solid #e5edf6;
}

.header-mini-cart-head > div {
    display: grid;
    gap: 2px;
}

.header-mini-cart-head span {
    color: #1e70e0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.header-mini-cart-head strong {
    color: #062760;
    font-size: 17px;
    font-weight: 800;
}

.header-mini-cart-head b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    color: #fff;
    background: #062760;
    border-radius: 999px;
    font-size: 12px;
}

.header-mini-cart-content {
    min-height: 118px;
}

.header-mini-cart-loading,
.header-mini-cart-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 118px;
    padding: 20px;
    color: #718096;
    font-size: 13px;
    font-weight: 650;
}

.header-mini-cart-loading i {
    color: #1e70e0;
    font-size: 20px;
    animation: ygSearchSpin .9s linear infinite;
}

.header-mini-cart-error {
    flex-direction: column;
}

.header-mini-cart-error a {
    color: #1e70e0;
    font-weight: 750;
}

.header-mini-cart-items {
    max-height: 306px;
    padding: 5px 16px;
    overflow-y: auto;
    scrollbar-color: #c5d4e4 transparent;
    scrollbar-width: thin;
}

.header-mini-cart-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.header-mini-cart-item:last-child {
    border-bottom: 0;
}

.header-mini-cart-media {
    display: block;
    width: 62px;
    height: 62px;
    overflow: hidden;
    background: #f1f6fb;
    border-radius: 13px;
}

.header-mini-cart-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-mini-cart-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.header-mini-cart-copy small {
    overflow: hidden;
    color: #1e70e0;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-mini-cart-copy strong,
.header-mini-cart-copy strong a,
.header-mini-cart-copy strong span {
    overflow: hidden;
    color: #10243d;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-mini-cart-copy > span {
    color: #718096;
    font-size: 11px;
    font-weight: 650;
}

.header-mini-cart-footer {
    padding: 16px 18px 18px;
    background: #f6f9fd;
    border-top: 1px solid #e5edf6;
}

.header-mini-cart-footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.header-mini-cart-footer > div span {
    color: #718096;
    font-size: 12px;
    font-weight: 650;
}

.header-mini-cart-footer > div strong {
    color: #062760;
    font-size: 17px;
    font-weight: 850;
}

.header-mini-cart-footer > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    color: #fff;
    background: #062760;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

.header-mini-cart-footer > a:hover {
    color: #fff;
    background: #0b3a7a;
    transform: translateY(-1px);
}

.header-mini-cart-empty {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 20px 23px;
    text-align: center;
}

.header-mini-cart-empty > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    color: #1e70e0;
    background: #edf5ff;
    border-radius: 50%;
    font-size: 21px;
}

.header-mini-cart-empty strong {
    color: #062760;
    font-size: 14px;
}

.header-mini-cart-empty span {
    max-width: 270px;
    margin: 4px 0 13px;
    color: #718096;
    font-size: 11px;
    line-height: 1.5;
}

.header-mini-cart-empty a {
    color: #1e70e0;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* Sepet, hem masaüstünde hem mobilde ana bağış aksiyonu kadar görünür olmalı. */
#cartOpen.cart-action,
#navbar .mobile-header-actions .mobile-cart-action {
    width: 42px;
    height: 42px;
    color: #fff;
    background: #062760;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(6, 39, 96, 0.18);
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#cartOpen.cart-action:hover,
#cartOpen.cart-action:focus,
#navbar .mobile-header-actions .mobile-cart-action:hover,
#navbar .mobile-header-actions .mobile-cart-action:focus {
    color: #fff;
    background: #0B3A7A;
    box-shadow: 0 14px 28px rgba(6, 39, 96, 0.26);
    transform: translateY(-1px);
}

#cartOpen.cart-action i,
#navbar .mobile-header-actions .mobile-cart-action i {
    color: #fff;
}

#cartOpen.cart-action .cart-count,
#navbar .mobile-header-actions .mobile-cart-action .cart-count {
    top: -5px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    color: #fff;
    background: #1E70E0;
    border: 2px solid #fff;
    box-shadow: 0 3px 8px rgba(6, 39, 96, 0.18);
}

.navbar-toggler {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--yg-border);
    border-radius: 8px;
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--yg-primary);
    border-radius: 999px;
}

.fixed-action-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1060;
    display: grid;
    gap: 12px;
    justify-items: end;
}

.fixed-action-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background 0.18s ease;
}

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

.fixed-action-button > span {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    color: var(--yg-ink);
    background: #fff;
    border: 1px solid var(--yg-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.fixed-action-button:hover > span,
.fixed-action-button:focus-visible > span {
    opacity: 1;
    transform: translate(0, -50%);
}

.fixed-action-button i {
    font-size: 29px;
    line-height: 1;
}

.fixed-donate {
    color: var(--yg-primary);
    background: #fff;
    border: 1px solid rgba(27, 81, 144, 0.14);
    box-shadow: 0 18px 34px rgba(27, 81, 144, 0.16);
}

.fixed-donate:hover {
    color: var(--yg-primary);
    box-shadow: 0 22px 42px rgba(27, 81, 144, 0.22);
}

.fixed-donate.has-cart,
.fixed-donate.has-cart:hover,
.fixed-donate.has-cart:focus-visible {
    color: #fff;
    background: #062760;
    border-color: #062760;
    box-shadow: 0 18px 38px rgba(6, 39, 96, 0.30);
}

.fixed-donate.has-cart:hover {
    box-shadow: 0 22px 44px rgba(6, 39, 96, 0.38);
}

.fixed-donate.has-cart i {
    color: #fff;
}

.fixed-donate.has-cart > span {
    display: inline-flex;
    color: #fff;
    background: #062760;
    border-color: #062760;
    box-shadow: 0 12px 28px rgba(6, 39, 96, 0.22);
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.fixed-whatsapp {
    color: #fff;
    background: #25D366;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.30);
}

.fixed-whatsapp:hover {
    color: #fff;
    box-shadow: 0 22px 42px rgba(37, 211, 102, 0.36);
}

@media all and (min-width: 992px) {
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
        top: calc(100% - 3px);
    }
}

@media only screen and (max-width: 991px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .fixed-action-stack {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .header-cart-menu,
    .header-mini-cart {
        display: none !important;
    }

    #navbar,
    .navbar {
        min-height: 74px;
        padding: 8px 0;
        border-bottom: 1px solid var(--yg-border);
        backdrop-filter: none;
    }

    .navbar .container {
        position: relative;
        display: grid;
        grid-template-columns: 88px 1fr 88px;
        align-items: center;
        gap: 0;
        max-width: 100%;
    }

    .logo {
        width: 150px;
        max-height: 52px;
    }

    body.yg-menu-fixed .logo {
        width: 150px;
    }

    body.yg-menu-fixed {
        padding-top: 74px;
    }

    .navbar-brand {
        justify-self: center;
        margin: 0;
        order: 2;
    }

    .navbar-toggler {
        order: 1;
        justify-self: start;
        width: 42px;
        height: 42px;
        color: var(--yg-primary);
        background: #F7FAFD;
        border: 0;
        border-radius: 14px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler span {
        width: 18px;
        height: 2px;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-header-actions {
        display: inline-flex;
        order: 3;
        justify-self: end;
    }

    .mobile-header-actions .header-action {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: #fff;
    }

    .mobile-header-actions .header-action i {
        font-size: 21px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1080;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        margin-top: 0;
        padding: 0 0 24px;
        background:
            linear-gradient(180deg, rgba(241, 247, 254, .92) 0, #fff 150px),
            #fff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        display: block !important;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, visibility .3s ease;
        will-change: transform;
    }

    .mobile-menu-head {
        position: sticky;
        top: 0;
        z-index: 3;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto 48px;
        align-items: center;
        gap: 8px;
        min-height: 82px;
        padding: 14px 18px;
        background: rgba(255, 255, 255, .96);
        border-bottom: 1px solid #e6edf5;
        backdrop-filter: blur(16px);
    }

    .mobile-menu-brand {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .mobile-menu-brand img {
        width: 148px;
        max-width: 68%;
        height: auto;
    }

    .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        color: var(--yg-primary);
        background: #eef5fc;
        border: 0;
        border-radius: 50%;
    }

    .mobile-menu-close i {
        font-size: 22px;
        line-height: 1;
    }

    .mobile-menu-quick {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 2px;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .mobile-menu-quick a {
        display: inline-flex;
        width: 38px;
        min-height: 38px;
        align-items: center;
        justify-content: center;
        padding: 0;
        color: var(--yg-ink);
        background: transparent;
        border: 0;
        border-radius: 50%;
        text-decoration: none;
    }

    .mobile-menu-quick span {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        color: var(--yg-primary);
        background: transparent;
        border: 0;
        border-radius: 50%;
        transition: color .18s ease, background .18s ease, transform .18s ease;
    }

    .mobile-menu-quick span.is-whatsapp {
        color: #19B764;
        background: transparent;
    }

    .mobile-menu-quick a:hover span,
    .mobile-menu-quick a:focus-visible span {
        color: var(--yg-primary);
        background: #f1f6fc;
        transform: none;
    }

    .mobile-menu-quick a:hover span.is-whatsapp,
    .mobile-menu-quick a:focus-visible span.is-whatsapp {
        color: #19b764;
        background: #edf9f2;
    }

    .mobile-menu-quick i {
        font-size: 21px;
        line-height: 1;
    }

    .mobile-menu-quick strong {
        display: none;
    }

    .navbar-collapse.show {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-collapse.collapsing {
        height: 100vh !important;
        height: 100dvh !important;
        visibility: visible;
        opacity: 1;
        transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, visibility .3s ease;
    }

    body.mobile-menu-opening .navbar-collapse.collapsing {
        transform: translateX(0);
    }

    body.mobile-menu-closing .navbar-collapse.collapsing {
        transform: translateX(100%);
    }

    .modern-main-nav {
        width: calc(100% - 36px);
        margin: 12px 18px 0;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .modern-main-nav > .nav-item {
        border-bottom: 1px solid #e8eef5;
    }

    .modern-main-nav > .nav-item:last-child {
        border-bottom: 0;
    }

    .navbar .nav-link,
    .navbar-nav .nav-item .nav-link {
        width: 100%;
        min-height: 56px;
        justify-content: space-between;
        padding: 0 4px;
        color: var(--yg-ink);
        background: transparent;
        border: 0;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        text-align: left;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:focus,
    .navbar .nav-item:hover > .nav-link {
        color: var(--yg-primary);
        background: transparent;
    }

    .navbar .dropdown-toggle::after {
        color: #8BA0B6;
        transform: scale(0.9);
    }

    .navbar .nav-item .dropdown-menu {
        position: static;
        display: none;
        min-width: 100%;
        margin: 0 0 12px;
        padding: 8px 10px;
        background: #f4f8fc;
        border: 0;
        border-radius: 16px;
        box-shadow: none;
    }

    .modern-dropdown::before {
        display: none;
    }

    .navbar .nav-item:hover .dropdown-menu,
    .navbar .nav-item.show .dropdown-menu,
    .navbar .nav-item .dropdown-menu.show {
        display: block;
    }

    .donation-dropdown {
        columns: 1;
    }

    .navbar .dropdown-menu .dropdown-item,
    .dropdown-menu .dropdown-item {
        padding: 10px 12px;
        color: #536277;
        background: transparent;
        border-radius: 12px;
        font-size: 13.5px;
        font-weight: 600;
    }

    .navbar .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:hover {
        background: #fff;
    }

    .header-actions {
        justify-content: stretch;
        width: calc(100% - 36px);
        flex-wrap: wrap;
        gap: 0;
        margin: 18px 18px 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .navbar-collapse .header-actions #searchAc,
    .navbar-collapse .header-actions #siteSearchAc,
    .navbar-collapse .header-actions #cartOpen,
    .navbar-collapse .header-actions .cart-action,
    .navbar-collapse .header-actions #girisbuton,
    .navbar-collapse .header-actions .profile-action {
        display: none;
    }

    .navbar-collapse .header-actions .header-action {
        width: 46px;
        height: 46px;
        background: #F6F8FB;
        border-radius: 16px;
    }

    .header-donate-button {
        flex: 1 1 100%;
        min-height: 52px;
        margin-top: 0;
        background: #062760;
        border-radius: 999px;
        font-size: 14px;
        padding: 5px 18px;
    }

    .profile-action {
        flex: 0 0 auto;
    }

    .profile-action .account-dropdown {
        position: static !important;
        transform: none !important;
        min-width: 100%;
        margin-top: 8px;
    }

    .profile-action .account-dropdown::before {
        display: none;
    }

    .mobile-menu-meta {
        display: grid;
        gap: 16px;
        margin: 20px 18px 0;
        padding: 20px 0 4px;
        background: transparent;
        border: 0;
        border-top: 1px solid #e6edf5;
        border-radius: 0;
    }

    .mobile-menu-contact {
        display: flex;
        align-items: center;
        gap: 8px 18px;
        flex-wrap: wrap;
    }

    .mobile-menu-contact a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #536277;
        font-size: 12.5px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-menu-contact i {
        display: inline-block;
        width: auto;
        height: auto;
        color: var(--yg-primary);
        background: transparent;
        border-radius: 0;
        font-size: 16px;
    }

    .mobile-menu-social {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        color: var(--yg-primary);
        background: #F6F8FB;
        border: 1px solid #E3EDF6;
        border-radius: 14px;
        text-decoration: none;
    }

    .mobile-menu-social i {
        font-size: 18px;
        line-height: 1;
    }
}

@media only screen and (max-width: 600px) {
    .headerMiniBar {
        display: none;
    }

    .search-modal {
        padding: 84px 14px 24px;
    }

    .search-modal-close {
        top: -54px;
        right: 0;
    }

    .search-modal-field {
        min-height: 56px;
        padding: 0;
    }

    .search-modal-field .searchinput {
        height: 54px;
        font-size: 16px;
    }

    .search-results {
        max-height: 62vh;
    }

    body.yg-menu-fixed {
        padding-top: 70px;
    }

    .fixed-action-stack {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .fixed-action-button {
        width: 54px;
        height: 54px;
    }

    .fixed-action-button > span {
        display: none;
    }
}
