@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #f97316; /* Trendyol/Amazon Turuncusu - Harekete geçirici renk */
    --primary-hover: #ea580c;
    --dark: #1e293b;
    --light-border: #e2e8f0;
    --bg-gray: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-gray);
    color: var(--dark);
    /* padding-top artık dinamik olacak, siliyoruz */
}

/* --- Top Bar --- */
.top-bar {
    background-color: #f1f5f9;
    font-size: 0.75rem;
    color: #64748b;
    padding: 6px 0;
}
.top-bar a { color: #64748b; text-decoration: none; transition: 0.2s; }
.top-bar a:hover { color: var(--primary); }

/* --- Main Header --- */
.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -1px;
}

/* Arama Çubuğu (Üst Düzey Stil) */
.search-container {
    position: relative;
    max-width: 600px;
    width: 100%;
}
.search-input {
    border: 2px solid var(--light-border);
    border-radius: 50px; /* Hap şeklinde */
    padding: 12px 20px;
    padding-right: 50px; /* Buton için boşluk */
    background: #f8fafc;
    transition: all 0.3s;
}
.search-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    outline: none;
}
.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.search-btn:hover { background-color: var(--primary-hover); }

/* İkon Grubu (Hesap & Sepet) */
.action-icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.2s;
}
.action-icon-btn:hover { background-color: #f1f5f9; color: var(--primary); }

.icon-box { position: relative; font-size: 1.2rem; }
.badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.account-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.8rem;
    text-align: left;
}
.account-text small { color: #94a3b8; font-size: 0.7rem; }
.account-text strong { font-weight: 600; }

/* --- Navigation Bar (Menü) --- */
.nav-bar-wrapper {
    background: #fff;
    border-bottom: 1px solid var(--light-border);
    display: none; /* Mobilde gizle, Desktopta aç */
}
@media (min-width: 992px) {
    .nav-bar-wrapper { display: block; }
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}
.nav-links li a {
    display: block;
    padding: 12px 0;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}
.nav-links li a:hover { color: var(--primary); }
.nav-links li a:hover::after { width: 100%; }

/* --- Offcanvas Sepet --- */
.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-border);
}
.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* style.css içine */
.main-content {
    min-height: 80vh; /* Footer'ı aşağı iter */
    padding-bottom: 50px;
}

/* --- Carousel / Slider --- */
.carousel-item {
    height: 400px; /* Mobilde yükseklik */
    background-color: #000;
}
.carousel-item img {
    object-fit: cover;
    height: 100%;
    opacity: 0.7; /* Yazı okunsun diye görseli karart */
}
.carousel-caption {
    bottom: 20%;
    text-align: left;
}
@media (min-width: 992px) {
    .carousel-item { height: 500px; } /* Masaüstü yükseklik */
}

/* --- Trust Bar (Güven Şeridi) --- */
.trust-bar {
    background: #fff;
    padding: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-top: -30px; /* Slider'ın üzerine binsin */
    position: relative;
    border-radius: 8px;
    z-index: 10;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
}
.trust-icon {
    font-size: 2rem;
    color: var(--primary);
}

/* --- Profesyonel Ürün Kartı --- */
.product-card-pro {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}
.product-card-pro:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* İndirim Rozeti */
.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 2;
}

/* Favori Butonu */
.btn-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 2;
}
.btn-fav:hover { color: red; border-color: red; }

.card-img-wrap {
    position: relative;
    padding-top: 100%; /* Kare resim alanı */
    overflow: hidden;
}
.card-img-wrap img {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    object-fit: contain; /* Resmi kesme, sığdır */
    transition: transform 0.5s;
}
.product-card-pro:hover .card-img-wrap img {
    transform: scale(1.05);
}

