/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .slide-heading { font-size: 3.5rem; }
    .section-title h2 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { order: -1; }
    .about-image-wrapper .main-image { height: 350px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: none; }
    .qr-grid { grid-template-columns: 1fr; text-align: center; }
    .qr-content { margin-bottom: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    /* Page Hero */
    .page-hero-title { font-size: 2.8rem; }
    .page-hero-subtitle { font-size: 1rem; }

    /* Values */
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }

    /* Slider adjustments */
    .slider-arrow { width: 44px; height: 44px; }
    .slider-prev { left: 15px; }
    .slider-next { right: 15px; }
    .slider-counter { right: 20px; bottom: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
    html { font-size: 14px; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .nav-menu.open { right: 0; }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Hero Slider - Mobile */
    .hero-slider { min-height: 100vh; }
    .hero-logo { width: 160px; }
    .slide-heading { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 3px; }
    .hero-description { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

    /* Hide slider arrows on mobile (swipe handles navigation) */
    .slider-arrow { display: none; }

    /* Slider nav dots - mobile position */
    .slider-nav { bottom: 25px; }

    /* Slider counter - mobile */
    .slider-counter { left: 15px; bottom: 20px; font-size: 0.75rem; }

    /* Slider progress bar stays at bottom */
    .slider-progress { height: 2px; }

    .slide-content {
        padding: 0 25px;
    }

    .navbar-logo { height: 60px; }
    .navbar.scrolled .navbar-logo { height: 48px; }
    .about-logo-img { width: 200px; }
    .footer-logo { width: 100px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .feature-item { border-right: none; padding: 15px 10px; }
    .feature-icon { font-size: 2rem; }
    .feature-item h4 { font-size: 0.9rem; }
    .feature-item p { font-size: 0.75rem; }

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.75rem; }

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

    .section-title h2 { font-size: 2rem; }
    .section-title { margin-bottom: 40px; }

    .contact-form-wrapper { padding: 25px; }

    /* Page Hero - Mobile */
    .page-hero { min-height: 50vh; }
    .page-hero-title { font-size: 2.2rem; }
    .page-hero-subtitle { font-size: 0.9rem; }
    .hero-badge { font-size: 0.75rem; }

    /* Values - Mobile */
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .value-card { padding: 30px 25px; }

    /* About CTA - Mobile */
    .about-cta-content h2 { font-size: 2rem; }
    .about-cta-content { padding: 50px 25px; }

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

    .cart-panel { width: 100%; right: -100%; }

    /* Menu Page - Mobile */
    .menu-toolbar-inner { flex-direction: column; gap: 12px; align-items: stretch; }
    .menu-toolbar .search-input-wrapper { max-width: 100%; }
    .menu-result-count { text-align: center; }
    .menu-category-title { font-size: 1.3rem; }
    .product-card-image { height: 180px; }

    .product-modal { margin: 10px; max-height: 95vh; }
    .product-modal-image { height: 200px; }

    .qr-content h2 { font-size: 2rem; }
    .qr-phone-mockup { padding: 20px; }
    #qrcode { width: 160px; height: 160px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-logo { width: 130px; }
    .slide-heading { font-size: 2rem; }
    .hero-badge { font-size: 0.75rem; letter-spacing: 2px; padding: 6px 18px; }
    .hero-description { font-size: 0.85rem; }
    .slide-content { padding: 0 20px; }
    .slider-nav { bottom: 70px; gap: 8px; }
    .slider-dot { width: 28px; }

    .page-hero-title { font-size: 1.8rem; }
    .page-breadcrumb { font-size: 0.8rem; }
    .about-cta-content h2 { font-size: 1.6rem; }

    .about-content h3 { font-size: 1.8rem; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .btn { padding: 12px 25px; font-size: 0.9rem; }
    .contact-item { flex-direction: column; text-align: center; }
    .contact-item-icon { margin: 0 auto; }
}

/* Print Styles */
@media print {
    .navbar, .scroll-top, .cart-fab, .cart-panel, .cart-overlay, .slider-nav, .slider-arrow, .slider-counter, .slider-progress { display: none !important; }
    .hero-slider { min-height: auto; padding: 40px 0; }
    .hero-slide:not(.active) { display: none; }
    body { background: white; color: black; }
    .menu-card, .product-card { break-inside: avoid; }
}
