/**
 * Mut İncisi - Modern Premium Stil Dosyası
 * Glassmorphism, Animasyonlar, Premium Efektler
 * NOT: Renk değişkenleri header.php'de dinamik olarak tanımlanır
 */

/* ==================== MODERN RENK PALETİ (VARSAYILAN - header.php override eder) ==================== */
:root {
    /* Ana Renkler - Bu değerler header.php tarafından override edilir */
    /* --primary, --primary-rgb, --primary-light, --primary-dark, --primary-gradient */
    /* --secondary, --secondary-rgb, --secondary-gradient */
    /* --accent, --accent-gradient */
    /* --btn-primary-bg, --btn-primary-text, --btn-primary-rgb */
    /* --btn-secondary-bg, --btn-secondary-text */
    /* --header-bg, --header-text, --footer-bg, --footer-text */
    
    /* Nötr Renkler */
    --dark: #1A1A2E;
    --dark-rgb: 26, 26, 46;
    --cream: #FAF8F5;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(var(--primary-rgb, 45, 90, 61), 0.3);
    
    /* Animasyon */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
}

/* ==================== TEMEL STİLLER ==================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--cream);
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: white;
}

/* ==================== TİPOGRAFİ ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title p {
    color: var(--accent);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-gradient);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ==================== BUTONLAR ==================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--btn-primary-bg, var(--primary-gradient));
    border: none;
    color: var(--btn-primary-text, #fff);
    box-shadow: 0 4px 15px rgba(var(--btn-primary-rgb, var(--primary-rgb)), 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--btn-primary-rgb, var(--primary-rgb)), 0.5);
    background: var(--btn-primary-bg, var(--primary-gradient));
    filter: brightness(0.9);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-gradient);
    border: none;
    color: var(--dark);
}

/* Buton Grup */
.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4); }
    to { box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.6); }
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--primary-gradient) !important;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.top-bar .marquee {
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ==================== HEADER ==================== */
.header-main {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.header-main.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar-brand img {
    transition: var(--transition-fast);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Cart Icon Badge */
.cart-icon {
    position: relative;
}

.cart-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-gradient);
    color: var(--dark);
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==================== HERO SLİDER ==================== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Slider overlay kaldırıldı - daha net görüntü */
.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    /* Eski: background: linear-gradient(135deg, rgba(var(--dark-rgb), 0.7) 0%, rgba(var(--primary-rgb), 0.5) 100%); */
}

.hero-slider .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    max-width: 650px;
    left: 10%;
    right: auto;
}

.hero-slider .carousel-caption h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}

.hero-slider .carousel-caption p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-slider .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255,255,255,0.5);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.carousel-indicators button.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* ==================== ÖZELLİKLER BÖLÜMÜ ==================== */
.features-section {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    padding: 3rem 0;
    margin-top: -50px;
    z-index: 1; /* Dropdown'ların altında kalması için */
}

.feature-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem !important;
    transition: var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--glass-border);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-normal);
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-box:hover .feature-icon {
    transform: rotateY(180deg);
    background: var(--secondary-gradient);
}

.feature-box h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

/* ==================== KATEGORİLER ==================== */
.categories-section {
    padding: 5rem 0;
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition-normal);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(var(--dark-rgb), 0.85) 100%);
    z-index: 1;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    text-align: center;
}

.category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
    transition: var(--transition-normal);
}

.category-overlay h5 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-card:hover img {
    transform: scale(1.15);
}

.category-card:hover .category-icon {
    transform: scale(1.2) translateY(-5px);
}

/* ==================== ÜRÜN KARTLARI ==================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Ürün Badge'leri */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.badge-new {
    background: var(--primary-gradient);
    color: white;
}

.badge-sale {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: white;
    animation: shake 0.5s ease-in-out infinite alternate;
}

@keyframes shake {
    0% { transform: rotate(-2deg); }
    100% { transform: rotate(2deg); }
}

.badge-bestseller {
    background: var(--secondary-gradient);
    color: var(--dark);
}

/* Ürün Aksiyonları */
.product-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .btn {
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.product-actions .btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.product-actions .btn-add-favorite:hover,
.product-actions .btn-add-favorite.active {
    background: #FF6B6B;
    color: white;
}

/* Ürün Bilgileri */
.product-info {
    padding: 1.25rem;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.product-name a {
    color: var(--dark);
    transition: var(--transition-fast);
}

.product-name a:hover {
    color: var(--primary);
}

.product-rating {
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 0.75rem;
}

.product-rating i {
    margin-right: 2px;
}

.product-rating span {
    color: var(--accent);
    margin-left: 4px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-price .current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .old-price {
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: line-through;
}

/* Sepete Ekle Butonu - Şeffaf/Outline Stil */
.product-card .btn-add-cart {
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-normal);
    background: transparent !important;
    color: var(--btn-primary-bg, var(--primary)) !important;
    border: 2px solid var(--btn-primary-bg, var(--primary)) !important;
}

.product-card:hover .btn-add-cart {
    opacity: 1;
    transform: translateY(0);
}

.product-card .btn-add-cart:hover {
    background: var(--btn-primary-bg, var(--primary)) !important;
    color: var(--btn-primary-text, #fff) !important;
}

/* ==================== HAKKIMIZDA BÖLÜMÜ ==================== */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.03;
    top: -200px;
    right: -200px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary);
    border-radius: var(--radius-xl);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* ==================== BLOG BÖLÜMÜ ==================== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-content h5 a {
    color: var(--dark);
}

.blog-content h5 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--accent);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
    padding: 5rem 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '🫒';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.newsletter-section h2,
.newsletter-section p {
    color: white;
}

.newsletter-section h2 {
    margin-bottom: 1rem;
}

.newsletter-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--secondary-gradient);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.9);
    padding-top: 5rem;
}

