/* ==================================================
   INTIME MUTFAK - PREMIUM ALT ŞERİT
   İnce / Minimal / Kurumsal
   ================================================== */

.intime-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99999;

    background: rgba(20, 20, 20, 0.98);

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.10);

    /* Normalde gizli */
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        transform 0.32s ease,
        opacity 0.22s ease,
        visibility 0.32s ease;
}


/* SAYFANIN ALTINA GELİNCE GÖRÜNÜR */

.intime-bottom-bar.intime-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ==================================================
   İÇ YAPI
   ================================================== */

.intime-bottom-inner {
    width: 100%;
    max-width: 1280px;

    height: 52px;

    margin: 0 auto;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;
}


/* ==================================================
   SOL - MARKA
   ================================================== */

.intime-bottom-brand {
    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 0;

    color: #ffffff;
}


.intime-bottom-brand strong {
    font-size: 14px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.4px;

    white-space: nowrap;
}


.intime-bottom-brand span {
    position: relative;

    padding-left: 14px;

    font-size: 11px;
    line-height: 1;

    font-weight: 400;

    color: rgba(255, 255, 255, 0.52);

    white-space: nowrap;
}


/* İNCE AYIRICI */

.intime-bottom-brand span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 1px;
    height: 16px;

    background: rgba(255, 255, 255, 0.15);

    transform: translateY(-50%);
}


/* ==================================================
   SAĞ - BUTONLAR
   ================================================== */

.intime-bottom-actions {
    display: flex;
    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}


.intime-bottom-actions a {
    height: 34px;

    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border-radius: 3px;

    font-size: 11px;
    line-height: 1;

    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        background 0.20s ease,
        border-color 0.20s ease,
        color 0.20s ease,
        transform 0.20s ease;
}


/* ==================================================
   WHATSAPP
   ================================================== */

.intime-whatsapp {
    color: rgba(255, 255, 255, 0.92) !important;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.20);
}


.intime-whatsapp:hover {
    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(255, 255, 255, 0.32);

    transform: translateY(-1px);
}


/* ==================================================
   TEKLİF AL
   ================================================== */

.intime-offer {
    color: #161616 !important;

    background: #ffffff;

    border: 1px solid #ffffff;
}


.intime-offer:hover {
    color: #161616 !important;

    background: #eeeeee;

    border-color: #eeeeee;

    transform: translateY(-1px);
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 900px) {

    .intime-bottom-brand span {
        display: none;
    }

}


/* ==================================================
   MOBİL
   ================================================== */

@media (max-width: 768px) {

    .intime-bottom-inner {
        height: 54px;

        padding: 7px 10px;
    }


    .intime-bottom-brand {
        display: none;
    }


    .intime-bottom-actions {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 7px;
    }


    .intime-bottom-actions a {
        width: 100%;

        height: 40px;

        padding: 0 8px;

        font-size: 11px;

        border-radius: 3px;
    }

}


/* ==================================================
   ÇOK KÜÇÜK TELEFONLAR
   ================================================== */

@media (max-width: 360px) {

    .intime-bottom-actions a {
        font-size: 10px;
    }

}
/* ============================================================
   INTIME MUTFAK
   YUKARI ÇIK BUTONU - FINAL UX V3
   Dikey Yazı + Mini Ok + Yumuşak Geçiş
   ============================================================ */

#scrollTopBtn {
    position: fixed !important;

    /* Puan butonunun hemen üstü */
    right: 18px !important;
    bottom: 62px !important;

    width: 24px !important;
    height: 105px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    overflow: visible !important;
    cursor: pointer !important;

    z-index: 99992 !important;

    /* Varsayılan görünür */
    opacity: 0.88 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: translateY(0) !important;

    transition:
        opacity 0.45s ease,
        transform 0.45s ease !important;
}


/* ============================================================
   JS BUTONU GİZLERKEN
   ============================================================ */

#scrollTopBtn.intime-scroll-hidden {
    opacity: 0 !important;

    transform: translateY(7px) !important;

    pointer-events: none !important;
}


