/* =========================================
   MEDIA QUERIES - Mobile Responsive
   ========================================= */

/* ===== TABLET (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
    .theme-toggle {
        top: 15px;
        right: 15px;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: var(--spacing-lg) var(--spacing-sm);
        min-height: 90vh;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: var(--spacing-md);
    }
}

/* ===== MOBILE (max-width: 480px) ===== */
@media screen and (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    body {
        font-size: 15px;
    }

    .theme-toggle {
        top: 12px;
        right: 12px;
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .hero {
        min-height: 85vh;
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-headline .highlight {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 1.1rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .price-card {
        padding: var(--spacing-md);
    }

    .card-emoji {
        font-size: 2.5rem;
    }

    .card-shoe-type {
        font-size: 1.2rem;
    }

    .card-price {
        font-size: 2.5rem;
    }

    .pricing-note {
        padding: var(--spacing-sm);
    }

    .pricing-note p {
        font-size: 0.85rem;
    }

    .feature-card {
        padding: var(--spacing-md);
    }

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

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

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: var(--spacing-sm);
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .btn-primary.btn-large {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

    .footer-brand {
        font-size: 1.6rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-copy {
        font-size: 0.75rem;
    }
}

/* ===== SMALL PHONES (max-width: 360px) ===== */
@media screen and (max-width: 360px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-headline .highlight {
        font-size: 1.8rem;
    }

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

    .card-shoe-type {
        font-size: 1rem;
    }

    .card-price {
        font-size: 2rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-tag {
        animation: none;
    }

    .price-card,
    .feature-card,
    .btn-primary,
    .btn-secondary,
    .theme-toggle {
        transition: none;
    }
}