:root {
    --primary-color: #F87A53;
    --secondary-color: #4c3585;
    --third-color: #429d03;
}

.primary__btn {
    background: var(--primary-color);
}

.primary__btn:hover {
    background: var(--secondary-color);
    opacity: 0.9;
}

.account__login--btn,
.account__login--link {
    background: var(--primary-color);
}

.account__login--btn:hover,
.account__login--link:hover {
    background: var(--secondary-color);
    opacity: 0.9;
}

.category-selection {
    max-height: 150px;
    overflow-y: auto;
    background: #fff;
}

.form-check-inline {
    margin: 8px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: #333;
    font-size: 14px;
}

/* Custom button style for green action buttons */
button.btn.btn-custom-green,
a.btn.btn-custom-green {
    font-size: 1.2rem !important;
    border-radius: 0.5rem !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 0.25rem 0.5rem !important;
    transition: all 0.3s ease;
    font-weight: bold;
    text-decoration: none;
}

button.btn.btn-custom-green:hover,
a.btn.btn-custom-green:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
    opacity: 0.9;
}

button.btn.btn-custom-green:focus,
a.btn.btn-custom-green:focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 157, 3, 0.25) !important;
    color: #fff !important;
}

/* Compact search widget styles */
.header__search--widget .header__search--form {
    height: 40px !important;
}

.header__search--widget .header__select--inner {
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 30px 0 15px !important;
}

.header__search--widget .header__search--input {
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 15px !important;
}

.header__search--widget .header__search--button {
    height: 40px !important;
    width: 40px !important;
    line-height: 40px !important;
}

.header__search--widget .header__search--button__svg {
    width: 20px !important;
    height: 20px !important;
}

.header__select--categories.select {
    max-width: 150px !important;
}

/* Compact account section styles */
.header__account--items {
    height: 40px !important;
    line-height: 40px !important;
}

.header__account--btn {
    height: 40px !important;
    line-height: 20px !important;
    padding: 0 10px !important;
}

.header__account--btn svg {
    width: 20px !important;
    height: 20px !important;
    margin-right: 4px !important;
}

.header__account--btn__text {
    font-size: 14px !important;
}

.items__count {
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    font-size: 12px !important;
} 