/* ==================== Testimonials Section ==================== */
.testimonials-section {
    padding: 8rem 3rem;
    background: var(--darker);
    color: var(--light);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ==================== Stores Section ==================== */
.stores-section {
    padding: 0;
}

.stores-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stores-content {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stores-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.store-list {
    margin-bottom: 2.5rem;
}

.store-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.store-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.store-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.store-hours {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.stores-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== Newsletter Section ==================== */
.newsletter-section {
    padding: 6rem 3rem;
    background: var(--primary);
    color: var(--light);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.newsletter-form .btn-primary {
    background: var(--dark);
}

.newsletter-form .btn-primary:hover {
    background: var(--darker);
}

/* ==================== Footer ==================== */
.site-footer {
    background: var(--dark);
    color: var(--light);
    padding: 5rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: var(--light);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
    max-width: 300px;
}

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

.footer-col h5 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--light);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-main img {
        height: 400px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-shoe {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        position: static;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .about-wrapper,
    .stores-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .about-content h2,
    .stores-content h2 {
        font-size: 2rem;
    }
}
