/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #121218; color: #e0e0e0; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }

/* ========== NAVBAR ========== */
.navbar { background: #0f0f1a; padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; height: 65px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.logo-badge {
    display: flex; align-items: center; gap: 3px;
    background: linear-gradient(135deg, #e94560, #c0392b);
    padding: 6px 10px; border-radius: 10px;
    box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}
.logo-d, .logo-o {
    color: #fff; font-size: 22px; font-weight: 900; letter-spacing: -1px;
    font-family: 'Segoe UI', sans-serif;
}
.logo-separator {
    width: 2px; height: 20px; background: rgba(255,255,255,0.3);
    margin: 0 2px; border-radius: 1px;
}
.logo-titles { display: flex; flex-direction: column; }
.logo-main {
    color: #fff; font-size: 17px; font-weight: 800; letter-spacing: 2px;
    line-height: 1.1;
}
.logo-sub {
    color: rgba(233,69,96,0.7); font-size: 9px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
}

.nav-search { flex: 1; display: flex; max-width: 500px; }
.nav-search input { flex: 1; padding: 10px 16px; border: none; border-radius: 8px 0 0 8px; font-size: 14px; background: #1e1e3a; color: #fff; outline: none; }
.nav-search input::placeholder { color: #666; }
.nav-search button { padding: 10px 20px; border: none; background: #e94560; color: #fff; font-weight: 600; cursor: pointer; border-radius: 0 8px 8px 0; font-size: 14px; }
.nav-search button:hover { background: #ff6b81; }

.nav-links { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #e94560; }
.nav-btn { background: #e94560; color: #fff !important; padding: 6px 14px; border-radius: 6px; font-size: 12px; }
.nav-cart { position: relative; }
.cart-badge { background: #e94560; color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 10px; position: absolute; top: -8px; right: -10px; }

/* ========== KATEGORİ BAR ========== */
.cat-bar { background: #16162e; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 200; }
.cat-inner { display: flex; gap: 0; overflow: visible; justify-content: center; }
.cat-dropdown { position: relative; z-index: 200; }
.cat-link { color: rgba(255,255,255,0.6); padding: 12px 20px; font-size: 13px; font-weight: 500; white-space: nowrap; transition: all 0.2s; border-bottom: 2px solid transparent; display: block; }
.cat-link:hover { color: #e94560; border-bottom-color: #e94560; background: rgba(233,69,96,0.05); }
.cat-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0; min-width: 220px;
    background: #1a1a2e; border-radius: 0 0 10px 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999; padding: 8px 0; border-top: 2px solid #e94560;
}
.cat-dropdown:hover .cat-dropdown-menu { display: block; }
.cat-dropdown-menu a {
    display: block; padding: 10px 20px; color: rgba(255,255,255,0.6); font-size: 13px;
    transition: all 0.15s; white-space: nowrap;
}
.cat-dropdown-menu a:hover { background: rgba(233,69,96,0.1); color: #e94560; padding-left: 24px; }

/* ========== ALERTS ========== */
.alert { padding: 12px 20px; border-radius: 8px; margin: 15px 0; font-size: 14px; animation: fadeIn 0.3s ease; }
.alert-success { background: rgba(40,167,69,0.15); color: #5ddb7a; border-left: 4px solid #28a745; }
.alert-warning { background: rgba(255,193,7,0.12); color: #ffd95a; border-left: 4px solid #ffc107; }
.alert-danger { background: rgba(233,69,96,0.12); color: #ff6b81; border-left: 4px solid #e94560; }
@keyframes fadeIn { from { opacity:0; transform:translateY(-5px); } to { opacity:1; transform:translateY(0); } }

/* ========== MAIN ========== */
.main-content { min-height: 60vh; padding: 25px 20px; position: relative; z-index: 1; }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0d1b2a 100%);
    border-radius: 20px; padding: 60px 50px; margin-bottom: 30px; color: #fff;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    overflow: hidden; position: relative;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(233,69,96,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; flex: 1; }
.hero-badge {
    display: inline-block; background: rgba(233,69,96,0.15); color: #e94560;
    padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
    border: 1px solid rgba(233,69,96,0.2);
}
.hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.hero h1 span { color: #e94560; }
.hero p { color: rgba(255,255,255,0.5); font-size: 17px; margin-bottom: 24px; max-width: 500px; }
.hero-buttons { display: flex; gap: 12px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.hero-visual { position: relative; z-index: 2; }
.hero-icon {
    font-size: 120px; opacity: 0.15; animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========== GÜVEN BANDI ========== */
.trust-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 35px;
}
.trust-item {
    display: flex; align-items: center; gap: 14px; background: #1a1a28;
    padding: 18px 20px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s; border: 1px solid rgba(255,255,255,0.05);
}
.trust-item:hover { transform: translateY(-2px); border-color: rgba(233,69,96,0.2); }
.trust-icon { font-size: 28px; }
.trust-item strong { display: block; font-size: 14px; color: #fff; }
.trust-item span { font-size: 12px; color: #888; }

/* ========== KATEGORİ KARTLARI ========== */
.cat-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px; margin-bottom: 35px;
}
.cat-card {
    background: #1a1a28; border-radius: 14px; padding: 24px; text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); transition: all 0.25s;
    border: 2px solid rgba(255,255,255,0.05);
}
.cat-card:hover { border-color: #e94560; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(233,69,96,0.15); }
.cat-card-icon { font-size: 36px; margin-bottom: 10px; }
.cat-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cat-card-subs { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.cat-card-subs span {
    font-size: 11px; background: rgba(255,255,255,0.06); color: #aaa; padding: 3px 10px;
    border-radius: 12px;
}

/* ========== SECTION HEADER ========== */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-header .section-title { margin-bottom: 0; }

/* ========== İNDİRİM BADGE ========== */
.product-img { position: relative; }
.discount-badge {
    position: absolute; top: 10px; left: 10px; background: #e94560; color: #fff;
    padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a); border-radius: 16px;
    padding: 40px 50px; display: flex; align-items: center; justify-content: space-between;
    margin-top: 30px; color: #fff;
}
.cta-content h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.cta-content p { color: rgba(255,255,255,0.5); font-size: 14px; }

/* ========== KAMPANYA BANDI ========== */
.promo-banner {
    background: linear-gradient(90deg, #e94560, #c0392b);
    color: #fff; text-align: center; padding: 10px 20px;
    font-size: 13px; letter-spacing: 0.5px;
}

/* ========== NEDEN BİZ SAYAÇLAR ========== */
.stats-section { margin: 35px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-counter {
    background: #1a1a28; border-radius: 14px; padding: 30px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.25s;
}
.stat-counter:hover { border-color: rgba(233,69,96,0.3); transform: translateY(-3px); }
.stat-number { font-size: 36px; font-weight: 900; color: #e94560; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ========== SSS ========== */
.faq-section { margin: 35px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #1a1a28; border-radius: 12px; margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.05); overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(233,69,96,0.2); }
.faq-question {
    padding: 18px 22px; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    color: #fff; font-size: 15px; font-weight: 600;
    transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-toggle {
    font-size: 22px; color: #e94560; font-weight: 700;
    transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
    color: #aaa; font-size: 14px; line-height: 1.8; padding: 0 22px;
}
.faq-item.open .faq-answer {
    max-height: 200px; padding: 0 22px 18px;
}

/* ========== MARKA LOGOLARI ========== */
.brands-section { margin: 35px 0; }
.brands-slider {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
}
.brand-logo {
    flex: 1; height: 55px; background: #1a1a28; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.25s;
    padding: 8px;
}
.brand-logo:hover {
    border-color: rgba(233,69,96,0.3); transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233,69,96,0.1);
}
.brand-logo img { max-width: 70px; max-height: 35px; object-fit: contain; filter: grayscale(100%) brightness(0.7); transition: filter 0.3s; }
.brand-logo:hover img { filter: grayscale(0%) brightness(1); }

/* ========== HİZMETLER ========== */
.services-section { margin: 35px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card {
    background: #1a1a28; border-radius: 16px; padding: 35px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
}
.service-card:hover { border-color: rgba(233,69,96,0.3); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(233,69,96,0.1); }
.service-icon { font-size: 48px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.8; }

/* ========== ADRES ========== */
.address-section { margin: 35px 0; }
.address-card {
    background: linear-gradient(135deg, #1a1a28, #12121e); border-radius: 16px;
    padding: 35px 40px; display: flex; align-items: flex-start; gap: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}
.address-icon { font-size: 40px; flex-shrink: 0; }
.address-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.address-text { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.address-contact { display: flex; gap: 24px; margin-bottom: 10px; }
.address-contact span { font-size: 14px; color: rgba(255,255,255,0.5); }
.address-hours { display: flex; gap: 24px; }
.address-hours span { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ========== ÜRÜN KARTLARI ========== */
.section-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-bottom: 30px; }
.product-card { background: #1a1a28; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s; border: 1px solid rgba(255,255,255,0.05); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(233,69,96,0.15); border-color: rgba(233,69,96,0.2); position: relative; z-index: 1; }
.product-img { width: 100%; height: 200px; object-fit: cover; background: #222238; display: flex; align-items: center; justify-content: center; color: #444; font-size: 48px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 16px; }
.product-info .brand { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.product-info h3 { font-size: 15px; font-weight: 600; margin: 6px 0; color: #fff; }
.product-info .code { font-size: 12px; color: #aaa; }
.product-price { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.product-price .current { font-size: 20px; font-weight: 700; color: #e94560; }
.product-price .old { font-size: 14px; color: #bbb; text-decoration: line-through; }
.product-stock { font-size: 12px; margin-top: 6px; }
.stock-ok { color: #28a745; }
.stock-low { color: #ffc107; }
.stock-out { color: #dc3545; }
.product-actions { padding: 0 16px 16px; }

/* ========== BUTONLAR ========== */
.btn { display: inline-block; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; text-align: center; }
.btn-primary { background: linear-gradient(135deg, #e94560, #c0392b); color: #fff; }
.btn-primary:hover { box-shadow: 0 4px 15px rgba(233,69,96,0.4); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.08); color: #ccc; border: 1px solid rgba(255,255,255,0.1); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-danger { background: #dc3545; color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-block { display: block; width: 100%; }
.btn-outline { background: transparent; border: 2px solid #e94560; color: #e94560; }
.btn-outline:hover { background: #e94560; color: #fff; }

/* ========== ÜRÜN DETAY ========== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #1a1a28; border-radius: 16px; padding: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); margin-bottom: 30px; border: 1px solid rgba(255,255,255,0.05); }
.detail-img { border-radius: 12px; overflow: hidden; background: #222238; min-height: 400px; display: flex; align-items: center; justify-content: center; font-size: 80px; color: #444; }
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.detail-meta { display: flex; gap: 16px; margin-bottom: 16px; font-size: 13px; color: #999; }
.detail-meta span { background: rgba(255,255,255,0.06); padding: 4px 12px; border-radius: 20px; }
.detail-price { margin: 20px 0; }
.detail-price .current { font-size: 32px; font-weight: 800; color: #e94560; }
.detail-price .old { font-size: 18px; color: #bbb; text-decoration: line-through; margin-left: 10px; }
.detail-desc { color: #aaa; font-size: 15px; line-height: 1.8; margin: 20px 0; padding: 20px; background: rgba(255,255,255,0.04); border-radius: 10px; }
.qty-selector { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
.qty-selector input { width: 60px; padding: 10px; text-align: center; border: 2px solid rgba(255,255,255,0.1); border-radius: 8px; font-size: 16px; background: #222238; color: #fff; }

/* ========== SEPET ========== */
.cart-table { width: 100%; background: #1a1a28; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.cart-table th { background: #0f0f1a; color: #fff; padding: 14px 20px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; }
.cart-table td { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }
.cart-table input[type=number] { width: 60px; padding: 6px; border: 2px solid rgba(255,255,255,0.1); border-radius: 6px; text-align: center; background: #222238; color: #fff; }
.cart-summary { background: #1a1a28; border-radius: 12px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); margin-top: 20px; border: 1px solid rgba(255,255,255,0.05); }
.cart-summary .total { font-size: 28px; font-weight: 800; color: #e94560; }

/* ========== FORMLAR ========== */
.form-card { background: #1a1a28; border-radius: 12px; padding: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); max-width: 500px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.05); }
.form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.form-wide { max-width: 800px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #aaa; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 14px; border: 2px solid rgba(255,255,255,0.08); border-radius: 8px;
    font-size: 14px; font-family: inherit; transition: border-color 0.2s;
    background: rgba(255,255,255,0.04); color: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #e94560; outline: none; background: rgba(255,255,255,0.06); }
.form-group select option { background: #1a1a28; color: #fff; }
.form-group input::placeholder { color: #555; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-link { text-align: center; margin-top: 16px; font-size: 14px; color: #999; }
.form-link a { color: #e94560; font-weight: 600; }

/* ========== HESABIM ========== */
.account-grid { display: grid; grid-template-columns: 250px 1fr; gap: 20px; }
.account-sidebar { background: #1a1a28; border-radius: 12px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); height: fit-content; border: 1px solid rgba(255,255,255,0.05); }
.account-sidebar a { display: block; padding: 10px 16px; color: #aaa; font-size: 14px; border-radius: 8px; margin-bottom: 4px; }
.account-sidebar a:hover, .account-sidebar a.active { background: rgba(233,69,96,0.1); color: #e94560; }

/* ========== SİPARİŞ DETAY ========== */
.order-card { background: #1a1a28; border-radius: 12px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.05); }
.order-status { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-beklemede { background: #fff3cd; color: #856404; }
.status-odendi { background: #d4edda; color: #155724; }
.status-hazirlaniyor { background: #cce5ff; color: #004085; }
.status-kargoda { background: #d1ecf1; color: #0c5460; }
.status-teslim { background: #d4edda; color: #155724; }
.status-iptal { background: #f8d7da; color: #721c24; }

/* ========== FOOTER ========== */
.footer { background: #0f0f1a; color: rgba(255,255,255,0.5); margin-top: 40px; padding-top: 40px; }
.footer-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-col p, .footer-col a { display: block; font-size: 13px; margin-bottom: 8px; color: rgba(255,255,255,0.4); }
.footer-col a:hover { color: #e94560; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { transition: transform 0.2s, opacity 0.2s; opacity: 0.6; }
.footer-social a:hover { transform: scale(1.2); opacity: 1; }
.footer-social a:hover svg { fill: #e94560; }
.footer-bottom { text-align: center; padding: 20px; font-size: 12px; color: rgba(255,255,255,0.2); }

/* ========== BADGE ========== */
.badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.badge-red { background: #e94560; color: #fff; }
.badge-green { background: #28a745; color: #fff; }
.badge-blue { background: #007bff; color: #fff; }

/* ========== TABLE (ADMIN) ========== */
.data-table { width: 100%; background: #1a1a28; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.2); border-collapse: collapse; }
.data-table th { background: #0f0f1a; color: #fff; padding: 12px 16px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: #ccc; }
.data-table tr:hover td { background: rgba(233,69,96,0.04); }

/* ========== RESPONSIVE ========== */
/* ========== TABLET ========== */
@media (max-width: 768px) {
    .container { padding: 0 12px; }
    .nav-inner { flex-wrap: wrap; height: auto; padding: 10px 0; gap: 8px; }
    .logo-titles { display: none; }
    .nav-search { order: 3; max-width: 100%; width: 100%; margin-top: 4px; }
    .nav-search input { font-size: 16px; padding: 10px 12px; }
    .nav-links { gap: 10px; font-size: 12px; }
    .nav-links a { font-size: 12px; }
    .cat-inner { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .cat-link { padding: 10px 14px; font-size: 12px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-detail { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .detail-info h1 { font-size: 20px; }
    .detail-price .current { font-size: 24px; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .form-row { flex-direction: column; gap: 0; }
    .form-card { padding: 20px; margin: 0 -12px; border-radius: 0; }
    .account-grid { grid-template-columns: 1fr; }
    .hero { flex-direction: column; padding: 30px 20px; }
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 14px; }
    .hero-visual { display: none; }
    .hero-badge { font-size: 10px; padding: 4px 12px; }
    .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .trust-item { padding: 14px 12px; gap: 10px; }
    .trust-icon { font-size: 22px; }
    .trust-item strong { font-size: 12px; }
    .trust-item span { font-size: 11px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cta-banner { flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
    .cta-content h2 { font-size: 18px; }
    .services-grid { grid-template-columns: 1fr; gap: 12px; }
    .service-card { padding: 24px 20px; }
    .service-card h3 { font-size: 18px; }
    .service-card p { font-size: 13px; }
    .address-card { flex-direction: column; padding: 24px 20px; gap: 16px; }
    .address-contact, .address-hours { flex-direction: column; gap: 6px; }
    .brands-slider { gap: 6px; flex-wrap: wrap; justify-content: center; }
    .brand-logo { width: 80px; height: 45px; flex: none; }
    .brand-logo img { max-width: 50px; max-height: 25px; }
    .cart-table { font-size: 12px; }
    .cart-table th, .cart-table td { padding: 10px 8px; }
    .data-table th, .data-table td { padding: 8px 10px; font-size: 11px; }
    .section-title { font-size: 18px; }
    .reviews { margin-top: 20px; }
    .review-card { padding: 14px; }
    .review-form { padding: 16px; }
    .order-card { padding: 16px; }
    .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
    .scroll-top { bottom: 72px; right: 16px; width: 38px; height: 38px; }
    .chart-bars { height: 120px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banner { font-size: 11px; padding: 8px 12px; }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wpBounce 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes wpBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ========== SAYFALAMA ========== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.pagination a, .pagination span {
    padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 600;
    transition: all 0.2s;
}
.pagination a { background: rgba(255,255,255,0.06); color: #ccc; border: 1px solid rgba(255,255,255,0.1); }
.pagination a:hover { background: #e94560; color: #fff; border-color: #e94560; }
.pagination .active { background: #e94560; color: #fff; border: 1px solid #e94560; }

/* ========== YORUM ========== */
.reviews { margin-top: 30px; }
.review-card { background: #1a1a28; border-radius: 12px; padding: 20px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.05); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-author { font-weight: 600; color: #fff; }
.review-date { font-size: 12px; color: #666; }
.review-stars { color: #ffc107; font-size: 16px; letter-spacing: 2px; }
.review-text { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
.review-form { background: #1a1a28; border-radius: 12px; padding: 24px; border: 1px solid rgba(255,255,255,0.05); margin-top: 16px; }
.star-input { display: flex; gap: 4px; margin-bottom: 12px; }
.star-input label { cursor: pointer; font-size: 24px; color: #444; transition: color 0.15s; }
.star-input input { display: none; }
.star-input label:hover, .star-input label:hover ~ label { color: #ffc107; }
.star-input input:checked ~ label { color: #ffc107; }

/* ========== GÖRSEL YOK ========== */
.no-image {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a28, #222238); color: #444;
    font-size: 14px; font-weight: 600; letter-spacing: 1px;
}
.no-image::before {
    content: '📷'; font-size: 32px; margin-right: 8px; opacity: 0.4;
}

/* ========== SEPETE EKLENDİ ANİMASYONU ========== */
.cart-added {
    animation: cartPulse 0.5s ease;
}
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ========== STOK BİLDİRİM ========== */
.stock-notify-box {
    background: rgba(233,69,96,0.06); border: 1px solid rgba(233,69,96,0.15);
    border-radius: 12px; padding: 20px; margin-top: 16px;
}

/* ========== ÜSTE DÖN ========== */
.scroll-top {
    position: fixed; bottom: 90px; right: 24px; z-index: 9998;
    width: 44px; height: 44px; border-radius: 50%;
    background: #1a1a28; border: 1px solid rgba(255,255,255,0.1);
    color: #e94560; font-size: 20px; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    transition: all 0.2s; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.scroll-top:hover { background: #e94560; color: #fff; transform: translateY(-2px); }
.scroll-top.show { display: flex; }

/* ========== DASHBOARD GRAFİK ========== */
.chart-bars { display: flex; align-items: flex-end; gap: 12px; height: 160px; padding: 10px 0; }
.chart-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.chart-bar {
    width: 100%; min-height: 4px; background: linear-gradient(180deg, #e94560, #c0392b);
    border-radius: 6px 6px 0 0; transition: height 0.5s ease;
}
.chart-label { font-size: 10px; color: #666; text-align: center; }
.chart-value { font-size: 11px; color: #e94560; font-weight: 700; }

/* ========== FAVORİ ========== */
.fav-btn { font-size: 22px; cursor: pointer; transition: transform 0.2s; background: none; border: none; }
.fav-btn:hover { transform: scale(1.2); }
/* ========== MOBİL ========== */
@media (max-width: 480px) {
    .container { padding: 0 10px; }
    .nav-inner { padding: 8px 0; }
    .nav-links { gap: 8px; }
    .nav-links a { font-size: 11px; }
    .cart-badge { font-size: 9px; padding: 1px 5px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .product-img { height: 150px; }
    .product-info { padding: 10px; }
    .product-info h3 { font-size: 13px; }
    .product-info .brand { font-size: 10px; }
    .product-info .code { font-size: 10px; }
    .product-price .current { font-size: 16px; }
    .product-price .old { font-size: 11px; }
    .product-stock { font-size: 10px; }
    .footer-inner { grid-template-columns: 1fr; gap: 16px; }
    .footer-col h4 { font-size: 14px; margin-bottom: 8px; }
    .hero { padding: 24px 16px; border-radius: 12px; }
    .hero h1 { font-size: 20px; }
    .hero p { font-size: 13px; margin-bottom: 16px; }
    .trust-bar { grid-template-columns: 1fr 1fr; gap: 8px; }
    .trust-item { padding: 10px 8px; border-radius: 8px; }
    .trust-icon { font-size: 18px; }
    .trust-item strong { font-size: 11px; }
    .trust-item span { font-size: 10px; }
    .brands-slider { gap: 4px; }
    .brand-logo { width: 55px; height: 35px; border-radius: 6px; padding: 4px; }
    .brand-logo img { max-width: 35px; max-height: 18px; }
    .service-card { padding: 20px 16px; }
    .service-icon { font-size: 36px; }
    .service-card h3 { font-size: 16px; }
    .service-card p { font-size: 12px; }
    .address-card { padding: 20px 16px; }
    .address-text { font-size: 14px; }
    .cta-banner { padding: 20px 16px; border-radius: 12px; }
    .cta-content h2 { font-size: 16px; }
    .btn { padding: 8px 18px; font-size: 12px; }
    .btn-lg { padding: 10px 24px; font-size: 13px; }
    .btn-sm { padding: 5px 10px; font-size: 11px; }
    .form-card { padding: 16px; }
    .form-card h2 { font-size: 18px; }
    .form-group input, .form-group select, .form-group textarea { padding: 8px 10px; font-size: 14px; }
    .detail-img { min-height: 250px; }
    .detail-info h1 { font-size: 18px; }
    .detail-meta { flex-wrap: wrap; gap: 6px; }
    .detail-meta span { font-size: 11px; padding: 3px 8px; }
    .qty-selector input { width: 50px; padding: 8px; }
    .section-title { font-size: 16px; margin-bottom: 14px; }
    .main-content { padding: 15px 10px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-counter { padding: 20px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 11px; }
    .faq-question { font-size: 13px; padding: 14px 16px; }
    .faq-answer { font-size: 13px; }
    .alert { padding: 10px 14px; font-size: 12px; margin: 10px 0; }
    .cat-dropdown-menu { min-width: 160px; }
    .cat-dropdown-menu a { padding: 8px 14px; font-size: 12px; }
    .pagination a, .pagination span { padding: 6px 12px; font-size: 12px; }
}
