/* ===================================
   Buttons Component
   CTA buttons (primary, secondary)
   =================================== */

.btn {
    display: block;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary {
    background: #e2422a;
    color: rgba(255, 255, 255, 0.96);
    border: 2px solid #ffa395;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 24px;
    height: 44px;
}

.btn-primary:hover {
    background: #d12e16;
}

.btn-secondary {
    background: transparent;
    color: #e2422a;
    border: 1px solid #e2422a;
    border-radius: 5px;
    padding: 4px 2px;
    font-size: 12px;
    line-height: 24px;
}

.btn-secondary:hover {
    background: #e2422a;
    color: #fff;
}
