/* Merch Page Specific Styles */
.merch-hero {
    background: linear-gradient(135deg, #7a8a6a 0%, #5a6b4a 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.merch-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.merch-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.merch-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.merch-stat {
    text-align: center;
}

.merch-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e55a2b;
    display: block;
}

.merch-stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.merch-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-image {
    height: 250px;
    background: linear-gradient(45deg, #7a8a6a, #5a6b4a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.category-content {
    padding: 2rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.category-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-count {
    color: #e55a2b;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-products {
    padding: 4rem 0;
    background: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e55a2b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e55a2b;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #7a8a6a;
    padding: 0.8rem 1.5rem;
    border: 2px solid #7a8a6a;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-secondary:hover {
    background: #7a8a6a;
    color: white;
}

.merch-cta {
    background: linear-gradient(135deg, #7a8a6a 0%, #5a6b4a 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.merch-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.merch-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #e55a2b;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: white;
    color: #e55a2b;
}

.mission-statement {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.statement-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.statement-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.statement-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.statement-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #7a8a6a;
}

.coming-soon {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.coming-soon h3 {
    color: #7a8a6a;
    margin-bottom: 1rem;
}

.coming-soon p {
    color: #666;
    margin-bottom: 1.5rem;
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
}

.email-submit {
    background: #7a8a6a;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .merch-hero h1 {
        font-size: 2.5rem;
    }
    
    .merch-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .statement-content h2 {
        font-size: 2rem;
    }
    
    .statement-content p {
        font-size: 1.1rem;
    }
    
    /* Mobile hero image */
    .hero-image-desktop {
        display: none;
    }
    
    .hero-image-mobile {
        display: block !important;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    /* Mobile spacing for Products section */
    .featured-products h2 {
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        margin-top: 0.5rem;
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }
    
    /* Mobile button sizes */
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
}
