/*
Plugin Name: CB Product Card
Description: CB Product Card用CSS
Version: 1.0.1
Author: bktoramaru.com
*/
.cb-product-card {
    background: #fff;
    border: 1px solid #dfeaf5;
    border-radius: 22px;
    padding: 24px;
    margin: 0 0 28px;
    box-shadow: 0 10px 26px rgba(0, 60, 120, 0.06);
}

.cb-product-card__tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eaf6ff;
    color: #0070c9;
    font-size: 13px;
    font-weight: 700;
}

.cb-product-card__title {
    margin: 0 0 12px;
    color: #24384f;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.6;
}

.cb-product-card__desc {
    margin: 0;
    color: #34495e;
    line-height: 1.9;
}

.cb-product-card__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cb-product-card__btn {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 8px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    line-height: 1.4;
    transition: opacity .2s ease;
}

.cb-product-card__btn:hover {
    opacity: 0.85;
}

.cb-product-card__btn--rakuten {
    background: #f76956;
}

.cb-product-card__btn--amazon {
    background: #232f3e;
}

.cb-product-card__btn--yahoo {
    background: #66a7ff;
}

@media (max-width: 640px) {
    .cb-product-card {
        padding: 20px 16px;
    }

    .cb-product-card__buttons {
        display: block;
    }

    .cb-product-card__btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}