/* ==========================================================
   Grosir Kerupuk Nusantara — gaya tampilan toko
   ========================================================== */

:root {
    --bg: #faf5ec;
    --kartu: #ffffff;
    --teks: #33261b;
    --teks-lembut: #8a7a6a;
    --primer: #d9480f;
    --primer-gelap: #b93c0c;
    --primer-muda: #ffe8d9;
    --wa: #25d366;
    --wa-gelap: #1da851;
    --merah: #c92a2a;
    --border: #eadfce;
    --radius: 16px;
    --bayang: 0 1px 2px rgba(51, 38, 27, .05), 0 10px 28px rgba(51, 38, 27, .08);
    --bayang-hover: 0 2px 4px rgba(51, 38, 27, .07), 0 16px 36px rgba(51, 38, 27, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--teks);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* ---------- Header ---------- */
.kepala {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.kepala-dalam {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.logo {
    width: 46px;
    height: 46px;
    flex: none;
    display: grid;
    place-items: center;
    font-size: 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59f00, #d9480f);
    box-shadow: 0 4px 10px rgba(217, 72, 15, .3);
}
.nama-toko { font-weight: 800; font-size: 1.2rem; line-height: 1.2; }
.tagline { font-size: .78rem; color: var(--teks-lembut); }
.toolbar {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.badge-admin {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    background: var(--primer-muda);
    color: var(--primer-gelap);
    padding: 4px 10px;
    border-radius: 999px;
}

/* ---------- Tombol ---------- */
.tombol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 9px 16px;
    font: inherit;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.tombol:active { transform: scale(.97); }
.tombol:disabled { opacity: .6; cursor: wait; }
.tombol-primer { background: var(--primer); color: #fff; box-shadow: 0 4px 12px rgba(217, 72, 15, .25); }
.tombol-primer:hover { background: var(--primer-gelap); }
.tombol-ghost { background: #fff; color: var(--teks); border-color: var(--border); }
.tombol-ghost:hover { background: #f6efe3; }
.tombol-wa { background: var(--wa); color: #fff; width: 100%; box-shadow: 0 4px 12px rgba(37, 211, 102, .28); }
.tombol-wa:hover { background: var(--wa-gelap); }

.tombol-kecil {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--teks);
    border-radius: 8px;
    padding: 5px 12px;
    font: inherit;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
}
.tombol-kecil:hover { background: #f6efe3; }
.tombol-kecil-merah { color: var(--merah); border-color: #f3c7c7; }
.tombol-kecil-merah:hover { background: #fdf0f0; }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(120deg, #f59f00 0%, #e8590c 55%, #d9480f 100%);
    color: #fff;
    text-align: center;
    padding: 44px 20px;
}
.hero h1 {
    margin: 0 0 6px;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.hero p { margin: 0 0 14px; font-size: 1rem; opacity: .95; }
.poin {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    font-size: .85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .16);
    padding: 8px 18px;
    border-radius: 999px;
}

/* ---------- Daftar produk ---------- */
.daftar { max-width: 1120px; margin: 0 auto; padding: 30px 20px 64px; }
.judul-seksi { margin: 0 0 4px; font-size: 1.35rem; }
.sub-seksi { margin: 0 0 20px; color: var(--teks-lembut); font-size: .88rem; }
.kosong { color: var(--teks-lembut); padding: 40px 0; text-align: center; }

.grid-produk {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

.kartu {
    background: var(--kartu);
    border-radius: var(--radius);
    box-shadow: var(--bayang);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .16s ease, box-shadow .16s ease;
}
.kartu:hover { transform: translateY(-4px); box-shadow: var(--bayang-hover); }

.foto { position: relative; aspect-ratio: 4 / 3; background: #f6efe3; overflow: hidden; }
.foto > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foto-kosong {
    position: absolute;
    inset: 12px;
    border: 2px dashed #d8c9ae;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #a08e76;
    font-size: .78rem;
    text-align: center;
    padding: 8px;
}
.ikon-foto { font-size: 1.6rem; }

.isi {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.nama-produk { margin: 0; font-size: 1rem; font-weight: 800; line-height: 1.3; }
.nama-kosong { color: #b5a48c; font-weight: 600; }
.deskripsi { margin: 0; font-size: .82rem; color: var(--teks-lembut); }
.harga { margin-top: auto; padding-top: 4px; font-size: 1.08rem; font-weight: 800; color: var(--primer); }
.harga-kosong { color: #b5a48c; font-weight: 600; }
.aksi-admin { display: flex; gap: 8px; margin-top: 8px; }
.aksi-admin .tombol-kecil { flex: 1; }

/* ---------- Modal ---------- */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(38, 26, 15, .55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.overlay.tampil { display: flex; }
.modal {
    background: #fff;
    border-radius: var(--radius);
    max-width: 460px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
}
.modal h3 { margin: 0 0 4px; font-size: 1.15rem; }
.modal-ket { margin: 0 0 16px; font-size: .84rem; color: var(--teks-lembut); }

.form-field { margin-bottom: 14px; }
.form-field label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.form-field input[type=text],
.form-field input[type=number],
.form-field input[type=password],
.form-field textarea {
    width: 100%;
    font: inherit;
    font-size: .9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    background: #fffdf9;
    color: var(--teks);
}
.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid #f59f00;
    outline-offset: 0;
    border-color: transparent;
}
.form-field textarea { resize: vertical; }
.form-field input[type=file] { font-size: .82rem; width: 100%; }

.hint-harga { margin-top: 5px; font-size: .8rem; font-weight: 700; color: var(--primer); min-height: 1em; }
.login-gagal {
    color: var(--merah);
    font-size: .84rem;
    font-weight: 600;
    margin: 4px 0 10px;
    min-height: 1.2em;
}

.foto-sekarang { margin-top: 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.foto-sekarang img {
    width: 84px;
    height: 63px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.hapus-foto {
    font-size: .8rem;
    color: var(--merah);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.foto-preview { margin-top: 10px; }
.foto-preview img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #f6efe3;
}

.baris-tombol { display: flex; gap: 10px; margin-top: 18px; }
.baris-tombol .tombol { flex: 1; }

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #33261b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    display: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    max-width: 90vw;
    text-align: center;
}
.toast.tampil { display: block; }
.toast.gagal { background: #c92a2a; }

/* ---------- Footer ---------- */
.kaki {
    background: #2f2419;
    color: #c9b49d;
    text-align: center;
    padding: 28px 20px;
    font-size: .85rem;
}
.kaki-nama { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.kaki-wa a { color: #ffd8a8; text-decoration: none; font-weight: 600; }
.kaki-wa a:hover { text-decoration: underline; }
.kaki-cr { margin-top: 12px; opacity: .7; font-size: .78rem; }

/* ---------- Keranjang di kartu produk ---------- */
.baris-beli { display: flex; gap: 8px; margin-top: 8px; }

.stepper {
    display: flex;
    align-items: center;
    flex: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.stepper-tombol {
    width: 32px;
    height: 38px;
    border: 0;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teks);
    cursor: pointer;
}
.stepper-tombol:hover { background: #f6efe3; }
.stepper-angka {
    width: 40px;
    border: 0;
    text-align: center;
    font: inherit;
    font-size: .9rem;
    font-weight: 700;
    background: transparent;
    color: var(--teks);
    -moz-appearance: textfield;
    appearance: textfield;
}
.stepper-angka::-webkit-outer-spin-button,
.stepper-angka::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.tombol-keranjang {
    flex: 1;
    background: var(--primer);
    color: #fff;
    box-shadow: 0 4px 12px rgba(217, 72, 15, .25);
}
.tombol-keranjang:hover { background: var(--primer-gelap); }
.tombol-keranjang.nonaktif,
.tombol-keranjang:disabled {
    background: #d8cdbd;
    color: #fff;
    box-shadow: none;
    cursor: not-allowed;
}

/* ---------- Tombol keranjang di header ---------- */
.tombol-keranjang-header { background: var(--primer); color: #fff; }
.tombol-keranjang-header:hover { background: var(--primer-gelap); }
.keranjang-badge {
    background: #fff;
    color: var(--primer);
    border-radius: 999px;
    padding: 0 7px;
    font-size: .72rem;
    font-weight: 800;
    min-width: 18px;
    line-height: 18px;
    text-align: center;
    display: inline-block;
}

/* ---------- Drawer keranjang ---------- */
.overlay-kanan {
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
}
.drawer {
    background: #fff;
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .2);
}
.overlay.tampil .drawer { animation: geserMasuk .25s ease; }
@keyframes geserMasuk {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.drawer-kepala {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.drawer-kepala h3 { margin: 0; font-size: 1.1rem; }
.drawer-tutup {
    border: 0;
    background: #f3ead9;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--teks);
}
.drawer-tutup:hover { background: var(--primer-muda); }

.drawer-isi {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.keranjang-kosong {
    text-align: center;
    color: var(--teks-lembut);
    padding: 48px 0;
    font-size: .9rem;
    line-height: 1.7;
}

.item-keranjang {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}
.item-foto {
    width: 64px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex: none;
    background: #f6efe3;
}
.item-foto-kosong {
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    border: 1px dashed #d8c9ae;
}
.item-info { flex: 1; min-width: 0; }
.item-nama { font-weight: 700; font-size: .88rem; line-height: 1.3; }
.item-harga { font-size: .75rem; color: var(--teks-lembut); }
.item-baris { display: flex; align-items: center; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.item-subtotal { font-weight: 800; color: var(--primer); font-size: .85rem; margin-left: auto; }
.item-hapus {
    border: 0;
    background: transparent;
    color: #c9b49d;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}
.item-hapus:hover { color: var(--merah); }

.stepper-kecil .stepper-tombol { width: 26px; height: 30px; font-size: .95rem; }
.stepper-kecil .stepper-angka { width: 34px; height: 30px; font-size: .82rem; }

.drawer-kaki {
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fffdf9;
}
.baris-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 800;
}
.baris-total .total-angka { color: var(--primer); font-size: 1.15rem; }
.tombol-kosongkan {
    align-self: center;
    background: none;
    border: 0;
    color: var(--merah);
    font: inherit;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* ---------- Akun pembeli ---------- */
.sapaan { font-size: .85rem; color: var(--teks-lembut); }
.sapaan strong { color: var(--teks); }
.pindah-modal { margin: 14px 0 0; font-size: .82rem; text-align: center; color: var(--teks-lembut); }
.pindah-modal a { color: var(--primer); font-weight: 700; }

.ajakan-login {
    margin: 0;
    text-align: center;
    font-size: .84rem;
    color: var(--teks-lembut);
}
.checkout-form { display: flex; flex-direction: column; }
.checkout-form .form-field { margin-bottom: 10px; }

/* ---------- Tampilan sukses checkout ---------- */
.sukses-checkout { text-align: center; padding: 26px 10px 10px; }
.sukses-ikon { font-size: 3rem; }
.sukses-checkout h4 { margin: 10px 0 6px; font-size: 1.15rem; }
.sukses-checkout p { margin: 4px 0; font-size: .9rem; }
.sukses-ket { color: var(--teks-lembut); font-size: .8rem !important; margin-top: 12px !important; }

/* ---------- Badge status pesanan ---------- */
.badge-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}
.st-baru { background: #e7f5ff; color: #1971c2; }
.st-diproses { background: var(--primer-muda); color: var(--primer-gelap); }
.st-dikirim { background: #ebfbee; color: #2b8a3e; }
.st-selesai { background: #f1f3f5; color: #495057; }

/* ---------- Halaman Pesanan Saya ---------- */
.daftar-pesanan { display: flex; flex-direction: column; gap: 16px; }
.kartu-pesanan {
    background: var(--kartu);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--bayang);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kpo-kepala { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.kpo-tanggal { color: var(--teks-lembut); font-size: .8rem; }
.kpo-item { display: flex; flex-direction: column; gap: 4px; }
.kpo-baris { display: flex; justify-content: space-between; gap: 12px; font-size: .87rem; }
.kpo-baris span:first-child { color: var(--teks); }
.kpo-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px dashed var(--border);
    padding-top: 8px;
    font-weight: 800;
}
.kpo-total span:last-child { color: var(--primer); font-size: 1.05rem; }
.kpo-alamat { font-size: .82rem; color: var(--teks-lembut); line-height: 1.5; }
.kpo-alamat strong { color: var(--teks); }
.kpo-catatan { margin-top: 2px; font-style: italic; }
.kpo-info-status { font-size: .8rem; background: #fff8ec; border: 1px solid #f3e3c0; border-radius: 8px; padding: 8px 12px; }

/* ---------- Halaman admin ---------- */
.halaman-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.admin-kepala {
    background: #2f2419;
    color: #fff;
    border-bottom: 3px solid var(--primer);
}
.admin-kepala-dalam {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-judul { display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.admin-judul .logo { width: 36px; height: 36px; font-size: 18px; border-radius: 9px; }
.admin-tombol { display: flex; gap: 8px; }
.admin-isi { max-width: 1120px; margin: 0 auto; padding: 24px 20px 64px; }

.tab-bar { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.tab {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--teks);
    border-radius: 999px;
    padding: 8px 18px;
    font: inherit;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
}
.tab-aktif { background: var(--primer); border-color: var(--primer); color: #fff; }

.panel { display: flex; flex-direction: column; gap: 16px; }
.daftar-pesanan-admin { display: flex; flex-direction: column; gap: 16px; }
.kartu-pesanan-admin {
    background: var(--kartu);
    border: 1px solid var(--border);
    border-left: 5px solid var(--primer);
    border-radius: 12px;
    box-shadow: var(--bayang);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kpo-pembeli { font-size: .88rem; }
.tautan-wa { color: var(--wa-gelap); font-weight: 700; text-decoration: none; }
.tautan-wa:hover { text-decoration: underline; }
.kpo-kaki {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px dashed var(--border);
    padding-top: 10px;
}
.kpo-kaki .kpo-total { border-top: 0; padding-top: 0; gap: 8px; }
.label-status { font-size: .85rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.pilih-status {
    font: inherit;
    font-size: .85rem;
    font-weight: 700;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 10px;
    background: #fffdf9;
    color: var(--teks);
    cursor: pointer;
}

.bungkus-tabel { overflow-x: auto; background: var(--kartu); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--bayang); }
.tabel { width: 100%; border-collapse: collapse; font-size: .85rem; min-width: 640px; }
.tabel th {
    background: #f6efe3;
    text-align: left;
    padding: 10px 12px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--teks-lembut);
}
.tabel td { padding: 10px 12px; border-top: 1px solid var(--border); vertical-align: top; }

/* ---------- Pembayaran ---------- */
.st-dibayar { background: #f3f0ff; color: #6741d9; }

.notif-banner {
    background: #fff3bf;
    border: 1px solid #ffd43b;
    color: #5c4a00;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .88rem;
    line-height: 1.6;
}

.pilih-metode { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 4px 0 12px; }
.metode-kartu {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    background: #fffdf9;
    transition: border-color .15s ease, background .15s ease;
}
.metode-kartu small { color: var(--teks-lembut); font-size: .72rem; line-height: 1.4; }
.metode-kartu.metode-aktif { border-color: var(--primer); background: var(--primer-muda); }
.metode-kartu input[type=radio] { accent-color: var(--primer); }
.metode-ikon { font-size: 1.5rem; }

.panel-metode { margin-bottom: 12px; }
.qris-bungkus { text-align: center; }
.qris-img { max-width: 260px; width: 100%; border: 1px solid var(--border); border-radius: 12px; }
.bukti-thumb { max-width: 240px; width: 100%; border: 1px solid var(--border); border-radius: 12px; }

.kartu-rekening {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px 14px;
    background: #fffdf9;
}
.rekening-baris {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    font-size: .88rem;
}
.rekening-baris + .rekening-baris { border-top: 1px dashed var(--border); }
.rekening-baris span { color: var(--teks-lembut); }
.rekening-nomor { letter-spacing: .04em; }

.blok-pembayaran {
    border: 1px solid #d0bfff;
    background: #f8f6ff;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bp-info { font-size: .85rem; }
.bp-bukti {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: #6741d9;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
}
.bp-bukti:hover { text-decoration: underline; }
.bp-bukti img {
    width: 56px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #d0bfff;
}
.bp-tombol { display: flex; gap: 8px; flex-wrap: wrap; }
.tombol-verif { background: #2b8a3e; border-color: #2b8a3e; color: #fff; }
.tombol-verif:hover { background: #237032; }

/* ---------- Responsif ---------- */
@media (max-width: 600px) {
    .kepala-dalam { padding: 10px 14px; }
    .hero { padding: 32px 16px; }
    .hero h1 { font-size: 1.5rem; }
    .grid-produk { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .nama-produk { font-size: .92rem; }
    .deskripsi { font-size: .76rem; }
    .drawer { max-width: 100%; }
    .tombol-keranjang { font-size: .8rem; padding: 9px 10px; }
    .sapaan { display: none; }
    .admin-kepala-dalam { padding: 10px 14px; }
    .kpo-kaki { flex-direction: column; align-items: stretch; }
    .pilih-metode { grid-template-columns: 1fr; }
}
