﻿/* =========================
   STICKY MENUS (PAKETLER)
   ========================= */
.tabsSticky {
    position: sticky;
    top: 70px;
    z-index: 9998;
    background: rgba(5,5,5,.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
}


.wrap-paketler {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    position: relative;
}

    /* TOD tarzı büyük afiş + karartma + vignette */
    .wrap-paketler:before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.86) 55%, rgba(0,0,0,.94) 100%), radial-gradient(900px 520px at 25% 12%, rgba(255,255,255,.05), transparent 60%), radial-gradient(900px 520px at 85% 30%, rgba(247,198,0,.05), transparent 60%), url("../img/4buyuk_afis.webp");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
        filter: saturate(1.05) contrast(1.06);
    }

.tvSubTabs {
    position: sticky;
    top: 130px;
    z-index: 9998;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 0 10px;
    background: rgba(5,5,5,.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .tvSubTabs::-webkit-scrollbar {
        height: 6px;
    }

    .tvSubTabs::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.14);
        border-radius: 99px;
    }

.subTab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
    line-height: 1;
    white-space: nowrap;
}

    .subTab.active {
        border-color: rgba(0, 220, 255, .35);
        background: linear-gradient(90deg, rgba(0, 200, 255, .28), rgba(0, 255, 170, .18));
        box-shadow: 0 10px 30px rgba(0,0,0,.35);
        color: #fff;
    }

    .subTab:hover {
        filter: brightness(1.05);
    }

/* =========================
   INTERNET PAY UI
   ========================= */
.internetPay {
    margin-top: 10px;
}

.inetPayRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.inetMode {
    display: inline-flex;
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.inetModeBtn {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    color: rgba(255,255,255,.92);
    background: transparent;
    line-height: 1;
    white-space: nowrap;
}

    .inetModeBtn:hover {
        filter: brightness(1.08);
    }

    .inetModeBtn.active {
        border: 1px solid rgba(0,220,255,.35);
        background: linear-gradient(90deg, rgba(0, 200, 255, .28), rgba(0, 255, 170, .18));
        box-shadow: 0 10px 30px rgba(0,0,0,.35);
        color: #fff;
    }

/* fiyat kutusu */
.inetPriceBox {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.inetPriceLabel {
    opacity: .75;
    font-weight: 700;
    font-size: 12px;
}

.inetPrice {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .2px;
}

.inetPriceSuffix {
    opacity: .75;
    font-weight: 700;
    font-size: 12px;
}

/* mobilde alt alta daha iyi dursun */
@media (max-width: 520px) {

    .wrap-paketler {
       
        margin: 0 auto;
        padding: 16px;
        position: relative;
    }
  

    .inetPayRow {
        flex-direction: column;
        align-items: flex-start;
    }
}