/**
 * CFRO Component — Buttons (Figma v3)
 * @package CFRO
 * @since   4.0.0
 */

.cfro-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--cfro-forest);
    color: var(--cfro-white);
    border: none;
    border-radius: var(--cfro-radius);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--cfro-font-sans);
    cursor: pointer;
    transition: var(--cfro-transition);
    text-decoration: none;
    line-height: 1.4;
}
.cfro-btn-primary:hover {
    background: var(--cfro-forest-light);
    color: var(--cfro-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--cfro-shadow-md);
}

.cfro-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--cfro-forest);
    border: 2px solid var(--cfro-forest);
    border-radius: var(--cfro-radius);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--cfro-font-sans);
    cursor: pointer;
    transition: var(--cfro-transition);
    text-decoration: none;
    line-height: 1.4;
}
.cfro-btn-outline:hover {
    background: var(--cfro-sage-pale);
    border-color: var(--cfro-forest-light);
    color: var(--cfro-forest);
    text-decoration: none;
}

.cfro-btn-outline--light {
    color: var(--cfro-white);
    border-color: rgba(255, 255, 255, 0.5);
}
.cfro-btn-outline--light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cfro-white);
    color: var(--cfro-white);
}

.cfro-btn-outline--dark {
    color: var(--cfro-charcoal);
    border-color: var(--cfro-border-gray);
}
.cfro-btn-outline--dark:hover {
    background: var(--cfro-sage-pale);
    border-color: var(--cfro-forest);
    color: var(--cfro-forest);
}

.cfro-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border-radius: var(--cfro-radius);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--cfro-forest);
    color: var(--cfro-forest);
    text-decoration: none;
    transition: var(--cfro-transition);
    font-family: var(--cfro-font-sans);
}
.cfro-btn-sm:hover {
    background: var(--cfro-forest);
    color: var(--cfro-white);
    text-decoration: none;
}

.cfro-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Listen Live pill button */
.cfro-btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--cfro-coral);
    color: var(--cfro-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--cfro-font-sans);
    border: none;
    border-radius: var(--cfro-radius-pill);
    cursor: pointer;
    transition: var(--cfro-transition);
    text-decoration: none;
}
.cfro-btn-listen:hover {
    background: var(--cfro-accent-dark);
    transform: scale(1.03);
    text-decoration: none;
    color: var(--cfro-white);
    box-shadow: 0 6px 20px rgba(224, 107, 86, 0.35);
}
.cfro-btn-listen .pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--cfro-white);
    border-radius: 50%;
    animation: cfro-pulse 1.5s infinite;
}
@keyframes cfro-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
