body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fae4c4;
    margin: 0;
    padding: 40px 0;
}
#judul-toko {
    background-color: rgba(255, 157, 71, 0.719); 
    padding: 20px 0 20px 0;
    margin: 0 auto 80px auto;
    width: 70vw;
    max-width: 700px;
    color: #2d3436;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(230, 126, 34, 0.10);
}
.produk-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.card-produk.asymmetric {
    background-image: linear-gradient(135deg, #fbeee0 60%, #f8c3a0 100%);
    border: 3px solid #e67e22;
    border-radius: 15px 50px 15px 50px;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.18);
    width: 260px;
    padding-top: 60px;
    padding-bottom: 18px;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
    text-align: center;
    overflow: visible;
    margin-bottom: 40px;
}
/* Foto produk lingkaran yang tembus ke atas */
.produk-img-circle {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 6px 18px rgba(44,62,80,0.15);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}
/* Nama produk dengan ID selector */
#produk1-nama, #produk2-nama, #produk3-nama, #produk4-nama {
    color: #2d3436;
    font-size: 1.18em;
    font-weight: bold;
    margin-bottom: 6px;
    margin-top: 56px;
}
/* Harga produk dengan class selector */
.harga-produk {
    color: #e17055;
    font-weight: bold;
    font-size: 1.15em;
    margin: 8px 0;
}
/* Tombol beli */
.btn-beli {
    background-color: goldenrod;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.btn-beli:hover {
    background-color: #e3df09;
}
/* Deskripsi singkat dengan tag selector */
p {
    font-size: 0.97em;
    color: #636e72;
    margin-bottom: 8px;
}