/* カートに入れるボタンを角丸に統一 */
.ec-blockBtn--action {
    border-radius: 25px !important;
    transition: all 0.3s ease;
    background-color: #4c3e2d !important;
    border-color: #4c3e2d !important;
}

.ec-blockBtn--action:hover {
    background-color: #3a2f22 !important;
    border-color: #3a2f22 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 62, 45, 0.3);
}

/* 商品一覧アイテムのホバーエフェクト */
.ec-shelfGrid__item {
    transition: all 0.3s ease;
}

.ec-shelfGrid__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ec-shelfGrid__item a img {
    transition: all 0.3s ease;
}

.ec-shelfGrid__item:hover a img {
    transform: scale(1.05);
}