
body{background:#E8D0B5;}
.product-image-wrapper {position: relative;}
.handmade-badge {
    position: absolute;
    top: 8px;
    left: 2px;
    background: linear-gradient(135deg, #E8D0B5, #BC572C);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    letter-spacing: 0.4px;
}

/* Optional: Hover-Effekt */
.product-card.handmade:hover .handmade-badge {
    transform: scale(1.05);
    transition: 0.2s ease;
}
details {
        background:#f9f9f9;
        border:1px solid #ddd;
        border-radius:8px;
        margin-bottom:10px;
        padding:12px 16px;
        transition:all .2s ease;
      }
      details:hover {box-shadow:0 2px 8px rgba(0,0,0,0.08);cursor:pointer;}
      details summary {
        font-weight:bold;
        font-size:1rem;
        color:#333;
        outline:none;
        list-style:none;
      }
      details[open] {background:#fff;border-color:#ccc;}
      details p {margin-top:10px;color:#555;}