/**
 * Masaüstü üst çubuk (≥1080px). Mobil header ile aynı breakpoint; kaldırmak için
 * layout’tan @include + bu dosya linkini silmeniz yeterli.
 */
html {
    /* Dropdown açılınca scrollbar kapanmasıyla layout kaymasın */
    scrollbar-gutter: stable;
}

.front-desktop-header {
    --fdh-surface: #ffffff;
    --fdh-border: var(--bs-border-color, #e5e7eb);
    --fdh-text: var(--bs-body-color, #111827);
    --fdh-muted: var(--bs-secondary-color, #6b7280);
    --fdh-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    --fdh-dropdown-top: 5rem;
    display: none;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    box-sizing: border-box;
    background: var(--fdh-surface);
    color: var(--fdh-text);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
}

html[data-bs-theme="dark"] .front-desktop-header {
    --fdh-surface: #1d1e2e;
    --fdh-border: #272836;
    --fdh-text: #f4f4f8;
    --fdh-muted: #9ca3af;
    --fdh-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35), 0 10px 28px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1080px) {
    .front-desktop-header {
        display: block;
    }
}

/* Üst şerit + ana sıra: duyuru ile aynı max genişlik (.fdh-shell) */
.fdh-shell {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    box-sizing: border-box;
}

@media (max-width: 1199.98px) {
    .fdh-shell {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.fdh-shell--topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 1.85rem;
    padding-top: 0.15rem;
    padding-bottom: 0.2rem;
}

/* Üst şerit (sosyal + araçlar) */
.fdh-topbar {
    position: relative;
    z-index: 12;
    border-top: none;
    border-bottom: none;
    background: #f0f1f9;
    box-sizing: border-box;
    overflow: visible;
}

html[data-bs-theme="dark"] .fdh-topbar { background: transparent; }

.fdh-main-band {
    position: relative;
    z-index: 1;
}

.front-desktop-header {
    overflow: visible;
}

.fdh-locale-dd {
    position: relative;
    z-index: 15;
}

/* Dark modda hero üzerinde çizgi/şerit yapmasın */
html[data-bs-theme="dark"] .orvix-front-hero-shell .front-desktop-header {
    box-shadow: none !important;
}

.fdh-topbar__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    min-width: 0;
    flex: 1;
}

.fdh-topbar__soc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fdh-muted);
    font-size: 1.05rem;
    line-height: 1;
    opacity: 0.92;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.fdh-topbar__soc:hover {
    color: var(--bs-primary);
    opacity: 1;
}

.fdh-topbar__tools {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.07em;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.fdh-topbar__tools i {
    font-size: 1.05rem;
    color: #22d3ee;
    animation: fdh-tools-rgb-color 4.8s linear infinite;
}

.fdh-topbar__tools-txt {
    color: #22d3ee;
    animation: fdh-tools-rgb-color 4.8s linear infinite;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-shadow: 0 0 1px rgba(99, 102, 241, 0.32);
}

html[data-bs-theme="dark"] .fdh-topbar__tools-txt {
    animation: fdh-tools-rgb-color 4.8s linear infinite;
    text-shadow: 0 0 1px rgba(147, 197, 253, 0.42);
}

@keyframes fdh-tools-rgb-color {
    0% { color: #22d3ee; }
    25% { color: #6366f1; }
    50% { color: #ec4899; }
    75% { color: #facc15; }
    100% { color: #22d3ee; }
}

.fdh-topbar__tail {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    overflow: visible;
}

/* Sipariş sorgula — çerçeve yok; normal case + net metin (TR diakritikler için uppercase kullanılmaz) */
.fdh-topbar__track {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-shrink: 0;
    min-height: 2.15rem;
    padding: 0.42rem 0.55rem;
    margin: 0;
    border: 0;
    border-radius: 0.65rem;
    background: transparent;
    color: var(--bs-primary);
    font: inherit;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.5;
    overflow: visible;
    cursor: pointer;
    box-shadow: none;
    transition:
        color 0.18s ease,
        opacity 0.18s ease,
        transform 0.15s ease;
}

.fdh-topbar__track:hover {
    background: var(--orvix-primary-tint-18, rgba(55, 98, 234, 0.18));
    color: var(--bs-primary);
}

.fdh-topbar__track:active {
    transform: translateY(1px);
}

.fdh-topbar__track:focus-visible {
    outline: none;
}

.fdh-topbar__track i {
    font-size: 1rem;
    line-height: 1;
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.fdh-topbar__track-txt {
    max-width: 14rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
    text-transform: none;
    filter: none;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.fdh-topbar__track,
.fdh-topbar__track-txt,
.fdh-topbar__track i {
    text-transform: none;
    filter: none;
}

html[data-bs-theme="dark"] .fdh-topbar__track {
    background: transparent;
    color: var(--fdh-text);
}

html[data-bs-theme="dark"] .fdh-topbar__track:hover {
    background: transparent;
    color: var(--fdh-text);
}

html[data-bs-theme="dark"] .fdh-topbar__track i {
    color: currentColor;
}

.fdh-theme-seg {
    display: inline-flex;
    align-items: center;
    padding: 0.04rem 0.06rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.22);
    border: 1px solid rgba(148, 163, 184, 0.28);
    gap: 0.04rem;
}

html[data-bs-theme="dark"] .fdh-theme-seg {
    background: rgba(49, 49, 68, 0.55);
    border-color: rgba(49, 49, 68, 0.75);
}

.fdh-theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.42rem;
    height: 1.42rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--fdh-muted);
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.15s ease;
}

.fdh-theme-btn:hover {
    color: var(--fdh-text);
    background: rgba(255, 255, 255, 0.72);
}

.fdh-theme-btn.is-active {
    background: var(--fdh-surface);
    color: var(--bs-primary);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

html[data-bs-theme="dark"] .fdh-theme-btn.is-active {
    background: #272836;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.fdh-inner {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    box-sizing: border-box;
}

.fdh-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    min-width: 0;
}

.fdh-logo {
    max-height: 2.35rem;
    max-width: min(200px, 22vw);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

html[data-bs-theme="dark"] .fdh-logo {
    filter: brightness(0) invert(1) saturate(0) contrast(1.05);
    opacity: 0.95;
}

.fdh-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 0.15rem;
    overflow: visible;
}

.fdh-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
    flex: 1 1 auto;
    position: relative;
}

.fdh-nav-item {
    position: relative;
    margin: 0;
    padding: 0;
}

.fdh-nav-item + .fdh-nav-item::before {
    content: "";
    position: absolute;
    left: -0.06rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.05rem;
    background: rgba(148, 163, 184, 0.28);
    opacity: 0.38;
    pointer-events: none;
}

html[data-bs-theme="dark"] .fdh-nav-item + .fdh-nav-item::before {
    background: rgba(255, 255, 255, 0.22);
    opacity: 0.55;
}

.fdh-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.65rem;
    border-radius: 0.65rem;
    text-decoration: none;
    color: var(--fdh-text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.fdh-nav-link::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.18rem;
    height: 2px;
    border-radius: 2px;
    background: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Alt menüsü olmayan öğeler: yalnızca çizgi + renk, soft arkaplan yok */
.fdh-nav-link:hover {
    background: transparent;
    color: var(--bs-primary);
}

.fdh-nav-link:hover::after,
.fdh-nav-link.is-active::after {
    transform: scaleX(1);
}

.fdh-nav-link.is-active {
    background: transparent;
    color: var(--bs-primary);
}

.fdh-nav-link i {
    font-size: 1.12rem;
    font-weight: 100;
    opacity: 1;
    line-height: 1;
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fdh-nav-logo,
.fdh-dd__main .fdh-nav-logo {
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    border-radius: 0.2rem;
    background: #fff;
}

.fdh-nav-link > span {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.fdh-nav-item--hidden {
    position: absolute !important;
    left: -9999px !important;
    top: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.fdh-nav-overflow {
    flex-shrink: 0;
    z-index: 1100;
}

.fdh-overflow-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1100;
}

.fdh-overflow-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    border: 0;
    border-radius: 0.65rem;
    background: var(--bs-primary);
    background: var(--orvix-primary-tint-10);
    color: var(--bs-primary);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.fdh-overflow-trigger:hover {
    background: var(--bs-primary);
    background: var(--orvix-primary-tint-16);
}

.fdh-overflow-trigger[aria-expanded="true"] {
    background: var(--bs-primary);
    background: var(--orvix-primary-tint-18);
}

.fdh-overflow-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 12rem;
    max-width: min(18rem, 92vw);
    max-height: min(70vh, 360px);
    overflow-y: auto;
    padding: 0.35rem;
    margin: 0;
    list-style: none;
    background: var(--fdh-surface);
    border: 1px solid var(--fdh-border);
    border-radius: 0.75rem;
    box-shadow: var(--fdh-shadow);
    z-index: 1090;
    box-sizing: border-box;
}

.fdh-overflow-panel[hidden] {
    display: none !important;
}

.fdh-overflow-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.5rem 0.55rem;
    border: 0;
    border-radius: 0.55rem;
    background: transparent;
    color: var(--fdh-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    box-sizing: border-box;
    transition: background 0.15s ease, color 0.15s ease;
}

a.fdh-overflow-item:hover,
button.fdh-overflow-item:hover {
    background: var(--bs-primary);
    background: var(--orvix-primary-tint-10);
    color: var(--bs-primary);
}

.fdh-dd {
    display: inline-flex;
    align-items: stretch;
    border-radius: 0.65rem;
    position: relative;
}

/* Alt çizgi tüm satırı (ok dahil) kapsar; ok üzerindeyken de hover ile görünür */
.fdh-dd::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.35rem;
    bottom: 0.18rem;
    height: 2px;
    border-radius: 2px;
    background: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fdh-dd:hover::after,
.fdh-dd:focus-within::after,
.fdh-dd:has(.fdh-dd__main.is-active)::after,
.fdh-dd.is-open::after {
    transform: scaleX(1);
}

.fdh-dd__main {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.35rem 0.5rem 0.65rem;
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    border-radius: 0.65rem 0 0 0.65rem;
    white-space: nowrap;
    color: var(--fdh-text);
}

button.fdh-dd__main {
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
}

.fdh-dd__main.is-active,
.fdh-dd.is-open .fdh-dd__main,
.fdh-dd:hover .fdh-dd__main,
.fdh-dd__main:hover {
    color: var(--fdh-text);
}

.fdh-dd__main i {
    font-size: 1.12rem;
    font-weight: 100;
    line-height: 1;
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fdh-dd__main > span {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.fdh-dd__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 1.85rem;
    min-height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--fdh-muted);
    cursor: pointer;
    border-radius: 0 0.65rem 0.65rem 0;
    transition: color 0.18s ease, transform 0.2s ease;
}

.fdh-dd.is-open .fdh-dd__toggle {
    color: currentColor;
}

.fdh-dd:hover .fdh-dd__toggle,
.fdh-dd__toggle:hover {
    color: var(--fdh-muted);
}

.fdh-dd.is-open .fdh-dd__toggle i {
    transform: rotate(180deg);
}

.fdh-dd__toggle i {
    font-size: 1.12rem;
    line-height: 1;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mega panel: tam genişlik, header altı */
.fdh-dd__panel--mega {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--fdh-dropdown-top, 5rem);
    width: 100%;
    max-width: none;
    min-width: 0;
    max-height: min(72vh, 560px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    background: var(--fdh-surface);
    border: solid var(--fdh-border);
    border-width: 1px 0;
    border-radius: 0;
    box-shadow: var(--fdh-shadow);
    z-index: 1070;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
    -webkit-overflow-scrolling: touch;
}

.fdh-dd__panel-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.85rem 1.15rem 1rem;
    box-sizing: border-box;
}

.front-desktop-header .fdh-dd__panel .fmh-submenu.fdh-submenu--mega {
    display: block !important;
    margin-top: 0;
    padding: 0;
    background: transparent;
}

/* Alt menü: sayfa listesi — kutulu grid + kurumsal kart çerçevesi */
.front-desktop-header .fdh-dd__panel .fmh-page-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.65rem;
    width: 100%;
}

.front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item {
    border: 1px solid rgba(148, 163, 184, 0.32) !important;
    border-radius: 0.78rem !important;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 2px 10px rgba(15, 23, 42, 0.05) !important;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        transform 0.25s ease;
}

.front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover {
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    box-shadow: none !important;
    transform: translateY(-2px);
}

.front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover .fmh-page-icon {
    background: #ffffff !important;
    border: 0 !important;
    color: var(--bs-primary) !important;
}

.front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover .fmh-page-text,
.front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover .fmh-page-line--platform,
.front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover .fmh-page-line--tool {
    color: #ffffff !important;
}

.front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover .fmh-page-icon i {
    color: var(--bs-primary) !important;
}

html[data-bs-theme="dark"] .front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item {
    border-color: rgba(49, 49, 68, 0.92) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22) !important;
}

html[data-bs-theme="dark"] .front-desktop-header .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover {
    box-shadow: none !important;
}

/* Gece: satır primary — ikon kutusu + glif beyaz (primary üstünde primary kaybolmasın) */
html[data-bs-theme="dark"] .front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover .fmh-page-icon {
    background: #8eb0f5 !important;
    border: 0 !important;
    color: #fff !important;
}

html[data-bs-theme="dark"] .front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-page-list .fmh-page-item:hover .fmh-page-icon i {
    color: #fff !important;
}

/* Platform / oyun / araç: daha küçük hücre, daha sık sütun; ikon ve yazı okunaklı (glass mega hariç) */
.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid {
    --fdh-pg-gap: 0.28rem;
    display: grid !important;
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    align-content: start !important;
    align-items: start !important;
    gap: var(--fdh-pg-gap) !important;
    width: 100% !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item {
    flex: unset !important;
    align-self: center;
    justify-self: stretch;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 1 / 1;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0.16rem 0.1rem !important;
    border-radius: 0.68rem !important;
    gap: 0.14rem !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.34, 1.45, 0.56, 1);
    will-change: transform;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item:hover {
    transform: translateY(-5px) scale(1.045);
    box-shadow: none !important;
    z-index: 2;
}

html[data-bs-theme="dark"] .front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item:hover {
    box-shadow: none !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-cards--platform-grid .fmh-package-icon {
    width: 2.1rem !important;
    height: 2.1rem !important;
    min-width: 2.1rem !important;
    min-height: 2.1rem !important;
    font-size: 2.1rem !important;
    line-height: 1 !important;
    border-radius: 0.52rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-cards--platform-grid .fmh-package-icon i {
    font-size: 1em !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-name {
    font-size: 0.68rem !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-line--platform {
    font-size: 0.58rem !important;
    font-weight: 800 !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-line--tool {
    font-size: 0.66rem !important;
    font-weight: 600 !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-text-stack--platform-svc {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.1rem !important;
    width: 100% !important;
    min-width: 0 !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-line--platform-name {
    font-size: 0.58rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
    text-align: center !important;
    color: #fff !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-line--services-suffix {
    font-size: 0.56rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.15 !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-package-item--epin-cover .fmh-package-name--epin-overlay {
    font-size: 0.58rem !important;
    padding: 0.18rem !important;
    line-height: 1.15 !important;
}

@media (max-width: 1599.98px) {
    .front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid {
        grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1399.98px) {
    .front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1199.98px) {
    .front-desktop-header:not(.front-desktop-header--glass) .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

.fdh-dd__panel[hidden] {
    display: none !important;
}

/* Bildirim / sepet / favori flyout */
.fdh-flyout {
    position: fixed;
    z-index: 1085;
    width: min(22rem, calc(100vw - 1.25rem));
    background: var(--fdh-surface);
    border: 1px solid var(--fdh-border);
    border-radius: 0.95rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    display: flex;
    flex-direction: column;
    max-height: min(82vh, 560px);
    overflow: hidden;
}

.fdh-flyout.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fdh-flyout[hidden] {
    display: none !important;
}

.fdh-flyout--notify {
    padding: 0.65rem 0.6rem 0.6rem;
    display: block;
    max-height: none;
    overflow: visible;
}

.fdh-flyout--notify::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    right: var(--fdh-notify-arrow-right, 1rem);
    top: -6px;
    background: var(--fdh-surface);
    border-left: 1px solid var(--fdh-border);
    border-top: 1px solid var(--fdh-border);
    z-index: 2;
    pointer-events: none;
    box-sizing: border-box;
}

.fdh-flyout--cart {
    width: min(26rem, calc(100vw - 1.25rem));
}

.fdh-flyout--notify .fmh-notify-list {
    max-height: min(52vh, 300px);
    overflow-y: auto;
    padding-right: 0.15rem;
}

/* Sepet flyout: mobil fmb-cart-modal içeriği ile aynı sınıflar */
.fdh-flyout--cart .fmb-cart-modal__header {
    padding: 0.65rem 1rem 0.45rem;
    flex-shrink: 0;
}

.fdh-flyout--cart .fmb-cart-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0.45rem 1rem;
}

.fdh-flyout__scroll {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    max-height: min(36vh, 240px);
}

.fdh-flyout--cart .fmb-cart-empty {
    padding: 1.75rem 0.75rem;
}

.fdh-flyout--cart .fmb-cart-empty__icon {
    font-size: 2.35rem;
}

.fdh-flyout--cart .fmb-cart-modal__summary {
    padding: 0.65rem 1rem 0.85rem;
    border-top: 1px solid var(--fdh-border);
    flex-shrink: 0;
}

.fdh-flyout--cart .fmb-cart-modal__checkout-btn {
    margin-top: 0.65rem;
}

/* Favoriler flyout: mobil fmb-fav-modal başlık + gövde */
.fdh-flyout--fav .fmb-fav-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 1rem 0.6rem;
    flex-shrink: 0;
    border-bottom: 1px solid var(--fdh-border);
    background: var(--fdh-surface);
}

.fdh-flyout--fav .fmb-fav-modal__title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--fdh-text);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.fdh-flyout--fav .fmb-fav-modal__title i {
    font-size: 1.2rem;
    color: #e11d48;
}

.fdh-flyout--fav .fmb-fav-modal__close {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--fdh-text);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fdh-flyout--fav .fmb-fav-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 1rem 1.1rem 0.85rem;
    background: var(--fdh-surface);
}

.fdh-flyout--fav .fmb-fav-modal__empty {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--fdh-muted);
    text-align: center;
}

.fdh-flyout__fav-foot {
    padding: 0 1rem 0.85rem;
    flex-shrink: 0;
    text-align: center;
}

.fdh-flyout__fav-go {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0.4rem 0.5rem;
    border: 0;
    background: transparent;
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    text-decoration-thickness: 1px;
    box-sizing: border-box;
    text-align: center;
    transition:
        color 0.18s ease,
        text-decoration-color 0.18s ease;
}

.orvix-fav-row__media {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #fff;
}

.orvix-fav-row__old {
    display: block;
    text-decoration: line-through;
    opacity: 0.72;
}

.fdh-flyout--fav .orvix-fav-row__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.fdh-flyout--fav .orvix-fav-row__actions--row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.45rem;
    align-items: center;
    justify-content: flex-end;
}

.fdh-flyout--fav .orvix-fav-row__actions--row .btn.btn-sm {
    min-width: 2.35rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}

.orvix-fav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    padding: 0;
    border-radius: 0.65rem;
    border: 0;
    line-height: 1;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.15s ease, transform 0.12s ease;
}

.orvix-fav-btn i {
    font-size: 1.12rem;
    line-height: 1;
}

.orvix-fav-btn--cart {
    background: var(--bs-primary, #3762ea);
    color: #fff;
}

.orvix-fav-btn--cart:hover {
    filter: brightness(1.06);
    color: #fff;
}

.orvix-fav-btn--remove {
    background: #ef4444;
    color: #fff;
}

.orvix-fav-btn--remove:hover {
    filter: brightness(1.05);
    color: #fff;
}

.fdh-flyout__fav-go:hover {
    color: var(--bs-primary);
    text-decoration-thickness: 2px;
}

html[data-bs-theme="dark"] .fdh-flyout__fav-go:hover {
    color: var(--bs-primary);
}

.fdh-flyout__btn {
    display: block;
    width: 100%;
    border: 1px solid var(--orvix-primary-tint-45, rgba(55, 98, 234, 0.45));
    background: var(--orvix-primary-tint-10, rgba(55, 98, 234, 0.10));
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.84rem;
    border-radius: 0.65rem;
    padding: 0.45rem 0.65rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.fdh-flyout__btn:hover {
    background: var(--orvix-primary-tint-16, rgba(55, 98, 234, 0.16));
    border-color: var(--bs-primary);
}

.fdh-flyout__btn--block {
    width: 100%;
}

html[data-bs-theme="dark"] .fdh-flyout__btn {
    background: var(--orvix-primary-tint-18, rgba(55, 98, 234, 0.18));
}

html[data-bs-theme="dark"] .fdh-flyout--fav .fmb-fav-modal__close {
    background: #313144;
    color: #e8eaf2;
}

.fdh-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.fdh-act {
    position: relative;
    width: 2.45rem;
    height: 2.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0.75rem;
    background: #f0f1f9;
    color: var(--fdh-text);
    padding: 0;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease, color 0.18s ease;
}

/* Koyu temada açık gri kutu yerine yüzey tonu (light’taki #f0f1f9 ile aynı rol) */
html[data-bs-theme="dark"] .fdh-act {
    background: #f0f1f9;
    color: #111827;
}

html[data-bs-theme="dark"] .fdh-act > i { color: currentColor; }

/* Dark modda da gündüzdeki renk kodları */
html[data-bs-theme="dark"] .fdh-act--notify {
    background: rgba(56, 189, 248, 0.12);
    border-color: transparent;
    color: #38bdf8;
}

html[data-bs-theme="dark"] .fdh-act--cart {
    background: rgba(251, 146, 60, 0.12);
    border-color: transparent;
    color: #fb923c;
}

html[data-bs-theme="dark"] .fdh-act--fav {
    background: rgba(248, 113, 113, 0.12);
    border-color: transparent;
    color: #f87171;
}

.fdh-act:not(.fdh-act--login):not(.fdh-act--account):not(.fdh-act--cart):not(.fdh-act--fav):hover {
    border-color: var(--bs-primary);
    background: var(--bs-primary);
    color: #fff;
}

.fdh-act:not(.fdh-act--login):not(.fdh-act--account):not(.fdh-act--cart):not(.fdh-act--fav):hover i {
    color: #fff;
}

.fdh-act:active {
    transform: translateY(1px);
}

.fdh-act:focus-visible:not(.fdh-act--login):not(.fdh-act--account) {
    outline: none;
    box-shadow: none;
}

.fdh-act i {
    font-size: 1.18rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Çekmece ile aynı: giriş — dolu primary, metin/ikon beyaz */
.fdh-act--login {
    width: auto;
    height: auto;
    min-height: 2.45rem;
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1.2;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.fdh-act--login i {
    font-size: 1.05rem;
    color: #fff;
}

.fdh-act--login span {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.fdh-act--login:hover {
    background: var(--bs-primary);
    border-color: transparent;
    color: #fff;
}

.fdh-act--login:active {
    transform: translateY(1px);
}

.fdh-act--login:focus-visible {
    outline: none;
    box-shadow: none;
}

html[data-bs-theme="dark"] .fdh-act--login {
    background: var(--bs-primary);
    border-color: transparent;
    color: #fff;
}

html[data-bs-theme="dark"] .fdh-act--login:hover {
    background: var(--bs-primary);
    color: #fff;
}

/* Giriş yapılmış: çekmece hesap linki ile uyumlu */
.fdh-act--account {
    width: auto;
    height: auto;
    min-height: 2.45rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 0.75rem;
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

html[data-bs-theme="dark"] .fdh-act--account {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
}

.fdh-act--account:hover {
    border-color: var(--bs-primary);
    background: var(--bs-primary);
    color: #fff;
}

.fdh-act--account:focus-visible {
    outline: none;
    box-shadow: none;
}

.fdh-act__avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 auto;
    border: 2px solid var(--orvix-primary-tint-38, rgba(55, 98, 234, 0.38));
}

.fdh-act__meta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 96px;
    line-height: 1.05;
}

.fdh-act__meta strong {
    font-size: 0.79rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
}

.fdh-act__meta small {
    font-size: 0.68rem;
    opacity: 0.8;
    color: inherit;
}

.fdh-badge {
    position: absolute;
    top: -0.12rem;
    right: -0.08rem;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: var(--bs-primary, #3762ea);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    line-height: 1.05rem;
    text-align: center;
    border: 1.5px solid var(--fdh-surface);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#fdhNotifyBtn .fdh-badge {
    border: 0;
    box-shadow: none;
}

.fdh-badge--cart {
    background: var(--bs-primary);
    border: 0;
}

.fdh-badge--fav {
    background: #ef4444;
    border: 0;
}

.fdh-badge--notify {
    background: #0ea5e9;
}

.fdh-badge:empty,
.fdh-badge.d-none {
    display: none !important;
}

/* Duyuru şeridi: normal akış — aşağı kaydırınca kaybolur; header sticky kalır */
@media (min-width: 1080px) {
    .orvix-announcement-bar__inner {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1.15rem;
        padding-right: 1.15rem;
        box-sizing: border-box;
    }
}

@media (min-width: 1080px) and (max-width: 1199.98px) {
    .orvix-announcement-bar__inner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (max-width: 1199.98px) {
    .fdh-inner {
        gap: 0.65rem;
    }
    .fdh-nav-link,
    .fdh-dd__main {
        font-size: 0.89rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Üst şerit dil seçici */
.fdh-locale-dd {
    position: relative;
    flex-shrink: 0;
}
.fdh-locale-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.45rem;
    margin: 0;
    border: 0;
    border-radius: 0.55rem;
    background: transparent;
    color: var(--fdh-text);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    cursor: pointer;
}
.fdh-locale-btn::after {
    display: none;
}
.fdh-locale-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    display: block;
}
.fdh-locale-code {
    text-transform: uppercase;
    opacity: 0.88;
    font-size: 0.68rem;
    display: inline-flex;
    align-items: center;
    align-self: center;
    transform: translateY(0.08rem);
}
.fdh-locale-dd .dropdown-menu {
    min-width: 9rem;
    font-size: 0.85rem;
    z-index: 1200 !important;
    margin-top: 0.5rem !important;
    inset: auto 0 auto auto !important;
    transform: none !important;
    top: 100% !important;
    position: absolute !important;
}

.front-desktop-header--glass .fdh-locale-dd .dropdown-menu {
    margin-top: 0.55rem !important;
}
.fdh-locale-dd .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.fdh-locale-dd .dropdown-item.active,
.fdh-locale-dd .dropdown-item.active:hover,
.fdh-locale-dd .dropdown-item.active:focus {
    color: var(--bs-body-color) !important;
    background-color: var(--bs-secondary-bg) !important;
}

/* Ön yüz header: tarayıcı odak çerçevesi gösterme (klavye dahil) */
.front-desktop-header :is(a, button, input, select, textarea, summary):focus,
.front-desktop-header :is(a, button, input, select, textarea, summary):focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* —— Glass header (orvix-front-hero-shell) —— */
.front-desktop-header--glass {
    --fdh-glass-bg: rgba(12, 18, 16, 0.42);
    --fdh-glass-border: rgba(255, 255, 255, 0.1);
    --fdh-glass-text: rgba(255, 255, 255, 0.92);
    --fdh-glass-muted: rgba(255, 255, 255, 0.62);
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1040;
}

.front-desktop-header--glass .fdh-topbar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.front-desktop-header--glass .fdh-topbar__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem 0.85rem;
    min-width: 0;
    flex: 1;
}

.front-desktop-header--glass .fdh-topbar__link {
    color: var(--fdh-glass-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.18s ease;
}

.front-desktop-header--glass .fdh-topbar__link:hover,
.front-desktop-header--glass .fdh-topbar__link.is-active {
    color: var(--fdh-glass-text);
}

.front-desktop-header--glass .fdh-topbar__link + .fdh-topbar__link {
    position: relative;
}

.front-desktop-header--glass .fdh-topbar__link + .fdh-topbar__link::before {
    content: "";
    position: absolute;
    left: -0.48rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.14);
}

.front-desktop-header--glass .fdh-topbar__tail {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.15rem;
    flex-shrink: 0;
}

.front-desktop-header--glass .fdh-topbar__cluster {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.front-desktop-header--glass .fdh-topbar__end {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: 0.15rem;
    flex-shrink: 0;
}

.front-desktop-header--glass .fdh-topbar__contact,
.front-desktop-header--glass .fdh-topbar__track {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.25;
}

.front-desktop-header--glass .fdh-topbar__contact-txt,
.front-desktop-header--glass .fdh-topbar__track-txt {
    max-width: 12.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.front-desktop-header--glass .fdh-topbar__contact-ic {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.45rem;
    border: none;
    font-size: 1rem;
    line-height: 1;
    color: var(--bs-primary, #3762ea) !important;
    background: var(--orvix-primary-tint-14, rgba(55, 98, 234, 0.14)) !important;
}

.front-desktop-header--glass .fdh-topbar__contact--wa .fdh-topbar__contact-ic,
.front-desktop-header--glass .fdh-topbar__contact--mail .fdh-topbar__contact-ic {
    color: var(--bs-primary, #3762ea) !important;
    background: var(--orvix-primary-tint-14, rgba(55, 98, 234, 0.14)) !important;
}

.front-desktop-header--glass .fdh-topbar__track .fdh-topbar__contact-ic--search {
    color: var(--bs-primary, #3762ea) !important;
    background: var(--orvix-primary-tint-14, rgba(55, 98, 234, 0.14)) !important;
}

.front-desktop-header--glass .fdh-topbar__track .fdh-topbar__contact-ic--search i {
    color: var(--bs-primary, #3762ea) !important;
}

.front-desktop-header--glass .fdh-locale-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.35rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
}

.front-desktop-header--glass .fdh-locale-code {
    color: #fff;
    opacity: 1;
}

.front-desktop-header--glass .fdh-topbar__track:hover,
.front-desktop-header--glass .fdh-topbar__contact:hover {
    color: #fff;
    opacity: 0.92;
}

.front-desktop-header--glass .fdh-locale-dd {
    opacity: 0.95;
}

.front-desktop-header--glass .fdh-main-band {
    padding: 0.85rem 1.15rem 1.1rem;
}

@media (min-width: 1200px) {
    .front-desktop-header--glass .fdh-main-band {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

.front-desktop-header--glass .fdh-shell--main {
    display: block;
    min-height: 0;
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.front-desktop-header--glass .fdh-pill {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem 1.25rem;
    padding: 1.5rem;
    margin: 0;
    border-radius: 999px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-sizing: border-box;
}

/* Blur ::before’da — backdrop-filter fixed mega menüyü pill içine kilitlemesin */
.front-desktop-header--glass .fdh-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Açık zemin altından geçerken blur kalsın; beyaz çizgi için zemin koyulaşır */
.front-desktop-header--glass.is-over-light-bg .fdh-pill::before {
    background: rgba(16, 22, 20, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.front-desktop-header--glass.is-over-light-bg {
    background: transparent;
    box-shadow: none;
}

.front-desktop-header--glass .fdh-brand {
    grid-column: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    margin-right: 0;
}

.front-desktop-header--glass .fdh-logo {
    filter: brightness(0) invert(1);
    opacity: 0.96;
    max-height: 2.35rem;
    max-width: min(200px, 22vw);
}

.front-desktop-header--glass .fdh-nav {
    grid-column: 2;
    flex: none;
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.front-desktop-header--glass .fdh-nav-list {
    justify-content: center;
    width: auto;
    max-width: 100%;
}

.front-desktop-header--glass .fdh-actions {
    grid-column: 3;
    flex-shrink: 0;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 0.4rem;
}

.front-desktop-header--glass .fdh-dd__main,
.front-desktop-header--glass .fdh-nav-link {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.84rem;
}

.front-desktop-header--glass .fdh-dd__main:hover,
.front-desktop-header--glass .fdh-nav-link:hover,
.front-desktop-header--glass .fdh-dd:hover .fdh-dd__main,
.front-desktop-header--glass .fdh-dd__main.is-active,
.front-desktop-header--glass .fdh-dd.is-open .fdh-dd__main,
.front-desktop-header--glass .fdh-nav-link.is-active {
    color: #ffffff;
}

.front-desktop-header--glass .fdh-dd__main i,
.front-desktop-header--glass .fdh-nav-link i {
    opacity: 0.95;
}

.front-desktop-header--glass .fdh-dd__toggle {
    color: rgba(255, 255, 255, 0.92);
}

.front-desktop-header--glass .fdh-dd:hover .fdh-dd__toggle,
.front-desktop-header--glass .fdh-dd__toggle:hover {
    color: rgba(255, 255, 255, 0.92);
}

/* Menü ikonları — sabit primary */
.front-desktop-header--glass .fdh-dd__main > i,
.front-desktop-header--glass .fdh-nav-link > i {
    color: var(--bs-primary, #3762ea);
}

.front-desktop-header--glass .fdh-act {
    position: relative;
    width: 2.45rem;
    height: 2.45rem;
    min-width: 2.45rem;
    min-height: 2.45rem;
    border-radius: 0.72rem;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    color: var(--fdh-glass-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none !important;
    line-height: 0;
}

.front-desktop-header--glass .fdh-act > i {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
}

.front-desktop-header--glass .fdh-act--notify {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
}

.front-desktop-header--glass .fdh-act--notify:hover,
.front-desktop-header--glass .fdh-act--notify:focus-visible {
    background: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
    color: #fff !important;
}

.front-desktop-header--glass .fdh-act--notify:hover > i,
.front-desktop-header--glass .fdh-act--notify:focus-visible > i {
    color: #fff !important;
}

.front-desktop-header--glass .fdh-act--cart {
    color: #fb923c;
    background: rgba(251, 146, 60, 0.12);
}

.front-desktop-header--glass .fdh-act--cart:hover,
.front-desktop-header--glass .fdh-act--cart:focus-visible {
    background: #fb923c !important;
    border-color: #fb923c !important;
    color: #fff !important;
}

.front-desktop-header--glass .fdh-act--cart:hover > i,
.front-desktop-header--glass .fdh-act--cart:focus-visible > i {
    color: #fff !important;
}

.front-desktop-header--glass .fdh-act--fav {
    color: #f87171;
    background: rgba(248, 113, 113, 0.12);
}

.front-desktop-header--glass .fdh-act--fav:hover,
.front-desktop-header--glass .fdh-act--fav:focus-visible {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #fff !important;
}

.front-desktop-header--glass .fdh-act--fav:hover > i,
.front-desktop-header--glass .fdh-act--fav:focus-visible > i {
    color: #fff !important;
}

.front-desktop-header--glass .fdh-act--account,
.front-desktop-header--glass .fdh-act--login {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
    box-shadow: none !important;
}

.front-desktop-header--glass .fdh-act--account.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.front-desktop-header--glass .fdh-act--account.dropdown-toggle::after {
    display: none;
}

.front-desktop-header--glass .fdh-act__avatar {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 0.45rem;
    object-fit: cover;
}

.front-desktop-header--glass .fdh-act__meta {
    display: none;
}

.front-desktop-header--glass .fdh-badge {
    top: -0.15rem;
    right: -0.1rem;
    min-width: 1.1rem;
    height: 1.1rem;
    line-height: 1.1rem;
    font-size: 0.62rem;
    border: 0;
    box-shadow: none;
    z-index: 2;
}

.front-desktop-header--glass .fdh-badge--notify {
    background: #0ea5e9;
}

.front-desktop-header--glass .fdh-badge--cart {
    background: #fb923c;
    border: 0;
}

.front-desktop-header--glass .fdh-badge--fav {
    background: #ef4444;
    border: 0;
}

/* Hero shell içinde gece/gündüz — glass üst bar */
.orvix-front-hero-shell .front-desktop-header--glass .fdh-theme-seg {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.18rem 0.22rem;
    gap: 0.1rem;
    box-shadow: none;
}

.orvix-front-hero-shell .front-desktop-header--glass .fdh-theme-btn {
    width: 1.72rem;
    height: 1.72rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.52);
    background: transparent;
    box-shadow: none;
}

.orvix-front-hero-shell .front-desktop-header--glass .fdh-theme-btn:hover {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
}

.orvix-front-hero-shell .front-desktop-header--glass .fdh-theme-btn.is-active {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    box-shadow: none;
}

html[data-bs-theme="light"] .orvix-front-hero-shell .front-desktop-header--glass .fdh-theme-btn.is-active[data-fdh-theme="light"] {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

html[data-bs-theme="dark"] .orvix-front-hero-shell .front-desktop-header--glass .fdh-theme-btn.is-active[data-fdh-theme="dark"] {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Shell arka planı: orvix-front-hero-shell.css (üst + alt radial) — burada ezme */

html[data-bs-theme="light"] .orvix-front-hero-shell .front-desktop-header--glass {
    --fdh-glass-text: rgba(255, 255, 255, 0.94);
    --fdh-glass-muted: rgba(255, 255, 255, 0.68);
}

html[data-bs-theme="dark"] .orvix-front-hero-shell .front-desktop-header--glass .fdh-pill {
    background: rgba(255, 255, 255, 0.055);
}

html[data-bs-theme="light"] .orvix-front-hero-shell .front-desktop-header--glass .fdh-pill {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1279.98px) {
    .front-desktop-header--glass .fdh-topbar__contact span {
        display: none;
    }
}

/* Dropdown açıkken arka plan — menüye odak */
.fdh-mega-overlay {
    position: fixed;
    inset: 0;
    /* Shell (1100) altında; shell içindeki header + mega panel üstte kalır */
    z-index: 1090;
    background: rgba(6, 10, 12, 0.52);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.fdh-mega-overlay:not([hidden]) {
    display: block;
}

.fdh-mega-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.fdh-mega-open {
    overflow: hidden;
}

/* Overlay body’de (1090) — hero/bridge/main kararır; shell’e z-index verilmez */
body.fdh-mega-open .orvix-front-hero-shell,
body.fdh-mega-open .orvix-front-hero-shell.orvix-front-hero-shell--with-page-hero,
body.fdh-mega-open html[data-bs-theme="dark"] .orvix-front-hero-shell,
body.fdh-mega-open html[data-bs-theme="dark"] .orvix-front-hero-shell--with-page-hero,
body.fdh-mega-open html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-front-hero-shell,
body.fdh-mega-open html[data-orvix-theme="orvapro-neo"] .orvix-front-hero-shell {
    z-index: auto !important;
}

body.fdh-mega-open .orvix-front-hero-shell > .front-desktop-header {
    position: relative;
    z-index: 1100 !important;
}

body.fdh-mega-open .front-desktop-header .fdh-dd__panel--mega {
    z-index: 1110 !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega {
    z-index: 1110 !important;
}

/* ── Glass mega dropdown — fdh-pill ile aynı buzlu cam ── */
.front-desktop-header--glass .fdh-dd__panel--mega {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--fdh-dropdown-top, 5.5rem) !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 max(1rem, calc((100vw - 1320px) / 2 + 1rem));
    max-height: none;
    overflow: visible;
    pointer-events: none;
    z-index: 1110 !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-glass-panel {
    pointer-events: auto;
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.05rem 1.15rem 0.95rem;
    box-sizing: border-box;
    max-height: min(72vh, 560px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.65rem;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

html[data-bs-theme="dark"] .front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-glass-panel,
.orvix-front-hero-shell .front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-glass-panel {
    background: rgba(16, 22, 20, 0.58);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-glass-panel {
        background: rgba(16, 22, 20, 0.94);
    }
}

/* Glass mega: eski 10’lu kare grid ezmesin */
.front-desktop-header--glass .fdh-dd__panel--mega .fmh-platform-strip .fmh-package-cards--platform-grid > .fmh-package-item {
    aspect-ratio: auto !important;
    flex: unset !important;
    align-self: stretch !important;
}

/* Platform + ücretsiz araç: #222E35 kart, soft ikon kutusu */
.front-desktop-header--glass .fdh-mega-grid--platforms {
    --fdh-mega-gap: 0.45rem;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--fdh-mega-gap) !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .front-desktop-header--glass .fdh-mega-grid--platforms {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 992px) {
    .front-desktop-header--glass .fdh-mega-grid--platforms {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }
}

.front-desktop-header--glass .fdh-mega-grid--platforms > .fmh-package-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative !important;
    overflow: hidden !important;
    aspect-ratio: auto !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 3.35rem !important;
    height: auto !important;
    max-height: none !important;
    padding: 0.55rem 0.62rem !important;
    gap: 0.5rem !important;
    border-radius: 0.65rem !important;
    background: #222e35 !important;
    border: none !important;
    box-shadow: none !important;
    text-align: left !important;
    transition: background 0.18s ease, transform 0.18s ease;
}

.front-desktop-header--glass .fdh-mega-grid--platforms > .fmh-package-item::before {
    display: none !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms > .fmh-package-item > * {
    position: relative;
    z-index: 1;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-grid--platforms > .fmh-package-item:hover {
    transform: translateY(-1px) !important;
    background: var(--fmh-item-color, var(--bs-primary)) !important;
    border: none !important;
    filter: none;
    scale: none !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-grid--platforms > .fmh-package-item:hover .fmh-package-icon {
    background: #fff !important;
    border-color: transparent !important;
    color: var(--fmh-item-color, var(--bs-primary)) !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-grid--platforms > .fmh-package-item:hover .fmh-package-icon i {
    color: var(--fmh-item-color, var(--bs-primary)) !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-grid--platforms > .fmh-package-item:hover .fmh-package-line--platform-name,
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-grid--platforms > .fmh-package-item:hover .fmh-package-line--services-suffix,
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-grid--platforms > .fmh-package-item:hover .fmh-package-line--platform,
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-grid--platforms > .fmh-package-item:hover .fmh-package-line--tool {
    color: #fff !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-icon {
    flex: 0 0 auto !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
    min-width: 2.2rem !important;
    min-height: 2.2rem !important;
    font-size: 1.05rem !important;
    border-radius: 0.5rem !important;
    background: var(--fmh-item-color, var(--bs-primary)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-icon i {
    color: #fff !important;
    font-size: 1.05rem !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-text-stack--platform-svc,
.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-text-stack--free-tool {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0.06rem !important;
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-line--platform-name {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.94) !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-text-stack--free-tool .fmh-package-line--platform {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.94) !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-text-stack--free-tool .fmh-package-line--tool {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-line--services-suffix,
.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-line--tool {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

.front-desktop-header--glass .fdh-mega-grid--platforms .fmh-package-line--platform {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Oyunlar: max 6, dikey kart */
.front-desktop-header--glass .fdh-mega-grid--games {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.55rem !important;
    width: 100% !important;
}

@media (min-width: 576px) {
    .front-desktop-header--glass .fdh-mega-grid--games {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

.front-desktop-header--glass .fdh-mega-grid--games > .fmh-package-item--epin-cover {
    display: block !important;
    position: relative !important;
    flex: unset !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    aspect-ratio: 4 / 5.25 !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    border-radius: 0.65rem !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: none !important;
    background: #222e35 !important;
}

.front-desktop-header--glass .fdh-mega-grid--games > .fmh-package-item--epin-cover::before {
    display: none !important;
}

.front-desktop-header--glass .fdh-mega-grid--games > .fmh-package-item--epin-cover:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: none !important;
}

.front-desktop-header--glass .fdh-mega-grid--games .fmh-package-epin-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-desktop-header--glass .fdh-mega-grid--games .fmh-package-name--epin-overlay {
    display: none !important;
}

/* Kurumsal: buzlu panel içinde sayfa kartları */
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
}

@media (min-width: 768px) {
    .front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item {
    padding: 0.65rem 0.7rem !important;
    gap: 0.45rem !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-text {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0.85rem !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-icon {
    background: var(--bs-primary) !important;
    border: 0 !important;
    color: #fff !important;
    width: 2.35rem !important;
    height: 2.35rem !important;
    min-width: 2.35rem !important;
    min-height: 2.35rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0.65rem !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-icon i {
    color: #fff !important;
    font-size: 1.05rem !important;
    line-height: 1 !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-text,
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-line--platform,
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-line--tool {
    color: rgba(255, 255, 255, 0.92) !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item:hover {
    background: var(--bs-primary) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item:hover .fmh-page-icon {
    background: #fff !important;
    color: var(--bs-primary) !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item:hover .fmh-page-icon i {
    color: var(--bs-primary) !important;
}

.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item:hover .fmh-page-text,
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item:hover .fmh-page-line--platform,
.front-desktop-header--glass .fdh-dd__panel--mega .fdh-mega-pages .fmh-page-item:hover .fmh-page-line--tool {
    color: #fff !important;
}

/* Alt bağlantı */
.fdh-mega-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 0 0.15rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fdh-mega-foot__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fdh-mega-foot__link:hover {
    color: #fff;
}

.fdh-mega-foot__go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--bs-primary, var(--orvix-home-bridge-primary, #25d665));
    color: var(--bs-primary, var(--orvix-home-bridge-primary, #25d665));
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1;
    box-shadow: none;
}

/* Nexa glass mega — orvix-fdh-glass-mega.css (tema sonrası) */
