/* =====================================================
   BAYENCA PARFÜM - RESPONSIVE CSS
   Mobile-First Yaklaşım
   ===================================================== */

/* ===== TABLET (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .slide-title {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {

    /* Header */
    .top-bar {
        display: none;
    }

    .main-header {
        padding: 15px 0;
    }

    .logo {
        font-size: 24px;
    }

    .logo-icon {
        font-size: 28px;
    }

    /* Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-gray);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .main-nav.show {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-gray);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .header-btn .btn-text {
        display: none;
    }

    .header-btn {
        padding: 10px 15px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        height: 300px;
    }

    .category-content h3 {
        font-size: 24px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 16px;
    }

    .price-current {
        font-size: 20px;
    }

    .btn-product {
        padding: 10px;
        font-size: 14px;
    }

    /* Trust Badges */
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-badge i {
        font-size: 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Float Buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 280px;
    }

    .category-card {
        height: 250px;
    }
}