/* --- DASAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #eaf4ff;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
}

.info-petunjuk {
    text-align: center;
    font-size: 16px;
    color: #34495e;
    margin-bottom: 30px;
}

/* --- TAMPILAN KARTU TOKO --- */
.grid-kartu-toko {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 10px;
}

.kartu-toko {
    text-decoration: none;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    display: block;
}

.kartu-toko:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.gambar-toko {
    height: 170px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ikon-toko {
    font-size: 55px;
    background: rgba(255, 255, 255, 0.75);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.nama-toko {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa, #e3f2fd);
}

.nama-toko h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 5px;
}

.nama-toko p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

/* --- POUP UP DOMPET --- */
.popup-dompet {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.isi-dompet {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tutup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: #999;
}

.btn-dompet {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f39c12;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.btn-dompet:hover {
    background: #e67e22;
}

/* --- HALAMAN AWAL --- */
.halaman-awal {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.kotak {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 2px solid #3498db;
    border-radius: 8px;
    font-size: 16px;
}

.btn-mulai, .btn-belanja, .btn-bayar {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.btn-mulai:hover, .btn-belanja:hover, .btn-bayar:hover {
    background: #219653;
}

/* --- HALAMAN CERITA --- */
.kotak-cerita {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.isi-cerita {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 17px;
}

.dompet-kecil {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background: #fff3cd;
    border-radius: 8px;
}

/* --- HALAMAN TOKO & BARANG --- */
.info-uang {
    font-size: 18px;
    text-align: center;
    background: #e3f2fd;
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0;
}

.daftar-barang {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.barang {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.pilih-barang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #27ae60;
    font-weight: bold;
    cursor: pointer;
}

.pilih-barang input {
    width: auto;
    margin: 0;
}