/* 段ボールテクスチャ（CSSパターンで簡易再現） */
body {
    background-color: #cbbfa3;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #5d4037;
}

.hand-font {
    font-family: 'Yomogi', cursive;
}

/* ガムテープ風見出し */
.gum-tape {
    background: #d4a066;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    display: inline-block;
    padding: 0.5rem 2rem;
    position: relative;
    opacity: 0.95;
    border-left: 2px dashed rgba(255,255,255,0.3);
    border-right: 2px dashed rgba(255,255,255,0.3);
}

/* 商品カード（ポラロイド風 + 影） */
.vege-card {
    background: white;
    padding: 10px 10px 40px 10px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    position: relative;
}
.vege-card:hover {
    transform: scale(1.03) rotate(1deg);
    z-index: 10;
}

/* 値札シール */
.price-tag {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background: #ffecb3;
    border: 2px solid #ffca28;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Yomogi', cursive;
    font-weight: bold;
    font-size: 1.2rem;
    color: #d84315;
    transform: rotate(-15deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

/* 泥汚れ（アクセント） */
.mud-splash {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #5d4037;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.1;
    pointer-events: none;
}
