/* Mobile Responsive - Non-header content only */
@media (max-width: 768px) {
    /* Keep only non-header mobile styles here */
    .mobile-bottom-nav {
        display: block;
    }

    .container {
        padding: 0 1rem;
        padding-bottom: 80px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

/* Very small screens - 360px and below */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
        padding-bottom: 80px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .header-container {
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
    }

    .search-box {
        margin: 0 0.5rem;
    }

    .search-input {
        padding: 0.6rem 2.5rem 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .cart-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }
}

    .section:nth-child(odd) {
        margin: 0 -1rem 5rem -1rem;
        padding: 3rem 1rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .hero {
        height: 400px;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats-grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
    }

    .stat-item-large {
        padding: 1.5rem;
    }

    .stat-number-large {
        font-size: 3rem;
    }

    .stat-label-large {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Mobile Cart Modal */
    .cart-modal {
        width: 100vw;
        left: -100vw;
    }

    .cart-modal.active {
        left: 0;
    }

    .cart-content {
        padding: 1rem;
    }

    .cart-header {
        padding: 1rem;
    }

    .cart-footer {
        padding: 1rem;
    }

    .cart-item {
        gap: 0.75rem;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cart-item-name {
        font-size: 0.9rem;
    }

    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    /* Mobile Cart Actions */
    .cart-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cart-actions .continue-shopping-btn,
    .checkout-btn {
        flex: none;
    }

    .checkout-btn {
        order: 1;
    }

    .cart-actions .continue-shopping-btn {
        order: 2;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .logo {
        text-align: center;
        order: 1;
    }

    .header-actions {
        order: 2;
        justify-content: space-between;
        align-items: center;
    }

    .search-box {
        order: 3;
        max-width: 100%;
        margin: 0;
    }

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

    .categories-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid-two {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 250px;
    }

    .stat-item-large {
        padding: 1rem;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }

    .stat-label-large {
        font-size: 1rem;
    }

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

    .slide-title {
        font-size: 1.75rem;
    }

    .slide-text {
        font-size: 0.95rem;
    }

    .hero {
        height: 350px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .view-all-btn {
        min-width: auto;
        padding: 0.875rem 1.5rem;
    }
}