/* Modern E-commerce Site Styles */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

    .nav-link:hover {
        background-color: var(--light-color);
        color: var(--primary-color) !important;
    }

/* ========== HERO BANNER SECTION ========== */
.hero-banner {
    position: relative;
    min-height: 70vh; /* 100vh'den 70vh'ye düşürüldü */
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
    padding: 3rem 0; /* Üst ve alt padding azaltıldı */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
}

    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 1rem 0; /* 2rem'den 1rem'e düşürüldü */
}

/* ========== HERO TEXT STYLES ========== */
.hero-text {
    position: relative;
    z-index: 15;
    color: white;
    padding: 1rem 0; /* 2rem'den 1rem'e düşürüldü */
}

.min-vh-75 {
    min-height: 60vh; /* 75vh'den 60vh'ye düşürüldü */
}

.hero-title {
    font-size: 3rem; /* 3.5rem'den 3rem'e düşürüldü */
    font-weight: 800;
    color: white !important;
    line-height: 1.1; /* 1.2'den 1.1'e düşürüldü */
    margin-bottom: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 15;
    position: relative;
}

    .hero-title .highlight {
        color: var(--accent-color) !important;
        background: linear-gradient(45deg, var(--accent-color), #ff8c00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-subtitle {
    font-size: 1.2rem; /* 1.3rem'den 1.2rem'e düşürüldü */
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.5; /* 1.6'dan 1.5'e düşürüldü */
    margin-bottom: 2rem; /* 3rem'den 2rem'e düşürüldü */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 15;
    position: relative;
}

.hero-features {
    display: flex;
    gap: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    margin-bottom: 2rem; /* 3rem'den 2rem'e düşürüldü */
    flex-wrap: wrap;
    z-index: 15;
    position: relative;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem; /* 0.8rem'den 0.7rem'e düşürüldü */
    color: white !important;
    font-weight: 600;
}

    .feature-item i {
        font-size: 1.3rem; /* 1.5rem'den 1.3rem'e düşürüldü */
        color: var(--accent-color) !important;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.7rem; /* 0.8rem'den 0.7rem'e düşürüldü */
        border-radius: 50%;
        backdrop-filter: blur(10px);
    }

    .feature-item span {
        color: white !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-size: 0.95rem; /* Biraz küçültüldü */
    }

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 15;
    position: relative;
}

    .hero-actions .btn {
        padding: 0.8rem 1.8rem; /* 1rem 2rem'den küçültüldü */
        font-weight: 600;
        border-radius: 50px;
        transition: var(--transition);
        border-width: 2px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem; /* Buton text boyutu küçültüldü */
    }

        .hero-actions .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

    .hero-actions .btn-primary {
        background: linear-gradient(45deg, var(--accent-color), #ff8c00);
        border-color: var(--accent-color);
        color: white !important;
    }

.btn-outline-light {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
        color: white !important;
    }

/* ========== HERO IMAGE ========== */
.hero-image {
    position: relative;
    height: 500px; /* 600px'den 500px'e düşürüldü */
    z-index: 5;
}

/* ========== HERO PRODUCT CARDS ========== */
.hero-product-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 200px; /* 220px'den 200px'e düşürüldü */
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 5;
}

    .hero-product-card:nth-child(1) {
        top: 20px; /* 30px'den 20px'e düşürüldü */
        right: 70px; /* 80px'den 70px'e düşürüldü */
    }

    .hero-product-card:nth-child(2) {
        top: 150px; /* 180px'den 150px'e düşürüldü */
        right: 5px; /* 10px'den 5px'e düşürüldü */
    }

    .hero-product-card:nth-child(3) {
        top: 280px; /* 330px'den 280px'e düşürüldü */
        right: 100px; /* 120px'den 100px'e düşürüldü */
    }

    .hero-product-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .hero-product-card .product-image-wrapper {
        position: relative;
        margin-bottom: 0.6rem; /* 0.75rem'den 0.6rem'e düşürüldü */
        overflow: hidden;
        border-radius: 10px;
    }

