/*マイアカウントページ購入履歴一覧*/
.custom-order-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-order-item {
    border-bottom: 1px solid #ddd;
    padding: 1em 0;
    font-size: .9em;
}
.custom-order-item > div {
    margin-bottom: .4em;
}
.order-products {
    display: flex;
    flex-direction: column;
    gap: .4em;
}
.order-product {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-thumb {
    flex-shrink: 0;
}
.product-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
}
.product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ← 2行まで */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: calc(1.4em * 2); /* 2行分の高さ */

}

.product-qty {
    font-size: .8em;
    margin-top: .2em;
}
.order-total {
    font-weight: bold;
}
.order-actions a {
    display: inline-block;
    margin-right: .5em;
    font-size: .8em;
    padding: 0.3em 0.7em;
    border-radius: 4px;
    background: #f0f0f0;
    text-decoration: none;
}
@media (max-width: 600px) {
    .order-product {
        flex-direction: row;
    }
}