/* Google Font + Font Awesome */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
/* Responsive düzenlemeler */
@import url('responsive.css');

:root {
    /* Soft tema renkleri */
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a; 
    --bg-body: #f8fafc; 
    --text-main: #0f172a;
    --text-muted: #475569;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 10px 40px -8px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 20px 50px -8px rgba(15, 23, 42, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- STICKY FOOTER --- */
html, body {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content-wrapper {
    flex: 1 0 auto; /* İçeriği esnet, footer'ı aşağı it */
}
premium-footer {
    flex-shrink: 0; /* Footer küçülmesin */
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- NAVBAR (Glass + Soft) --- */
.navbar-custom {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.navbar-custom .navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-custom .navbar-brand i {
    -webkit-text-fill-color: var(--primary);
}

.navbar-custom .nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover {
    background: rgba(139, 92, 246, 0.08);
    color: var(--primary) !important;
}

.navbar-custom .nav-link .badge {
    background: var(--primary) !important;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.navbar-custom .dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem;
}

.navbar-custom .dropdown-item {
    border-radius: var(--radius-md);
    padding: 0.6rem 1.2rem;
    transition: var(--transition-smooth);
}

.navbar-custom .dropdown-item:hover {
    background: rgba(139, 92, 246, 0.06);
    color: var(--primary);
}


/* ==========================================================================
   --- YENİ LOGO VE MARKA YAZISI STİLLERİ ---
   ========================================================================== */

/* 1:1 Logo Görseli Boyutlandırmaları */
.navbar-brand-wrapper img,
.header-logo {
    width: 75px !important;
    height: 75px !important;
    object-fit: contain !important;
    border-radius: 8px;
}

.footer-logo-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 12px;
}

/* Navbar ve Footer içindeki hizalamalar */
.navbar-brand-wrapper, .footer-brand-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Appleege Yazı Stili */
.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 1.8rem;
    margin-right: 35px;
}

/* Açık renkli Navbar için koyu renk metin */
.navbar-custom .brand-text {
    color: #111; 
}

/* Koyu renkli Footer için beyaz metin */
.premium-footer .brand-text {
    color: #ffffff;
}

/* A harfi ve altındaki MAVİ DETAY (CSS ile simülasyon) */
.brand-letter-a {
    position: relative;
    display: inline-block;
    color: inherit; /* Üst elementin rengini alır */
}

.brand-letter-a::after {
    content: '';
    position: absolute;
    bottom: 4px; /* A harfinin sol bacağının hizasına indirir */
    left: 0;
    width: 60%; 
    height: 5px;
    background-color: #0056FF; /* Logodaki parlak mavi renk */
    border-radius: 2px;
    transform: skewX(-15deg); /* A harfinin eğimine uydurmak için */
    z-index: 1;
}

/* --- HERO (Soft Gradient) --- */
.hero-banner {
    background: linear-gradient(135deg, #eef2ff 0%, #f1f5f9 100%);
    border-radius: var(--radius-xl);
    padding: 4.5rem 4rem;
    color: var(--text-main);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
}

.hero-banner::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-banner .row {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-weight: 800;
    font-size: 3.2rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
    color: #1e1b4b;
}

.hero-banner p {
    font-weight: 400;
    color: var(--text-muted);
    max-width: 480px;
    font-size: 1.15rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-banner .btn-light {
    background: #ffffff;
    color: var(--primary);
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    font-weight: 600;
    transition: var(--transition-smooth);
    padding: 0.7rem 2.5rem;
}

.hero-banner .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
}

.hero-banner i {
    color: var(--primary);
    opacity: 0.2;
    transform: rotate(-10deg);
}


/* Kategori kartı - ikonsuz premium */
.category-card-link {
    text-decoration: none;
    display: inline-block;
    margin-right: 12px;
}

.category-card-new.premium-no-icon {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 24px 28px;
    min-width: 130px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

/* Hafif gradient hover arka planı */
.category-card-new.premium-no-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 0;
}

.category-card-new.premium-no-icon:hover::before {
    opacity: 0.08;
}

.category-card-new.premium-no-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

/* Kategori ismi */
.category-name-premium {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #1a1a2e;
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.category-card-new.premium-no-icon:hover .category-name-premium {
    color: #667eea;
}

/* Alt çizgi (underline) */
.category-underline {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    margin: 6px auto 0;
    transition: width 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-card-new.premium-no-icon:hover .category-underline {
    width: 40px;
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

/* Kategori scroll container - yatay kaydırma */
.category-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 4px 16px;
    scroll-behavior: smooth;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
}

.category-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.category-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.category-scroll-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 8px;
}

/* Navigasyon okları */
.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: #1a1a2e;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    background: #667eea;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ==========================================================================
   PREMIUM ÜRÜN KARTLARI (Yenilenmiş, Daha Belirgin ve Şık)
   ========================================================================== */

/* Kart Ana Kapsayıcı */
.product-card-new {
    background-color: #ffffff; /* Temiz beyaz arka plan ile belirginleştirildi */
    border-radius: 16px; /* Yumuşak, modern köşeler */
    padding: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanarak yukarı kalkma animasyonu */
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04); /* Çok hafif, zarif bir dış çerçeve */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Sayfadan ayrışmasını sağlayan kalıcı yumuşak gölge */
    overflow: hidden;
}

/* Hover (Üzerine Gelme) Durumu */
.product-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3); /* Markaya uygun hafif lila/mavi çerçeve parlaması */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Derinlik hissini artıran geniş gölge */
}

/* Kalp (Favori) Butonu - Şık Baloncuk Tasarımı */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px); /* Arka planı hafif bulanıklaştıran cam efekti */
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #a0a0a0;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wishlist-btn:hover {
    background: #ffffff;
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}