.hero-product-image {
    width: 100%;
    height: 100px; /* 120px'den 100px'e düşürüldü */
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-product-card:hover .hero-product-image {
    transform: scale(1.1);
}

.hero-product-card .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.hero-product-card:hover .product-overlay {
    opacity: 1;
}

.hero-product-card .product-info {
    padding: 0;
}

.hero-product-card .product-name {
    font-size: 0.8rem; /* 0.85rem'den 0.8rem'e düşürüldü */
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-product-card .product-price {
    font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürüldü */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem; /* 0.25rem'den 0.2rem'e düşürüldü */
}

.hero-product-card .product-category {
    font-size: 0.65rem; /* 0.7rem'den 0.65rem'e düşürüldü */
    color: #666;
    background: rgba(102, 126, 234, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
}

/* ========== FALLBACK HERO CARDS ========== */
.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 220px; /* 250px'den 220px'e düşürüldü */
    text-align: center;
    transition: var(--transition);
    z-index: 5;
}

    .hero-card:nth-child(1) {
        top: 30px; /* 50px'den 30px'e düşürüldü */
        right: 80px; /* 100px'den 80px'e düşürüldü */
    }

    .hero-card:nth-child(2) {
        top: 160px; /* 200px'den 160px'e düşürüldü */
        right: 10px; /* 20px'den 10px'e düşürüldü */
    }

    .hero-card:nth-child(3) {
        top: 290px; /* 350px'den 290px'e düşürüldü */
        right: 120px; /* 150px'den 120px'e düşürüldü */
    }

    .hero-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

.card-icon {
    width: 50px; /* 60px'den 50px'e düşürüldü */
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
    color: white;
    font-size: 1.3rem; /* 1.5rem'den 1.3rem'e düşürüldü */
}

.hero-card h5 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
    font-size: 1rem; /* Biraz küçültüldü */
}

.hero-card p {
    color: #666;
    margin: 0;
    font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürüldü */
}

/* ========== HERO STATS ========== */
.hero-stats {
    position: absolute;
    bottom: 30px; /* 50px'den 30px'e düşürüldü */
    left: 0;
    display: flex;
    gap: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    z-index: 5;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem; /* 2rem'den 1.8rem'e düşürüldü */
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem; /* 0.8rem'den 0.75rem'e düşürüldü */
    color: #666;
    margin-top: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
}

/* ========== DEBUG INFO ========== */
.debug-info {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 10px !important;
    border-radius: 5px !important;
    z-index: 999 !important;
    font-size: 12px !important;
    font-family: monospace !important;
}

/* Floating Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-card {
    animation: floating 6s ease-in-out infinite;
}

/* ========== SECTION STYLES ========== */
.section-header .section-badge .badge {
    font-size: 0.9rem;
}

.section-title {
    color: #2d3748;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #6c757d;
    max-width: 600px;
}

/* ========== CATEGORY CARDS ========== */
.category-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--box-shadow-hover);
    }

.category-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-count {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-hover);
    }

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: var(--transition);
}

    .btn-icon:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.product-name a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

    .product-name a:hover {
        color: var(--primary-color);
    }

.product-rating .stars {
    display: inline-block;
    margin-right: 0.5rem;
}

.rating-text {
    font-size: 0.8rem;
}