/* ============================================================
   JS BUTONU GÖSTERİRKEN
   ============================================================ */

#scrollTopBtn.intime-scroll-visible {
    opacity: 0.88 !important;

    transform: translateY(0) !important;

    pointer-events: auto !important;
}


/* ============================================================
   İÇ TAŞIYICI
   ============================================================ */

#scrollTopBtn > div {
    position: relative !important;

    width: 100% !important;
    height: 100% !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
}


/* ============================================================
   PLATINMARKET ORİJİNAL YAZISINI GİZLE
   ============================================================ */

#scrollTopBtn > div > div {
    display: none !important;
}


/* ============================================================
   MİNİ YUKARI OK
   ============================================================ */

#scrollTopBtn svg {
    position: absolute !important;

    top: 3px !important;
    left: 50% !important;

    width: 12px !important;
    height: 8px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;

    transform: translateX(-50%) !important;

    overflow: visible !important;
}


/* OK ÇİZGİSİ */

#scrollTopBtn svg path,
#scrollTopBtn svg polyline,
#scrollTopBtn svg line {
    stroke: #111111 !important;
    stroke-width: 2 !important;
}


/* ============================================================
   YUKARI ÇIK YAZISI
   ============================================================ */

#scrollTopBtn::after {
    content: "YUKARI ÇIK";

    position: absolute;

    left: 50%;
    top: 57px;

    display: block;

    width: max-content;

    padding: 0;
    margin: 0;

    background: transparent;

    color: #111111;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 1.15px;

    white-space: nowrap;
    text-transform: uppercase;

    transform:
        translate(-50%, -50%)
        rotate(-90deg);

    transform-origin: center;

    pointer-events: none;
}


/* ============================================================
   HOVER
   ============================================================ */

#scrollTopBtn.intime-scroll-visible:hover {
    opacity: 1 !important;

    transform: translateY(-2px) !important;
}


/* ============================================================
   INTIME ALT ŞERİDİ GÖRÜNÜRKEN
   ============================================================ */

body:has(.intime-bottom-bar.intime-visible) #scrollTopBtn {
    bottom: 64px !important;
}


/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 768px) {

    #scrollTopBtn {
        right: 9px !important;
        bottom: 62px !important;

        width: 22px !important;
        height: 100px !important;
    }

    #scrollTopBtn::after {
        top: 55px;

        font-size: 8px;
        font-weight: 700;

        letter-spacing: 1px;
    }

    #scrollTopBtn svg {
        top: 3px !important;

        width: 11px !important;
        height: 7px !important;
    }

    body:has(.intime-bottom-bar.intime-visible) #scrollTopBtn {
        bottom: 64px !important;
    }
}
/* =========================================================
   INTIME MUTFAK - SLIDER PAGINATION / 2026 UX
   Ana Slider Alt Navigasyon Tasarimi
   ========================================================= */

/* Ana kontrol alanı */
#controls {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    width: 100% !important;
    height: 28px !important;

    margin: -28px 0 0 0 !important;
    padding: 0 !important;

    position: relative !important;
    z-index: 20 !important;

    list-style: none !important;
    background: transparent !important;
}

/* Her slider göstergesi */
#controls li {
    display: block !important;

    width: 7px !important;
    height: 7px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: rgba(255,255,255,.50) !important;

    border: 1px solid rgba(255,255,255,.70) !important;
    border-radius: 20px !important;

    cursor: pointer !important;

    transition:
        width .30s ease,
        background-color .30s ease,
        border-color .30s ease,
        opacity .30s ease !important;
}

/* Link alanı */
#controls li a {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;

    /* 1-2-3-4 yazılarını kaldırır */
    font-size: 0 !important;
    line-height: 0 !important;

    color: transparent !important;
}

/* AKTİF SLIDE */
#controls li.current {
    width: 24px !important;

    background: #ffffff !important;
    border-color: #ffffff !important;
}

/* Hover */
#controls li:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    opacity: 1 !important;
}
