/* ===========================================================
   INDEX-PAGE.CSS — sadece index.html'e özel stiller
   (slider, ticker, hero, vb. — diğer sayfalarda kullanılmaz)
=========================================================== */

.container { max-width:1280px; margin:0 auto; padding:0 24px; }

.pill-link {
    display:inline-flex; align-items:center; gap:6px;
    background:var(--bg); border:1px solid var(--border);
    color:var(--primary); font-size:12.5px; font-weight:700;
    padding:7px 18px; border-radius:30px; letter-spacing:.3px;
    transition:all .2s ease;
}

.pill-link:hover { background:var(--primary); color:#fff; border-color:var(--primary); }

@media (max-width:900px){
    .nav-links, .header-search, .category-nav { display:none; }
    .hamburger { display:flex; }
    .nav-container{ padding:14px 16px; }
}

.hero-wrap { 
    background:linear-gradient(180deg,var(--bg-pale) 0%, #ffffff 100%); 
    border-bottom:1px solid var(--border); 
    overflow:hidden; 
}

.slider-container { 
    width:100%; 
    max-width:100%; 
    margin:0;       
    padding:0;      
    position:relative; 
    overflow:hidden; 
}

.slider-track { 
    position:relative; 
    width:100%; 
    height:500px; 
    overflow:hidden; 
}

.slide {
    position:absolute; inset:0; opacity:0; visibility:hidden;
    transition:opacity .6s ease; display:flex; align-items:center; justify-content:center;
    gap:40px; padding:48px 24px;
}

.slide.active { opacity:1; visibility:visible; z-index:1; }

.slide-copy { flex:1; min-width:0; max-width:550px; }

.slide-eyebrow {
    display:inline-flex; align-items:center; gap:8px; background:var(--primary-soft);
    color:var(--primary); font-size:12.5px; font-weight:700; letter-spacing:.6px;
    padding:7px 16px; border-radius:30px; margin-bottom:20px; text-transform:uppercase;
}

.slide-title { font-size:2.6rem; font-weight:800; letter-spacing:-1px; line-height:1.15; margin-bottom:18px; }

.slide-title span { color:var(--primary); }

.slide-desc { font-size:15.5px; color:var(--text-muted); max-width:440px; margin-bottom:30px; }

.slide-actions { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }

.btn-primary {
    background:var(--primary); color:#fff; border:none; padding:14px 30px; border-radius:30px;
    font-weight:700; font-size:14px; cursor:pointer; box-shadow:var(--shadow-pill);
    display:inline-flex; align-items:center; gap:10px; transition:all .2s ease;
}

.btn-primary:hover { background:var(--primary-dark); transform:translateY(-2px); }

.guarantee-tag { display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; color:var(--text-muted); }

.guarantee-tag i { color:var(--primary); }

.slide-visual { flex:1; min-width:0; max-width:550px; position:relative; display:flex; align-items:center; justify-content:center; height:340px; }

.deco-dots { position:absolute; top:-10px; left:-10px; opacity:.6; }

.deco-squares { position:absolute; bottom:0; right:0; display:grid; grid-template-columns:repeat(2,16px); gap:8px; opacity:.5; }

.deco-squares span { width:16px; height:16px; background:var(--primary); border-radius:4px; }

.slide.is-image {
    padding:0;
    display:block;
    left:0;
    right:0;
    width:100%;
    height:100%;
}

.slide.is-image .image-banner {
    width:100%;
    height:100%;
    border-radius:0;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    background:var(--bg-pale);
}

.slide.is-image .image-banner img {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover; 
    object-position:center;
}

.slide.is-image .image-banner.img-missing { display:flex; align-items:center; justify-content:center; text-align:center; }

.slide.is-image .image-banner.img-missing img { display:none; }

.slide.is-image .image-banner.img-missing::after {
    content: attr(data-placeholder);
    color:var(--text-muted); font-size:14px; font-weight:600; max-width:320px; padding:0 20px;
}

.nav-arrow {
    cursor:pointer; position:absolute; top:50%; transform:translateY(-50%);
    width:45px; height:45px; display:flex; align-items:center; justify-content:center;
    color:var(--primary); font-size:16px; background:rgba(255,255,255,0.85); border:1px solid var(--border);
    border-radius:50%; z-index:5; box-shadow:var(--shadow-card); transition:all .2s ease;
}

.nav-arrow:hover { background-color:var(--primary); color:#fff; border-color:var(--primary); }

.next-arrow{ right:30px; }

.prev-arrow{ left:30px; }

.dots-container { position:absolute; bottom:20px; width:100%; text-align:center; z-index:5; }

.dot { cursor:pointer; height:7px; width:7px; margin:0 4px; background-color:rgba(255,255,255,0.6); border-radius:50%; display:inline-block; transition:all .3s ease; box-shadow:0 1px 3px rgba(0,0,0,0.2);}

.active-dot { background-color:var(--primary); width:24px; border-radius:4px; box-shadow:none;}

@media (max-width:900px){
    
    .slider-track { height: auto; min-height: unset; max-height: unset; overflow: visible; }

    
    .slide { position: relative; inset: unset; opacity: 1; visibility: visible; display: none; transition: none; }
    .slide.active { display: flex; }

    
    .slide:not(.is-image) { flex-direction:column; text-align:center; padding:32px 20px 60px; gap:20px; }
    .slide-title { font-size:1.9rem; }
    .slide-desc { margin-left:auto; margin-right:auto; }
    .slide-actions { justify-content:center; }
    .slide-visual { height:220px; order:-1; }

    
    .slide.is-image { display: none; padding: 0; position: relative; }
    .slide.is-image.active { display: block; }
    .slide.is-image .image-banner {
        display: block;
        width: 100%;
        background: #05101f;
    }
    .slide.is-image .image-banner picture { display: block; width: 100%; }
    .slide.is-image .image-banner picture img {
        display: block;
        width: 100%;
        height: auto;
        position: static;
        object-fit: unset;
    }

    
    .nav-arrow { width:36px; height:36px; font-size:14px; }
    .next-arrow { right:10px; }
    .prev-arrow { left:10px; }
    .dots-container { bottom: 10px; }
    .dot { height:6px; width:6px; }
}

.section-header {
    max-width:1280px; margin:64px auto 26px; padding:0 24px;
    display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;
}

.section-header-left { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }

.section-title { font-size:1.7rem; font-weight:800; letter-spacing:-.4px; }

.section-title span { color:var(--primary); }

.section-sub { font-size:13.5px; color:var(--text-muted); margin-top:4px; }

.section-header-right { display:flex; align-items:center; gap:10px; }

.row-arrow {
    width:34px; height:34px; border-radius:50%; border:1px solid var(--border); background:#fff;
    color:var(--primary); display:flex; align-items:center; justify-content:center; cursor:pointer;
    transition:all .2s ease; font-size:12px;
}

.row-arrow:hover { background:var(--primary); color:#fff; border-color:var(--primary); }

.view-all { color:var(--text-muted); font-weight:600; font-size:13px; white-space:nowrap; transition:color .2s ease; }

.view-all:hover { color:var(--primary); }

.product-row-wrap { max-width:1280px; margin:0 auto 30px; padding:0 24px; }

.product-row {
    display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:10px;
    scrollbar-width:thin; scrollbar-color:var(--border) transparent;
}

.product-row::-webkit-scrollbar{ height:6px; }

.product-row::-webkit-scrollbar-thumb{ background:var(--border); border-radius:10px; }

.product-card {
    background-color:var(--bg); border:1px solid var(--border); border-radius:var(--radius);
    overflow:hidden; position:relative; box-shadow:var(--shadow-card);
    transition:transform .25s ease, box-shadow .25s ease;
    display:flex; flex-direction:column; flex:0 0 250px; scroll-snap-align:start;
}

.badge.stock { background:#9a6b00; }

.product-info { padding:18px; flex-grow:1; display:flex; flex-direction:column; }

.stars { color:var(--accent-gold); font-size:12px; margin-bottom:9px; }

.product-title { font-size:14.5px; font-weight:600; margin-bottom:12px; color:var(--text); line-height:1.4; min-height:40px; }

.price-container { display:flex; align-items:center; gap:9px; margin-bottom:16px; flex-wrap:wrap; }

.old-price { color:var(--text-muted); text-decoration:line-through; font-size:13px; }

.new-price { color:var(--text); font-size:18px; font-weight:700; }

.btn-cart {
    margin-top:auto; width:100%; background-color:transparent; color:var(--primary);
    border:1px solid var(--primary); padding:11px; border-radius:7px; font-weight:600;
    font-size:12.5px; cursor:pointer; transition:all .2s ease; letter-spacing:.3px;
}

@media (max-width:600px){
    .section-header{ margin:44px auto 18px; padding:0 16px; }
    .section-title{ font-size:1.35rem; }
    .product-row-wrap{ padding:0 16px; }
    .product-card{ flex:0 0 165px; }
    .product-info{ padding:13px; }
    .product-title{ font-size:12.5px; min-height:34px; }
    .new-price{ font-size:15px; }
    .row-arrow{ display:none; }
}

.spotlight-grid {
    max-width:1280px; margin:70px auto; padding:0 24px;
    display:grid; grid-template-columns:1fr 1fr; gap:24px;
}

.spotlight-card {
    border-radius:var(--radius-lg); padding:40px; display:flex; flex-direction:column; justify-content:center;
    min-height:230px; position:relative; overflow:hidden;
}

.spotlight-card.dark { background:linear-gradient(135deg,var(--primary-dark),var(--primary)); color:#fff; }

.spotlight-card.light { background:var(--bg-pale); color:var(--text); border:1px solid var(--border); }

.spotlight-eyebrow { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; opacity:.85; margin-bottom:10px; }

.spotlight-card h3 { font-size:1.5rem; font-weight:800; margin-bottom:10px; max-width:320px; }

.spotlight-card p { font-size:13.5px; max-width:300px; margin-bottom:22px; opacity:.9; }

.spotlight-card.dark p { color:rgba(255,255,255,0.85); }

.spotlight-card.light p { color:var(--text-muted); }

.spotlight-cta {
    display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:13px;
    padding:11px 22px; border-radius:30px; width:fit-content;
}

.spotlight-card.dark .spotlight-cta { background:#fff; color:var(--primary-dark); }

.spotlight-card.light .spotlight-cta { background:var(--primary); color:#fff; }

.spotlight-icon { position:absolute; right:-20px; bottom:-20px; font-size:140px; opacity:.12; }

.spotlight-card.light .spotlight-icon{ color:var(--primary); }

.spotlight-card.dark .spotlight-icon{ color:#fff; }

@media (max-width:800px){
    .spotlight-grid{ grid-template-columns:1fr; margin:50px auto; }
}

.features-bar { background-color:var(--bg-soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:50px 24px; }

.features-container { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:30px; text-align:center; }

.feature-item i { font-size:26px; color:var(--primary); margin-bottom:16px; }

.feature-item h4 { font-size:16px; margin-bottom:8px; font-weight:700; }

.feature-item p { font-size:13.5px; color:var(--text-muted); line-height:1.6; }

.stats-section { padding:70px 24px; text-align:center; }

.stats-label { display:inline-flex; align-items:center; gap:8px; color:var(--text-muted); font-size:12.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:34px; }

.stats-label::before, .stats-label::after { content:""; width:40px; height:1px; background:var(--border); }

.stats-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }

.stat-item { padding:20px; }

.stat-item i { font-size:24px; color:var(--primary); margin-bottom:14px; }

.stat-number { font-size:2.1rem; font-weight:800; color:var(--text); letter-spacing:-1px; }

.stat-caption { font-size:13px; color:var(--text-muted); margin-top:6px; }

@media (max-width:800px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } }

.location-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; color:#fff; }

.location-inner .addr { display:flex; align-items:center; gap:10px; font-size:13.5px; font-weight:500; }

.btn-ghost-white {
    display:inline-flex; align-items:center; gap:8px; background:transparent; color:#fff;
    border:1.5px solid rgba(255,255,255,0.6); padding:9px 18px; border-radius:30px;
    font-size:12.5px; font-weight:700; transition:all .2s ease;
}

.btn-ghost-white:hover { background:#fff; color:var(--primary); border-color:#fff; }

footer.site-footer { padding:64px 24px 28px; max-width:1280px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; }

.footer-col h3 { font-size:13.5px; margin-bottom:20px; color:var(--text); text-transform:uppercase; letter-spacing:.8px; }

.footer-col p { color:var(--text-muted); font-size:13.5px; margin-bottom:12px; display:flex; align-items:center; gap:8px; }

.footer-col p i { color:var(--primary); }

.footer-col ul li { margin-bottom:11px; }

.footer-col ul li a { color:var(--text-muted); font-size:13.5px; transition:color .2s ease; }

.social-row { display:flex; gap:10px; margin-top:18px; }

.social-row a {
    width:36px; height:36px; border-radius:50%; background:#fff; border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center; color:var(--primary); font-size:14px;
    transition:all .2s ease;
}

.footer-contact-bar {
    max-width:1280px; margin:0 auto 0; padding:0 24px 40px;
    display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border);
    border-radius:var(--radius); overflow:hidden; border:1px solid var(--border);
}

.fcb-item { background:#fff; padding:18px 20px; display:flex; align-items:center; gap:12px; font-size:13px; font-weight:600; color:var(--text); }

.fcb-item i { color:var(--primary); font-size:16px; }

.fcb-item:hover { background:var(--bg-pale); cursor:pointer; }

.payment-icons { display:flex; align-items:center; gap:14px; color:var(--text-muted); font-size:22px; }

.payment-icons .ssl-tag { display:flex; align-items:center; gap:6px; font-size:11.5px; font-weight:600; border-left:1px solid var(--border); padding-left:14px; }

.payment-icons .ssl-tag i { font-size:15px; color:var(--primary); }

@media (max-width:900px){
    footer.site-footer { grid-template-columns:1fr 1fr; }
    .footer-contact-bar { grid-template-columns:1fr 1fr; }
}

@media (max-width:600px){
    footer.site-footer { grid-template-columns:1fr; text-align:center; padding:50px 20px 10px; gap:32px; }
    .footer-col p { justify-content:center; }
    .social-row { justify-content:center; }
    .footer-contact-bar { grid-template-columns:1fr; padding:0 16px 30px; }
    .fcb-item { justify-content:center; }
    .copyright-inner { flex-direction:column; text-align:center; }
    .location-inner { justify-content:center; text-align:center; }
}

.whatsapp-float {
    position:fixed; width:54px; height:54px; bottom:24px; right:24px; background-color:#25d366;
    color:#fff; border-radius:50%; text-align:center; font-size:26px; box-shadow:0 6px 16px rgba(0,0,0,0.3);
    z-index:1000; display:flex; align-items:center; justify-content:center; transition:transform .2s ease;
}