.btn-submit {
    background: #FFABB9;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background: #ff95a6;
}
.my-orders {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-header {
    background: linear-gradient(135deg, #fff5ef 0%, #fffbf8 100%);
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #5c3d2e;
    margin-bottom: 8px;
}

.page-subtitle {
    color: #c9aa98;
    font-size: 14px;
}

/* Карточки заказов */
.orders-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(196, 129, 110, 0.08);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 171, 185, 0.15);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fffbf8;
    border-bottom: 1px solid #f0dfd3;
}

.order-number-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.order-number {
    font-size: 18px;
    font-weight: 700;
    color: #c4816e;
}

.order-date {
    font-size: 12px;
    color: #c9aa98;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.status-new { background: #fff5ef; color: #c4816e; }
.status-processing { background: #e3f2fd; color: #1976d2; }
.status-paid { background: #e8f5e9; color: #6b8c5c; }
.status-completed { background: #e8f5e9; color: #6b8c5c; }
.status-cancelled { background: #ffebee; color: #d4a5a5; }

/* Тело карточки */
.order-card-body {
    padding: 20px 25px;
}

.order-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 28px;
}

.info-label {
    font-size: 11px;
    color: #c9aa98;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #5c3d2e;
}

.info-value.price {
    color: #FFABB9;
    font-size: 18px;
}

/* Футер карточки */
.order-card-footer {
    padding: 15px 25px;
    background: #fffbf8;
    border-top: 1px solid #f0dfd3;
    text-align: right;
}

.btn-detail {
    display: inline-block;
    padding: 8px 25px;
    background: #FFABB9;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-detail:hover {
    background: #ff95a6;
    transform: scale(1.02);
    color: white;
}

/* Пустой список */
.empty-orders {
    background: white;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.empty-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

.empty-orders h3 {
    color: #5c3d2e;
    margin-bottom: 10px;
}

.empty-orders p {
    color: #c9aa98;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #FFABB9;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #ff95a6;
    transform: translateY(-2px);
    color: white;
}

/* Пагинация */
.pagination-wrapper {
    margin-top: 30px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.pagination .page-link {
    padding: 8px 14px;
    background: white;
    border: 1px solid #f0dfd3;
    color: #c4816e;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-link:hover {
    background: #f5e6d3;
    border-color: #FFABB9;
}

.pagination .active .page-link {
    background: #FFABB9;
    border-color: #FFABB9;
    color: white;
}

/* Футер */
.profile-footer {
    margin-top: 30px;
}

.btn-back {
    display: inline-block;
    padding: 10px 25px;
    background: #f5e6d3;
    color: #c4816e;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #e8d5c0;
    transform: translateX(-3px);
}

/* Адаптив */
@media (max-width: 768px) {
    .order-info-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .order-card-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .page-title {
        font-size: 24px;
    }
}
