body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8f8f8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.site-header, .site-footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.main-nav .nav-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav .nav-list li a {
    color: #ccc;
    text-decoration: none;
}

.product-card {
    display: block;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-thumb img {
    max-width: 100%;
    border-radius: 4px;
}

.price {
    color: #e91e63;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.site-footer p {
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.kami-card-list {
    list-style: none;
    padding: 0;
}

.kami-card-list li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
