.order-card {
    font-family: "Mulish", serif;
    border: 1px solid #eaeaea;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #fff;
    color: #667085;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-date,
.order-number {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    
}

.order-total {
    font-size: 20px;
    font-weight: bold;
}

.order-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 14;
}
.order-toggle .arrow{
    transition: transform 0.5s ease;
}

/* Повернута стрілка */
.order-toggle.open .arrow {
    transform: rotate(-180deg);
}

.order-content {
    margin-top: 20px;
    display: flex;
}
.order-additional{
    width: 20%;
}

.order-additional h6 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.order-additional p {
    margin: 4px 0 12px;
    font-size: 14px;
    color: #444;
}


.order-products{
    width: 80%;
    border-left:1px solid #E4E7EC;
}

.order-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    width: 100%;
}


.order-item-content{
    display: flex;
    align-items: center;
}

.order-item-image img {
    width: 70px;
    height: auto;
    margin-right: 10px;
}

.order-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 15px;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-item-review{
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid #4A0F15;
}

.order-item-meta span {
    margin-right: 20px;
}

.order-summary {
    padding: 15px;
    font-size: 16px;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid transparent;
    gap: 6px;
}

.order-status-badge:before {
    content: "✓";
    font-weight: bold;
}

/* ЗЕЛЕНИЙ */
.status-green {
    color: #1a7c3e;
    background: #eafff0;
    border-color: #a6e1b9;
}

/* ЧЕРВОНИЙ */
.status-red {
    color: #a81818;
    background: #ffeaea;
    border-color: #f5b3b3;
}

.status-red:before {
    content: "✖";
}

/* СІРИЙ */
.status-gray {
    color: #666;
    background: #f2f3f4;
    border-color: #d0d0d0;
}

.status-gray:before {
    content: "•";
    font-size: 20px;
    line-height: 14px;
    margin-right: 2px;
}