/**
 * Platform detay sayfası — hero + bindirmeli panel + grup sekmeleri + kategori grid.
 */
.orvix-platform-show-page {
    --orvix-platform-show-overlap: 5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: calc(-1 * var(--orvix-platform-show-overlap));
    padding: 0 0 0.5rem;
    background: transparent;
    min-height: 0;
    overflow: visible;
}

.orvix-platform-show-page--has-tabs {
    --orvix-platform-show-overlap: 5.75rem;
}

.orvix-platform-show-page .orvix-ft-group-tabsbar {
    position: relative;
    z-index: 12;
    margin-left: 2rem !important;
    padding: 0;
    pointer-events: auto;
}

.orvix-platform-show-page__panel {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #fff;
    border-radius: 1.75rem 1.75rem 1.35rem 1.35rem;
    padding: 1.45rem;
    padding-bottom: 1.15rem;
    margin-bottom: 0;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 12px 36px -18px rgba(15, 23, 42, 0.14);
}

html[data-bs-theme="dark"] .orvix-platform-show-page__panel {
    position: relative;
    background: #151821;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e8eaf2;
    box-shadow: 0 12px 36px -18px rgba(0, 0, 0, 0.35);
}

/* z-index: orvix-front-hero-shell.css — main(2) > shell(1) */
html[data-bs-theme="dark"] .orvix-platform-show-page {
    position: relative;
    z-index: 1;
}

.orvix-platform-show-page__pick-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.45rem;
}

.orvix-platform-show-page__pick-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: color-mix(in srgb, var(--orvix-pl-color, var(--bs-primary)) 12%, #fff);
    color: var(--orvix-pl-color, var(--bs-primary));
}

.orvix-platform-show-page__pick-icon i {
    font-size: 1.35rem;
    line-height: 1;
}

html[data-bs-theme="dark"] .orvix-platform-show-page__pick-icon {
    background: color-mix(in srgb, var(--orvix-pl-color, var(--bs-primary)) 18%, #1c212b);
}

.orvix-platform-show-page__pick-head h2 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.2;
    color: #111827;
}

.orvix-platform-show-page__pick-head p {
    margin: 0.28rem 0 0;
    padding-bottom: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: color-mix(in srgb, var(--bs-body-color) 62%, transparent);
}

html[data-bs-theme="dark"] .orvix-platform-show-page__pick-head h2 {
    color: #f1f5f9;
}

html[data-bs-theme="dark"] .orvix-platform-show-page__pick-head p {
    color: rgba(241, 245, 249, 0.62);
}

.orvix-platform-show-page__cats-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 576px) {
    .orvix-platform-show-page__cats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .orvix-platform-show-page__cats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

.orvix-platform-show-page__cat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.85rem 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.orvix-platform-show-page__cat:hover {
    border-color: color-mix(in srgb, var(--orvix-pl-color, var(--bs-primary)) 55%, rgba(0, 0, 0, 0.06));
    transform: translateY(-1px);
}

.orvix-platform-show-page__cat-ic {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--orvix-pl-color, var(--bs-primary));
    color: #fff;
}

.orvix-platform-show-page__cat-ic i {
    font-size: 1.25rem;
    line-height: 1;
}

.orvix-platform-show-page__cat-tx {
    min-width: 0;
    flex: 1 1 auto;
}

.orvix-platform-show-page__cat-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.orvix-platform-show-page__cat-sub {
    display: block;
    margin-top: 0.2rem;
    font-weight: 500;
    font-size: 0.78rem;
    line-height: 1.2;
    color: color-mix(in srgb, var(--bs-body-color) 58%, transparent);
}

html[data-bs-theme="dark"] .orvix-platform-show-page__cat {
    background: #1c212b;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .orvix-platform-show-page__cat-name {
    color: #f1f5f9;
}

html[data-bs-theme="dark"] .orvix-platform-show-page__cat-sub {
    color: rgba(241, 245, 249, 0.58);
}

.orvix-platform-show-page__empty {
    padding: 2rem 1rem;
    text-align: center;
    color: color-mix(in srgb, var(--bs-body-color) 55%, transparent);
}

.orvix-platform-show-page__empty i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.55;
}

