/* ── Botones de item gratuito ── */
.gp-free-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.4;
    box-sizing: border-box;
}

/* Adquirir — verde vibrante */
.gp-free-btn--claim {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 2px 12px rgba(16,185,129,0.35);
}
.gp-free-btn--claim:hover:not(:disabled) {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(16,185,129,0.45);
    color: #fff;
}
.gp-free-btn--claim:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Ya adquirido — gris/verde suave */
.gp-free-btn--acquired {
    background: rgba(16,185,129,0.1);
    color: #10b981;
    border: 1px solid rgba(16,185,129,0.3);
    cursor: pointer;
}
.gp-free-btn--acquired:hover {
    background: rgba(16,185,129,0.18);
    color: #059669;
}

/* Login requerido — azul neutro */
.gp-free-btn--login {
    background: rgba(99,102,241,0.1);
    color: #6366f1;
    border: 1px solid rgba(99,102,241,0.3);
}
.gp-free-btn--login:hover {
    background: rgba(99,102,241,0.18);
    color: #4f46e5;
}

.gp-free-icon { font-size: 15px; line-height: 1; }