/* --- style.css --- */

/* 1. DEĞİŞKENLER & GENEL AYARLAR */
:root { 
    --primary-gold: #d4af37;
    --primary-dark: #1a1a1a;
    --bg-nude: #fdf8f5;
    --bg-light: #f8f9fa;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #eeeeee;
    --white: #ffffff;
}

body { font-family: 'Inter', sans-serif; background-color: var(--white); overflow-x: hidden; padding-bottom: 60px; color: var(--text-main); }

/* 2. TOPBAR */
.topbar { background-color: var(--bg-light); font-size: 0.8rem; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.topbar a { color: var(--text-muted); text-decoration: none; margin-left: 15px; transition: 0.3s; }
.topbar a:hover { color: var(--primary-gold); }

/* 3. NAVBAR & ARAMA */
.navbar { min-height: 90px; border-bottom: 1px solid rgba(0,0,0,0.05); background: var(--white); }
.navbar-brand {
    padding: 0; /* Bootstrap'in varsayılan padding'ini sıfırla */
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; /* Sabit yükseklik veriyoruz, genişlik otomatik ayarlanır */
    width: auto;  /* Orantıyı korur */
    object-fit: contain; /* Görseli bozmadan sığdırır */
    max-width: 250px; /* Çok aşırı geniş logoları sınırlar */
}
.nav-link { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; margin: 0 5px; color: var(--primary-dark) !important; }
.search-container { position: relative; margin-left: 15px; }
.search-input { border-radius: 50px; border: 1px solid var(--border-color); padding: 5px 15px 5px 35px; font-size: 0.9rem; transition: 0.3s; width: 140px; }
.search-input:focus { width: 200px; outline: none; border-color: var(--primary-gold); box-shadow: none; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #999; font-size: 0.8rem; }

/* 4. HOVER MENU & İKONLAR */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-menu { display: block; opacity: 0; visibility: hidden; transition: all 0.3s ease; transform: translateY(10px); border-radius: 0; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
}
.nav-icons a { color: var(--primary-dark); margin-left: 18px; font-size: 1.1rem; position: relative; transition: 0.3s; }
.nav-icons a:hover { color: var(--primary-gold); }

/* 5. HERO SLIDER */
.hero-slider .slide-item { height: 600px; position: relative; background-size: cover; background-position: center; }
.slide-content { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); color: var(--white); z-index: 2; max-width: 600px; }
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.3); }
.slick-prev, .slick-next { z-index: 10; width: 45px; height: 45px; background: rgba(255,255,255,0.2) !important; border-radius: 50%; transition: 0.3s; border: none; }
.slick-prev:hover, .slick-next:hover { background: var(--primary-gold) !important; }
.slick-prev { left: 30px; }
.slick-next { right: 30px; }

