/**
 * Cosmetic Surgery Page - CSS Overrides
 * Inherits all styles from offer.css
 * Only add cosmetic-specific customizations here
 */

/* GLP-1 opportunity section */
.glp1-opportunity .glp1-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
}

.glp1-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.glp1-stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.glp1-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Cosmetic insights section */
.cosmetic-insights .cosmetic-insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.cosmetic-insights .cosmetic-insight-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cosmetic-insight-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
}

/* Procedure cards - 8-card grid */
.cosmetic-procedures .procedure-card {
    min-height: 260px;
}

.procedure-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
