.breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat';
    font-size: 14px;
    padding: 20px 50px;
}

.breadcrumb a {
    color: #5C5F6A;
    text-decoration: none;
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 40px;
}

/* Sidebar Styles */
.sidebar {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item img {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.sidebar-item span {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #777777;
    font-weight: 400;
}

/* Active state */
.sidebar-item.active {
    background-color: #F5F5F5;
    border-radius: 40px;
}

.sidebar-item.active img {
    opacity: 1;
}

.sidebar-item.active span {
    color: #161616;
    font-weight: 500;
}

/* Hover state */
.sidebar-item:hover:not(.active) {
    background-color: #FAFAFA;
    border-radius: 40px;
}

.sidebar-item:hover:not(.active) img {
    opacity: 0.7;
}

.sidebar-item:hover:not(.active) span {
    color: #444444;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 20px;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    color: #161616;
    margin-bottom: 40px;
    font-family: 'Montserrat';
}

/* Empty State Styles */
.empty-state {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.empty-text {
    font-family: 'Raleway';
    font-size: 16px;
    color: #777777;
    margin-bottom: 24px;
}

.start-shopping-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    color: #458140;
    border:1px solid #458140;
    border-radius: 100px;
    font-family: 'Raleway';
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}


.btn-arrow {
    width: 22px;
    height: 22px;
}


/* Orders List Styles */
.orders-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hidden {
    display: none;
}

.order-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #FFFFFF;
    border-bottom: 1px solid #E6E6E6;
}

.order-image {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: cover;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.product-title {
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    margin: 0;
}

.product-price {
    font-family: 'Playfair Display';
    font-size: 22px;
    font-weight: 600;
    color: #161616;
}

.order-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.status {
    font-family: 'Raleway';
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: capitalize;
}

.status.processing {
    background: #FFF3E6;
    color: #FF9900;
}

.status.completed {
    background: #E6FFE6;
    color: #00B300;
}

.delivery-date {
    font-family: 'Raleway';
    font-size: 14px;
    padding: 4px 12px;
    font-weight: 600;
    color: #777777;
    border: 1px solid #000;
    border-radius: 100px;
}

.view-btn {
    margin-top: 10px;
    align-self: flex-start;
    padding: 8px 24px;
    background: #161616;
    color: white;
    border: none;
    border-radius: 100px;
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 20px;
    }

    .sidebar {
        width: 100%;
    }

    .order-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .order-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        aspect-ratio: 1;
    }

    .product-info,
    .order-status {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .view-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 10px;
    }

    .order-card {
        padding: 16px;
    }

    .empty-icon {
        width: 100px;
        height: 100px;
    }


}