.footer h5, .footer h6 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h5::after, .footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Footer içindeki text-muted'ı okunur yap */
.footer .text-muted {
    color: rgba(255,255,255,0.8) !important;
}

.footer-contact .text-muted {
    color: rgba(255,255,255,0.85) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ==================== AOS CUSTOM ==================== */
[data-aos] {
    transition-timing-function: var(--ease-out-expo) !important;
}

/* ==================== SKELETON LOADING ==================== */
.skeleton {
    background: linear-gradient(90deg, var(--cream) 25%, var(--cream-dark) 50%, var(--cream) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .hero-slider .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .hero-slider .carousel-item {
        min-height: 70vh;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    /* Genel Boşluk Düzenlemeleri */
    section {
        padding: 2rem 0 !important;
    }
    
    .section-title {
        margin-bottom: 1.5rem !important;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    /* Hero Slider */
    .hero-slider .carousel-item {
        min-height: 45vh;
    }
    
    .hero-slider .carousel-caption {
        bottom: 20%;
        left: 5%;
        right: 5%;
        max-width: 100%;
    }
    
    .hero-slider .carousel-caption h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 0.85rem;
        display: none;
    }
    
    .hero-slider .carousel-caption .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Header */
    .modern-header {
        padding: 0;
    }
    
    .header-top-bar {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .header-main-section {
        padding: 10px 0;
    }
    
    .header-logo .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .header-logo .logo-text span {
        font-size: 0.7rem;
    }
    
    .header-logo .logo-icon img {
        width: auto;
        height: 70px;
        max-width: 200px;
    }
    
    /* Footer */
    .footer {
        margin-top: 2rem !important;
    }
    
    .footer-newsletter {
        padding: 1.5rem 0;
    }
    
    .footer-main {
        padding: 2rem 0;
    }
    
    /* Ürün Kartları */
    .product-card {
        margin-bottom: 1rem;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 0.75rem;
    }
    
    /* Container padding */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* WhatsApp butonu */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
}

/* ==================== GLASSMORPHISM KARTLAR ==================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
}

/* ==================== FLOATING ANİMASYON ==================== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-slow {
    animation: floating 5s ease-in-out infinite;
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--cream-dark);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== CURSOR CUSTOM (Opsiyonel) ==================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, opacity 0.3s;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(var(--primary-rgb), 0.2);
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    opacity: 0;
    transition: var(--transition-normal);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 1.25rem;
}

.toast-success i { color: #22C55E; }
.toast-error i { color: #EF4444; }
.toast-info i { color: #3B82F6; }

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: var(--transition-fast);
}

.lightbox.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

/* ==================== RIPPLE EFFECT ==================== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==================== FLOATING HEART ==================== */
.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: floatHeart 1s ease-out forwards;
    pointer-events: none;
}

@keyframes floatHeart {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1.5);
    }
}

/* ==================== TRUST BADGE ==================== */
.trust-badge {
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ==================== QUANTITY SELECTOR ==================== */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity-selector button:hover {
    background: var(--cream);
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.quantity-selector input:focus {
    outline: none;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-wrapper {
    background: var(--cream);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent);
}

/* ==================== SEARCH FORM EXPANDED ==================== */
.search-form {
    transition: var(--transition-normal);
}

.search-form.expanded {
    flex-grow: 1;
    max-width: 300px;
}

.search-form input {
    transition: var(--transition-normal);
}

/* ==================== DROPDOWN ANIMATION ==================== */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--primary);
}

/* ==================== CARD IMPROVEMENTS ==================== */
.card {
    border: none;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* ==================== FORM CONTROLS ==================== */
.form-control, .form-select {
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-control.is-valid {
    border-color: #22C55E;
}

.form-control.is-invalid {
    border-color: #EF4444;
}

/* ==================== ALERT IMPROVEMENTS ==================== */
.alert {
    border: none;
    border-radius: var(--radius-md);
    border-left: 4px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-left-color: #22C55E;
    color: #166534;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #EF4444;
    color: #991B1B;
}

.alert-warning {
    background: rgba(234, 179, 8, 0.1);
    border-left-color: #EAB308;
    color: #854D0E;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3B82F6;
    color: #1E40AF;
}

/* ==================== ADDING TO CART ANIMATION ==================== */
.btn-add-cart.adding {
    animation: addToCart 0.5s ease;
}

@keyframes addToCart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

.btn-add-cart.adding::after {
    content: '✓';
    position: absolute;
    inset: 0;
    background: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

/* ==================== PAGINATION ==================== */
.pagination {
    gap: 0.5rem;
}

.page-item .page-link {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-md) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.page-item .page-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.page-item.active .page-link {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

/* ==================== SIDEBAR CARD ==================== */
.sidebar .card {
    border: none;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar .card-header {
    border-bottom: none;
    padding: 1rem 1.25rem;
}

.sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid var(--cream);
    padding: 0.875rem 1.25rem;
    transition: var(--transition-fast);
}

.sidebar .list-group-item:last-child {
    border-bottom: none;
}

.sidebar .list-group-item:hover {
    background: var(--cream);
}

.sidebar .list-group-item.active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.sidebar .list-group-item a {
    color: inherit;
}

/* ==================== PRODUCTS TOOLBAR ==================== */
.products-toolbar {
    border-radius: var(--radius-lg);
}

.products-toolbar .form-select {
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
}

.products-toolbar .form-select:focus {
    border-color: var(--primary);
}
