.lazyload, .lazyload-bg {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lazy-loaded {
    opacity: 1;
}

                                                                /* COOKIE KISMI BAŞLAR */


#cookie-consent-wrapper {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    z-index: 2147483647 !important;

    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: var(--bs-border-radius-lg);
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);

    animation: slideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes cookieSlideUp {
    from { transform: translate(-50%, 150%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Mobilde Daha Derli Toplu Görünüm */
@media (max-width: 991px) {
    #cookie-consent-wrapper {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        border-radius: 0;
        border-bottom: 0;
        border-left: 0;
        border-right: 0;
    }
}

/* İkon ve Metin Renkleri */
.cookie-icon i {
    color: var(--bs-primary);
    font-size: 32px;
}

.fs-13 { font-size: 13px !important; line-height: 1.4; }


                                                /* COOKIE KISMI BITER */


/* Sidebar ana stili aynı kalabilir, sadece ikon font boyutuna bakalım */
.social-side-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

/* Buton Genel Stili */
.sidebar-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 26px; /* Phosphor ikonları için ideal boyut */
    margin-bottom: 2px; /* Butonlar arası boşluk */
    border-radius: 0 8px 8px 0; /* Sadece sağ köşeler oval */
}

/* Hover Efekti: Sağa doğru hafif genişleme */
.sidebar-item:hover {
    width: 60px;
    padding-left: 12px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    filter: brightness(1.1); /* Üzerine gelince rengi hafif canlandırır */
}

/* Marka Renkleri */
.whatsapp { background-color: #25D366; }
.facebook { background-color: #1877F2; } /* Facebook Marka Mavisi */
.instagram { background-color: #E1306C; }
.email { background-color: #3498db; }
.phone { background-color: #f39c12; } /* Telefon için turuncu/sarı */

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .sidebar-item {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .sidebar-item:hover {
        width: 45px;
    }
}