.currently-ordering {
    margin-top: 30px;
}

.currently-ordering h3 {
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.order-list {
    display: flex;
    flex-direction: column;
}

.order-item {
    overflow: hidden;
    display: flex;
    gap: 12px;
    padding: 10px;
}

.product-link {
    margin-bottom: 18px;
}

.product-link:last-child {
    margin-bottom: 0;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #f9f9f9;
    border-radius: 5px;
  }

.order-image img {
    width: 64px;
    height: auto;
    object-fit: contain;
    max-height: 100px;
}

.order-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.4;
}

.order-time {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 14px;
    color: #3DAB0F
}

.order-location {
    color: #8A8A8A;
    font-size: 12px;
}

.order-price {
    color: #000;
    font-weight: normal;
    font-size: 15px;
}

@media screen and (max-width: 450px) {
    .currently-ordering {
        display: none;
    }
}