.smws-product-widget {
    margin: 3em 0 30px 0;
    min-height: 100px;
}

.smws-product-block-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

.smws-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
@media (max-width: 768px) {
    .smws-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 5px;
    }
}

.smws-product-item {
    /*border: 1px solid #fff;*/
    /*padding: 10px;*/
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.smws-product-item a{
    text-decoration: none !important;
    color: #000 !important;
}

.smws-product-item:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 3px 5px rgba(0,0,0,0.1);*/
}

.smws-product-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.smws-product-info{
    text-align: left;
    width: 100%;
}
.smws-product-image img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.smws-product-item:hover .smws-product-image img {
    transform: scale(1.05);
}

.smws-product-item .smws-product-name {
    margin: 0;
    font-size: 1.2rem;
    /*font-weight: bold;*/
}

.smws-product-item .smws-product-price {
    margin: 0;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0;
}

.smws-product-item .smws-product-soldout {
    color: #CC1800;
    font-size: 1rem;
}

/* フレーバー表示用スタイル */
.smws-product-item .p-productDetaiMain-head__flavor {
    margin: 0 0 .3em 0;
    display: flex;
    justify-content: center;
}

.smws-product-campaign-icons {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.smws-product-campaign-icon img {
    height: 15px;
    width: auto;
    display: block;
}

.smws-product-item .p-productDetaiMain-head__flavor-name {
    display: inline-block;
    padding: 3px 8px;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
}

