.base-btn {
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    overflow: hidden;
    position: relative;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.primary-button {
    background-color: var(--bs-primary);
    color: #fff;
}

.error-button-secondary {
    background-color: var(--color-error-button-secondary);
    color: var(--color-error);
}

.base-btn.uppercase {
    text-transform: uppercase;
}

.success-button {
    max-width: 160px;
    width: 100%;
    padding: 8px 12px;
    background-color: var(--color-success-button);
    text-transform: uppercase;
    color: #fff;
    border-radius: 14px;
}

.success-button-full {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--color-success-button);
    text-transform: uppercase;
    color: #fff;
    border-radius: 12px;
}

.success-button-secondary {
    max-width: 160px;
    width:100%;
    padding: 8px 12px;
    text-transform: uppercase;
    color: var(--color-success-button-secondary-text);
    border-radius: 14px;
    background-color: var(--color-success-button-secondary);
}

.icon-button {
    --icon-button-size: 40px;
    width: var(--icon-button-size);
    height: var(--icon-button-size);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: none;
    box-sizing: border-box;
    overflow: hidden;
}

.icon-button--primary {
    color: #fff;
    background-color: var(--bs-primary);
}

.icon-button--primary:hover {
    background-color: var(--bs-primary-dark);
    color: #fff;
}

.icon-button--secondary {
    color: var(--bs-primary);
    background-color: var(--bs-secondary);
}

.icon-button--secondary:hover {
    color: var(--bs-primary-dark);
}

.primary-button:hover {
    background-color: color-mix(in srgb, var(--bs-primary) 90%, white);
}

.success-button:hover {
    background-color: color-mix(in srgb, var(--color-success) 90%, white);
}

.success-button-full:hover {
    background-color: color-mix(in srgb, var(--color-success) 90%, white);
}

.success-button-secondary:hover {
    background-color: var(--color-success-button-secondary-hover);
    color: var(--color-success-button-secondary-text);
}


.text-button {
    color: var(--bs-primary);
    background: none;
    border: none;
    display: inline-flex;
    gap: 8px;
    overflow: hidden;
    position: relative;
    text-align: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
    padding: 8px 16px;
    text-decoration: none;
    align-self: flex-start; 
    cursor: pointer;
}

.text-button:hover {
    color: var(--bs-primary-dark);
}

.btn-scroll-up {
    border-radius: 100%;
    border: none;
    background: var(--bs-primary) url("/assets/img/icons/move-up.svg") 50% center no-repeat;
    width: 45px;
    height: 45px;
    position: fixed;
    left: 5%;
    bottom: 72px;
    z-index: 100;
    
}

/* Общие стили для disabled состояния */
.base-btn:disabled,
.base-btn.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}



