/**
 * recent-products.css
 * Version 0.4
 *
 * 最近見た商品の表示スタイル
 */

#cf-recent-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 30px 0;
}

#cf-recent-products .cf-recent-product {
    min-width: 0;
}

#cf-recent-products .cf-recent-product a {
    display: block;
    color: inherit;
    text-decoration: none;
}

#cf-recent-products .cf-recent-product img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#cf-recent-products .cf-recent-product-name {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

#cf-recent-products .cf-recent-product-price {
    margin-top: 6px;
    font-size: 15px;
    font-weight: bold;
}


/* タブレット */

@media screen and (max-width: 768px) {

    #cf-recent-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

}


/* スマートフォン */

@media screen and (max-width: 480px) {

    #cf-recent-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    #cf-recent-products .cf-recent-product-name {
        font-size: 13px;
    }

    #cf-recent-products .cf-recent-product-price {
        font-size: 14px;
    }

}