/* ======================================= */
/* 1. GENEL AYARLAR VE RENKLER */
/* ======================================= */


@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('public/fonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('public/fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('public/fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('public/fonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
    --primary-color: #E25404;
    --primary-dark: #c44602;
    --primary-light: #ff6e26;
    --primary-soft: #fff8f2;
    --text-dark: #333;
    --text-light: #f9f9f9;
    --bg-light: #ffffff;
    --bg-body: #f4f7f6;
    --border-color: #e0e0e0;
    --dark: #2d3436;
    --muted: #888;
    --bg-card: #ffffff;
    --radius: 8px;
    --shadow-light: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    --menu-min-width: 250px; 
    --border-radius: 12px; 
    --shadow: 0 10px 30px rgba(0,0,0,0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background-color: var(--bg-body); overflow-x: hidden; }
a { text-decoration: none; color: var(--text-dark); transition: color 0.2s ease; }
a:hover { color: var(--primary-color); }
.container { width: 90%; max-width: 1280px; margin: 0 auto; }

/*User Links*/

.user-links a{
    color: white;
    padding: 0px 5px;
}
.user-links a:hover { color: var(--primary-color); }


/* Genel Section Ayarları */
.section-padding { padding: 80px 0; }
.bg-light { background-color: #f8f9fa; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; }
.section-title p { color: var(--muted); font-size: 16px; }

/* ======================================= */
/* 2. HEADER (MASAÜSTÜ) */
/* ======================================= */
.main-header { background-color: var(--bg-light); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }

.top-bar { background-color: var(--dark); color: #ddd; font-size: 12px; padding: 8px 0; }
.top-bar-content { display: flex; justify-content: flex-end; }
.top-links { display: flex; gap: 15px; }
.top-links a { color: #ccc; transition: 0.2s; }
.top-links a:hover { color: #fff; }
.top-bar-content .top-links span { display: none; } 

.mid-header { padding: 15px 0; background-color: var(--bg-light); z-index: 1001; position: relative; }
.mid-header-content { display: flex; justify-content: space-between; align-items: center; gap: 30px; }

.logo { font-size: 28px; font-weight: 900; white-space: nowrap; margin-right: 20px; letter-spacing: -1px; }
.logo-main { color: var(--primary-color); }
.logo-sub { color: var(--primary-color); }

.search-bar-wrapper { flex-grow: 1; max-width: 650px; }
.search-form { display: flex; border: 2px solid #f1f1f1; border-radius: 50px; overflow: hidden; height: 44px; background-color: #fcfcfc; transition: all 0.3s; }
.search-form:focus-within  { border-color: var(--primary-color);color: var(--primary-color); background-color: #fff; box-shadow: 0 0 0 4px rgba(226, 84, 4, 0.1); }
.search-form input { flex-grow: 1; border: none; padding: 0 20px; font-size: 14px; background: transparent; outline: none; }
.search-btn { background: transparent; color: var(--dark); border: none; padding: 0 20px; cursor: pointer; font-size: 18px; transition: color 0.2s; }
.search-btn:hover { color: var(--primary-color); }

.nav-icons { display: flex; gap: 20px; }
.nav-icon-link { display: flex; flex-direction: column; align-items: center; font-size: 11px; font-weight: 600; color: var(--dark); position: relative; transition: transform 0.2s; }
.nav-icon-link:hover { transform: translateY(-2px); color: var(--primary-color); }
.nav-icon-link i { font-size: 22px; margin-bottom: 3px; }
.cart-count { color: var(--primary-color); font-weight: 800; }
.hamburger-menu { display: none; }
.sidebar-header { display: none !important; } 

/* ======================================= */
/* 3. MENÜ & DROPDOWN */
/* ======================================= */
.category-bar { background-color: var(--bg-light); border-bottom: 1px solid var(--border-color); padding: 0; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; height: 46px; }
.nav-links li { position: relative; height: 100%; display: flex; align-items: center; } 
.nav-links li a { color: var(--dark); font-weight: 500; font-size: 14px; line-height: 46px; display: block; transition: color 0.2s; }
.nav-links li a:hover { color: var(--primary-color); }

.category-dropdown { margin-right: 15px; }
.category-toggle { background-color: var(--bg-card); color: var(--primary-color) !important; font-weight: 700 !important; padding: 0 20px !important; border-radius: 6px; display: flex; align-items: center; height: 36px !important; margin-top: 5px; }
.category-toggle i { margin-right: 8px; font-size: 14px; }

/* Masaüstü Dropdown */
@media (min-width: 769px) {
    .mobile-only { display: none !important; }
    .dropdown-menu {
        position: absolute; top: 100%; left: 0;
        background-color: #fff; border: 1px solid #eee;
        box-shadow: var(--shadow-light); min-width: 220px;
        list-style: none; display: none; z-index: 1100; padding: 10px 0; border-radius: 0 0 8px 8px;
    }
    .category-dropdown:hover .dropdown-menu { display: block; animation: fadeIn 0.2s ease; }
    .dropdown-menu li { display: block; width: 100%; height: auto; }
    .dropdown-menu li a { padding: 8px 20px; font-weight: 400; width: 100%; line-height: 1.5; }
    .dropdown-menu li a:hover { background-color: var(--primary-soft); color: var(--primary-color); }

    .submenu {
        position: absolute; top: 0; left: 100%; margin-left: 5px;
        background-color: #fff; border: 1px solid #eee;
        box-shadow: var(--shadow-light); min-width: 220px;
        list-style: none; display: none; padding: 10px 0; z-index: 1150; border-radius: 8px;
    }
    .has-submenu:hover > .submenu { display: block; animation: fadeIn 0.2s ease; }
    .submenu-arrow { float: right; font-size: 10px; margin-top: 5px; color: #ccc; }
}

/* ======================================= */
/* 4. HERO SECTION & İÇERİKLER */
/* ======================================= */
.hero-section { 
    padding: 80px 0 100px 0; 
    background: linear-gradient(135deg, #ffffff 0%, #fff8f2 100%); 
    border-bottom: 1px solid #eee; position: relative;
    overflow: hidden;
}
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; z-index: 2; }
.hero-text-area { flex: 1; max-width: 50%; }

.hero-title { font-size: 52px; font-weight: 900; margin-bottom: 20px; color: var(--dark); line-height: 1.1; letter-spacing: -1px; }
.hero-title .highlight { color: var(--primary-color); position: relative; display: inline-block; }
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 10px;
    background-color: rgba(226, 84, 4, 0.15); z-index: -1; border-radius: 4px;
}
.hero-subtitle { font-size: 18px; color: #666; margin-bottom: 30px; line-height: 1.6; }

.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { padding: 15px 35px; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 10px; transition: all 0.3s; cursor: pointer; font-size: 16px; }
.btn-primary { background: var(--primary-color); color: white; border: 2px solid var(--primary-color); box-shadow: 0 4px 15px rgba(226, 84, 4, 0.3); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; transform: translateY(-3px); }
.btn-secondary { background: white; color: var(--dark); border: 2px solid #eee; }
.btn-secondary:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* Hero Görseli & Yüzen Kartlar */
.hero-image-area { 
    flex: 1; max-width: 45%; min-height: 400px; 
    border-radius: 20px; box-shadow: var(--shadow-card); 
    overflow: hidden; position: relative;
    animation: float 6s ease-in-out infinite;
}
.hero-image-area img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* [GERİ GELDİ] Yüzen Kartlar */
.floating-card {
    position: absolute; background: white; padding: 10px 20px; border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); font-weight: 600; font-size: 13px; color: var(--dark);
    display: flex; align-items: center; gap: 8px;
}
.floating-card i { color: #2ecc71; }
.card-1 { top: 20px; left: -20px; }
.card-2 { bottom: 30px; right: -20px; }

.hero-badge {
    display: inline-block; background-color: rgba(226, 84, 4, 0.1); color: var(--primary-color);
    padding: 5px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 15px;
}
.hero-stats {
    display: flex; gap: 40px; margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee;
}
.stat-item strong { display: block; font-size: 24px; font-weight: 800; color: var(--dark); }
.stat-item span { font-size: 13px; color: var(--muted); }

/* Vaat Kartları */
.hero-promises-bar { 
    display: flex; gap: 30px; margin-top: -50px; position: relative; z-index: 5; 
}
.promise-item { 
    flex: 1; text-align: center; padding: 30px 20px; 
    background: #fff; border-radius: 16px; 
    box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.promise-item:hover { transform: translateY(-10px); border: 1px solid var(--primary-color);}
.icon-box {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: var(--primary-soft); color: var(--primary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px;
}
.promise-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.promise-item p { font-size: 14px; color: #666; line-height: 1.5; margin: 0; }

/* Nasıl Çalışır */
.how-it-works { background-color: #fff; }
.steps-grid { display: flex; align-items: flex-start; gap: 30px; justify-content: space-between; }
.step-card { 
    flex: 1; text-align: center; padding: 20px; 
    position: relative; transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-5px); }
.step-number {
    font-size: 60px; font-weight: 900; color: #f0f0f0;
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%); z-index: -1;
}
.step-card i { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; display: inline-block; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: #666; font-size: 15px; }
.step-arrow { display: flex; align-items: center; height: 150px; font-size: 24px; color: #ddd; }

/* Kategori Kartları (Resimli) */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.categories-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 30px; 
}

.cat-card { 
    position: relative; 
    height: 340px; /* Biraz daha uzun ve heybetli */
    border-radius: 20px; 
    overflow: hidden; 
    display: block; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Daha derin gölge */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.05); /* Çok ince çerçeve */
}

/* Resim Ayarları */
.cat-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

/* Hover Durumu: Kart Yukarı Kalkar ve Resim Yaklaşır */
.cat-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(226, 84, 4, 0.2); /* Turuncu gölge yansıması */
}

.cat-card:hover img { 
    transform: scale(1.15); /* Daha belirgin zoom */
}

/* İçerik Alanı (Gradient Zemin) */
.cat-content { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    padding: 30px 25px; 
    /* Alttan yukarı doğru koyulaşan, yazıyı patlatan gradient */
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%); 
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Yazı Stilleri */
.cat-content h3 { 
    font-size: 24px; 
    margin-bottom: 8px; 
    font-weight: 800; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-content span { 
    font-size: 14px; 
    opacity: 0.8; 
    font-weight: 500; 
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ddd;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s;
}

/* --- HOVER EFEKTLERİ (HAREKET KATAN KISIM) --- */

/* 1. Alt Turuncu Çizgi (Soldan Sağa Dolar) */
.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Başlangıçta yok */
    height: 6px;
    background-color: var(--primary-color);
    transition: width 0.4s ease-in-out;
    z-index: 3;
}

.cat-card:hover::after {
    width: 100%; /* Hover olunca dolar */
}

/* 2. Ok İkonu Ekleme (CSS ile yapıyoruz, HTML değiştirmeden) */
.cat-content h3::after {
    content: '\f061'; /* FontAwesome Ok İkonu Kodu */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    font-size: 18px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-20px); /* Solda gizli */
    transition: all 0.4s ease;
}

.cat-card:hover .cat-content h3::after {
    opacity: 1;
    transform: translateX(0); /* Yerine gelir */
}

/* 3. Yazıların Hafif Oynaması */
.cat-card:hover .cat-content h3 {
    color: var(--primary-color); /* Başlık turuncu olur */
}

.cat-card:hover .cat-content span {
    color: #fff;
    opacity: 1;
}

/* CTA Section */
.cta-section { background: linear-gradient(45deg, #1a1a1a, #2d3436); padding: 60px 0; margin-top: 50px; color: white; }
.cta-content { display: flex; justify-content: space-between; align-items: center; }
.cta-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.cta-text p { color: #ccc; margin: 0; font-size: 16px; }
.btn-light-outline { border: 2px solid rgba(255,255,255,0.3); color: white; padding: 15px 30px; }
.btn-light-outline:hover { background: white; color: var(--dark); }

/* ======================================= */
/* 6. MOBİL TASARIM (TÜMÜ DAHİL) */
/* ======================================= */
@media (max-width: 1024px) {
    .search-bar-wrapper { max-width: 350px; }
    .hero-title { font-size: 36px; }
    .hero-promises-bar { margin-top: 20px; }
    /* DÜZELTME: repeat(1fr) hatalıydı, repeat(2, 1fr) yapıldı */
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar, .search-bar-wrapper { display: none; }
    .desktop-only { display: none !important; }
    .floating-card { display: none; } 

    /* Header Düzeni */
    .mid-header { padding: 10px 0; background: #fff; position: relative; z-index: 1020; }
    .mid-header-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }

    .hamburger-menu { order: 1; display: block; font-size: 26px; cursor: pointer; color: var(--dark); margin-right: auto; padding-right: 15px; }
    .logo { order: 2; flex-grow: 1; text-align: center; font-size: 22px; margin: 0; }
    
    .nav-icons { order: 3; display: flex !important; align-items: center; gap: 15px; margin-left: auto; }
    .nav-icon-link span:not(.cart-count) { display: none; }
    .nav-icon-link i { font-size: 20px; color: var(--dark); }
    .cart-count { position: absolute; top: -8px; right: -8px; background-color: var(--primary-color); color: white; font-size: 10px !important; font-weight: 700; padding: 1px 5px; border-radius: 50%; min-width: 16px; text-align: center; z-index: 2; }
    .nav-icon-link { position: relative; }

    .search-bar-wrapper { order: 4; display: block !important; width: 100%; margin-top: 15px; }
    .search-form { background-color: #f4f4f4; border: none; height: 45px; }

    /* Mobil Menü */
    .category-bar { position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; z-index: 1000; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; border-bottom: 2px solid var(--primary-color); box-shadow: 0 10px 15px rgba(0,0,0,0.1); transform: none; height: auto; padding: 0; border-right: none; display: block; }
    .category-bar.active { max-height: 1000px; }

    .menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .menu-overlay.active { opacity: 1; visibility: visible; }

    .nav-menu { padding: 0; margin: 0; }
    .nav-links { flex-direction: column; align-items: flex-start; height: auto; width: 100%; padding: 0; gap: 0; margin: 0; }
    .nav-links li { width: 100%; display: block; border-bottom: 1px solid #f1f1f1; height: auto; }
    .nav-links li a, .category-toggle { padding: 18px 25px; width: 100%; font-size: 15px; color: var(--dark); font-weight: 600; display: flex; justify-content: space-between; align-items: center; background: transparent !important; text-align: left; margin-top: 0; }
    .category-toggle:hover { color: var(--primary-color) !important; }
    .category-toggle i { color: var(--text-dark); margin: 0; font-size: 14px; }

    .dropdown-menu, .submenu { position: static; display: none; width: 100%; background-color: #fcfcfc; box-shadow: none; border: none; padding: 0; min-width: auto; }
    .dropdown-menu.open, .submenu.open { display: block; animation: fadeIn 0.3s ease; }
    .dropdown-menu li a { padding: 14px 35px; font-weight: 400; font-size: 14px; color: #444; border-bottom: 1px solid #eee; }
    .submenu li a { padding: 12px 50px; font-size: 13px; color: #666; background: #f4f4f4; }

    /* Mobil Hero & Kartlar */
    .hero-section { padding: 30px 0; }
    .hero-content { flex-direction: column; text-align: center; gap: 30px; }
    .hero-text-area { order: 2; max-width: 100%; }
    .hero-title { font-size: 32px; }
    .hero-image-area { order: 1; max-width: 100%; min-height: 220px; margin-bottom: 10px; }
    .hero-image-area img { height: 250px; }
    .hero-actions{ display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    
    .hero-promises-bar { flex-direction: column; gap: 20px; padding: 0 20px; margin-top: 20px; }
    .hero-stats{justify-content: center; align-items: center;}
    .promise-item { padding: 25px; margin-bottom: 0; border: 1px solid var(--primary-color); }
    
    .steps-grid { flex-direction: column; gap: 40px; }
    .step-arrow { display: none; }
    .cta-content { flex-direction: column; text-align: center; gap: 20px; }

    .social-links, .footer-links li a, .contact-info li { justify-content: center; }
    
    /* Newsletter Form Taşmasını Engelle */
    .newsletter-form { width: 100%; max-width: 100%; box-sizing: border-box; }

    .bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    
    .whatsapp-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 28px; }
}
/* ======================================= */
/* 7. HARİTA, WHATSAPP & FOOTER */
/* ======================================= */
.map-container { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); border: 5px solid #fff; }
.map-container iframe { display: block; }

.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 9999; transition: all 0.3s ease; animation: pulse-green 2s infinite; text-decoration: none; }
.whatsapp-btn:hover { background-color: #128c7e; transform: scale(1.1); color: white; }
@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); } }

.main-footer { background-color: #1a1a1a; color: #b3b3b3; padding-top: 80px; font-size: 14px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 60px; }
.footer-col h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 25px; position: relative; display: inline-block; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 3px; background-color: var(--primary-color); border-radius: 2px; }
.footer-logo { font-size: 28px; font-weight: 800; color: #fff; display: block; margin-bottom: 20px; }
.footer-logo span { color: var(--primary-color); }
.footer-desc { line-height: 1.6; margin-bottom: 25px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; background-color: #2d2d2d; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; }
.social-btn:hover { background-color: var(--primary-color); transform: translateY(-3px); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a { color: #b3b3b3; display: flex; align-items: center; gap: 8px; transition: all 0.2s ease; }
.footer-links li a:hover { color: #fff; padding-left: 5px; }
.contact-info { list-style: none; padding: 0; margin-bottom: 25px; }
.contact-info li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; line-height: 1.5; }
.contact-info li i { color: var(--primary-color); font-size: 16px; margin-top: 4px; }
.newsletter-box p { margin-bottom: 10px; color: #fff; font-weight: 600; }
.newsletter-form { display: flex; background-color: #2d2d2d; border-radius: 4px; overflow: hidden; border: 1px solid #333; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 12px 15px; color: #fff; font-size: 13px; outline: none; }
.newsletter-form button { background-color: var(--primary-color); color: #fff; border: none; padding: 0 20px; cursor: pointer; transition: background 0.3s; }
.newsletter-form button:hover { background-color: var(--primary-dark); }
.footer-bottom { background-color: #111; padding: 25px 0; border-top: 1px solid #2d2d2d; }
.bottom-content { display: flex; justify-content: space-between; align-items: center; }
.payment-methods { display: flex; gap: 15px; font-size: 24px; color: #666; }
.payment-methods i:hover { color: #fff; transition: color 0.3s; }

/* GLOBAL ANİMASYONLAR */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

@media (max-width: 768px) {
    
    /* 2. Footer Ana Yapısını Düzelt */
    .main-footer {
        padding-top: 40px; /* Mobilde çok boşluk olmasın */
        width: 100%;
        overflow: hidden; /* Taşanları gizle */
    }

    .footer-top {
        display: flex !important; /* Grid'i iptal et, Flex yap */
        flex-direction: column !important; /* Yan yana değil, ALT ALTA diz */
        gap: 40px;
        padding: 0 20px; /* Kenarlardan boşluk bırak */
        text-align: center;
    }

    /* 3. Kolonların Genişliğini Ayarla */
    .footer-col {
        width: 100%;
        margin: 0 auto; /* Ortala */
    }

    /* 4. Başlık Altındaki Çizgiyi Ortala */
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* 5. İçerikleri Ortala */
    .footer-logo { margin: 0 auto 20px auto; }
    .social-links { justify-content: center; margin-bottom: 20px; }
    .footer-links li a { justify-content: center; } 
    .contact-info li { justify-content: center; text-align: center; }

    /* 6. Newsletter Formunu Ekrana Sığdır */
    .newsletter-box {
        width: 100%;
        max-width: 400px; /* Tabletlerde çok uzamasın */
        margin: 0 auto;
    }
    .newsletter-form {
        width: 100%;
        display: flex;
    }
    .newsletter-form input {
        width: 100%; /* Esnek genişlik */
        min-width: 0; /* Taşmayı önler */
    }

    /* 7. Alt Footer (Telif ve Kartlar) */
    .footer-bottom {
        padding: 20px 15px;
    }
    .bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ======================================= */
/* MODERN SHOP & KATEGORİ SAYFASI */
/* ======================================= */

/* 1. Header & Breadcrumb */
.shop-header-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.breadcrumb-modern {
    list-style: none; display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px;
}
.breadcrumb-modern li a { color: #999; transition: 0.2s; }
.breadcrumb-modern li a:hover { color: var(--primary-color); }
.breadcrumb-modern li::after { content: '/'; margin-left: 10px; color: #ccc; }
.breadcrumb-modern li:last-child::after { content: ''; }
.breadcrumb-modern li.active { color: var(--dark); font-weight: 600; }
.shop-header-content h1 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.cat-desc { color: #666; font-size: 15px; }

/* 2. Layout */
.shop-layout { display: flex; gap: 40px; align-items: flex-start; position: relative; }
.shop-sidebar { width: 260px; flex-shrink: 0; }
.shop-products-area { flex-grow: 1; }

/* 3. Sidebar & Filtreler (Premium Görünüm) */
.filter-widget { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 25px; }
.filter-widget:last-child { border-bottom: none; }
.widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--dark); display: flex; justify-content: space-between; }

/* Kategori Listesi */
.category-list { list-style: none; padding: 0; }
.category-list li { margin-bottom: 10px; }
.category-list a { 
    display: flex; justify-content: space-between; align-items: center; 
    color: #555; font-size: 15px; padding: 8px 0; transition: 0.2s;
}
.category-list a:hover, .category-list a.active { color: var(--primary-color); transform: translateX(5px); font-weight: 600; }
.category-list a i { font-size: 12px; color: #ddd; }
.category-list a:hover i { color: var(--primary-color); }

/* Fiyat Inputs */
.price-inputs { display: flex; gap: 10px; align-items: center; margin-bottom: 15px; }
.price-inputs input { 
    width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 6px; outline: none; font-size: 14px; 
}
.btn-apply-filter { 
    width: 100%; background: var(--dark); color: #fff; border: none; padding: 10px; 
    border-radius: 6px; cursor: pointer; transition: 0.2s; 
}
.btn-apply-filter:hover { background: var(--primary-color); }

/* Custom Checkbox */
.custom-checkbox { display: block; position: relative; padding-left: 30px; margin-bottom: 12px; cursor: pointer; font-size: 15px; color: #555; user-select: none; }
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; background-color: #eee; border-radius: 4px; }
.custom-checkbox:hover input ~ .checkmark { background-color: #ccc; }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--primary-color); }
.checkmark:after { content: ""; position: absolute; display: none; }
.custom-checkbox input:checked ~ .checkmark:after { display: block; }
.custom-checkbox .checkmark:after { left: 7px; top: 3px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* 4. Toolbar */
.shop-toolbar { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 30px; padding: 15px 20px; 
    background: #fff; border: 1px solid #eee; border-radius: 8px; 
}
.sort-select { border: 1px solid #ddd; padding: 8px 15px; border-radius: 6px; outline: none; color: #444; background: #fff; cursor: pointer; }

/* 5. PREMIUM ÜRÜN KARTI (Product Card) - Modern & Şık */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 30px; 
}

.product-card-modern {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-modern:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

/* Resim Alanı */
.pc-image { 
    position: relative; 
    width: 100%;           /* Genişlik %100 */
    aspect-ratio: 1 / 1;   /* Tam Kare (1000x1000 uyumlu) */
    overflow: hidden;      /* Dışarı taşanı gizle */
    padding: 0 !important; /* İç boşluğu zorla sıfırla */
    margin: 0 !important;  /* Dış boşluğu zorla sıfırla */
    background-color: transparent; /* Arka plan rengi olmasın */
    /* Eğer kartın köşeleri yuvarlaksa, resim de yuvarlak olsun diye: */
    /* border-radius: 10px 10px 0 0; (İsteğe bağlı açabilirsin) */
}

.pc-image img { 
    width: 100% !important;  /* Zorla Genişlet */
    height: 100% !important; /* Zorla Yükselt */
    object-fit: cover;       /* Kutuyu doldur (Taşanı kes ama boşluk bırakma) */
    display: block;          /* Alttaki ince beyaz çizgiyi yok eder */
    border: none;            /* Çerçeve varsa kaldır */
}
.product-card-modern:hover .pc-image img { transform: scale(1.1); }

/* Badge */
.badge-sale { 
    position: absolute; top: 15px; left: 15px; 
    background: #ff4757; color: #fff; padding: 4px 10px; 
    font-size: 11px; font-weight: 700; border-radius: 4px; z-index: 2; 
}

/* Hover Aksiyon Butonları (Ortada belirir) */
.pc-actions {
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%) translateY(20px);
    display: flex; gap: 10px; opacity: 0; transition: all 0.3s ease; z-index: 3;
}
.product-card-modern:hover .pc-actions { opacity: 1; transform: translateX(-50%) translateY(0); }

.pc-actions button, .pc-actions a {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; color: var(--dark); border: none;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; transition: 0.2s;
}
.pc-actions button:hover, .pc-actions a:hover { background: var(--primary-color); color: #fff; }

/* Ürün Bilgileri */
.pc-info { padding: 20px; text-align: left; }
.pc-cat { font-size: 12px; color: #999; text-transform: uppercase; margin-bottom: 5px; }
.pc-title { 
    font-size: 16px; font-weight: 700; margin-bottom: 10px; 
    line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pc-title a { color: var(--dark); transition: 0.2s; }
.pc-title a:hover { color: var(--primary-color); }

.pc-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.pc-price { font-size: 18px; font-weight: 800; color: var(--primary-color); }
.pc-rating { color: #ffc107; font-size: 12px; }

/* Sepete Ekle (Alt Buton) */
.btn-add-cart-full {
    width: 100%; padding: 10px; border: 1px solid var(--dark);
    background: transparent; color: var(--dark); font-weight: 600; font-size: 13px;
    border-radius: 6px; cursor: pointer; transition: 0.3s;
}
.btn-add-cart-full:hover { background: var(--dark); color: #fff; }


/* 6. MOBİL UYUMLULUK (Responsive Sidebar) */
.mobile-filter-btn-area { display: none; margin-bottom: 20px; }
.btn-filter-toggle { 
    width: 100%; padding: 12px; background: #fff; border: 1px solid #ddd; 
    font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; 
}
.sidebar-header-mobile { display: none; }
.sidebar-overlay { display: none; }

@media (max-width: 992px) {
    .shop-layout { display: block; }
    
    /* Mobilde Sidebar'ı Gizle ve Off-Canvas Yap */
    .shop-sidebar {
        position: fixed; top: 0; left: 0; width: 280px; height: 100%;
        background: #fff; z-index: 9999; padding: 20px;
        transform: translateX(-100%); transition: transform 0.3s ease;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1); overflow-y: auto;
    }
    .shop-sidebar.active { transform: translateX(0); }
    
    .mobile-filter-btn-area { display: block; }
    
    .sidebar-header-mobile { 
        display: flex; justify-content: space-between; align-items: center; 
        margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px;
    }
    .sidebar-header-mobile button { border: none; background: transparent; font-size: 20px; cursor: pointer; }
    
    .sidebar-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); z-index: 9998;
        display: none;
    }
    .sidebar-overlay.active { display: block; }
}

@media (max-width: 576px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .pc-image { height: 180px; }
    .pc-info { padding: 12px; }
    .pc-title { font-size: 14px; }
    .pc-price { font-size: 15px; }
    .btn-add-cart-full { font-size: 11px; padding: 8px; }
}

/* ======================================= */
/* SIDEBAR KATEGORİ AĞACI STİLLERİ */
/* ======================================= */

.sidebar-category-tree { list-style: none; padding: 0; margin: 0; }
.sidebar-category-tree li { margin-bottom: 5px; }

/* Link ve İkon Kapsayıcısı */
.cat-link-wrap { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 5px 0; 
}

.sidebar-category-tree a { 
    color: #555; font-size: 15px; font-weight: 500; transition: 0.2s; 
    text-decoration: none;
}
.sidebar-category-tree a:hover { color: var(--primary-color); }

/* Aktif Kategori */
.active-cat > .cat-link-wrap > a { 
    color: var(--primary-color); font-weight: 700; 
}

/* Aç/Kapa İkonu */
.toggle-btn { cursor: pointer; font-size: 12px; color: #aaa; padding: 5px; }
.toggle-btn:hover { color: var(--dark); }

/* Alt Menü (Varsayılan Gizli) */
.sidebar-submenu { 
    list-style: none; padding-left: 15px; display: none; /* JS ile açılacak */
    border-left: 1px solid #eee; margin-left: 5px;
}
.sidebar-submenu li a { font-size: 14px; color: #777; }
.sidebar-submenu li a:hover { color: var(--dark); }

/* Marka Checkboxları için Boşluk */
.mt-2 { margin-top: 10px; }

/* ======================================= */
/* KATEGORİ SAYFASI ÖZEL TASARIMI */
/* ======================================= */

/* 1. Header & Breadcrumb */
.shop-header-section {
    background-color: #f8f9fa; padding: 40px 0; border-bottom: 1px solid #eee; margin-bottom: 40px;
}
.breadcrumb-modern { list-style: none; display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.breadcrumb-modern li a { color: #999; transition: 0.2s; }
.breadcrumb-modern li a:hover { color: var(--primary-color); }
.breadcrumb-modern li::after { content: '/'; margin-left: 10px; color: #ccc; }
.breadcrumb-modern li:last-child::after { content: ''; }
.breadcrumb-modern li.active { color: var(--dark); font-weight: 600; }
.shop-header-content h1 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.cat-desc { color: #666; font-size: 15px; }

/* 2. Layout */
.shop-layout { display: flex; gap: 40px; align-items: flex-start; position: relative; }
.shop-sidebar { width: 260px; flex-shrink: 0; }
.shop-products-area { flex-grow: 1; }

/* 3. Sidebar & Filtreler */
.filter-widget { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 25px; }
.filter-widget:last-child { border-bottom: none; }
.widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }

/* Kategori Listesi (Ağaç) */
.sidebar-category-tree { list-style: none; padding: 0; margin: 0; }
.sidebar-category-tree li { margin-bottom: 5px; }
.cat-link-wrap { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.sidebar-category-tree a { color: #555; font-size: 15px; font-weight: 500; transition: 0.2s; text-decoration: none; }
.sidebar-category-tree a:hover { color: var(--primary-color); }
.active-cat > .cat-link-wrap > a { color: var(--primary-color); font-weight: 700; }
.toggle-btn { cursor: pointer; font-size: 12px; color: #aaa; padding: 5px; }
.sidebar-submenu { list-style: none; padding-left: 15px; display: none; border-left: 1px solid #eee; margin-left: 5px; }
.sidebar-submenu li a { font-size: 14px; color: #777; }

/* Fiyat & Checkbox */
.price-inputs { display: flex; gap: 10px; align-items: center; margin-bottom: 15px; }
.price-inputs input { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 6px; outline: none; font-size: 14px; }
.btn-apply-filter { width: 100%; background: var(--dark); color: #fff; border: none; padding: 10px; border-radius: 6px; cursor: pointer; transition: 0.2s; }
.btn-apply-filter:hover { background: var(--primary-color); }
.custom-checkbox { display: block; position: relative; padding-left: 30px; margin-bottom: 12px; cursor: pointer; font-size: 15px; color: #555; user-select: none; }
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; background-color: #eee; border-radius: 4px; }
.custom-checkbox:hover input ~ .checkmark { background-color: #ccc; }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--primary-color); }
.checkmark:after { content: ""; position: absolute; display: none; }
.custom-checkbox input:checked ~ .checkmark:after { display: block; }
.custom-checkbox .checkmark:after { left: 7px; top: 3px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* 4. Toolbar */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding: 15px 20px; background: #fff; border: 1px solid #eee; border-radius: 8px; }
.sort-select { border: 1px solid #ddd; padding: 8px 15px; border-radius: 6px; outline: none; color: #444; background: #fff; cursor: pointer; }

/* 5. PREMIUM ÜRÜN KARTI */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }

.product-card-modern {
    background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; position: relative;
}
.product-card-modern:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.08); transform: translateY(-5px); border-color: transparent; }

.pc-image { position: relative; height: 280px; overflow: hidden; background: #f9f9f9; }
.pc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card-modern:hover .pc-image img { transform: scale(1.1); }

.badge-sale { position: absolute; top: 15px; left: 15px; background: #ff4757; color: #fff; padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 4px; z-index: 2; }

.pc-actions {
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%) translateY(20px);
    display: flex; gap: 10px; opacity: 0; transition: all 0.3s ease; z-index: 3;
}
.product-card-modern:hover .pc-actions { opacity: 1; transform: translateX(-50%) translateY(0); }
.pc-actions button, .pc-actions a {
    width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--dark); border: none;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; transition: 0.2s;
}
.pc-actions button:hover, .pc-actions a:hover { background: var(--primary-color); color: #fff; }

.pc-info { padding: 20px; text-align: left; }
.pc-cat { font-size: 12px; color: #999; text-transform: uppercase; margin-bottom: 5px; }
.pc-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc-title a { color: var(--dark); transition: 0.2s; }
.pc-title a:hover { color: var(--primary-color); }

.pc-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.pc-price { font-size: 18px; font-weight: 800; color: var(--primary-color); }
.pc-rating { color: #ffc107; font-size: 12px; }
.rating-count { color: #ccc; font-size: 11px; margin-left: 5px; }

.btn-add-cart-full {
    width: 100%; padding: 12px; border: 1px solid var(--dark); background: transparent; color: var(--dark); font-weight: 600; font-size: 13px; border-radius: 6px; cursor: pointer; transition: 0.3s;
}
.btn-add-cart-full:hover { background: var(--dark); color: #fff; }

/* 6. Mobil Uyumluluk */
.mobile-filter-btn-area { display: none; margin-bottom: 20px; }
.btn-filter-toggle { width: 100%; padding: 12px; background: #fff; border: 1px solid #ddd; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; }
.sidebar-header-mobile { display: none; }
.sidebar-overlay { display: none; }

@media (max-width: 992px) {
    .shop-layout { display: block; }
    .shop-sidebar {
        position: fixed; top: 0; left: 0; width: 280px; height: 100%; background: #fff; z-index: 9999; padding: 20px; transform: translateX(-100%); transition: transform 0.3s ease; box-shadow: 5px 0 20px rgba(0,0,0,0.1); overflow-y: auto;
    }
    .shop-sidebar.active { transform: translateX(0); }
    .mobile-filter-btn-area { display: block; }
    .sidebar-header-mobile { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
    .sidebar-header-mobile button { border: none; background: transparent; font-size: 20px; cursor: pointer; }
    .sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9998; display: none; }
    .sidebar-overlay.active { display: block; }
}
@media (max-width: 576px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .pc-image { height: 180px; }
    .pc-info { padding: 10px; }
    .pc-title { font-size: 14px; }
    .pc-price { font-size: 15px; }
    .pc-rating { display: none; }
    .btn-add-cart-full { font-size: 11px; padding: 8px; }
}
/* ======================================= */
/* FİLTRE TEMİZLEME & TAG STİLLERİ */
/* ======================================= */

/* Filtre Temizle Butonu (Sidebar Altı) */
.filter-reset-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.btn-reset-filters {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: #fff5f5; /* Çok açık kırmızı */
    color: #e74c3c; /* Kırmızı */
    border: 1px solid #e74c3c;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-reset-filters:hover {
    background-color: #e74c3c;
    color: white;
}
.btn-reset-filters i { margin-right: 5px; transition: transform 0.4s; }
.btn-reset-filters:hover i { transform: rotate(180deg); }

/* Aktif Filtre Etiketi (Üst Kısım) */
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-soft);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    border: 1px solid rgba(226, 84, 4, 0.2);
}

.active-filter-tag a {
    color: var(--primary-color);
    font-size: 12px;
    text-decoration: none;
    display: flex; align-items: center;
}
.active-filter-tag a:hover {
    color: var(--dark);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .active-filter-tag {
        display: none; /* Mobilde yer kaplamasın, zaten sidebarda var */
    }
}


/* ======================================= */
/* LOGO GÖRSELİ VE DÜZENİ */
/* ======================================= */

.logo {
    display: flex;
    align-items: center; /* Dikey ortalama */
    gap: 12px; /* Resim ile Yazı arası boşluk */
    text-decoration: none;
}

/* Logo Resmi (Masaüstü Ayarı) */
.logo-img {
    height: 45px; /* Masaüstü yüksekliği ideal */
    width: auto;  /* Genişlik orantılı kalsın */
    object-fit: contain;
    display: block;
}

/* Logo Yazı Alanı */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    
    /* Mobilde genel logo kapsayıcısı */
    .logo {
        gap: 8px; /* Boşluğu biraz azalt */
        justify-content: center; /* Ortala */
    }

    /* Mobilde Resim Boyutu */
    .logo-img {
        height: 32px; /* Mobilde ikon çok büyük durmasın */
    }

    /* Mobilde Yazı Boyutu (Zaten ayarlı ama garanti olsun) */
    .logo-main {
        font-size: 20px; 
    }
}


/* ======================================= */
/* ÜRÜN DETAY SAYFASI (PRODUCT DETAIL) */
/* ======================================= */

/* Breadcrumb (Ufak Navigasyon) */
.breadcrumb-area { background: #f8f9fa; padding: 15px 0; border-bottom: 1px solid #eee; }
.breadcrumb-area ul { list-style: none; display: flex; gap: 10px; padding: 0; margin: 0; font-size: 13px; color: #888; }
.breadcrumb-area a { color: #888; transition: 0.2s; }
.breadcrumb-area a:hover { color: var(--primary-color); }
.breadcrumb-area li::after { content: '/'; margin-left: 10px; color: #ccc; }
.breadcrumb-area li:last-child::after { content: ''; }
.breadcrumb-area li.active { color: var(--dark); font-weight: 600; }

/* Layout (Sol Galeri - Sağ Bilgi) */
.pd-layout { display: flex; gap: 50px; align-items: flex-start; margin-bottom: 50px; }
.pd-gallery { width: 50%; }
.pd-info { width: 50%; }

/* Galeri (Swiper) */
/* Büyük Resim Kutusu */
.pdMainSwiper { 
    width: 100%; 
    aspect-ratio: 1 / 1; /* Kutuyu zorla KARE yapar */
    border-radius: 16px; 
    overflow: hidden; 
    border: 1px solid #eee; 
    margin-bottom: 15px; 
    background: #fff; 
}

/* Slayt Hizalaması - Boşlukları Sıfırla */
.pdMainSwiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

/* Resim Ayarı - BOŞLUK YOK, TAM DOLUM */
.pdMainSwiper img { 
    width: 100% !important; 
    height: 100% !important; 
    
    /* --- KRİTİK DEĞİŞİKLİK --- */
    object-fit: cover !important; 
    /* 'cover': Resmi kutunun kenarlarına kadar yayar.
       Resimler zaten 1200x1200 (Kare) olduğu için 
       KESİLME OLMAZ ve BEYAZ BOŞLUK KALMAZ. 
       Tam istediğin görüntü budur.
    */
       
    display: block;
    border: none;
}

/* Küçük Resimler (Thumb Swiper) */
.pdThumbSwiper { 
    height: 100px; 
    box-sizing: border-box; 
    padding: 2px; 
}

.pdThumbSwiper .swiper-slide { 
    width: 25%; 
    height: 100%; 
    border-radius: 10px; 
    overflow: hidden; 
    cursor: pointer; 
    border: 1px solid #eee; 
    opacity: 0.6; 
}

.pdThumbSwiper .swiper-slide-thumb-active { 
    opacity: 1; 
    border: 2px solid var(--primary-color); 
}

.pdThumbSwiper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Küçük resimler de tam dolsun */
}
.pdThumbSwiper .swiper-slide-thumb-active { opacity: 1; border: 2px solid var(--primary-color); }

/* Bilgi Alanı */
.pd-category { color: var(--primary-color); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.pd-title { font-size: 32px; font-weight: 800; color: var(--dark); margin: 10px 0; line-height: 1.2; }
.pd-rating { color: #ffc107; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 5px; }
.pd-rating span { color: #888; font-size: 13px; margin-left: 5px; }

.pd-price-area { margin-bottom: 25px; display: flex; align-items: baseline; gap: 15px; }
.current-price { font-size: 36px; font-weight: 800; color: var(--primary-color); }
.old-price { font-size: 20px; color: #ccc; text-decoration: line-through; }

.pd-short-desc { color: #555; line-height: 1.6; margin-bottom: 25px; font-size: 15px; border-bottom: 1px solid #eee; padding-bottom: 20px; }

.pd-stock { margin-bottom: 25px; font-weight: 600; }
.in-stock { color: #2ecc71; display: flex; align-items: center; gap: 5px; }
.out-stock { color: #e74c3c; display: flex; align-items: center; gap: 5px; }

/* Aksiyonlar (Adet + Sepet) */
.pd-actions { display: flex; gap: 15px; align-items: center; margin-bottom: 30px; flex-wrap: wrap; }
.quantity-control { display: flex; align-items: center; border: 2px solid #eee; border-radius: 8px; overflow: hidden; }
.quantity-control button { background: #f9f9f9; border: none; width: 40px; height: 50px; font-size: 18px; cursor: pointer; transition: 0.2s; }
.quantity-control button:hover { background: #eee; }
.quantity-control input { width: 50px; height: 50px; text-align: center; border: none; font-weight: 700; font-size: 16px; -moz-appearance: textfield; }

.btn-add-cart-lg { 
    flex: 1; background: var(--dark); color: #fff; border: none; height: 54px; 
    border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-add-cart-lg:hover { background: var(--bg-card); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(226,84,4,0.2); }
.btn-add-cart-lg:disabled { background: #ccc; cursor: not-allowed; transform: none; }

.btn-fav { 
    width: 54px; height: 54px; border: 2px solid #eee; background: #fff; 
    border-radius: 8px; font-size: 20px; color: var(--dark); cursor: pointer; transition: 0.2s; 
}
.btn-fav:hover { border:1px solid var(--primary-color); color: var(--primary-color); }

/* Güven Rozetleri */
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding-top: 20px; border-top: 1px solid #eee; }
.tb-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #555; }
.tb-item i { color: var(--primary-color); font-size: 18px; }

/* Tablar (Açıklama vs.) */
.tab-headers { display: flex; border-bottom: 1px solid #eee; margin-bottom: 30px; gap: 30px; }
.tab-btn { 
    background: none; border: none; font-size: 16px; font-weight: 600; color: #888; 
    padding-bottom: 15px; cursor: pointer; border-bottom: 3px solid transparent; transition: 0.3s;
}
.tab-btn.active { color: var(--dark); border-bottom-color: var(--primary-color); }
.tab-content { display: none; line-height: 1.7; color: #555; }
.tab-content.active { display: block; animation: fadeIn 0.3s; }

/* Teknik Tablo */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 12px; border-bottom: 1px solid #eee; text-align: left; }
.specs-table th { width: 30%; font-weight: 600; color: var(--dark); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .pd-layout { flex-direction: column; gap: 30px; }
    .pd-gallery, .pd-info { width: 100%; }
    .pdMainSwiper { height: 350px; }
    .pd-title { font-size: 26px; }
    .current-price { font-size: 28px; }
    .trust-badges { grid-template-columns: 1fr; gap: 10px; }
    .tab-headers { overflow-x: auto; white-space: nowrap; padding-bottom: 0; }
}

/* ======================================= */
/* ÜRÜN VARYANT STİLLERİ */
/* ======================================= */
.product-variants {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.variant-group {
    margin-bottom: 15px;
}

.variant-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Radyo butonunu gizle, span'i stilize et */
.variant-option input {
    display: none;
}

.variant-box {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    transition: all 0.2s ease;
    background: #fff;
}

/* Seçili Durum */
.variant-option input:checked + .variant-box {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(226, 84, 4, 0.2);
}

/* Hover */
.variant-box:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}


 .account-section { padding: 60px 0; background: #f8f9fa; min-height: 85vh; }
    .account-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
    
    /* SOL SIDEBAR */
    .acc-sidebar { background: var(--card-bg); border-radius: var(--border-radius); box-shadow: var(--shadow); overflow: hidden; height: fit-content; position: sticky; top: 100px; }
    .user-profile { padding: 30px 20px; text-align: center; background: linear-gradient(135deg, var(--primary-color), #ff9f43); color: white; }
    .user-avatar { width: 80px; height: 80px; background: rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 15px; }
    .user-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; }
    .user-email { font-size: 0.85rem; opacity: 0.9; }
    
    .acc-nav a { display: flex; align-items: center; padding: 18px 25px; color: #555; font-weight: 600; transition: all 0.3s; border-left: 4px solid transparent; cursor: pointer; }
    .acc-nav a:hover { background: #f9f9f9; color: var(--primary-color); }
    .acc-nav a.active { background: #fff5f0; color: var(--primary-color); border-left-color: var(--primary-color); }
    .acc-nav a i { width: 30px; font-size: 1.1rem; }

    /* SAĞ İÇERİK ALANI */
    .tab-pane { display: none; animation: fadeIn 0.4s ease-out; }
    .tab-pane.active { display: block; }
    .content-card { background: var(--card-bg); border-radius: var(--border-radius); padding: 30px; box-shadow: var(--shadow); margin-bottom: 30px; }
    .section-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 25px; color: #2d3436; display: flex; justify-content: space-between; align-items: center; }

    /* FORM ELEMANLARI */
    .input-group { margin-bottom: 20px; }
    .input-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: #555; }
    .form-control { width: 100%; padding: 14px; border: 1px solid #eee; border-radius: 8px; background: #fcfcfc; transition: 0.3s; font-size: 1rem; }
    .form-control:focus { border-color: var(--primary-color); background: white; box-shadow: 0 0 0 4px rgba(226, 84, 4, 0.1); outline: none; }
    .btn-action { background: var(--primary-color); color: white; padding: 14px 30px; border-radius: 8px; border: none; font-weight: 700; cursor: pointer; transition: 0.3s; }
    .btn-action:hover { background: #c44602; transform: translateY(-2px); }

    /* SİPARİŞ KARTLARI */
    .order-card { border: 1px solid #eee; border-radius: 10px; padding: 20px; margin-bottom: 20px; transition: 0.3s; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
    .order-card:hover { border-color: var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
    .oc-info h4 { margin: 0 0 5px; font-size: 1.1rem; }
    .oc-date { font-size: 0.85rem; color: #888; }
    .oc-status { padding: 6px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; }
    .st-beklemede { background: #fff3cd; color: #856404; }
    .st-kargoda { background: #cce5ff; color: #004085; }
    .st-tamamlandi { background: #d4edda; color: #155724; }
    .st-iptal { background: #f8d7da; color: #721c24; }
    .btn-detail { padding: 8px 20px; border: 1px solid #ddd; border-radius: 6px; background: white; color: #555; font-weight: 600; text-decoration: none; transition: 0.2s; }
    .btn-detail:hover { background: #333; color: white; border-color: #333; }

    /* ADRES KARTLARI */
    .addr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
    .addr-card { border: 2px solid #f0f0f0; padding: 25px; border-radius: 12px; position: relative; transition: 0.3s; cursor: default; }
    .addr-card:hover { border-color: #ddd; }
    .addr-icon { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 15px; }
    .addr-title { font-weight: 700; display: block; margin-bottom: 10px; font-size: 1.1rem; }
    .addr-text { color: #666; font-size: 0.95rem; line-height: 1.6; }
    .btn-delete { position: absolute; top: 20px; right: 20px; color: #ff6b6b; background: none; border: none; cursor: pointer; font-size: 1.1rem; opacity: 0.6; transition: 0.2s; }
    .btn-delete:hover { opacity: 1; transform: scale(1.1); }

    /* Yeni Adres Formu */
    .new-addr-form { background: #fbfbfb; padding: 25px; border-radius: 10px; margin-bottom: 30px; border: 1px dashed #ccc; }

    .alert { padding: 15px; border-radius: 8px; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
    .alert.success { background: #e6fffa; color: #00b894; border: 1px solid #b2f5ea; }
    .alert.error { background: #fff5f5; color: #fc8181; border: 1px solid #fed7d7; }

    @media (max-width: 900px) { .account-layout { grid-template-columns: 1fr; } .acc-sidebar { position: static; margin-bottom: 30px; } }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
     /* YENİ ADRES FORMU CSS */
    .new-addr-form { background: #ffffff; border: 1px solid #e0e0e0; padding: 25px; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
    .form-row-flex { display: flex; gap: 15px; flex-wrap: wrap; }
    .form-row-flex .input-group { flex: 1; min-width: 150px; }
    /* Dropdown Oku */
    select.form-control { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 12px; cursor: pointer; }
    
    .addr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
    .addr-card { border: 2px solid #f0f0f0; padding: 25px; border-radius: 12px; position: relative; transition: 0.3s; }
    .btn-delete { position: absolute; top: 20px; right: 20px; color: #ff6b6b; background: none; border: none; cursor: pointer; font-size: 1.1rem; }
    
    .alert { padding: 15px; border-radius: 8px; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
    .alert.success { background: #e6fffa; color: #00b894; border: 1px solid #b2f5ea; }
    .alert.error { background: #fff5f5; color: #fc8181; border: 1px solid #fed7d7; }

    /* ... Önceki CSS'ler (Aynı kalabilir) ... */
    .auth-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; background-color: #f0f2f5; padding: 40px 20px; }
    .auth-box { background: white; width: 1000px; max-width: 100%; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); overflow: hidden; display: flex; min-height: 600px; }
    .auth-banner { flex: 1; background: linear-gradient(135deg, var(--primary-color), #ff8e53), url('https://images.unsplash.com/photo-1631541909061-71e349d1f203?q=80&w=1000&auto=format&fit=crop'); background-blend-mode: multiply; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; padding: 40px; color: white; position: relative; }
    .auth-banner h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; line-height: 1.2; }
    .auth-banner p { font-size: 1.1rem; opacity: 0.9; line-height: 1.6; }
    .auth-content { flex: 1; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
    .auth-header { text-align: center; margin-bottom: 30px; }
    .auth-logo { font-size: 1.8rem; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; display: block; }
    .auth-tabs { display: flex; background: #f5f5f5; padding: 5px; border-radius: 10px; margin-bottom: 30px; }
    .auth-tab { flex: 1; text-align: center; padding: 12px; border-radius: 8px; cursor: pointer; font-weight: 600; color: #666; transition: all 0.3s ease; }
    .auth-tab.active { background: white; color: var(--primary-color); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
    .input-group { position: relative; margin-bottom: 20px; }
    .input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #aaa; }
    .form-control { width: 100%; padding: 15px 15px 15px 45px; border: 1px solid #eee; border-radius: 10px; background: #fcfcfc; font-size: 1rem; transition: 0.3s; }
    .form-control:focus { border-color: var(--primary-color); background: white; box-shadow: 0 0 0 4px rgba(226, 84, 4, 0.1); outline: none; }
    .btn-block { width: 100%; padding: 15px; border: none; border-radius: 10px; background: var(--primary-color); color: white; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(226, 84, 4, 0.2); }
    .btn-block:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(226, 84, 4, 0.3); }
    .form-footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 0.9rem; }
    .forgot-password { color: #666; text-decoration: none; transition: 0.2s; }
    .forgot-password:hover { color: var(--primary-color); text-decoration: underline; }
    .form-container { display: none; animation: fadeIn 0.4s ease-out; }
    .form-container.active { display: block; }
    .alert { padding: 15px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
    .alert.error { background: #fff2f2; color: #d63031; border: 1px solid #ffdede; }
    .alert.success { background: #e6fffa; color: #00b894; border: 1px solid #ccfbf1; }
    
    /* CHECKBOX VE MODAL STİLLERİ (YENİ) */
    .terms-container { margin-top: 15px; margin-bottom: 20px; font-size: 0.85rem; color: #666; }
    .term-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
    .term-item input { margin-top: 3px; cursor: pointer; width: 16px; height: 16px; accent-color: var(--primary-color); }
    .term-link { color: var(--primary-color); text-decoration: underline; cursor: pointer; }

    /* Modal Stili */
    .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; }
    .modal-box { background: white; width: 90%; max-width: 600px; max-height: 80vh; padding: 30px; border-radius: 12px; position: relative; overflow-y: auto; }
    .modal-close { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: #999; }
    .modal-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    @media (max-width: 768px) { .auth-banner { display: none; } .auth-content { padding: 30px; } }


   

    /* LAYOUT */
    .cart-wrapper { 
        max-width: 1200px; margin: 40px auto; padding: 0 20px; 
        display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start;
        padding-bottom: 120px; /* Mobilde alt bar için boşluk */
    }

    /* --- SOL: ÜRÜN LİSTESİ --- */
    .cart-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
    .cart-title { font-size: 1.8rem; font-weight: 800; line-height: 1; }

    /* MODERN ÜRÜN KARTI */
    .cart-card { 
        background: var(--white); border-radius: var(--radius); padding: 20px; 
        display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; 
        margin-bottom: 20px; border: 1px solid transparent;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        transition: 0.3s; position: relative;
    }
    .cart-card:hover { border-color: #d1d5db; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); }

    .cc-img { width: 110px; height: 110px; border-radius: 12px; overflow: hidden; background: #f3f4f6; }
    .cc-img img { width: 100%; height: 100%; object-fit: cover; }

    .cc-info { display: flex; flex-direction: column; justify-content: center; }
    .cc-name { font-weight: 700; font-size: 1.1rem; color: var(--dark); text-decoration: none; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .cc-name:hover { color: var(--primary); }
    .cc-status { font-size: 0.8rem; color: #10b981; font-weight: 600; display: flex; align-items: center; gap: 5px; }
    .cc-status.off { color: #ef4444; }

    .cc-actions { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
    .cc-price { font-size: 1.3rem; font-weight: 800; color: var(--dark); }

    /* Miktar Butonları */
    .qty-control { display: flex; align-items: center; background: #f3f4f6; border-radius: 8px; padding: 4px; }
    .qty-btn { width: 32px; height: 32px; background: var(--white); border: none; border-radius: 6px; font-weight: 700; cursor: pointer; color: var(--dark); box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: 0.2s; }
    .qty-btn:hover { background: var(--primary); color: white; }
    .qty-val { width: 35px; text-align: center; border: none; background: transparent; font-weight: 700; font-size: 0.95rem; }

    .btn-remove { 
        position: absolute; top: 15px; right: 15px; background: none; border: none; color: #9ca3af; 
        font-size: 1.1rem; cursor: pointer; transition: 0.2s; padding: 5px;
    }
    .btn-remove:hover { color: #ef4444; background: #fee2e2; border-radius: 6px; }

    /* --- SAĞ: ÖZET KARTI --- */
    .summary-box { 
        background: var(--white); padding: 30px; border-radius: var(--radius); 
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); border: 1px solid var(--border);
        position: sticky; top: 100px; 
    }
    .sb-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 25px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
    
    .sb-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; color: var(--text-gray); }
    .sb-val { font-weight: 600; color: var(--dark); }
    .sb-total { border-top: 2px solid var(--border); padding-top: 20px; margin-top: 10px; font-size: 1.5rem; color: var(--primary); font-weight: 800; align-items: center; }
    
    .free-cargo-msg { background: #d1fae5; color: #065f46; font-size: 0.85rem; font-weight: 600; padding: 10px; border-radius: 8px; text-align: center; margin-bottom: 20px; }

    .btn-checkout { 
        width: 100%; background: var(--primary-color); color: white; padding: 18px; border-radius: 12px; border: none; 
        font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; 
        display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none;
        box-shadow: 0 4px 6px -1px rgba(255, 102, 0, 0.3);
    }
    .btn-checkout:hover { background: var(--primary-dark); transform: translateY(-2px); color: white;}

    /* --- BOŞ SEPET --- */
    .empty-state { text-align: center; padding: 80px 20px; grid-column: 1 / -1; }
    .empty-icon { font-size: 5rem; color: #e5e7eb; margin-bottom: 20px; }
    .btn-back { background: var(--dark); color: white; padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-block; margin-top: 20px; }

    /* --- MOBİL SABİT BAR (WHATSAPP DOSTU) --- */
    .mobile-sticky-cart { display: none; }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .cart-wrapper { grid-template-columns: 1fr; margin-top: 20px; gap: 20px; }
        .summary-box { display: none; /* Mobilde üst özet gizlenir, alt bar açılır */ }
        
        /* Kart Mobilde Küçülür */
        .cart-card { grid-template-columns: 90px 1fr; gap: 15px; padding: 15px; }
        .cc-img { width: 90px; height: 90px; }
        .cc-actions { grid-column: 2; flex-direction: row; align-items: center; width: 100%; margin-top: 10px; }
        .btn-remove { top: auto; bottom: 15px; right: 15px; } /* Sil butonu alta iner */

        /* MOBİL SABİT BAR */
        .mobile-sticky-cart { 
            display: flex; position: fixed; bottom: 0; left: 0; width: 100%; 
            background: var(--white); padding: 15px 20px; z-index: 990; /* Whatsapp'ın altında kalmasın ama çok da üste çıkmasın */
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1); border-top: 1px solid var(--border);
            align-items: center; justify-content: space-between;
            /* iOS güvenli alan boşluğu */
            padding-bottom: env(safe-area-inset-bottom, 20px);
        }
        .msc-info { display: flex; flex-direction: column; }
        .msc-label { font-size: 0.8rem; color: var(--text-gray); }
        .msc-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
        
        .msc-btn { 
            background: var(--primary-color); color: white; padding: 12px 30px; border-radius: 10px; 
            font-weight: 700; text-decoration: none; font-size: 1rem;
        }

        /* WHATSAPP BUTONUNU YUKARI İTMEK İÇİN CSS 
           Eğer senin whatsapp butonunun class'ı farklıysa buradaki '.whatsapp-float' ismini değiştir.
           Genelde kullanılan classlar: .whatsapp-btn, .float, #whatsapp-widget
        */
        .whatsapp-float, .whatsapp-btn, #whatsapp-widget { 
            bottom: 90px !important; /* Alt barın üstüne çıkarır */
            transition: bottom 0.3s;
        }
    }