/*
 Theme Name:   Storefront Child
 Template:     storefront
*/

/* フォントと全体の色調 */
body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}

/* ヘッダーのポイントバッジ */
.header-point-badge {
    float: right;
    background: linear-gradient(135deg, #1a2a6c, #2a4858); /* ナイト・ネイビー */
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid #d4af37; /* ゴールド */
}

.header-point-badge .unit { font-size: 0.8em; margin-left: 3px; }

/* 商品カードの高級化 */
.products .product {
    border: 1px solid #eee !important;
    border-radius: 15px !important;
    padding: 20px !important;
    transition: 0.3s;
}

.products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ボタンをゴールドに */
.button.alt, .button {
    background-color: #1a2a6c !important;
    color: #fff !important;
    border-radius: 30px !important;
    font-weight: bold !important;
}

.button:hover {
    background-color: #d4af37 !important; /* ホバーでゴールド */
}