/* Merch Page Specific Styles */
.merch-section {
    margin: 30px 0;
}

.merch-header {
    text-align: center;
    margin-bottom: 40px;
}

.merch-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 40px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 50%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}

.product-cta {
    display: flex;
    gap: 15px;
}

.buy-button {
    padding: 10px 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

.coming-soon {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: rgba(0, 0, 255, 0.1);
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
}

.coming-soon h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coming-soon p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .product-image-container {
        order: -1;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-subtitle {
        font-size: 0.9rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .buy-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .coming-soon h2 {
        font-size: 1.2rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
}