/* --- 1. ADIM: ÇEREZ UYARILARINI GİZLE --- */
/* Sitedeki tüm çerez uyarısı versiyonlarını her yerden gizler */
#ecem-cookie-mini, 
.cookie-notification { 
    display: none !important; 
    visibility: hidden !important; 
    opacity: 0 !important; 
    pointer-events: none !important;
}

/* --- 2. ADIM: MODERN POPPINS FONTU VE DENGELİ KALINLIK --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Tüm siteye Poppins fontunu ve netliği tanımlar */
body, table, td, tr, p, a, span, div, h1, h2, h3, h4, h5, h6 { 
    font-family: 'Poppins', sans-serif !important; 
    -webkit-font-smoothing: antialiased; 
    letter-spacing: 0.2px; /* Harf aralığını biraz açarak okunabilirliği artırır */
}

/* Yazı kalınlığını "Medium" (500) yaparak o istediğin dengeyi sağlar */
body, p, a, span, div { 
    font-weight: 500 !important; 
}

/* Başlıkları bir tık daha belirgin yapalım ki kurumsallık korunsun */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
}
/* --- 3. ADIM: AKILLI WHATSAPP BUTONU TASARIMI --- */
#ecem-whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    left: 25px !important; /* Sol tarafa sabitledik */
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999998 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    transition: transform 0.3s ease !important;
}

#ecem-whatsapp-float:hover {
    transform: scale(1.1) !important; /* Üzerine gelince hafif büyür */
}

#ecem-whatsapp-float svg {
    width: 35px !important;
    height: 35px !important;
    fill: #fff !important;
}