:root {
    --primary-color: #2874f0;
    --secondary-color: #fb641b;
    --text-color: #212121;
    --light-text: #878787;
    --green-color: #214948;
}

body {
    background-color: #f1f3f6;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-color);
}

.salon-order-page {
    padding: 2rem;
}

.salon-order-page__title {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.salon-order-page__filter-sidebar {
    background-color: white;
    padding: 1rem;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.salon-order-page__filter-title {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.salon-order-page__filter-subtitle {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.salon-order-page__filter-option {
    margin-bottom: 0.5rem;
}

.salon-order-page__filter-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.salon-order-page__search-container {
    position: relative;
    margin-bottom: 1rem;
}

.salon-order-page__search-input {
    padding-right: 40px;
    border-radius: 0.25rem;
}

.salon-order-page__search-button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--green-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding: 5px;
}

.salon-order-page__order-card {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salon-order-page__order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.salon-order-page__order-card-body {
    padding: 1rem;
}

.salon-order-page__product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.25rem;
}

.salon-order-page__product-name {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.salon-order-page__product-details {
    color: var(--light-text);
    font-size: 0.85rem;
}

.salon-order-page__order-status {
    font-weight: 500;
    color: #388e3c;
    font-size: 0.9rem;
}

.salon-order-page__product-price {
    font-weight: 500;
    font-size: 1rem;
}

.salon-order-page__btn-action {
    color: var(--primary-color);
    font-size: 0.85rem;
    padding: 0;
    background: none;
    border: none;
    text-decoration: none;
    transition: color 0.3s ease;
}

.salon-order-page__btn-action:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.salon-order-page__btn-apply-filter {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.salon-order-page__btn-apply-filter:hover {
    background-color: #e55b16;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.salon-order-page__order-card {
    animation: fadeIn 0.5s ease-out;
}

@media (max-width: 768px) {
    .salon-order-page {
        padding: 1rem;
    }

    .salon-order-page__filter-sidebar {
        margin-bottom: 1rem;
    }

    .salon-order-page__product-image {
        margin-bottom: 1rem;
    }
}