/* --- COPY DARI SINI (TIMPA SEMUA ISI STYLE.CSS LAMA) --- */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
    --primary: #e85d75;
    --accent: #f6b3c1;
    --dark: #1f2933;
    --gray: #5b6472;
    --surface: #ffffff;
    --surface-2: #fbf6f7;
    --border: rgba(31, 41, 51, 0.08);
    --shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
    --bg-gradient: radial-gradient(circle at 20% 20%, #fff3f5 0%, transparent 35%),
        radial-gradient(circle at 80% 0%, #fff8f0 0%, transparent 40%),
        linear-gradient(160deg, #fff8f5 0%, #fffdfb 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--dark);
    background: var(--bg-gradient);
    min-height: 100vh;
}

/* NAVBAR & HERO SAMA SEPERTI SEBELUMNYA */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 5%; background: rgba(255,255,255,0.86);
    backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--border);
}
.logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--primary); letter-spacing: 0.2px; }
.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    transition: 0.2s;
}
.nav-link:hover { color: var(--primary); border-color: rgba(232, 93, 117, 0.35); }

.hero { text-align: center; padding: 72px 20px 56px; max-width: 720px; margin: 0 auto; }
.hero h1 { font-family: 'Sora', sans-serif; font-size: 2.5rem; margin-bottom: 12px; letter-spacing: 0.2px; }
.hero span { color: var(--primary); }
.hero p { color: var(--gray); margin-bottom: 30px; font-size: 1.05rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    padding-bottom: 60px;
}

/* --- DESAIN KARTU BARU (MODEL TABEL) --- */
.card {
    background: var(--surface);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeUp 0.5s ease both;
    animation-delay: var(--delay, 0ms);
}

.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(232, 93, 117, 0.16); }

.card-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
    border-bottom: 1px solid rgba(31, 41, 51, 0.08); padding-bottom: 14px;
}

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.card-title h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.card-title p { font-size: 0.9rem; color: var(--gray); }

/* TABEL VARIAN */
.variant-list { display: flex; flex-direction: column; gap: 6px; }

.variant-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(31, 41, 51, 0.12);
}
.variant-row:last-child { border-bottom: none; }

.v-label { font-size: 0.95rem; font-weight: 600; color: #3a3f48; }
.v-right { display: flex; align-items: center; gap: 12px; }
.v-price { font-size: 0.98rem; font-weight: 700; color: var(--primary); }

.btn-buy-mini {
    background: var(--dark); color: white;
    padding: 7px 14px; border-radius: 10px;
    text-decoration: none; font-size: 0.82rem; font-weight: 600;
    transition: 0.2s;
    border: 1px solid transparent;
}
.btn-buy-mini:hover { background: var(--primary); }
.btn-buy-mini:focus-visible { outline: 2px solid rgba(232, 93, 117, 0.35); outline-offset: 2px; }

/* FOOTER */
footer { text-align: center; padding: 40px; color: var(--gray); font-size: 0.9rem; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}