/* 6. INFO BANNER */
.info-banner { padding: 40px 0; border-bottom: 1px solid var(--border-color); }
.info-box i { font-size: 2rem; color: var(--primary-gold); margin-bottom: 15px; }
.info-box h6 { font-weight: 700; margin-bottom: 5px; }
.info-box p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* 7. KATEGORİ ALANI */
.category-card { text-align: center; display: block; text-decoration: none; transition: 0.3s; }
.category-card:hover { transform: translateY(-5px); }
.category-img-wrapper { width: 130px; height: 130px; border-radius: 50%; overflow: hidden; margin: 0 auto 15px; border: 3px solid transparent; transition: 0.3s; position: relative; }
.category-card:hover .category-img-wrapper { border-color: var(--primary-gold); }
.category-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.category-card:hover img { transform: scale(1.1); }
.category-title { color: var(--primary-dark); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* 8. ÜRÜN KARTLARI (GENEL) */
.product-card { border: none; transition: 0.4s; position: relative; overflow: hidden; background: var(--white); padding: 10px; border-radius: 15px; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.product-img-wrapper { position: relative; background: #f9f9f9; border-radius: 10px; overflow: hidden; height: 320px; display: flex; align-items: center; justify-content: center; }
.product-card img { transition: 0.5s; width: 100%; height: 100%; object-fit: cover; }
.product-card:hover img { transform: scale(1.08); }
.product-badge { position: absolute; top: 15px; left: 15px; background: var(--primary-dark); color: var(--white); padding: 5px 12px; font-size: 0.7rem; font-weight: bold; border-radius: 50px; z-index: 2; }
.btn-wishlist { position: absolute; top: 15px; right: 15px; background: #fff; border: none; border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; z-index: 5; transition: 0.3s; cursor: pointer; color: #ccc; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.btn-wishlist:hover { color: red; transform: scale(1.1); }
.btn-add-cart { background: var(--primary-dark); color: var(--white); border-radius: 50px; border: none; padding: 10px 20px; font-size: 0.8rem; width: 100%; transition: 0.3s; margin-top: 15px; }
.btn-add-cart:hover { background: var(--primary-gold); }
.price-text { color: var(--primary-gold); font-size: 1.1rem; font-weight: 700; }

/* 9. KAMPANYA ALANI */
.promo-section { background-color: var(--bg-nude); border-radius: 20px; padding: 50px; margin-top: 50px; position: relative; overflow: hidden; }
.countdown-timer span { background: var(--white); padding: 12px; border-radius: 8px; font-size: 1.3rem; font-weight: bold; min-width: 60px; display: inline-block; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.promo-img { transition: transform 0.5s ease; max-height: 400px; object-fit: contain; }

/* 10. ÖNCESİ / SONRASI */
.ba-section { background-color: var(--white); padding: 80px 0; }
.ba-card { position: relative; border-radius: 15px; overflow: hidden; }
.ba-card img { width: 100%; height: auto; display: block; }
.ba-badge { position: absolute; top: 20px; left: 20px; background: rgba(0,0,0,0.7); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; }

/* 11. MÜŞTERİ YORUMLARI */
.testimonial-section { background-color: var(--bg-light); padding: 80px 0; margin-top: 60px; }
.testimonial-card { background: var(--white); padding: 40px; border-radius: 15px; margin: 15px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.testimonial-card i { color: var(--primary-gold); font-size: 1.5rem; margin-bottom: 20px; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; }
.user-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; }

/* 12. BLOG */
.blog-card { border: none; transition: 0.3s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-img { height: 250px; object-fit: cover; border-radius: 15px; margin-bottom: 20px; width: 100%; }
.blog-date { font-size: 0.75rem; color: var(--primary-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.blog-title { font-weight: 700; font-size: 1.2rem; margin: 10px 0; color: var(--primary-dark); }
.blog-link { color: var(--primary-dark); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--primary-gold); padding-bottom: 2px; transition: 0.3s; }
.blog-link:hover { color: var(--primary-gold); }

/* 13. MOBİL ALT MENÜ */
.mobile-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-color); z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
.mobile-nav-item { text-align: center; color: var(--text-muted); text-decoration: none; font-size: 0.7rem; flex: 1; }
.mobile-nav-item i { font-size: 1.2rem; display: block; margin-bottom: 2px; }
.mobile-nav-item.active { color: var(--primary-gold); }
@media (min-width: 992px) { .mobile-bottom-nav { display: none; } }

/* 14. FOOTER */
footer { background-color: #fcfcfc; border-top: 1px solid var(--border-color); padding: 60px 0 0; margin-top: 80px; }
.footer-title { font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 20px; color: var(--primary-dark); }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.3s; line-height: 2.2; }
.footer-links a:hover { color: var(--primary-gold); }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--white); border: 1px solid var(--border-color); color: var(--primary-dark); border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.social-icons a:hover { background: var(--primary-gold); color: var(--white); border-color: var(--primary-gold); }
.footer-bottom { border-top: 1px solid var(--border-color); margin-top: 40px; padding: 25px 0; font-size: 0.85rem; color: var(--text-muted); }

/* 15. İLETİŞİM SAYFASI STİLLERİ (BURAYA EKLENDİ) */
.contact-box { background-color: #fff; border: 1px solid var(--border-color); padding: 25px; border-radius: 15px; display: flex; align-items: center; margin-bottom: 20px; transition: all 0.3s ease; }
.contact-box:hover { border-color: var(--primary-gold); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-icon { width: 60px; height: 60px; background-color: var(--bg-nude); color: var(--primary-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-right: 20px; flex-shrink: 0; }
.contact-title { font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; font-size: 1.1rem; }
.contact-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.contact-text a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-weight: 500; }
.contact-text a:hover { color: var(--primary-gold); }
.contact-form-wrapper { background-color: var(--bg-light); padding: 40px; border-radius: 20px; height: 100%; }
.form-control, .form-select { border-radius: 12px; padding: 12px 15px; border: 1px solid var(--border-color); font-size: 0.95rem; background-color: #fff; }
.form-control:focus, .form-select:focus { box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); border-color: var(--primary-gold); }
.btn-send { background-color: var(--primary-dark); color: #fff; padding: 14px 30px; border-radius: 50px; border: none; font-weight: 700; letter-spacing: 1px; transition: 0.3s; width: 100%; text-transform: uppercase; font-size: 0.9rem; }
.btn-send:hover { background-color: var(--primary-gold); color: #fff; transform: translateY(-2px); }
.map-container { border-radius: 20px; overflow: hidden; height: 300px; border: 1px solid var(--border-color); margin-top: 20px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* 16. RESPONSIVE / MOBİL DÜZELTMELER */
@media (max-width: 768px) {
    /* Mobilde Slider Okları GİZLENSİN */
    .slick-prev, .slick-next { display: none !important; }
    
    .hero-slider .slide-item { height: 450px; } 
    .slide-content h1 { font-size: 2.2rem; } 
    .slide-content { left: 5%; width: 90%; text-align: center; } 
    
    .category-img-wrapper { width: 90px; height: 90px; }
    .category-title { font-size: 0.8rem; }
    
    .info-banner .col-4 { padding: 0 5px; }

    /* MOBİL ÜRÜN KARTI (KARE) DÜZENLEMESİ */
    .product-img-wrapper { 
        height: 180px; /* Mobilde kareye yakın daha kısa görsel */
    }
    .product-card {
        padding: 5px; /* Mobilde iç boşluğu azalt */
    }
    .product-card h6 {
        font-size: 0.9rem; /* Başlığı küçült */
    }
    .btn-add-cart-small {
        padding: 6px;
        font-size: 0.75rem;
    }
    .logo-img {
        height: 40px; 
    }
}

  .error-section {
            /* Header ve Footer arasında kalan alanı doldurması için */
            min-height: 70vh; 
            display: flex;
            align-items: center;
            background-color: var(--bg-nude); /* Markanın açık nude rengi */
            padding: 60px 0;
        }

        .error-code {
            /* Devasa 404 yazısı */
            font-size: 12rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            
            /* Sadece dış hat (outline) efekti */
            color: transparent;
            -webkit-text-stroke: 3px var(--primary-gold);
            opacity: 0.6;
            
            /* Hafif bir gölge ile derinlik */
            text-shadow: 5px 5px 10px rgba(212, 175, 55, 0.1);
        }

        .error-title {
            font-weight: 800;
            color: var(--primary-dark);
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .error-text {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto 40px; /* Ortalamak için */
        }

        /* Buton Grubu */
        .btn-group-gap {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn-primary-gold {
            background-color: var(--primary-dark);
            color: #fff;
            padding: 12px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            border: 2px solid var(--primary-dark);
        }
        .btn-primary-gold:hover {
            background-color: var(--primary-gold);
            border-color: var(--primary-gold);
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-outline-gold {
            background-color: transparent;
            color: var(--primary-dark);
            padding: 12px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            border: 2px solid var(--primary-dark);
        }
        .btn-outline-gold:hover {
            background-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Mobil Düzenleme */
        @media (max-width: 768px) {
            .error-code { font-size: 8rem; -webkit-text-stroke-width: 2px; }
            .error-title { font-size: 1.8rem; }
            .btn-group-gap { flex-direction: column; gap: 10px; }
            .btn-primary-gold, .btn-outline-gold { width: 100%; }
        }


/* kategori sayfası */

 .shop-toolbar {
            background-color: var(--bg-light);
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .sort-select {
            border: 1px solid var(--border-color);
            border-radius: 50px;
            padding: 5px 30px 5px 15px;
            font-size: 0.9rem;
            background-color: #fff;
            cursor: pointer;
        }
        .sort-select:focus { border-color: var(--primary-gold); box-shadow: none; }

        /* Yükleniyor Animasyonu */
        .loading-spinner {
            display: none; /* JS ile açılıp kapanacak */
            justify-content: center;
            padding: 20px 0;
            width: 100%;
        }
        
        /* Mobilde kare görünüm */
        @media (max-width: 768px) {
            .product-img-wrapper { height: 180px; }
            .product-card { padding: 5px; }
            .product-card h6 { font-size: 0.85rem; }
            .price-text { font-size: 0.9rem; }
        }

/* blog sayfası */

 /* Blog Filtre Butonları */
        .blog-filter-btn {
            background-color: #fff;
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: 0.3s;
            cursor: pointer;
            margin: 0 5px 10px;
        }
        .blog-filter-btn:hover, .blog-filter-btn.active {
            background-color: var(--primary-dark);
            color: #fff;
            border-color: var(--primary-dark);
        }

        /* Blog Kartı Tasarımı */
        .blog-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%; /* Kartları eşit boyda tutar */
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-color: var(--primary-gold);
        }
        
        .blog-img-wrapper {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        .blog-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .blog-card:hover .blog-img-wrapper img {
            transform: scale(1.05);
        }

        /* Kategori Etiketi (Resmin üzerinde) */
        .blog-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #fff;
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 4px;
            text-transform: uppercase;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .blog-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-meta {
            font-size: 0.8rem;
            color: #999;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .blog-meta i { color: var(--primary-gold); }

        .blog-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
            line-height: 1.4;
            transition: 0.3s;
        }
        .blog-card:hover .blog-title { color: var(--primary-gold); }

        .blog-excerpt {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* 3 satırla sınırla */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-link {
            margin-top: auto; /* En alta it */
            font-weight: 600;
            color: var(--primary-dark);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: 0.3s;
        }
        .read-more-link i { margin-left: 8px; transition: 0.3s; }
        .read-more-link:hover { color: var(--primary-gold); }
        .read-more-link:hover i { margin-left: 12px; }

        /* Yükleniyor Animasyonu */
        .loading-spinner {
            display: none;
            justify-content: center;
            padding: 30px 0;
            width: 100%;
        }

 /* --- BLOG DETAY ÖZEL CSS --- */

        /* 1. Başlık ve Meta */
        .article-header h1 {
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.3;
        }
        .article-meta {
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        .article-meta span { margin-right: 15px; }
        .article-meta i { color: var(--primary-gold); margin-right: 5px; }

        /* 2. İçerik Alanı */
        .article-content {
            font-size: 1.1rem; /* Okuma kolaylığı için biraz büyük */
            line-height: 1.8;
            color: #444;
        }
        .article-content p { margin-bottom: 20px; }
        .article-content h2 {
            font-weight: 700;
            color: var(--primary-dark);
            margin-top: 40px;
            margin-bottom: 20px;
        }
        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 30px 0;
        }
        
        /* Alıntı Kutusu */
        .article-quote {
            background-color: var(--bg-nude);
            border-left: 4px solid var(--primary-gold);
            padding: 20px 25px;
            font-style: italic;
            font-weight: 500;
            color: var(--primary-dark);
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }

        /* 3. Sticky Sidebar (Ürün Kartı ve Yazar) */
        .sidebar-sticky {
            position: sticky;
            top: 110px; /* Header yüksekliğine göre ayar */
        }
        .sidebar-widget {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
        }
        .widget-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }

        /* Yazar Kutusu */
        .author-box { display: flex; align-items: center; gap: 15px; }
        .author-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
        .author-info h6 { font-weight: 700; margin: 0; }
        .author-info span { font-size: 0.85rem; color: var(--text-muted); }

        /* Paylaş Butonları */
        .share-buttons a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bg-light);
            color: var(--primary-dark);
            margin-right: 10px;
            transition: 0.3s;
            text-decoration: none;
        }
        .share-buttons a:hover {
            background: var(--primary-gold);
            color: #fff;
        }

        /* İçerik İçi Ürün Kutusu (Native Ads gibi) */
        
        
        /* Mobil Ayarı */
        @media (max-width: 992px) {
            .sidebar-sticky { position: static; } /* Mobilde sticky olmasın */
        }

/* sözleşmeler sayfası */

        /* İçerik Kutusu */
        .legal-content-box {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 60px; /* Geniş iç boşluk */
            box-shadow: 0 5px 20px rgba(0,0,0,0.02);
        }

        /* Tipografi */
        .legal-text {
            color: #444; /* Göz yormayan koyu gri */
            line-height: 1.9; /* Satır aralığı */
            font-size: 1rem;
        }

        .legal-text h3, .legal-text h4 {
            font-weight: 800;
            color: var(--primary-dark);
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .legal-text p {
            margin-bottom: 20px;
        }

        .legal-text ul, .legal-text ol {
            margin-bottom: 30px;
            padding-left: 20px;
        }

        .legal-text li {
            margin-bottom: 10px;
        }

        /* Vurgulu Alanlar */
        .legal-highlight {
            background-color: var(--bg-light);
            border-left: 4px solid var(--primary-gold);
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
        }

        /* Son Güncelleme Tarihi */
        .last-updated {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            display: inline-block;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 5px;
        }

        /* Mobil Ayar */
        @media (max-width: 768px) {
            .legal-content-box { padding: 30px 20px; }
        }

   /* --- ARAMA SAYFASI ÖZEL STİLLERİ --- */

        /* 1. Arama Tekrar Kutusu */
        .refine-search-container {
            background-color: var(--bg-nude);
            padding: 40px 20px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .big-search-form {
            position: relative;
            max-width: 600px;
            margin: 20px auto 0;
        }

        .big-search-input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border-radius: 50px;
            border: 2px solid transparent;
            font-size: 1rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .big-search-input:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
        }

        .big-search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .big-search-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            background-color: var(--primary-dark);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 0 25px;
            font-weight: 600;
            transition: 0.3s;
        }
        .big-search-btn:hover { background-color: var(--primary-gold); }

        /* 2. Sonuç Bilgisi ve Toolbar */
        .results-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
            margin-bottom: 30px;
        }

        .search-query-text {
            font-size: 1.2rem;
            color: var(--primary-dark);
        }
        .search-query-text span {
            font-weight: 800;
            font-style: italic;
            color: var(--primary-gold);
        }

        /* 3. Sonuç Bulunamadı (Empty State) Stili */
        .no-results-box {
            text-align: center;
            padding: 60px 20px;
        }
        .no-results-icon {
            font-size: 4rem;
            color: #eee;
            margin-bottom: 20px;
        }
        .no-results-title {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        /* Mobil Ayarlar (Kategori sayfasıyla uyumlu) */
        @media (max-width: 768px) {
            .results-toolbar { flex-direction: column; gap: 15px; align-items: flex-start; }
            .product-img-wrapper { height: 180px; }
            .product-card { padding: 5px; }
            .product-card h6 { font-size: 0.85rem; }
            .price-text { font-size: 0.9rem; }
        }


/* query order */
 /* 1. Arka Plan ve Bölüm Ayarı */
        .tracking-section {
            background-color: var(--bg-nude); /* Kutuyu öne çıkarmak için zemin rengi */
            min-height: 600px; /* Dikeyde ortalamak için */
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Arka plana silik dekoratif bir daire ekleyelim */
        .tracking-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: var(--primary-gold);
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }

        /* 2. Takip Kutusu (Card) */
        .tracking-box {
            background-color: #fff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 25px;
            padding: 60px 50px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05); /* Daha yumuşak ve geniş gölge */
            text-align: center;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out; /* Giriş animasyonu */
        }

        /* 3. İkon Animasyonu */
        .tracking-icon-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }
        
        .tracking-icon {
            width: 90px;
            height: 90px;
            background-color: #fff;
            color: var(--primary-gold);
            border: 2px solid var(--bg-nude);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
        }

        /* İkonun arkasında dönen/nefes alan halka */
        .tracking-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 1px solid var(--primary-gold);
            opacity: 0.3;
            animation: pulseRing 2s infinite;
        }

        /* 4. Modern Input Alanları (İkonlu) */
        .input-group-custom {
            position: relative;
            margin-bottom: 25px;
        }

        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.1rem;
            z-index: 2;
            transition: 0.3s;
        }

        .form-control-custom {
            width: 100%;
            padding: 16px 20px 16px 55px; /* İkon için soldan boşluk */
            border-radius: 50px;
            border: 1px solid var(--border-color);
            background-color: var(--bg-light);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-control-custom:focus {
            background-color: #fff;
            border-color: var(--primary-gold);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
            outline: none;
        }

        .form-control-custom:focus + .input-icon {
            color: var(--primary-gold); /* Focus olunca ikon rengi değişsin */
        }

        .btn-track {
            background-color: var(--primary-dark);
            color: #fff;
            padding: 16px 30px;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: 0.3s;
            margin-top: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .btn-track:hover {
            background-color: var(--primary-gold);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
        }

        /* Animasyon Keyframes */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulseRing {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.4); opacity: 0; }
        }

        /* Küçük Yardımcı Link */
        .help-link {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-decoration: none;
            border-bottom: 1px dotted var(--text-muted);
            transition: 0.3s;
        }
        .help-link:hover { color: var(--primary-gold); border-color: var(--primary-gold); }