/* ============================================================
   VoitEvSpor.com - Ana Stil Dosyası
   Logo Renkleri: Sarı #F5A800 | Turuncu #E05A00 | Siyah #111
============================================================ */
:root {
    --voit-black:   #111111;
    --voit-dark:    #1c1c1c;
    --voit-yellow:  #F5A800;
    --voit-orange:  #E05A00;
    --voit-red:     #e8192c;
    --voit-red-dark:#b01020;
    --voit-gray:    #f5f5f5;
    --voit-border:  #e2e2e2;
    --voit-text:    #1c1c1c;
    --voit-muted:   #666666;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; color: var(--voit-text); background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- NAV ---- */
.navbar { background: #ffffff; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.10); border-bottom: 1px solid #e2e2e2; }
.navbar-logo-img { height: 36px; display: block; }
.navbar-brand { color: #fff; font-size: 20px; font-weight: 700; letter-spacing: 2px; }
.navbar-brand span { color: var(--voit-yellow); }
.navbar-menu { display: flex; gap: 24px; list-style: none; }
.navbar-menu a { color: #444; font-size: 14px; transition: color .2s; font-weight: 500; }
.navbar-menu a:hover { color: var(--voit-orange); }
.navbar-cta { background: var(--voit-black); color: #fff !important; padding: 8px 20px; border-radius: 4px; font-weight: 700; font-size: 13px; }
.navbar-cta:hover { background: var(--voit-yellow); color: var(--voit-black) !important; }

/* ---- HERO ---- */
.hero { background: linear-gradient(120deg, #0a0a0a 0%, #1c1c1c 50%, #2a2a2a 100%); padding: 64px 30px; position: relative; overflow: hidden; }
/* Hero Slider */
.hero-slider-wrap { padding:0; min-height:500px; display:flex; align-items:center; }
.hero-slides { position:absolute; inset:0; z-index:0; }
.hero-slide { position:absolute; inset:0; background-size:cover; background-position:center; background-repeat:no-repeat; opacity:0; transition:opacity 1.2s ease; }
.hero-slide.aktif { opacity:1; }
.hero-slide-default { background:linear-gradient(120deg,#0a0a0a 0%,#1c1c1c 50%,#2a2a2a 100%); opacity:1; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.35) 60%,rgba(0,0,0,.15) 100%); z-index:1; }
.hero-inner { padding:64px 30px; max-width:640px; }
.hero-dots { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:3; }
.hero-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.35); cursor:pointer; transition:all .3s; border:none; }
.hero-dot.aktif { background:#F5A800; transform:scale(1.2); }
.hero::before { content:''; position:absolute; right:-60px; top:-60px; width:420px; height:420px; border-radius:50%; border:60px solid rgba(245,168,0,.06); pointer-events:none; }
.hero::after  { content:''; position:absolute; right:80px; top:80px; width:240px; height:240px; border-radius:50%; border:30px solid rgba(224,90,0,.08); pointer-events:none; }
.hero-inner { max-width: 620px; }
.hero-badge { display:inline-block; background:var(--voit-yellow); color:var(--voit-black); font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:4px 14px; border-radius:3px; margin-bottom:18px; }
.hero h1 { font-size: 36px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 14px; }
.hero p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 28px; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; }
.btn-yellow { background:var(--voit-yellow); color:var(--voit-black); border:none; border-radius:4px; padding:12px 28px; font-size:14px; font-weight:700; cursor:pointer; display:inline-block; }
.btn-yellow:hover { background:var(--voit-orange); color:#fff; }
.btn-red { background:var(--voit-red); color:#fff; border:none; border-radius:4px; padding:12px 26px; font-size:14px; font-weight:600; cursor:pointer; display:inline-block; }
.btn-red:hover { background:var(--voit-red-dark); color:#fff; }
.btn-outline-white { background:transparent; color:#fff; border:1px solid rgba(255,255,255,.35); border-radius:4px; padding:12px 24px; font-size:14px; cursor:pointer; display:inline-block; }
.btn-outline-white:hover { border-color:var(--voit-yellow); color:var(--voit-yellow); }

/* ---- TRUST BAR ---- */
.trust-bar { background:var(--voit-yellow); display:flex; align-items:center; justify-content:center; gap:28px; padding:10px 20px; flex-wrap:wrap; }
.trust-item { color:var(--voit-black); font-size:13px; font-weight:600; display:flex; align-items:center; gap:6px; }

/* ---- FEATURES ---- */
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); border-bottom:1px solid var(--voit-border); }
.feature-item { padding:22px 16px; text-align:center; border-right:1px solid var(--voit-border); }
.feature-item:last-child { border-right:none; }
.feature-icon { font-size:26px; margin-bottom:8px; }
.feature-title { font-size:14px; font-weight:600; margin-bottom:4px; }
.feature-desc { font-size:12px; color:var(--voit-muted); }

/* ---- SECTION ---- */
.section { padding:48px 30px; }
.section-bg { background:var(--voit-gray); }
.section-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:24px; }
.section-title { font-size:22px; font-weight:700; color:var(--voit-black); }
.section-link { font-size:13px; color:var(--voit-orange); font-weight:600; }
.section-link:hover { text-decoration:underline; }

/* ---- KATEGORİ TABS ---- */
.cat-tabs { display:flex; gap:8px; margin-bottom:24px; flex-wrap:wrap; }
.cat-tab { padding:7px 18px; border-radius:3px; font-size:13px; border:1px solid var(--voit-border); cursor:pointer; background:#fff; color:var(--voit-muted); transition:all .2s; }
.cat-tab:hover, .cat-tab.active { background:var(--voit-black); color:#fff; border-color:var(--voit-black); }

/* ---- ÜRÜN KARTLARI (resim gibi büyük, temiz) ---- */
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--voit-border); }
.product-card { background:#fff; border-right:1px solid var(--voit-border); border-bottom:1px solid var(--voit-border); position:relative; transition:box-shadow .2s; display:flex; flex-direction:column; }
.product-card:hover { box-shadow:0 4px 24px rgba(0,0,0,.10); z-index:1; }

/* İndirim rozeti */
.product-badge { position:absolute; top:14px; left:14px; background:var(--voit-red); color:#fff; font-size:12px; font-weight:700; padding:4px 10px; border-radius:3px; z-index:2; }

/* Ürün görseli - büyük ve merkezi */
.product-img-wrap { padding:12px; background:#fff; display:flex; align-items:center; justify-content:center; height:500px; overflow:hidden; cursor:zoom-in; }
.product-img-wrap img { height:100%; width:100%; object-fit:contain; transition:transform .3s; padding:8px; }
.product-card:hover .product-img-wrap img { transform:scale(1.04); }
.product-img-placeholder { font-size:100px; opacity:.12; }

.product-body { padding:16px 20px 20px; border-top:1px solid var(--voit-border); flex:1; display:flex; flex-direction:column; }
.product-cat { font-size:11px; color:var(--voit-orange); font-weight:700; text-transform:uppercase; letter-spacing:.8px; margin-bottom:6px; }
.product-name { font-size:14px; font-weight:600; color:var(--voit-text); margin-bottom:12px; line-height:1.4; min-height:42px; }
.product-price-wrap { display:flex; align-items:baseline; gap:8px; margin-bottom:14px; }
.product-price { font-size:20px; font-weight:700; color:var(--voit-black); }
.product-price-old { font-size:14px; color:var(--voit-muted); text-decoration:line-through; }

/* Detay butonu */
.btn-detail { display:block; width:100%; text-align:center; background:var(--voit-black); color:#fff; border:none; border-radius:3px; padding:11px; font-size:13px; font-weight:700; cursor:pointer; letter-spacing:.5px; transition:background .2s; margin-top:auto; }
.btn-detail:hover { background:var(--voit-yellow); color:var(--voit-black); }

/* Servis butonu (ikincil) */
.btn-service { display:block; width:100%; text-align:center; background:#fff; color:var(--voit-black); border:1px solid var(--voit-border); border-radius:3px; padding:9px; font-size:12px; font-weight:600; cursor:pointer; margin-top:8px; transition:all .2s; }
.btn-service:hover { border-color:var(--voit-yellow); color:var(--voit-orange); }

/* ---- ÜRÜN DETAY ---- */
.product-detail { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:1100px; margin:0 auto; padding:40px 30px; }
.product-detail-img { background:var(--voit-gray); border-radius:8px; border:1px solid var(--voit-border); min-height:380px; display:flex; align-items:center; justify-content:center; font-size:100px; padding:24px; }
.product-detail-img img { max-height:320px; object-fit:contain; }
.product-detail-info h1 { font-size:24px; font-weight:700; margin-bottom:12px; }
.product-detail-price { font-size:30px; font-weight:700; color:var(--voit-black); margin-bottom:8px; }
.product-detail-price-old { font-size:16px; color:var(--voit-muted); text-decoration:line-through; margin-bottom:16px; }
.product-badges { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; }
.badge { display:inline-block; padding:4px 12px; border-radius:3px; font-size:12px; font-weight:600; }
.badge-dark { background:var(--voit-black); color:#fff; }
.badge-yellow { background:var(--voit-yellow); color:var(--voit-black); }
.badge-gray { background:var(--voit-gray); color:var(--voit-text); border:1px solid var(--voit-border); }
.spec-table { width:100%; border-collapse:collapse; margin-bottom:20px; }
.spec-table td { padding:9px 10px; font-size:13px; border-bottom:1px solid var(--voit-border); }
.spec-table td:first-child { color:var(--voit-muted); width:150px; }
.btn-full { width:100%; padding:14px; font-size:15px; font-weight:700; margin-bottom:10px; }
.tabs-nav { display:flex; border-bottom:2px solid var(--voit-border); margin-bottom:24px; }
.tab-btn { padding:12px 20px; font-size:14px; font-weight:600; background:none; border:none; border-bottom:3px solid transparent; margin-bottom:-2px; cursor:pointer; color:var(--voit-muted); }
.tab-btn.active { color:var(--voit-orange); border-bottom-color:var(--voit-orange); }
.tab-content { display:none; }
.tab-content.active { display:block; }

/* ---- BLOG ---- */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; }
.blog-card { background:#fff; border:1px solid var(--voit-border); border-radius:6px; overflow:hidden; transition:box-shadow .2s; }
.blog-card:hover { box-shadow:0 4px 20px rgba(0,0,0,.08); }
.blog-card-img { height:160px; background:linear-gradient(135deg,#1c1c1c,#333); display:flex; align-items:center; justify-content:center; font-size:40px; }
.blog-card-body { padding:16px; }
.blog-cat-label { font-size:11px; color:var(--voit-orange); font-weight:700; text-transform:uppercase; letter-spacing:.8px; margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.blog-cat-label::before { content:''; display:inline-block; width:14px; height:2px; background:var(--voit-orange); }
.blog-card h3 { font-size:15px; font-weight:600; margin-bottom:8px; line-height:1.4; }
.blog-meta { font-size:12px; color:var(--voit-muted); }
.blog-detail { max-width:800px; margin:0 auto; padding:40px 30px; }
.blog-detail h1 { font-size:28px; font-weight:700; margin-bottom:12px; line-height:1.3; }
.blog-detail .blog-meta { margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid var(--voit-border); }
.blog-detail .content h2 { font-size:20px; font-weight:700; margin:28px 0 12px; color:var(--voit-black); }
.blog-detail .content p { font-size:15px; line-height:1.8; margin-bottom:16px; color:#333; }
.blog-detail .content ul { padding-left:20px; margin-bottom:16px; }
.blog-detail .content ul li { font-size:15px; line-height:1.8; margin-bottom:6px; }

/* ---- FORM ---- */
.form-group { margin-bottom:18px; }
.form-label { display:block; font-size:13px; font-weight:600; margin-bottom:6px; color:var(--voit-text); }
.form-control { width:100%; padding:10px 14px; border:1px solid var(--voit-border); border-radius:4px; font-size:14px; color:var(--voit-text); font-family:inherit; transition:border-color .2s; }
.form-control:focus { outline:none; border-color:var(--voit-yellow); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-select { background:#fff; }
textarea.form-control { resize:vertical; min-height:100px; }

/* ---- SERVİS FORM ---- */
.service-form-wrap { max-width:700px; margin:0 auto; background:#fff; border:1px solid var(--voit-border); border-radius:8px; padding:32px; }
.service-form-title { font-size:22px; font-weight:700; margin-bottom:6px; }
.service-form-sub { font-size:14px; color:var(--voit-muted); margin-bottom:28px; }
.step-indicator { display:flex; gap:8px; margin-bottom:28px; }
.step { flex:1; height:4px; background:var(--voit-border); border-radius:2px; }
.step.done { background:var(--voit-yellow); }

/* ---- ADMIN ---- */
.admin-body { background:#f0f2f5; min-height:100vh; }
.admin-sidebar { width:230px; background:var(--voit-black); position:fixed; top:0; left:0; bottom:0; overflow-y:auto; }
.admin-logo { padding:20px 24px; font-size:16px; font-weight:700; color:#fff; letter-spacing:1px; border-bottom:1px solid rgba(255,255,255,.1); }
.admin-logo span { color:var(--voit-yellow); }
.admin-logo img { height:32px; }
.admin-nav { padding:16px 0; }
.admin-nav-item { display:flex; align-items:center; gap:10px; padding:11px 24px; color:rgba(255,255,255,.65); font-size:14px; cursor:pointer; transition:all .2s; }
.admin-nav-item:hover, .admin-nav-item.active { background:rgba(255,255,255,.08); color:#fff; border-left:3px solid var(--voit-yellow); padding-left:21px; }
.admin-nav-item .icon { font-size:16px; width:20px; }
.admin-main { margin-left:230px; padding:28px; }
.admin-topbar { background:#fff; padding:14px 24px; border-radius:8px; margin-bottom:24px; display:flex; align-items:center; justify-content:space-between; box-shadow:0 1px 4px rgba(0,0,0,.06); }
.admin-topbar h2 { font-size:18px; font-weight:700; }
.admin-topbar .user { font-size:13px; color:var(--voit-muted); display:flex; align-items:center; gap:8px; }
.stat-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px; }
.stat-card { background:#fff; border-radius:8px; padding:20px; box-shadow:0 1px 4px rgba(0,0,0,.06); }
.stat-card .label { font-size:12px; color:var(--voit-muted); font-weight:600; text-transform:uppercase; letter-spacing:.8px; margin-bottom:8px; }
.stat-card .value { font-size:28px; font-weight:700; color:var(--voit-black); }
.stat-card .change { font-size:12px; color:#16a34a; margin-top:4px; }
.stat-card.yellow .value { color:var(--voit-orange); }
.admin-table-wrap { background:#fff; border-radius:8px; padding:20px; box-shadow:0 1px 4px rgba(0,0,0,.06); }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th { font-size:12px; font-weight:600; color:var(--voit-muted); text-transform:uppercase; letter-spacing:.6px; padding:10px 14px; border-bottom:2px solid var(--voit-border); text-align:left; }
.admin-table td { padding:12px 14px; font-size:14px; border-bottom:1px solid var(--voit-border); }
.admin-table tr:last-child td { border-bottom:none; }
.status-badge { padding:3px 10px; border-radius:20px; font-size:11px; font-weight:600; }
.status-yeni { background:#fef3c7; color:#92400e; }
.status-islemde { background:#dbeafe; color:#1e40af; }
.status-tamam { background:#dcfce7; color:#166534; }
.btn-admin { padding:7px 16px; border-radius:4px; font-size:13px; font-weight:600; cursor:pointer; border:none; }
.btn-admin-red { background:var(--voit-red); color:#fff; }
.btn-admin-dark { background:var(--voit-black); color:#fff; }
.btn-admin-yellow { background:var(--voit-yellow); color:var(--voit-black); }
.btn-admin-gray { background:var(--voit-gray); color:var(--voit-text); border:1px solid var(--voit-border); }

/* ---- LOGIN ---- */
.login-wrap { min-height:100vh; background:linear-gradient(135deg,#0a0a0a,#1c1c1c,#2a2a2a); display:flex; align-items:center; justify-content:center; }
.login-box { background:#fff; border-radius:10px; padding:40px; width:100%; max-width:400px; }
.login-logo { text-align:center; margin-bottom:6px; }
.login-logo img { height:48px; }
.login-sub { text-align:center; font-size:13px; color:var(--voit-muted); margin-bottom:28px; }
.login-box .btn-yellow { width:100%; padding:13px; font-size:15px; font-weight:700; border:none; border-radius:4px; cursor:pointer; margin-top:6px; }

/* ---- SERVİS BAR ---- */
.service-bar { background:var(--voit-black); padding:22px 30px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.service-bar h3 { font-size:17px; font-weight:700; color:#fff; }
.service-bar p { font-size:13px; color:rgba(255,255,255,.6); margin-top:2px; }
.btn-white { background:#fff; color:var(--voit-black); border:none; border-radius:4px; padding:10px 20px; font-size:13px; font-weight:700; cursor:pointer; }
.btn-white:hover { background:var(--voit-yellow); }
.btn-outline-white2 { background:rgba(255,255,255,.1); color:#fff; border:1px solid rgba(255,255,255,.3); border-radius:4px; padding:10px 20px; font-size:13px; font-weight:600; cursor:pointer; }
.btn-outline-white2:hover { border-color:var(--voit-yellow); color:var(--voit-yellow); }

/* ---- SEO TAGS ---- */
.seo-bar { background:#1c1c1c; padding:14px 30px; }
.seo-bar-label { font-size:10px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; }
.seo-tags { display:flex; gap:8px; flex-wrap:wrap; }
.seo-tag { font-size:11px; color:rgba(255,255,255,.55); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:3px; padding:3px 10px; }

/* ---- FOOTER ---- */
.footer { background:var(--voit-black); padding:36px 30px 16px; }
.footer-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:24px; }
.footer-col h4 { font-size:12px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:.8px; margin-bottom:14px; }
.footer-col a { display:block; font-size:13px; color:rgba(255,255,255,.5); margin-bottom:8px; transition:color .2s; }
.footer-col a:hover { color:var(--voit-yellow); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:16px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.footer-bottom span { font-size:12px; color:rgba(255,255,255,.35); }
.footer-domains { color:var(--voit-yellow) !important; opacity:.85; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding:14px 30px; font-size:13px; color:var(--voit-muted); border-bottom:1px solid var(--voit-border); background:#fff; }
.breadcrumb a { color:var(--voit-muted); }
.breadcrumb a:hover { color:var(--voit-orange); }
.breadcrumb span { margin:0 6px; }

/* ---- ALERT ---- */
.alert { padding:12px 16px; border-radius:4px; font-size:14px; margin-bottom:16px; }
.alert-success { background:#dcfce7; color:#166534; border:1px solid #bbf7d0; }
.alert-error { background:#fee2e2; color:#991b1b; border:1px solid #fca5a5; }

/* ---- RESPONSİVE ---- */
@media(max-width:900px) {
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .stat-cards { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
    .product-detail { grid-template-columns:1fr; }
    .admin-sidebar { display:none; }
    .admin-main { margin-left:0; }
    .products-grid { grid-template-columns:repeat(2,1fr); }
    .one-cikan-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media(max-width:600px) {
    .navbar-menu { display:none; }
    .hero h1 { font-size:24px; }
    .form-row { grid-template-columns:1fr; }
    .stat-cards { grid-template-columns:1fr 1fr; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .trust-bar { gap:14px; }
    .products-grid { grid-template-columns:1fr; }
}

/* ---- ÖNE ÇIKAN ÜRÜNLER - 4 SÜTUN ---- */
@media(max-width:1024px) {
}
@media(max-width:500px) {
}

/* Kategori grid responsive */
@media(max-width:1024px) {
    .kat-grid-6 { grid-template-columns: repeat(3,1fr) !important; }
}
@media(max-width:600px) {
    .kat-grid-6 { grid-template-columns: repeat(2,1fr) !important; }
    .one-cikan-grid { grid-template-columns: repeat(2,1fr) !important; }
}

@media(max-width:480px) {
    .one-cikan-grid { grid-template-columns: 1fr !important; }
}
