/* ===============================
   WRAPPER
================================= */

.vy-orders-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 15px;
}

/* ===============================
   HEADER
================================= */

.vy-orders-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.vy-back-btn {
    font-size: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    line-height: 1;
}

.vy-orders-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

/* ===============================
   ORDERS LIST
================================= */

.vyonika-orders {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ===============================
   ORDER CARD
================================= */

.vyonika-order-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    background: #fff;
    transition: 0.3s ease;
}

.vyonika-order-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

/* ===============================
   PRODUCT IMAGE
================================= */

.vyonika-order-image {
    width: 80px;
    flex-shrink: 0;
}

.vyonika-order-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ===============================
   DETAILS
================================= */

.vyonika-order-details {
    flex: 1;
}

.vyonika-order-details h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 600;
}

.order-size,
.order-date {
    font-size: 13px;
    color: #666;
    margin: 3px 0;
}

/* ===============================
   STATUS BADGE
================================= */

.order-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
}

/* STATUS COLORS */

.status-completed {
    background: #e6f9f0;
    color: #00a859;
}

.status-processing {
    background: #fff4e5;
    color: #ff9800;
}

.status-cancelled {
    background: #ffeaea;
    color: #e53935;
}

.status-pending {
    background: #e3f2fd;
    color: #1976d2;
}

/* ===============================
   VIEW BUTTON
================================= */

.view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 14px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-btn:hover {
    background: #333;
}

/* ===============================
   MOBILE FIX
================================= */

@media (max-width: 768px) {
    .vy-orders-wrapper {
        max-width: 520px;
        margin: 0 auto;
        padding: 10px 10px;
    }
}