* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6C5CE7;
    --primary-light: #A29BFE;
    --primary-dark: #5F3DC4;
    --secondary-color: #FD79A8;
    --success-color: #00B894;
    --danger-color: #D63031;
    --warning-color: #FDCB6E;
    /* Dark palette (приятнее/мягче, с холодным оттенком) */
    --bg-color: #0B1020;
    --card-bg: rgba(18, 26, 43, 0.92);
    --card-bg-hover: rgba(24, 35, 58, 0.95);
    --text-primary: #EAF0FF;
    --text-secondary: #A8B3CF;
    --text-light: #7280A5;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.55);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background:
        radial-gradient(900px 600px at 10% -10%, rgba(108, 92, 231, 0.25) 0%, rgba(108, 92, 231, 0.0) 60%),
        radial-gradient(900px 600px at 110% 0%, rgba(253, 121, 168, 0.14) 0%, rgba(253, 121, 168, 0.0) 55%),
        radial-gradient(1000px 800px at 50% 120%, rgba(162, 155, 254, 0.10) 0%, rgba(162, 155, 254, 0.0) 60%),
        var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    padding-bottom: 80px;
    min-height: 100vh;
}

/* Шапка */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: var(--card-bg);
    object-fit: cover;
}

.user-name {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.menu-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.menu-button:active {
    transform: scale(0.95);
}

/* Боковое меню */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--card-bg);
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.6);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h2 {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.sidebar-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background: var(--card-bg-hover);
    border-left-color: var(--primary-color);
}

.sidebar-item.active {
    background: rgba(108, 92, 231, 0.2);
    border-left-color: var(--primary-color);
    color: var(--primary-light);
    font-weight: 600;
}

.sidebar-item span:first-child {
    font-size: 20px;
}

/* Основной контент */
.main-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Промо карточка */
.promo-card {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.promo-content {
    flex: 1;
    z-index: 1;
}

.promo-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.promo-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.promo-button:active {
    transform: translateY(0);
}

.promo-icon {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.9;
}

.promo-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Статистика */
.stats-section-wrapper {
    margin-bottom: 24px;
}

.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--card-bg-hover);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.stat-change.positive {
    color: #00E5B4;
    background: rgba(0, 184, 148, 0.2);
}

.stat-change.negative {
    color: #FF6B6B;
    background: rgba(214, 48, 49, 0.2);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-period {
    font-size: 12px;
    color: var(--text-light);
}

.expenses .stat-value {
    color: #FF6B6B;
}

.profit .stat-value {
    color: #00E5B4;
}

/* Секции */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.section-link {
    background: none;
    border: none;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.section-link:hover {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

/* Заказы */
.orders-section {
    margin-bottom: 24px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.order-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    background: var(--card-bg-hover);
}

.order-info {
    flex: 1;
}

.order-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.order-client {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.order-date {
    font-size: 12px;
    color: var(--text-light);
}

.order-status {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.order-status.in-progress {
    background: rgba(108, 92, 231, 0.25);
    color: var(--primary-light);
}


.order-status.completed {
    background: rgba(0, 184, 148, 0.25);
    color: #00E5B4;
}

/* Задачи */
.tasks-section {
    margin-bottom: 24px;
}

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.task-item:hover {
    box-shadow: var(--shadow-md);
    background: var(--card-bg-hover);
}

.task-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--primary-light);
    flex-shrink: 0;
    filter: brightness(1.2);
}

.task-label {
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    user-select: none;
}

.task-label.completed {
    text-decoration: line-through;
    color: var(--text-light);
}

/* Нижняя навигация */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 20px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-top: 1px solid var(--border-color);
}

.nav-button {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.nav-button span {
    font-size: 12px;
    font-weight: 500;
}

.nav-button.active {
    color: var(--primary-light);
}

.nav-button:hover {
    color: var(--primary-light);
    background: rgba(108, 92, 231, 0.15);
}

.nav-button-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    padding: 0;
}

.nav-button-primary:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.nav-button-primary:active {
    transform: translateY(-6px) scale(0.95);
}

.nav-button-primary svg {
    width: 28px;
    height: 28px;
}

.bottom-spacer {
    height: 20px;
}

/* Адаптивность */
@media (max-width: 480px) {
    .main-content {
        padding: 16px;
    }
    
    .promo-title {
        font-size: 18px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 280px;
    }
}

/* Анимации появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-card,
.stat-card,
.order-item,
.task-item {
    animation: fadeInUp 0.5s ease-out;
}

.order-item:nth-child(2) {
    animation-delay: 0.1s;
}

.order-item:nth-child(3) {
    animation-delay: 0.2s;
}

.task-item:nth-child(2) {
    animation-delay: 0.1s;
}

.task-item:nth-child(3) {
    animation-delay: 0.2s;
}

.task-item:nth-child(4) {
    animation-delay: 0.3s;
}

/* Форма создания заказа */
.order-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.form-section:hover {
    box-shadow: var(--shadow-md);
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.section-icon {
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23A29BFE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-category-input {
    margin-top: 8px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method-item {
    width: 100%;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.radio-label:hover {
    background: rgba(108, 92, 231, 0.05);
}

.radio-input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-input:checked + .radio-custom {
    border-color: var(--primary-light);
    background: var(--primary-light);
}

.radio-input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    font-size: 16px;
    color: var(--text-primary);
}

.delivery-address-input {
    margin-top: 12px;
}

.notifications-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    background: rgba(108, 92, 231, 0.05);
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--bg-color);
}

.checkbox-input:checked + .checkbox-custom {
    border-color: var(--primary-light);
    background: var(--primary-light);
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 16px;
    color: var(--text-primary);
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input {
    padding-right: 40px;
}

.currency {
    position: absolute;
    right: 16px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 20px;
}

.btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--card-bg-hover);
    border-color: var(--primary-light);
}

.back-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 12px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.back-button:active {
    transform: scale(0.95);
}

/* Адаптивность для формы */
@media (max-width: 480px) {
    .form-section {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Модальное окно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 2px solid var(--border-color);
    flex-shrink: 0;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: rgba(108, 92, 231, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(108, 92, 231, 0.2);
    transform: scale(1.1);
}

.modal-close:active {
    transform: scale(0.95);
}

.modal-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-content .order-form {
    margin: 0;
}

.modal-content .form-section {
    margin-bottom: 20px;
}

.modal-content .form-actions {
    margin-top: 24px;
    margin-bottom: 0;
    position: sticky;
    bottom: 0;
    background: var(--card-bg);
    padding-top: 16px;
    z-index: 10;
}

/* Адаптивность модального окна */
@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
}

/* Загрузка фотографий */
.photos-upload {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.file-input {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.file-label:hover {
    border-color: var(--primary-light);
    background: rgba(108, 92, 231, 0.05);
    color: var(--primary-light);
}

.file-label svg {
    width: 24px;
    height: 24px;
}

.photos-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-color);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.photo-remove:hover {
    background: rgba(214, 48, 49, 0.9);
    transform: scale(1.1);
}

.photo-remove:active {
    transform: scale(0.95);
}

/* Страница заказов */
.page-info {
    margin-bottom: 24px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.create-order-section {
    margin-bottom: 32px;
}

.create-order-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.create-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.create-order-btn:active {
    transform: translateY(0);
}

.create-order-btn svg {
    width: 24px;
    height: 24px;
}

.orders-count {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.order-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
}

.order-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
    white-space: nowrap;
}

.order-details {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.order-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.order-date svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}


.order-item.completed {
    opacity: 0.7;
}

.order-item.completed .order-name {
    color: var(--text-secondary);
}

