/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0.75rem 1rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .navbar-links {
        gap: 1rem;
    }

    .main-content {
        padding: 1rem;
    }

    .product-header h1 {
        font-size: 2rem;
    }

    .product-content {
        gap: 2rem;
    }
}

/* Mobile Styles (< 768px) */
@media (max-width: 767px) {
    .navbar-container {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .navbar-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-header {
        padding: 1.5rem 1rem;
    }

    .product-header h1 {
        font-size: 1.75rem;
    }

    .product-header p {
        font-size: 1rem;
    }

    .product-content {
        grid-template-columns: 1fr;
    }

    .products-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-button {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .features-list ul {
        margin-bottom: 1.5rem;
    }

    .action-links {
        flex-direction: column;
    }

    .live-link, .privacy-link {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles (< 480px) */
@media (max-width: 479px) {
    .hero h1 {
        font-size: 1.5rem;
    }

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

    .card {
        margin: 0.5rem 0;
    }

    .product-description {
        padding: 1rem;
    }

    .product-description h2 {
        font-size: 1.25rem;
    }
}