/* Yıldızlar ve Fiyat */
.stars { font-size: 0.8rem; color: #fbbf24; }
.old-price { text-decoration: line-through; color: #94a3b8; font-size: 0.9rem; }
.current-price { color: var(--primary); font-size: 1.25rem; font-weight: 700; }

/* Sepete Ekle Butonu */
.btn-add-cart {
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 8px;
    border-radius: 8px;
    transition: 0.2s;
}
.btn-add-cart:hover {
    background-color: var(--primary);
    color: #fff;
}

/* --- Modern Promo Grid (Slider Yerine) --- */
.promo-box {
    position: relative;
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 250px; /* Kutuların minimum yüksekliği */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 70%; /* Yazıların resmin üstüne binmemesi için */
}

.promo-icon-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: 0.15;
    z-index: 1;
    transform: rotate(-15deg);
}

/* Renk Seçenekleri (Trendy Gradientler) */
.bg-primary-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); /* Mavi */
}
.bg-dark-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%); /* Koyu Gri */
}
.bg-accent-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); /* Kırmızı */
}

/* Buton Özelleştirme */
.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    margin-top: 15px;
}
.btn-glass:hover {
    background: white;
    color: var(--primary);
}


/* --- Gelişmiş Ürün Kartı --- */
.product-card-adv {
    border: 1px solid #f1f5f9;
    border-radius: 16px; /* Daha yuvarlak köşeler */
    background: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.product-card-adv:hover {
    transform: translateY(-5px); /* Yukarı kalkma efekti */
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary); /* Hoverda çerçeve rengi */
}

/* Resim Alanı */
.card-img-container {
    position: relative;
    height: 200px; /* Sabit yükseklik */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.card-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}
.product-card-adv:hover .card-img-container img {
    transform: scale(1.08); /* Resim hafifçe büyür */
}

/* Rozetler ve İkonlar */
.badge-discount-adv {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
}
.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    z-index: 2;
    transition: 0.2s;
    cursor: pointer;
}
.btn-wishlist:hover {
    color: #ef4444;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Başlık ve Fiyat */
.product-title-adv {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 satırdan fazlasını ... yap */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em; /* Başlık hizalaması için */
    margin-bottom: 0.5rem;
}
.old-price-adv {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.85rem;
}
.current-price-adv {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Sepet Butonu */
.btn-cart-adv {
    background-color: #f8fafc;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s;
}
.btn-cart-adv:hover {
    background-color: var(--primary);
    color: white;
}

/* --- Profesyonel Footer --- */
footer {
    background-color: #0f172a; /* Çok koyu lacivert (Premium Dark) */
    color: #cbd5e1; /* Açık gri metin (Gözü yormaz) */
    font-size: 0.9rem;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary); /* Temanızın ana rengi */
    padding-left: 5px; /* Hover'da sağa kayma efekti */
}

/* Sosyal Medya İkonları */
.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}
.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Bülten Input Alanı */
.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 15px;
}
.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: #fff;
    box-shadow: none;
}

.payment-icons {
    font-size: 2rem;
    opacity: 0.7;
}

.bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.8rem;
}

/* --- Ürün Detay Sayfası --- */

/* Galeri */
.gallery-main {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    background: #fff;
    margin-bottom: 1rem;
    position: relative;
}
.gallery-thumb {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.2s;
    opacity: 0.6;
}
.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

/* Ürün Bilgileri */
.product-title-large {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.75rem;
    line-height: 1.2;
}
.price-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.price-old-large {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #94a3b8;
}

/* Varyasyon Seçimi (Radio Button Süsleme) */
.variant-option input { display: none; }
.variant-option label {
    display: block;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
    text-align: center;
    background: #fff;
}
.variant-option input:checked + label {
    border-color: var(--primary);
    background-color: #eff6ff; /* Çok açık mavi */
    color: var(--primary);
    font-weight: 600;
}

/* Adet Seçici */
.qty-input {
    max-width: 60px;
    text-align: center;
    border: 1px solid #e2e8f0;
    font-weight: 600;
}

