/* Free Folks Boutique - Responsive Styles
   Mobile-friendly design for casual shopping on any device */

/* Tablet */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 2rem;
        min-height: 70vh;
    }

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

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

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-gallery {
        position: static;
    }

    .main-image {
        height: 500px;
    }

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

    .trust-section {
        padding: 3rem 0;
    }

    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transition: left var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 5rem 1.5rem 4rem;
        min-height: 60vh;
    }

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

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

    .scroll-indicator {
        display: none;
    }

    header {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

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

    .trust-section {
        padding: 2.5rem 0;
    }

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

    .trust-card {
        padding: 1.5rem;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

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

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

    .product-image {
        height: 300px;
    }

    .product-detail {
        padding: 2rem 0;
    }

    .product-detail-container {
        gap: 2rem;
    }

    .main-image {
        height: 400px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .thumbnail {
        height: 80px;
    }

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

    .product-details .price {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    nav {
        padding: 0 1.5rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
    }

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

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

    /* Reduce animation complexity on small screens */
    .product-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .trust-card:hover .trust-icon {
        transform: scale(1.05);
    }

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

    .product-details .price {
        font-size: 1.5rem;
    }

    .main-image {
        height: 350px;
    }

    .thumbnail {
        height: 60px;
    }

    .buy-with-prime {
        padding: 1.5rem;
    }
}













