/* Studio Merch Specific Styles */

.studio-merch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-header {
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Added explicit header actions layout for consistency */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn {
    white-space: nowrap;
}

.page-title {
    margin: 0;
    color: var(--bs-primary);
}

.page-subtitle {
    color: var(--bs-secondary);
    margin: 0;
}

.user-info-section .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 12px;
}

/* New: primary content container for merch listing (parity with other feature pages) */
.studio-merch-section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h3 {
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    margin: 0;
}

/* Merchandise statistics */
.merch-stats {
    margin-top: 1.25rem;
}

.stat-card {
    background: var(--bs-light);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.no-merch-section {
    background: var(--bs-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.legacy-subscription-section .card {
    border: 1px solid var(--bs-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.subscription-benefits {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }
    
    .header-actions {
        width: 100%;
    }

    .header-actions .btn {
        width: 100%;
    }
    
    .merch-stats .col-md-3 {
        margin-bottom: 1rem;
    }
}