/* YA4M monetization feature start - Shop & Support page styles */

.shop-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding: 12rem 10% 6rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.shop-section {
    padding: 6rem 10%;
    min-height: auto;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.product-icon {
    font-size: 4rem;
    color: var(--yellow);
    margin-bottom: 2rem;
}

.product-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.product-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    text-align: left;
}

.product-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

.price-label {
    font-size: 1.4rem;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--yellow);
    display: block;
}

.price-note {
    font-size: 1.3rem;
    color: #999;
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

.btn-primary {
    background: var(--yellow);
    color: #333;
    border: 0.2rem solid var(--yellow);
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--yellow);
}

.future-merch {
    padding: 6rem 10%;
}

.merch-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.merch-icon {
    font-size: 5rem;
    color: var(--yellow);
    margin-bottom: 2rem;
}

.merch-card h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.merch-description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.merch-note {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-top: 3rem;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1.2rem;
    border: 0.2rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: "Roboto", sans-serif;
}

.form-group-inline input:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-group-inline .btn-primary {
    margin-top: 0;
    padding: 1.2rem 3rem;
    white-space: nowrap;
}

.form-note {
    font-size: 1.3rem;
    color: #999;
    margin-top: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero {
        padding: 10rem 5% 4rem;
    }
    
    .shop-section {
        padding: 4rem 5%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .product-card h3 {
        min-height: auto;
    }
    
    .merch-card {
        padding: 2.5rem;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .form-group-inline .btn-primary {
        width: 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* YA4M monetization feature end */

