/* Product List Legacy Design - EC-CUBE 2.x Style */

.product_list_legacy {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.product_list_item_legacy {
    /* margin-bottom: 30px; */ /* グリッドのgapで管理 */
    display: flex;
    flex-direction: column;
}

.list_area_legacy {
    display: flex;
    flex-direction: column;
    border: 2px solid #ddd;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 280px;
    height: 100%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 商品画像 - 上部 */
.listphoto_legacy {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listphoto_legacy img {
    max-width: 100%;
    max-height: 250px;
    height: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 5px;
    object-fit: contain;
}

/* 商品情報 - 下部 */
.listrightbloc_legacy {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 商品情報の上部セクション */
.listrightbloc_legacy > div:not(.cart_area_legacy),
.listrightbloc_legacy > h3,
.listrightbloc_legacy > ul {
    flex: 0 0 auto;
}

/* 商品ステータスアイコン */
.status_icon_legacy {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: center;
}

.status_icon_legacy li {
    display: inline-block;
    margin-right: 5px;
}

/* 商品名 */
.product_name_legacy {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-align: center;
}

.product_name_legacy a {
    color: #333;
    text-decoration: none;
}

.product_name_legacy a:hover {
    color: #c00;
    text-decoration: underline;
}

/* 価格 */
.pricebox_legacy {
    margin: 10px 0;
    text-align: center;
}

.sale_price_legacy {
    font-size: 16px;
}

.price_legacy {
    font-size: 20px;
    font-weight: bold;
    color: #c00;
}

/* コメント（商品説明） */
.listcomment_legacy {
    margin: 15px 0;
    padding: 12px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    min-height: 80px;
    flex: 1;
}

/* 商品詳細ボタン */
.detail_btn_legacy {
    margin: 15px 0;
    text-align: center;
}

.detail_btn_legacy .btn {
    padding: 8px 20px;
}

/* カートエリア */
.cart_area_legacy {
    margin-top: auto;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 規格選択 */
.classlist_legacy {
    margin-bottom: 15px;
}

.size01_legacy,
.size02_legacy {
    margin: 10px 0;
}

.size01_legacy dt,
.size02_legacy dt {
    float: left;
    width: 120px;
    font-weight: bold;
    line-height: 32px;
}

.size01_legacy dd,
.size02_legacy dd {
    margin-left: 120px;
}

.size01_legacy select,
.size02_legacy select {
    padding: 5px;
    min-width: 150px;
}

/* カートボタンエリア */
.cartin_legacy {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity_legacy {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity_legacy .box_legacy {
    width: 60px;
    padding: 5px;
    text-align: center;
}

.cartin_btn_legacy {
    flex: 1;
}

.cartin_btn_legacy .btn {
    padding: 10px 30px;
    font-weight: bold;
    white-space: nowrap;
    min-width: 140px;
    width: auto;
}

/* カートボタン全体のスタイル */
.add-cart {
    white-space: nowrap;
    min-width: 140px;
    width: 100%;
}

/* 在庫なし表示 */
.cartbtn_attention_legacy {
    padding: 10px;
    color: #c00;
    font-weight: bold;
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .product_list_legacy {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .list_area_legacy {
        min-height: auto;
        padding: 15px;
    }

    .listphoto_legacy img {
        max-height: 200px;
    }

    .cartin_legacy {
        flex-direction: column;
        align-items: flex-start;
    }

    .size01_legacy dt,
    .size02_legacy dt {
        float: none;
        width: auto;
        line-height: 1.5;
    }

    .size01_legacy dd,
    .size02_legacy dd {
        margin-left: 0;
    }

    .listcomment_legacy {
        min-height: auto;
    }
}
