.btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn {
    background: linear-gradient(90deg, #ae161c 0%, #f3454c 100%);
    color: white;
    padding: 8px 12px 8px 20px;
}

.btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 22px;
    height: 22px;
    color: white;
    line-height: 1;
}

.secondary-btn {
    color: #000;
    gap: 10px;
}

.sec-btn-icon {
    background-color: var(--primary-color);
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .btn,
    .secondary-btn {
        font-size: 1.1rem;
    }
    .btn-icon,
    .sec-btn-icon {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .btn,
    .secondary-btn {
        font-size: 1rem;
    }
}
