/*
 * Additional Responsive Styles
 * Mobile-first approach for better UX
 */

/* Tablet Landscape and Below (1024px) */
@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .header-container {
        padding: 1.25rem 1.5rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .featured-section,
    .contact-section {
        padding: var(--spacing-lg) 1.5rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }

    .section-header {
        margin-bottom: var(--spacing-md);
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Mobile Landscape (640px) */
@media (max-width: 640px) {
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .main-navigation {
        width: 100%;
        max-width: 100%;
        padding: 4rem 1.5rem;
    }

    .hero-cta .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-add-cart {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .site-footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .site-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {

    .site-header,
    .mobile-menu-toggle,
    .hero-cta,
    .btn,
    .site-footer,
    .social-links {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        height: auto;
        page-break-after: always;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (if system prefers dark) */
@media (prefers-color-scheme: dark) {

    /* Already dark by default, but can add variations */
    :root {
        --bg-dark: #000000;
        --primary-dark: #0a0a0a;
    }
}

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Selection Colors */
::selection {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--primary-dark);
}