/* Özellik Kutucukları */
.feature-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}
.feature-box i { font-size: 1.5rem; color: var(--primary); margin-bottom: 5px; }
.feature-box span { display: block; font-size: 0.8rem; font-weight: 600; color: #64748b; }

/* Mobilde Sabit Alt Bar (Sticky Bottom) */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1040;
    display: none; /* Desktopta gizli */
    border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    .sticky-mobile-bar { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
    .main-content-wrapper { padding-bottom: 80px; } /* Footer'ın altında kalmasın diye */
}

/* --- Karşılaştırma Tablosu (Biz vs Onlar) --- */
.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}
.comparison-table th {
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    vertical-align: middle;
}
.comparison-table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.95rem;
}
.col-feature { text-align: left !important; font-weight: 600; color: var(--dark); width: 30%; }
.col-rival { background-color: #fef2f2; color: #991b1b; width: 35%; opacity: 0.8; }
.col-us { background-color: #f0fdf4; color: #166534; font-weight: 700; width: 35%; border-left: 1px solid #dcfce7; position: relative; }

/* Bizim sütunumuzun üzerine "Kazanan" rozeti */
.col-us::before {
    content: 'ÖNERİLEN';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 10px;
}

/* --- Detay Sayfası Güven Kutuları --- */
.trust-badges-area {
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #475569;
}
.trust-badge-item:last-child { margin-bottom: 0; }
.trust-badge-item i {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- Gelişmiş Sepet Sayfası --- */

/* Kargo İlerleme Barı */
.free-shipping-bar {
    background-color: #f1f5f9;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px dashed #cbd5e1;
}
.progress-custom {
    height: 8px;
    border-radius: 4px;
    background-color: #e2e8f0;
    margin-top: 10px;
}
.progress-bar-custom {
    background-color: #22c55e; /* Yeşil renk */
    border-radius: 4px;
}

/* Sepet Ürün Kartı */
.cart-item-row {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: 0.2s;
}
.cart-item-row:hover {
    border-color: #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.cart-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

/* Güven Kutuları (Trust Boxes) */
.cart-trust-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: 0.2s;
}
.cart-trust-box:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.cart-trust-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Sağ Taraf Özet Kartı */
.summary-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #64748b;
}
.summary-total {
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--dark);
}

/* Turuncu Tema Özel Butonları */
.btn-soft-orange {
    background-color: #fff7ed; /* Çok açık turuncu */
    color: #ea580c; /* Koyu turuncu */
    border: 1px solid #ffedd5;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-soft-orange:hover {
    background-color: #ea580c;
    color: #fff;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.badge-soft-success { background-color: #dcfce7; color: #166534; }
.badge-soft-warning { background-color: #fef9c3; color: #854d0e; }
.badge-soft-primary { background-color: #dbeafe; color: #1e40af; }
.badge-soft-danger  { background-color: #fee2e2; color: #991b1b; }

/* Kategori Hero Alanı */
.category-hero {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%); /* Çok hafif turuncu geçiş */
    border-bottom: 1px solid #ffedd5;
    position: relative;
    overflow: hidden;
}

/* Noktalı Arka Plan Deseni */
.hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#f97316 0.5px, transparent 0.5px);
    background-size: 20px 20px; /* Nokta sıklığı */
    opacity: 0.1; /* Çok silik görünmesi için */
    z-index: 1;
}



/* Turuncu Tema Tanımları */
.text-orange { 
    color: #f97316 !important; /* Canlı Turuncu */
}

.bg-orange { 
    background-color: #f97316 !important; 
}

/* Border Rengi (Bootstrap'ta border-warning sarıdır, turuncu yapalım) */
.border-warning {
    border-color: #ffedd5 !important; /* Çok açık turuncu sınır */
}

/* --- Logo Kamera Animasyonu --- */
@keyframes cameraLivePulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(249, 115, 22, 0); /* Parlama yok */
    }
    50% {
        transform: scale(1.15); /* Hafifçe Büyü */
        text-shadow: 0 0 15px rgba(249, 115, 22, 0.6); /* Turuncu Parlama */
        color: #ef4444; /* İsterseniz: Kayıt esnasında kırmızıya dönsün */
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(249, 115, 22, 0);
    }
}

.logo-anim {
    /* 2 saniyede bir, sonsuz döngüde çalıştır */
    animation: cameraLivePulse 2s infinite ease-in-out;
    display: inline-block; /* Animasyonun düzgün çalışması için */
}

/* --- Sabit WhatsApp Butonu --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366; /* WhatsApp Yeşili */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Üzerine gelince koyulaşsın */
.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* Nabız (Pulse) Animasyonu */
.whatsapp-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobilde biraz daha yukarıda olsun (Footer'a yapışmasın) */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px; /* Mobilde alttaki sticky barın üstünde kalsın */
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}