/* 保護犬支援サイト v9 - カード高さ揃え */

/* カード全体: 高さ固定 */
.ec-shelfGrid .ec-shelfGrid__item {
    display: flex !important;
    flex-direction: column !important;
    height: 420px !important;
}

/* リンク部分を伸縮させる */
.ec-shelfGrid .ec-shelfGrid__item > a {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

/* 画像: 固定高さ */
.ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-image {
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 8px !important;
}
.ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-image img {
    max-height: 200px !important;
    object-fit: contain !important;
}

/* 商品名: 2行固定高さ */
.ec-shelfGrid .ec-shelfGrid__item > a > p:nth-child(2) {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    height: 36px !important;
    margin: 4px 0 !important;
    color: #333 !important;
}

/* 説明文: 非表示 */
.ec-shelfGrid .ec-shelfGrid__item > a > p:nth-child(3) {
    display: none !important;
}

/* 価格: 大きく赤太字 */
.ec-shelfGrid .ec-shelfGrid__item .price02-default {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #b12704 !important;
    margin: 6px 0 4px !important;
    flex-shrink: 0 !important;
}

/* 数量フォーム: 揃える */
.ec-shelfGrid .ec-shelfGrid__item > form {
    display: flex !important;
    align-items: center !important;
    margin: 4px 0 !important;
    flex-shrink: 0 !important;
}

/* カートボタン: 下に固定 */
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__btn {
    margin-top: auto !important;
    flex-shrink: 0 !important;
}