.orvix-platform-show-page__below {
    margin-top: 0;
    padding: 0.25rem 0 2rem;
    background: var(--orvix-home-section-bg, #f4f6f8);
}

html[data-bs-theme="dark"] .orvix-platform-show-page__below {
    background: var(--orvix-home-section-bg, #0b0d12);
}

.orvix-front-shell__main:has(.orvix-platform-show-page__below) {
    background: var(--orvix-home-section-bg, #f4f6f8);
}

html[data-bs-theme="dark"] .orvix-front-shell__main:has(.orvix-platform-show-page__below) {
    background: var(--orvix-home-section-bg, #0b0d12);
}

.orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static {
    margin-top: 0;
    padding-top: 0.35rem;
}

.orvix-platform-show-page__seo {
    padding-top: 1.65rem;
    padding-bottom: 2rem;
}

.orvix-platform-show-page__seo .orvix-pl-seo {
    margin-top: 0;
}

.orvix-page-hero--platform-show .orvix-bc__left {
    flex: 1 1 auto;
    min-width: 0;
}

/* orvix-platform-show.css flex-start çakışmasını kır */
.orvix-front-shell .orvix-front-shell__main:has(.orvix-platform-show-page) {
    align-items: stretch !important;
    justify-content: flex-start;
    width: 100%;
}

.orvix-platform-show-page,
.orvix-platform-show-page__below {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    .orvix-platform-show-page {
        --orvix-platform-show-overlap: 5.5rem;
    }

    .orvix-page-hero--platform-show-has-tabs .orvix-page-hero__inner {
        padding-bottom: 4.75rem;
    }

    .orvix-page-hero--platform-show-has-tabs .orvix-bc__d {
        margin-bottom: 0.35rem;
    }

    .orvix-platform-show-page--has-tabs {
        --orvix-platform-show-overlap: 6rem;
    }

    .orvix-page-hero--platform-show .orvix-page-hero__inner {
        padding-right: 0;
    }

    .orvix-page-hero--platform-show .orvix-page-hero__visual-cluster {
        display: none !important;
    }

    .orvix-platform-show-page--has-tabs .orvix-platform-show-page__panel {
        padding-top: 1rem;
        border-top-left-radius: 1.35rem;
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar {
        margin-left: 0 !important;
        margin-bottom: 0.65rem;
        padding-top: 0.85rem;
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar::before {
        display: none;
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar .orvix-ft-group-tabs {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.45rem;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        scrollbar-width: none;
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar .orvix-ft-group-tabs::-webkit-scrollbar {
        display: none;
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar .orvix-ft-group-tab {
        box-sizing: border-box;
        flex: 0 0 calc((100% - 0.45rem) / 2);
        min-width: calc((100% - 0.45rem) / 2);
        max-width: calc((100% - 0.45rem) / 2);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding: 0.58rem 0.55rem;
        font-size: 0.78rem;
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar .orvix-ft-group-tabs:has(.orvix-ft-group-tab:nth-child(2):last-child) .orvix-ft-group-tab {
        flex: 1 0 calc((100% - 0.45rem) / 2);
        min-width: calc((100% - 0.45rem) / 2);
        max-width: calc((100% - 0.45rem) / 2);
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar .orvix-ft-group-tab__label {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.2;
    }
}

@media (min-width: 992px) {
    .orvix-page-hero--platform-show-has-tabs .orvix-page-hero__inner {
        padding-bottom: clamp(3.25rem, 6vw, 4.75rem);
    }

    .orvix-platform-show-page--has-tabs {
        --orvix-platform-show-overlap: 5.75rem;
    }

    .orvix-platform-show-page .orvix-ft-group-tabsbar {
        margin-left: 2rem !important;
    }
}

.orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid::before,
.orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid::after {
    display: none !important;
}

html[data-bs-theme="dark"] .orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static {
    background: transparent;
}

html[data-bs-theme="dark"] .orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card {
    background: #151821;
    border-color: rgba(255, 255, 255, 0.08);
}

.orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static {
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
    padding: 0 0 0.75rem !important;
    background: transparent !important;
}

.orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid {
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card {
    transform: none !important;
    top: 0 !important;
    position: relative !important;
}

@media (max-width: 991.98px) {
    .orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-bridge__card--light,
    .orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card {
        padding: 1.15rem 1.1rem 1rem !important;
    }

    .orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card--mini {
        padding: 1.15rem 1.1rem 1.05rem !important;
    }

    .orvix-platform-show-page__below .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card--support {
        padding: 1.15rem 1rem 1rem !important;
    }

    .orvix-platform-show-page__below .orvix-home-promo-strip__card,
    .orvix-platform-show-page__below .orvix-home-promo-strip .orvix-home-bridge__card--light {
        box-shadow: 0 12px 36px -18px rgba(15, 23, 42, 0.2) !important;
    }

    html[data-bs-theme="dark"] .orvix-platform-show-page__below .orvix-home-promo-strip__card,
    html[data-bs-theme="dark"] .orvix-platform-show-page__below .orvix-home-promo-strip .orvix-home-bridge__card--light {
        box-shadow: 0 10px 28px -12px rgba(0, 0, 0, 0.45) !important;
    }
}
