/* =========================================
   GENEL AYARLAR
   ========================================= */
:root {
    --primary-color: #F53E32; /* Foodzy Kırmızısı */
    --hover-color: #d9362b;
    --footer-bg: #F7F8FA;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

/* NAVBAR */
.navbar-nav .nav-link { font-size: 15px; transition: color 0.3s; }
.navbar-nav .nav-link:hover { color: var(--primary-color) !important; }
.user-actions i { font-size: 18px; transition: 0.3s; }
.user-actions a:hover i { color: var(--primary-color); }

/* BANNER & GENEL */
.page-header { background-color: var(--primary-color); }
.section-title h3 { font-weight: 700; font-size: 22px; color: #253D4E; }

/* FORM & BUTTONS */
.form-control { padding: 12px 15px; border: 1px solid #e0e0e0; font-size: 14px; background-color: #fcfcfc; }
.form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(245, 62, 50, 0.15); background-color: #fff; }
.btn-custom { background-color: var(--primary-color); border: none; transition: all 0.3s ease; }
.btn-custom:hover { background-color: var(--hover-color); transform: translateY(-2px); color: #fff !important; }

/* FOOTER */
footer { background-color: var(--footer-bg); }
.text-custom { color: var(--primary-color) !important; }
footer a { color: #6c757d; }
footer a:hover { color: var(--primary-color) !important; padding-left: 3px; }
.social-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; border-radius: 50%; color: #555; background: #fff; transition: 0.3s; }
.social-btn:hover { background-color: var(--primary-color); border-color: var(--primary-color); color: #fff !important; }

/* =========================================
   MODERN ÜRÜN KARTLARI (GRADIENT BADGE & NO BUTTON)
   ========================================= */

/* Filtre Menüsü */
.filter-menu li { cursor: pointer; font-weight: 600; font-size: 15px; color: #7E7E7E; transition: 0.3s; padding: 5px 10px; }
.filter-menu li:hover, .filter-menu li.active { color: var(--primary-color); }

/* Kart Yapısı */
.product-card {
    border: 1px solid rgba(236, 236, 236, 0.7);
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f9faff);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding: 15px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 10px 15px rgba(0,0,0,0.05);
    transform: translateY(-7px);
}

/* Görsel Alanı */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(to bottom, #fdfdfd, #f0f2f5);
    margin-bottom: 12px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05));
}

.product-card:hover .product-img-wrap img { transform: scale(1.15); }

/* --- YENİ GRADIENT BADGELER (ETİKETLER) --- */
.badge-custom {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

/* Gradient Renkler */
.bg-green { background-image: linear-gradient(to right, #11998e, #38ef7d); }
.bg-pink { background-image: linear-gradient(to right, #ec008c, #fc6767); }
.bg-blue { background-image: linear-gradient(to right, #2193b0, #6dd5ed); }
.bg-orange { background-image: linear-gradient(to right, #FF512F, #F09819); }

/* Hover İkonları */
.product-action-vertical {
    position: absolute;
    top: 15px;
    right: -50px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-action-vertical { opacity: 1; visibility: visible; right: 15px; }

.product-action-vertical a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 8px;
    color: #253D4E;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.product-action-vertical a:hover { background-color: var(--primary-color); color: #fff; transform: scale(1.1); }

/* Ürün Bilgileri */
.card-body { 
    padding: 0; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category { font-size: 12px; color: #adadad; font-weight: 500; margin: 0; }

.product-title {
    font-size: 15px; font-weight: 700; color: #253D4E; margin-bottom: 8px; margin-top: 5px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    line-height: 1.3; height: 40px;
}
.product-title:hover { color: var(--primary-color); }

/* Fiyat Alanı */
.product-price { display: flex; align-items: center; margin-top: 15px; }
.new-price { font-size: 20px; font-weight: 800; color: var(--primary-color); line-height: 1; text-shadow: 1px 1px 2px rgba(245, 62, 50, 0.1); margin-right: 10px; }
.old-price { font-size: 14px; font-weight: 600; color: #adadad; text-decoration: line-through; }

/* Diğer Bileşenler */
.daily-banner {
    background-image: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=500&auto=format&fit=crop&q=60');
    background-size: cover; background-position: center;
    height: 100%; min-height: 300px; border-radius: 15px;
    position: relative; display: flex; flex-direction: column; justify-content: center; padding: 30px;
}
.daily-banner::before { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: rgba(0,0,0,0.5); border-radius: 15px; }
.daily-content { position: relative; z-index: 2; color: #fff; }

.mini-product { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; transition: 0.3s; }
.mini-product img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; background: #f7f7f7; }
.mini-product:hover { transform: translateY(-5px); }

/* ÖZELLİK KUTULARI (Feature Box) DÜZELTMESİ */
.feature-box { 
    background: #F4F6FA; 
    padding: 20px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    transition: 0.3s; 
    height: 100%; /* Bu satır eşit yükseklik sağlar */
}
.feature-box:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-icon { width: 50px; height: 50px; background: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--primary-color); font-size: 20px; flex-shrink: 0; }

/* =========================================
   SEPET VE ÖDEME SAYFASI (CHECKOUT)
   ========================================= */
.cart-table { width: 100%; border-collapse: separate; border-spacing: 0 15px; }
.cart-table th { font-weight: 600; color: #253D4E; padding: 15px; background-color: #ececec; border: none; }
.cart-table th:first-child { border-radius: 10px 0 0 10px; }
.cart-table th:last-child { border-radius: 0 10px 10px 0; }
.cart-table td { background: #fff; padding: 15px; vertical-align: middle; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.cart-table td:first-child { border-left: 1px solid #eee; border-radius: 10px 0 0 10px; }
.cart-table td:last-child { border-right: 1px solid #eee; border-radius: 0 10px 10px 0; }
.cart-product-img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; background-color: #f7f8fa; padding: 5px; margin-right: 15px; }
.qty-input { width: 60px; padding: 5px; border: 1px solid #ddd; border-radius: 5px; text-align: center; }
.delete-btn { color: #adadad; font-size: 18px; cursor: pointer; transition: 0.3s; }
.delete-btn:hover { color: var(--primary-color); }

.payment-method-card { border: 1px solid #eee; border-radius: 10px; padding: 20px; margin-bottom: 15px; transition: 0.3s; cursor: pointer; background: #fff; }
.payment-method-card:hover, .payment-method-card.active { border-color: var(--primary-color); box-shadow: 0 5px 15px rgba(245, 62, 50, 0.1); }
.payment-logos img { height: 25px; margin-right: 10px; margin-bottom: 5px; }

/* =========================================
   ÜRÜN DETAY SAYFASI
   ========================================= */
.product-gallery-main { border-radius: 20px; overflow: hidden; border: 1px solid #eee; background: #fff; padding: 20px; margin-bottom: 15px; height: 500px; display: flex; align-items: center; justify-content: center; }
.product-gallery-main img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.3s; }
.product-gallery-main:hover img { transform: scale(1.1); cursor: zoom-in; }

.product-gallery-thumbs img { width: 100px; height: 100px; object-fit: contain; border: 1px solid #eee; border-radius: 10px; cursor: pointer; padding: 5px; transition: 0.3s; }
.product-gallery-thumbs img:hover, .product-gallery-thumbs img.active { border-color: var(--primary-color); }

.detail-badge { display: inline-block; padding: 5px 15px; background: #def9ec; color: #2ecc71; border-radius: 5px; font-size: 13px; font-weight: 600; margin-bottom: 15px; }
.product-info-price { font-size: 32px; font-weight: 800; color: var(--primary-color); margin: 15px 0; }
.detail-attr-list li { margin-bottom: 8px; font-size: 14px; color: #7E7E7E; }
.detail-attr-list span { font-weight: 600; color: #253D4E; width: 100px; display: inline-block; }

.nav-tabs { border-bottom: 2px solid #eee; }
.nav-tabs .nav-link { color: #7E7E7E; font-weight: 600; font-size: 16px; border: none; background: transparent; padding: 15px 25px; transition: 0.3s; }
.nav-tabs .nav-link:hover { color: var(--primary-color); }
.nav-tabs .nav-link.active { color: var(--primary-color); background: transparent; border-bottom: 3px solid var(--primary-color); }
.tab-content { padding-top: 20px; color: #666; line-height: 1.7; }

/* Slider Hizalama Fix */
.swiper-slide { height: auto !important; display: flex; }

/* =========================================
   MOBİL CİHAZLAR İÇİN ÖZEL AYARLAR (UX+)
   ========================================= */
@media (max-width: 576px) {
    .product-card { padding: 10px; border-radius: 15px; }
    .product-img-wrap { height: 130px; margin-bottom: 8px; border-radius: 12px; }
    .product-action-vertical { opacity: 1; visibility: visible; right: 8px; top: 8px; }
    .product-action-vertical a { width: 28px; height: 28px; font-size: 12px; margin-bottom: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); background-color: rgba(255,255,255,0.9); }
    .product-title { font-size: 13px; margin-bottom: 5px; height: 32px; line-height: 1.2; }
    .product-category { font-size: 10px; }
    .new-price { font-size: 16px; }
    .badge-custom { font-size: 9px; padding: 4px 8px; border-radius: 4px; }
    .daily-banner { min-height: 200px; padding: 20px; margin-bottom: 20px; }
    .daily-banner h2 { font-size: 20px; }
    .section-title h3 { font-size: 18px; }
    .product-gallery-main { height: 300px; }
    .product-gallery-thumbs img { width: 70px; height: 70px; }
}

/* =========================================
   DROPDOWN HOVER AYARI
   ========================================= */

/* Sadece Masaüstü ekranlarda (Laptop/PC) hover çalışsın */
@media (min-width: 992px) {
    .hover-dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Menü ile buton arasındaki boşluğu alır */
        animation: fadeIn 0.3s ease; /* Hafif bir açılış animasyonu */
    }
}

/* Açılış Animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown linklerinin stili */
.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 500;
    color: #555;
    transition: 0.2s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color); /* Foodzy Kırmızısı */
    padding-left: 25px; /* Sağa kayma efekti */
}

/* =========================================
   MİNİ SEPET (HEADER) AYARLARI
   ========================================= */

/* Mini Sepet Genişliği ve Konumu */
.mini-cart-dropdown {
    width: 320px; /* Sepet menüsünün genişliği */
    right: 0;
    left: auto; /* Sağa hizalı açılsın */
}

/* Ürün satırlarında hover efekti */
.cart-item {
    transition: 0.2s;
}
.cart-item:hover {
    background-color: #fcfcfc;
}

/* Çöp kutusu ikonu hover */
.cart-item a:hover {
    transform: scale(1.1);
}

/* DROPDOWN HOVER MEKANİZMASI 
   (Hem Hesabım hem Sepetim için geçerli)
*/
@media (min-width: 992px) {
    /* Navbar içindeki hover-dropdown sınıfına sahip elemanlara gelince */
    .hover-dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Boşluk bırakma ki mouse kaçmasın */
        animation: slideUp 0.3s ease forwards;
    }
}

/* Hafif yukarı kayarak açılma animasyonu */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobilde dropdown menülerin taşmasını engelle */
@media (max-width: 991px) {
    .mini-cart-dropdown {
        width: 100%; /* Mobilde tam genişlik */
    }
    .user-actions {
        width: 100%;
        align-items: flex-start !important; /* Mobilde sola hizala */
    }
}

/* =========================================
   SMS DOĞRULAMA (OTP) SAYFASI
   ========================================= */
.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.otp-input {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #253D4E;
    transition: all 0.3s;
    background-color: #fcfcfc;
}

.otp-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(245, 62, 50, 0.1);
    outline: none;
    transform: translateY(-2px);
}

/* Geri sayım metni */
.timer-text {
    font-size: 14px;
    color: #7E7E7E;
    margin-bottom: 20px;
}
.timer-text span {
    color: var(--primary-color);
    font-weight: 600;
}

/* =========================================
   ÜRÜNLER SAYFASI (LİSTELEME & FİLTRE)
   ========================================= */

/* Filtre Çubuğu */
.filter-bar {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 20px;
}

.filter-icon-btn {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #555;
    transition: 0.3s;
    background: #fff;
}
.filter-icon-btn.active, .filter-icon-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Sıralama Select Kutusu */
.sort-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #555;
    outline: none;
    cursor: pointer;
}
.sort-select:focus {
    border-color: var(--primary-color);
}

/* Sayfalama (Pagination) */
.pagination {
    margin-top: 20px;
    gap: 5px;
}

.page-link {
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important; /* Yuvarlak butonlar */
    color: #555;
    font-weight: 600;
    background-color: #f7f8fa;
    transition: 0.3s;
}

.page-link:hover {
    background-color: #e9ecef;
    color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(245, 62, 50, 0.3);
}
/* =========================================
   HESABIM & SİPARİŞLER SAYFASI
   ========================================= */

/* Sol Sidebar Menü */
.account-sidebar {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
}

.account-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
    transition: 0.3s;
}

.account-menu-link i {
    width: 25px;
    font-size: 18px;
    color: #adadad;
    transition: 0.3s;
}

.account-menu-link:hover, .account-menu-link.active {
    background-color: #fff5f5; /* Çok açık kırmızı */
    color: var(--primary-color);
    padding-left: 25px;
}

.account-menu-link:hover i, .account-menu-link.active i {
    color: var(--primary-color);
}

.account-menu-link:last-child {
    border-bottom: none;
}

/* Sipariş Tablosu/Kartı */
.order-card {
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s;
    background: #fff;
    margin-bottom: 20px;
}

.order-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.order-header {
    background-color: #fcfcfc;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.order-body {
    padding: 20px;
}

/* Durum Rozetleri */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.status-pending { background-color: #fff3cd; color: #856404; } /* Bekliyor - Sarı */
.status-completed { background-color: #d4edda; color: #155724; } /* Tamamlandı - Yeşil */
.status-cancelled { background-color: #f8d7da; color: #721c24; } /* İptal - Kırmızı */
.status-shipping { background-color: #cce5ff; color: #004085; } /* Kargoda - Mavi */

/* Sipariş İçindeki Küçük Ürün Resimleri */
.order-item-thumbs img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-right: 5px;
}
/* =========================================
   SİPARİŞ DETAY VE TAKİP (TIMELINE)
   ========================================= */

/* Takip Çubuğu (Stepper) */
.track-order {
    position: relative;
    padding: 20px 0;
    margin-bottom: 30px;
}

.step-wizard-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.step-wizard-item {
    text-align: center;
    width: 25%;
    position: relative;
}

/* Çizgi */
.progress-line-back {
    position: absolute;
    top: 25px; /* İkonun ortası */
    left: 12%;
    width: 76%;
    height: 4px;
    background-color: #e9ecef;
    z-index: -1;
}

.progress-line-fill {
    position: absolute;
    top: 25px;
    left: 12%;
    height: 4px;
    background-color: #2ecc71; /* Yeşil Dolgu */
    z-index: -1;
    transition: width 0.5s ease;
}

/* Adım İkonu */
.progress-count {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #adadad;
    font-size: 18px;
    transition: 0.3s;
}

/* Aktif Adım */
.step-wizard-item.active .progress-count {
    border-color: #2ecc71;
    background-color: #2ecc71;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(46, 204, 113, 0.2);
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: #adadad;
}
.step-wizard-item.active .step-label {
    color: #253D4E;
}

/* Detay Tablosu */
.order-detail-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.detail-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    color: #555;
}
.summary-row:last-child {
    border-bottom: none;
}
.summary-row.total {
    border-top: 2px solid #eee;
    border-bottom: none;
    padding-top: 15px;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}
/* =========================================
   SİPARİŞ ÖZETİ KUTUSU (GÜNCELLENDİ)
   ========================================= */

.summary-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.summary-box-header {
    background-color: #f8f9fa; /* Hafif gri başlık */
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: 700;
    color: #253D4E;
}

.summary-box-body {
    padding: 20px;
}

.s-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.s-row span:last-child {
    font-weight: 600;
    color: #253D4E;
}

.s-row.last {
    margin-bottom: 0;
}

.s-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #eee; /* Kesik çizgi ile ayırma */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-total .label {
    font-size: 16px;
    font-weight: 700;
    color: #253D4E;
}

.s-total .value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Adres ve Ödeme Kutusu İkonları */
.info-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #fff5f5;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}
/* =========================================
   GLASS HEADER (Buzlu Cam Efekti)
   ========================================= */
.glass-header {
    /* Hafif şeffaf beyaz arka plan (Önemli: bg-white sınıfı silinmeli) */
    background-color: rgba(255, 255, 255, 0.85) !important; 
    
    /* Arkadaki içeriği bulanıklaştır */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari desteği */
    
    /* Altına hafif bir çizgi ekleyerek ayrımı netleştir */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    
    /* Geçiş efekti */
    transition: all 0.3s ease;
}