.current-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.add-to-cart-btn {
    transition: var(--transition);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

    .add-to-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--box-shadow);
    }

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-hover);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.feature-title {
    color: #2d3748;
    font-weight: 700;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.feature-link a {
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

    .feature-link a:hover {
        text-decoration: underline;
    }

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

    .newsletter-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
    }

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--accent-color);
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-title {
    color: black !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-subtitle {
    color: black !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.newsletter-input {
    max-width: 500px;
    margin: 0 auto;
}

    .newsletter-input .form-control {
        border: 3px solid rgba(255, 255, 255, 0.3);
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 50px 0 0 50px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95);
        transition: var(--transition);
    }

        .newsletter-input .form-control:focus {
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
            outline: none;
        }

    .newsletter-input .btn {
        border-radius: 0 50px 50px 0;
        padding: 1rem 2rem;
        font-weight: 600;
        border: 3px solid var(--warning-color);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.2);
        background: linear-gradient(135deg, var(--warning-color) 0%, #ff8c00 100%);
        color: #2d3748 !important;
        transition: var(--transition);
    }

        .newsletter-input .btn:hover {
            border-color: #ff8c00;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            background: linear-gradient(135deg, #ff8c00 0%, var(--warning-color) 100%);
        }

        .newsletter-input .btn:active {
            transform: translateY(0);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

.newsletter-privacy small {
    color: black !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ========== TRUST SECTION ========== */
.payment-methods i {
    transition: var(--transition);
}

    .payment-methods i:hover {
        transform: scale(1.1);
    }

/* Footer Styles */
footer {
    background: #2c3e50 !important;
}

    footer h5,
    footer h6 {
        color: var(--warning-color);
        font-weight: 600;
    }

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

    .footer-links a:hover {
        color: white;
        padding-left: 5px;
    }

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

    .social-links a:hover {
        background: var(--warning-color);
        color: var(--dark-color) !important;
        transform: translateY(-2px);
    }

.text-light-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

    .contact-info a:hover {
        color: white;
    }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .hero-banner {
        min-height: 60vh; /* 70vh'den 60vh'ye düşürüldü */
        padding: 2rem 0; /* 3rem'den 2rem'e düşürüldü */
    }

    .hero-title {
        font-size: 2.2rem; /* 2.5rem'den 2.2rem'e düşürüldü */
    }

    .hero-subtitle {
        font-size: 1rem; /* 1.1rem'den 1rem'e düşürüldü */
    }

    .hero-image {
        height: 350px; /* 400px'den 350px'e düşürüldü */
        margin-top: 2rem; /* 3rem'den 2rem'e düşürüldü */
    }

    .hero-card,
    .hero-product-card {
        width: 160px; /* 180px'den 160px'e düşürüldü */
        padding: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
    }

        .hero-card:nth-child(1),
        .hero-product-card:nth-child(1) {
            top: 15px; /* 20px'den 15px'e düşürüldü */
            right: 30px; /* 40px'den 30px'e düşürüldü */
        }

        .hero-card:nth-child(2),
        .hero-product-card:nth-child(2) {
            top: 120px; /* 140px'den 120px'e düşürüldü */
            right: 0;
        }

        .hero-card:nth-child(3),
        .hero-product-card:nth-child(3) {
            top: 220px; /* 260px'den 220px'e düşürüldü */
            right: 40px; /* 60px'den 40px'e düşürüldü */
        }

    .hero-product-image {
        height: 80px; /* 100px'den 80px'e düşürüldü */
    }

    .hero-stats {
        bottom: 15px; /* 20px'den 15px'e düşürüldü */
        left: 15px; /* 20px'den 15px'e düşürüldü */
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 2rem 0; /* 4rem'den 2rem'e düşürüldü */
    }

    .hero-title {
        font-size: 1.8rem; /* 2rem'den 1.8rem'e düşürüldü */
        margin-bottom: 1rem; /* 1.5rem'den 1rem'e düşürüldü */
    }

    .hero-subtitle {
        font-size: 0.95rem; /* 1rem'den 0.95rem'e düşürüldü */
        margin-bottom: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
        margin-bottom: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
    }

        .hero-actions .btn {
            width: 100%;
        }

    .hero-image {
        display: none;
    }

    .hero-card,
    .hero-product-card {
        display: none;
    }

    .category-card,
    .product-card,
    .feature-card {
        margin-bottom: 2rem;
    }

    .newsletter-input {
        flex-direction: column;
    }

        .newsletter-input .form-control,
        .newsletter-input .btn {
            border-radius: 50px;
            margin-bottom: 1rem;
        }

    .payment-methods {
        justify-content: center !important;
        gap: 1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 1.5rem 0; /* 2rem'den 1.5rem'e düşürüldü */
    }

    .hero-title {
        font-size: 1.6rem; /* 1.75rem'den 1.6rem'e düşürüldü */
    }

    .section-title {
        font-size: 1.6rem; /* 1.75rem'den 1.6rem'e düşürüldü */
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        gap: 10px;
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 25px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card,
.product-card,
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========== UTILITIES ========== */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    }