/* Ürün Görseli Kapsayıcısı - Stüdyo Fonu Efekti */
.product-image-wrapper {
    height: 190px; /* Tüm fotoğrafların aynı hizada durması için sabit yükseklik */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 10px; /* Fotoğraf köşelerini hafif yuvarlatır */
    background-color: #ffffff; /* Her ihtimale karşı temiz beyaz zemin */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Fotoğraf beyaz bile olsa sınırlarını belli eden çok ince, şık bir çizgi */
    overflow: hidden; /* Kutudan taşan kısımları kesip atar, düzeni korur */
    position: relative;
    transition: all 0.4s ease;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    /* 'contain' kullanarak fotoğrafın tamamının (kırpılmadan) kutuya sığmasını sağlıyoruz */
    object-fit: contain; 
    transition: transform 0.5s ease;
}

/* Ürün Kartının Üzerine Gelindiğinde (Hover) */
.product-card-new:hover .product-image-wrapper img {
    /* Sadece çok hafif, zarif bir yakınlaşma efekti */
    transform: scale(1.03); 
}

/* Kapsayıcının hover durumu - çerçeve rengi hafif belirginleşir */
.product-card-new:hover .product-image-wrapper {
    border-color: rgba(102, 126, 234, 0.2);
}

/* Ürün Başlığı */
.product-info-new {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-title-new {
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
    transition: color 0.3s ease;
}

.product-card-new:hover .product-title-new {
    color: #667eea; /* Üzerine gelince ürün adının premium tema rengine dönmesi */
}

/* Fiyat Alanı */
.product-price-new {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-top: auto;
}

/* Siyah Satın Al Butonu */
.btn-buy-now {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-buy-now:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* --- BUTONLAR (Soft & Modern) --- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--border-color);
    color: var(--text-main);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    transition: var(--transition-smooth);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.btn-success {
    background: linear-gradient(135deg, #34d399, #10b981);
    border: none;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
    transition: var(--transition-smooth);
    color: #fff;
}

.btn-success:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
    color: #fff;
}

.btn-light {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-light:hover {
    background: var(--bg-body);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* --- TABLOLAR (Soft) --- */
.table {
    border-collapse: separate;
    border-spacing: 0 12px;
    background: transparent;
}

.table thead th {
    border-bottom: none;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 1rem 0.8rem;
}

.table tbody tr {
    background: var(--card-bg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.table tbody tr:hover {
    box-shadow: var(--shadow-soft);
}

.table tbody td {
    border: none;
    vertical-align: middle;
    padding: 1rem 0.8rem;
}

.table tbody td:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.table tbody td:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* --- FORMLAR (Soft) --- */
.form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    background: #ffffff;
    transition: var(--transition-smooth);
    color: var(--text-main);
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* ==========================================================================
   --- PREMIUM FOOTER (Sleek & Ultra Modern) ---
   ========================================================================== */
.premium-footer {
    background: linear-gradient(145deg, #0f0d25 0%, #17143a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    color: #b4b2cd;
    font-size: 0.9rem;
}

.premium-footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #9491b4;
    line-height: 1.6;
    font-size: 0.88rem;
}

/* Sosyal Medya İkon Linkleri */
.footer-socials .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    color: #b4b2cd;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials .social-link:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    border-color: transparent;
}

/* Menü Linkleri ve Kayma Efektleri */
.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: #b4b2cd !important;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffffff !important;
    transform: translateX(6px);
}

/* E-Bülten Form Öğeleri */
.footer-newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
}

.footer-newsletter-form .form-control::placeholder {
    color: #6e6b91;
}

.footer-newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
    box-shadow: none;
    color: #ffffff;
}

.btn-newsletter {
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0 1.4rem;
    transition: var(--transition-smooth);
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

/* Çizgi ve Telif/Ödeme Bölümü */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 1;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    color: #7e7b9e;
}

.footer-bottom .copyright strong {
    color: #b4b2cd;
}

.payment-methods i, 
.payment-methods .logo-troy {
    color: #6e6b91;
    transition: var(--transition-smooth);
}

.payment-methods .logo-troy {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.payment-methods:hover i, 
.payment-methods:hover .logo-troy {
    color: #b4b2cd;
}

.badge-item {
    color: #9491b4;
    font-size: 0.85rem;
}
/* --- DETAY SAYFALARI (Soft) --- */
.product-detail img {
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-soft) !important;
}

.product-detail h1 {
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    padding: 1.2rem 1.5rem;
    color: var(--text-main);
}

.card {
    border: 1px solid rgba(139, 92, 246, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-banner {
        padding: 3rem 2rem;
        text-align: center;
    }

    .hero-banner h1 {
        font-size: 2.4rem;
    }

    .hero-banner p {
        margin: 1rem auto 2rem;
    }

    .hero-banner i {
        display: none;
    }
}

/* --- Premium ikon stilleri --- */
.icon-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Sepet miktar inputu --- */
.input-group .qty-input {
    max-width: 60px;
    text-align: center;
    border-left: 0;
    border-right: 0;
}
.input-group .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.input-group .btn-outline-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* --- Profil adres butonları --- */
.btn-outline-primary, .btn-outline-danger {
    border-radius: 50px;
    padding: 0.25rem 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-outline-danger:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

/* --- Kategori kartları --- */
.category-card i {
    transition: var(--transition-smooth);
}
.category-card:hover i {
    transform: scale(1.15) rotate(-5deg);
}

/* --- Toast Bildirimleri --- */
.toast-container .toast {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    font-weight: 500;
}
.toast .btn-close {
    filter: brightness(0) invert(1);
}

/* --- Profil Adres Butonları --- */
.btn-outline-primary, .btn-outline-danger {
    border-radius: 50px;
    padding: 0.25rem 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-outline-danger:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

/* --- Kategori Kartları İkonları --- */
.category-card i {
    transition: var(--transition-smooth);
}
.category-card:hover i {
    transform: scale(1.15) rotate(-5deg);
}

/* --- Sepet Miktar Inputu --- */
.input-group .qty-input {
    max-width: 60px;
    text-align: center;
    border-left: 0;
    border-right: 0;
}
.input-group .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.input-group .btn-outline-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* --- YENİ HERO BANNER (Animasyonlu Split-Layout) --- */
.new-hero-banner {
    /* Mevcut gradyanı koruduk ancak yerleşimi güncelledik */
    padding: 3rem 4rem; /* Daha iyi akış için padding ayarlandı */
    transition: var(--transition-smooth);
}

.new-hero-row {
    margin: 0;
}

.new-hero-text-col {
    color: var(--text-main);
}

.new-hero-small-top-line {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    /* Özel bir animasyon gecikmesi eklendi */
    opacity: 0;
    animation: fadeSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.new-hero-main-title {
    font-weight: 800;
    font-size: 3.8rem;
    letter-spacing: -1.8px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* Ana başlık animasyonu */
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.new-hero-body-text {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 2.5rem;
    /* Gövde metni animasyonu */
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.new-hero-button {
    /* Birincil gradyanı kullanıyor, hover'da özel ölçekleme animasyonu ekliyor */
    padding: 0.9rem 3.5rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.9);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    animation-delay: 1.2s;
}

.new-hero-image-col {
    padding: 0;
}

.new-hero-image-wrapper {
    position: relative;
    /* image_0.png'nin görsel belirginliğine uyması için görüntüyü biraz büyütün */
    transform: scale(1.1);
    opacity: 0;
    animation: scaleInFloating 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
    /* Yüzer efekt için temiz bir perspektif eklendi */
    perspective: 1000px;
}

.new-hero-image {
    max-width: 100%;
    height: auto;
    /* Orijinal simgeden arka plan müdahalesi olmamasını sağlayın */
    position: relative;
    z-index: 2;
    /* Premium yüzen rotasyon animasyonu eklendi */
    animation: premiumFloat 8s ease-in-out infinite;
}

/* Yeni Hero Arka Planı - rafine gradyan */
.new-hero-banner {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f5f8ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* --- Yeni Hero Animasyonları (Keyframes) --- */
@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleInFloating {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes premiumFloat {
    0% {
        transform: translateZ(0) translateY(0);
    }
    50% {
        transform: translateZ(50px) translateY(-20px);
    }
    100% {
        transform: translateZ(0) translateY(0);
    }
}

/* --- Yeni Hero İçin Responsive (Mobil Uyumluluk) --- */
@media (max-width: 992px) {
    .new-hero-banner {
        padding: 3rem 2rem;
        text-align: center;
    }

    .new-hero-main-title {
        font-size: 2.8rem;
    }

    .new-hero-body-text {
        margin: 1rem auto 2.5rem;
    }

    .new-hero-image-col {
        margin-top: 3rem;
    }
}

/* --- YENİ KATEGORİ BÖLÜMÜ (Fotoğraftaki Tasarım) --- */
.category-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.category-title {
    font-size: 1.6rem;
    color: var(--text-main);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category-nav-arrows {
    gap: 12px;
}

.nav-arrow {
    background: transparent;
    border: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    background: #f5f5f5;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.nav-arrow:hover {
    background: #e0e0e0;
}

.category-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0 20px 0; /* Gölge ve scrollbar için boşluk */
    scrollbar-width: none; /* Firefox için scrollbar gizleme */
    -ms-overflow-style: none; /* IE/Edge için */
    scroll-behavior: smooth;
}

.category-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera için scrollbar gizleme */
}

.category-card-link {
    text-decoration: none;
    flex: 0 0 auto; /* Esnemeyi durdurup yatay dizilimi korur */
}

.category-card-new {
    background-color: #f5f5f5; /* Görseldeki mat açık gri */
    border-radius: 14px;
    width: 150px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    color: #111; /* Koyu metin rengi */
}

.category-card-new:hover {
    background-color: #ffffff;
    border-color: #e5e5e5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    color: var(--primary); /* Hover durumunda tema rengine döner */
}

.category-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 300; /* Daha ince, zarif ikon görünümü */
    color: inherit;
    transition: var(--transition-smooth);
}

.category-card-new:hover .category-icon {
    transform: translateY(-3px);
}

.category-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: inherit;
}

/* --- PREMIUM SVG İKON STİLLERİ --- */
.category-svg-wrapper svg {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    color: #111; /* İkon rengi */
    transition: var(--transition-smooth);
}

.category-card-new:hover .category-svg-wrapper svg {
    transform: translateY(-3px);
    color: var(--primary); /* Üzerine gelince markanızın rengine döner */
}

/* Kart metnini biraz daha netleştiriyoruz */
.category-name {
    font-weight: 500;
    font-size: 0.90rem;
    color: #111;
    letter-spacing: 0.2px;
}


/* --- ÖZEL SEÇİMLER (Büyük ve Açıklamalı Kartlar) --- */
.feature-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0; /* Çok hafif bir dış çizgi */
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0; /* Fotoğraftaki gibi köşeli ve keskin hatlar */
    transition: all 0.4s ease-in-out; /* Renk geçişi için animasyon */
    cursor: pointer;
}

.feature-img-box {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.feature-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.feature-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    transition: color 0.4s ease;
}

.feature-btn {
    align-self: flex-start;
    background: transparent;
    border: 1px solid #111;
    color: #111;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.4s ease;
}

/* --- HOVER EFEKTİ (Koyu Temaya Geçiş) --- */
.feature-card:hover {
    background-color: #4b4b4b; /* Siyah yerine yumuşak smoke (duman) rengi */
    border-color: #4b4b4b;
}

.feature-card:hover .feature-img-box img {
    transform: scale(1.08); /* Görsel çok hafif büyür */
}

.feature-card:hover .feature-title {
    color: #ffffff; /* Başlık beyaz olur */
}

.feature-card:hover .feature-desc {
    color: #e0e0e0; /* Açıklama metni açık gri olur, smoke arkaplanda daha iyi okunması için #b0b0b0 yerine #e0e0e0 kullanabilirsiniz */
}

.feature-card:hover .feature-btn {
    border-color: #ffffff;
    color: #ffffff;
}

.feature-card:hover .feature-btn:hover {
    background-color: #ffffff;
    color: #4b4b4b; /* Buton hover metin rengi de arkaplanla uyumlu smoke rengi olur */
}


/* --- PREMIUM DURUM ETİKETLERİ (BADGES) --- */
.badge-premium {
    padding: 0.45rem 0.85rem;
    border-radius: 50px; /* Hap (pill) görünümü */
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.badge-soft-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.2);
}

.badge-soft-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.badge-soft-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.badge-soft-secondary {
    background-color: rgba(107, 114, 128, 0.1);
    color: #4b5563;
    border-color: rgba(107, 114, 128, 0.2);
}

.badge-soft-primary {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--primary-dark);
    border-color: rgba(139, 92, 246, 0.2);
}


.style-badge {
    font-size: 0.65rem !important;
    padding: 0.25em 0.45em !important;
    transform: translate(60%, -60%) !important;
}
.nav-icon-hover:hover {
    color: var(--primary) !important;
    transition: var(--transition-smooth);
}


/* Ürün kartı slider */
.product-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: transparent; /* Zemin rengini temizledik */
    display: flex;
    flex-direction: column; /* Noktaları fotoğrafın altına iter */
    margin-bottom: 12px;
}

.product-slider-inner {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-slide {
    min-width: 100%;
    flex-shrink: 0;
    text-align: center;
}

.product-slide img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    display: block;
}

/* Slider Noktaları (Görselin Altında) */
.product-slider-dots {
    position: relative; /* Absolute değerini kaldırarak fotoğrafın altına aldık */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 5;
    background: transparent;
    padding: 10px 0 5px 0; /* Yukarıdan ve aşağıdan nefes alma boşluğu */
    width: 100%;
}

.product-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

/* Premium / Fütüristik Aktif Nokta */
.product-slider-dot.active {
    width: 24px; /* Aktif noktayı uzatarak şık bir görünüm sağlıyoruz */
    border-radius: 10px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    transform: scale(1);
    /* Marka estetiğinize uygun hafif neon/glow efekti */
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.5); 
}

