/* 商品ページのスタイル */

#img-box-postcard {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.itemimg {
    max-width: 100%;
}

/* postcard カテゴリの .skuname のスタイル */
.sku-list.postcard .skuname {
    border: 2px solid black !important;
    padding: 10px !important;
    text-align: center !important;
    font-weight: bold !important;
}

/* 背景色のループ設定 */
.sku-list.postcard .skuname:nth-child(4n+1) {
    background-color: white !important;
}
.sku-list.postcard .skuname:nth-child(4n+2) {
    background-color: #fffdd0 !important; /* クリーム */
}
.sku-list.postcard .skuname:nth-child(4n+3) {
    background-color: #ffdb58 !important; /* カスタード */
}
.sku-list.postcard .skuname:nth-child(4n+4) {
    background-color: white !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #img-box-postcard {
        flex-direction: column;
        gap: 15px;
    }
    .itemimg img {
        width: 100%;
        height: auto;
    }
    .sku-list.postcard .skuname {
        padding: 8px !important;
        font-size: 14px !important;
    }
}