/* Detay slider */
.detail-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column; /* Noktaları görselin altına düzenli şekilde iter */
}

.detail-slider-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Daha pürüzsüz geçiş animasyonu */
}

.detail-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Detay Sayfası Slider Noktaları */
.detail-slider-dots {
    position: relative; /* Absolute kaldırıldı, fotoğrafın altına alındı */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 5;
    background: transparent; /* Cam efekti/arkaplan temizlendi */
    padding: 20px 0 5px 0; /* Görselden uzaklaştırmak için üst boşluk eklendi */
    width: 100%;
}

.detail-slider-dot {
    width: 10px; /* Detay sayfası olduğu için bir tık daha büyük */
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

/* Premium / Fütüristik Aktif Nokta (Detay Sayfası) */
.detail-slider-dot.active {
    width: 30px; /* Uzayan hap (pill) tasarımı */
    border-radius: 10px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    transform: scale(1);
    box-shadow: 0 0 12px rgba(108, 92, 231, 0.5); /* Neon parlama */
}

/* ==========================================================================
   PREMIUM MOBİL MENÜ BUTONU (Hamburger Animasyonlu)
   ========================================================================== */

.navbar-toggler.custom-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: var(--transition-smooth);
}

.navbar-toggler.custom-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1) !important;
}

/* Animasyonlu İkon Çizgileri */
.toggler-icon-premium {
    width: 24px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggler-icon-premium span {
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Menü Açıkken Çizgilerin 'X' Şeklini Alması */
.navbar-toggler.custom-toggler[aria-expanded="true"] .toggler-icon-premium span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.custom-toggler[aria-expanded="true"] .toggler-icon-premium span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.custom-toggler[aria-expanded="true"] .toggler-icon-premium span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}