@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg:       #f7f6f3;
    --paper:    #ffffff;
    --ink:      #17160f;
    --line:     #e6e3dc;
    --line-dark:#c9c4b8;
    --muted:    #8c8778;
    --accent:   #3a4536;
    --accent-soft: #eef0ea;
    --danger:   #973b3b;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 1px solid var(--ink);
    outline-offset: 3px;
}

/* ===================== NAVBAR ===================== */
.navbar {
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.logo {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-transform: uppercase;
    justify-self: start;
}
.nav-center {
    display: flex;
    align-items: center;
    gap: 34px;
    justify-self: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 600;
}
.nav-center a {
    color: var(--ink);
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.2s ease;
}
.nav-center a:hover { opacity: 0.55; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: end;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
    flex-wrap: wrap;
}
.nav-right-link { color: var(--ink); transition: opacity 0.2s ease; display: inline-flex; align-items: center; }
.nav-right-link:hover { opacity: 0.55; }
.nav-user { color: var(--ink); cursor: default; }
.nav-cart { gap: 4px; }
.badge {
    background: var(--ink);
    color: var(--paper);
    border-radius: 50%;
    width: 16px; height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    margin-left: 5px;
    font-weight: 700;
}

/* ===================== LAYOUT ===================== */
.main-content {
    max-width: 1180px;
    margin: 56px auto;
    padding: 0 28px;
    min-height: 60vh;
}

.footer {
    background: var(--paper);
    color: var(--muted);
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
    font-size: 12.5px;
    border-top: 1px solid var(--line);
}
.footer-container p:first-child {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

/* ===================== BANNER ===================== */
.banner {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 64px;
    overflow: hidden;
    border: 1px solid var(--line);
}
.banner img { width: 100%; display: block; filter: saturate(0.9) contrast(1.02); }

/* ===================== SECTION HEADINGS ===================== */
h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.01em;
}
.main-content > h2 {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

/* ===================== PRODUCT GRID ===================== */
.produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 36px 28px;
}

.produk-card {
    background: transparent;
    border: none;
    position: relative;
    transition: opacity 0.2s ease;
}
.produk-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--accent-soft);
    display: block;
    transition: transform 0.5s ease;
}
.produk-card:hover img { transform: scale(1.035); }
.produk-card-body { padding: 16px 2px 0; }
.produk-card-body h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13.5px;
    margin-bottom: 6px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.harga {
    color: var(--muted);
    font-weight: 400;
    font-size: 13.5px;
    letter-spacing: 0.01em;
}
.produk-card-body .btn {
    display: none;
}
.produk-card-body {
    position: relative;
}
.produk-card::after {
    content: '';
    position: absolute;
    inset: 0;
    bottom: auto;
    height: 300px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
    pointer-events: none;
}
.produk-card:hover::after { border-color: var(--line-dark); }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    padding: 13px 26px;
    border-radius: 1px;
    border: 1px solid var(--ink);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 10px;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.2s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-danger { background: transparent; color: var(--danger); border: 1px solid var(--danger); }
.btn-danger:hover { background: var(--danger); color: var(--paper); }
.btn:disabled { opacity: 0.35; cursor: not-allowed; }
.btn:disabled:hover { background: var(--ink); color: var(--paper); }

/* Product card CTA visible again as text link style, restrained */
.produk-card-body > a.btn {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    border: none;
    padding: 0;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-top: 10px;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
}
.produk-card-body > a.btn:hover { color: var(--muted); border-color: var(--muted); background: transparent; }

/* ===================== FORMS ===================== */
.form-box {
    max-width: 440px;
    margin: 20px auto;
    background: var(--paper);
    padding: 48px 44px;
    border-radius: 2px;
    border: 1px solid var(--line);
}
.form-box h2 {
    margin-bottom: 32px;
    text-align: center;
    font-size: 26px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 1px;
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ink);
    outline: none;
}
.form-box .btn { width: 100%; padding: 15px; font-size: 12px; text-align: center; }
.form-footer {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: var(--muted);
}
.form-footer a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--ink); }

/* ===================== ALERTS ===================== */
.alert {
    padding: 14px 18px;
    border-radius: 1px;
    margin-bottom: 20px;
    font-size: 13px;
    border: 1px solid;
}
.alert-error { background: #fbf4f3; color: var(--danger); border-color: #e6cfcc; }
.alert-success { background: var(--accent-soft); color: var(--accent); border-color: #d6dccd; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 40px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-weight: 500;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-current { color: var(--ink); }

/* ===================== DETAIL PRODUK ===================== */
.detail-produk {
    display: flex;
    gap: 64px;
    background: transparent;
    padding: 0;
    border: none;
    flex-wrap: wrap;
}
.detail-gallery { flex: 1 1 400px; max-width: 500px; }
.detail-gallery-main {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    background: var(--paper);
}
.detail-gallery-main img { width: 100%; height: 560px; object-fit: cover; display: block; }
.ribbon {
    position: absolute;
    top: 18px; left: 18px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
    padding: 6px 12px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--ink);
}
.ribbon-out { color: var(--danger); border-color: var(--danger); }
.ribbon-low { color: var(--ink); }

.detail-info { flex: 1 1 340px; min-width: 300px; padding-top: 6px; }
.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    display: block;
    margin-bottom: 14px;
    font-weight: 600;
}
.detail-info h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 38px;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: 0.01em;
}
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.stars { color: var(--ink); font-size: 12px; letter-spacing: 1px; }
.rating-text { font-size: 12px; color: var(--muted); }

.detail-info .harga {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ink);
    display: block;
    margin: 4px 0 26px;
    font-weight: 500;
}
.harga .rp { font-size: 16px; opacity: 0.6; margin-right: 4px; }

.deskripsi { color: #57534a; margin-bottom: 28px; max-width: 46ch; font-size: 14.5px; }

.stock-row {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}
.stock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.stock-dot-low { background: #a68a3f; }
.stock-dot-off { background: var(--danger); }

.size-selector { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.size-selector input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.size-chip {
    border: 1px solid var(--line-dark);
    border-radius: 1px;
    min-width: 44px;
    text-align: center;
    padding: 10px 14px;
    font-size: 12.5px;
    cursor: pointer;
    transition: all 0.15s ease;
    background: var(--paper);
    color: var(--ink);
}
.size-selector input[type="radio"]:checked + .size-chip {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.size-selector input[type="radio"]:disabled + .size-chip { opacity: 0.35; cursor: not-allowed; }
.size-guide-link {
    display: inline-block;
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 10px;
    border-bottom: 1px solid var(--line-dark);
}
.size-guide-link:hover { color: var(--ink); border-color: var(--ink); }

.qty-selector { display: inline-flex; align-items: stretch; border: 1px solid var(--line-dark); border-radius: 1px; width: fit-content; }
.qty-btn {
    width: 40px;
    background: var(--paper);
    border: none;
    font-size: 15px;
    cursor: pointer;
    color: var(--ink);
}
.qty-btn:hover { background: var(--bg); }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-selector input {
    width: 54px;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-size: 13.5px;
    background: var(--paper);
}

.detail-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.detail-actions .btn { margin-top: 0; flex: 1; min-width: 170px; text-align: center; }

.trust-badges {
    list-style: none;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12.5px;
    color: var(--muted);
}
.trust-icon { display: inline-block; width: 18px; color: var(--ink); }

/* ===================== STEP INDICATOR ===================== */
.steps {
    display: flex;
    gap: 4px;
    margin-bottom: 44px;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    flex-wrap: wrap;
    font-weight: 500;
}
.step { display: flex; align-items: center; gap: 9px; padding: 4px 16px 4px 0; position: relative; }
.step:not(:last-child)::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--line);
    margin-left: 12px;
}
.step-num {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    background: var(--paper);
    color: var(--muted);
}
.step-active { color: var(--ink); font-weight: 600; }
.step-active .step-num { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.step-done .step-num { background: var(--paper); border-color: var(--ink); color: var(--ink); }

/* ===================== PAYMENT PAGE ===================== */
.payment-layout { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.payment-main { flex: 1 1 460px; min-width: 300px; }
.payment-sidebar { flex: 0 1 340px; min-width: 280px; position: sticky; top: 100px; }

.panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 32px;
}
.panel-title {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 500;
}

.payment-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.payment-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.payment-option-card {
    border: 1px solid var(--line);
    border-radius: 1px;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.15s ease;
}
.payment-option-card-active { border-color: var(--ink); }
.payment-option-title { font-weight: 600; font-size: 13.5px; letter-spacing: 0.01em; }
.payment-option-desc { font-size: 12px; color: var(--muted); }

.payment-detail { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }

.bank-tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.bank-tab {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border: 1px solid var(--line-dark);
    background: var(--paper);
    cursor: pointer;
    border-radius: 1px;
    color: var(--ink);
}
.bank-tab-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.va-box { background: var(--bg); border-radius: 1px; padding: 20px 22px; margin-bottom: 16px; border: 1px solid var(--line); }
.va-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: block; margin-bottom: 10px; font-weight: 600; }
.va-number { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.va-number span { font-size: 19px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.copy-btn {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 8px 16px;
    border-radius: 1px;
    cursor: pointer;
    font-weight: 600;
}
.copy-btn:hover { background: var(--ink); color: var(--paper); }
.va-steps { padding-left: 18px; font-size: 13px; color: #57534a; display: flex; flex-direction: column; gap: 7px; }

.qris-placeholder {
    width: 168px; height: 168px;
    background: var(--paper);
    border: 1px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 12px;
    margin: 0 auto;
}

.countdown-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 1px;
    padding: 16px 18px;
    text-align: center;
    margin-bottom: 24px;
}
.countdown-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.countdown-timer { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: 0.03em; font-variant-numeric: tabular-nums; }

.order-items { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.order-items li { display: flex; align-items: center; gap: 14px; }
.order-items img { width: 46px; height: 58px; object-fit: cover; border: 1px solid var(--line); }
.order-items li > div { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.order-item-name { font-size: 13px; font-weight: 500; }
.order-item-meta { font-size: 11px; color: var(--muted); }
.order-item-price { font-size: 12.5px; color: var(--muted); }

.summary-row {
    display: flex; justify-content: space-between;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: #57534a;
}
.summary-total {
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
    border-top: 1px solid var(--ink);
    margin-top: 4px;
    padding-top: 14px;
}

.confirm-box {
    max-width: 460px;
    margin: 40px auto;
    text-align: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 56px 40px;
}
.confirm-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin: 0 auto 22px;
}
.confirm-box h2 { margin-bottom: 12px; }
.confirm-box p { color: var(--muted); font-size: 14px; }

/* ===================== TABLES ===================== */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    border: 1px solid var(--line);
}
table th, table td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 13.5px;
}
table th {
    background: var(--paper);
    color: var(--muted);
    text-transform: uppercase;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
}
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--bg); }

.total-box {
    text-align: right;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    font-family: var(--font-display);
}

/* ===================== ADMIN ===================== */
.admin-wrapper { display: flex; min-height: 80vh; gap: 28px; }
.admin-sidebar {
    width: 210px;
    background: var(--paper);
    color: var(--ink);
    border-radius: 2px;
    padding: 28px 20px;
    height: fit-content;
    border: 1px solid var(--line);
}
.admin-sidebar a {
    display: block;
    color: var(--muted);
    padding: 11px 4px;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
}
.admin-sidebar a:last-child { border-bottom: none; }
.admin-sidebar a:hover { color: var(--ink); }
.admin-content {
    flex: 1;
    background: var(--paper);
    padding: 32px;
    border-radius: 2px;
    border: 1px solid var(--line);
}
.admin-content h2 { margin-bottom: 20px; font-size: 22px; }

/* ===================== HERO BANNER (FULL SCREEN) ===================== */
.main-content:has(.hero-banner) {
    margin: 0;
    padding: 0;
    max-width: none;
    min-height: 0;
}
.hero-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: calc(100vh - 81px);
    min-height: 460px;
    overflow: hidden;
    background: var(--ink);
}
.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02) brightness(0.86);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(23,22,15,0.05) 0%, rgba(23,22,15,0.25) 100%);
}
.hero-cta {
    display: inline-block;
    padding: 18px 46px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: background 0.3s ease, color 0.3s ease;
}
.hero-cta:hover { background: #ffffff; color: var(--ink); }

@media (max-width: 640px) {
    .hero-banner { height: calc(100vh - 130px); min-height: 380px; }
    .hero-cta { padding: 15px 32px; font-size: 11px; }
}

/* ===================== ABOUT PAGE ===================== */
.about-hero { max-width: 640px; margin-bottom: 50px; }
.about-hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 38px;
    margin: 10px 0 18px;
    line-height: 1.15;
}
.about-lead { color: #57534a; font-size: 15px; max-width: 56ch; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.about-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 32px;
}
.about-panel-highlight { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.about-panel-highlight .about-panel-title,
.about-panel-highlight .about-text { color: var(--paper); }
.about-panel-highlight .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.about-panel-highlight .btn:hover { background: transparent; color: var(--paper); }

.about-panel-title { font-size: 19px; margin-bottom: 18px; font-weight: 500; }
.about-text { color: #57534a; font-size: 13.5px; line-height: 1.7; }

.nib-box {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 16px 18px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nib-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.nib-number { font-size: 20px; font-weight: 600; letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }

.maps-embed { border: 1px solid var(--line); overflow: hidden; line-height: 0; }

.social-list { list-style: none; display: flex; flex-direction: column; }
.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    transition: opacity 0.2s ease;
}
.social-list li:first-child .social-link { padding-top: 0; }
.social-list li:last-child .social-link { border-bottom: none; padding-bottom: 0; }
.social-link:hover { opacity: 0.55; }
.social-arrow { margin-left: auto; font-size: 14px; }
.social-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    background: var(--ink);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.social-icon[data-icon="instagram"] { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E"); }
.social-icon[data-icon="tiktok"] { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M16 3c.5 2.3 2 3.8 4.3 4v3c-1.6 0-3-.5-4.3-1.4v6.6a5.7 5.7 0 1 1-5.7-5.7c.3 0 .6 0 .9.1v3.1a2.6 2.6 0 1 0 1.8 2.5V3h3z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M16 3c.5 2.3 2 3.8 4.3 4v3c-1.6 0-3-.5-4.3-1.4v6.6a5.7 5.7 0 1 1-5.7-5.7c.3 0 .6 0 .9.1v3.1a2.6 2.6 0 1 0 1.8 2.5V3h3z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="whatsapp"] { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M20 12a8 8 0 1 1-3.8-6.8'/%3E%3Cpath d='M20.5 3.5 16 8'/%3E%3Cpath d='M8.5 9.5c0 3 2.5 5.5 5.5 5.5l1-2-2.5-1-1 1c-1-.5-2-1.5-2.5-2.5l1-1-1-2.5-2 1z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M20 12a8 8 0 1 1-3.8-6.8'/%3E%3Cpath d='M20.5 3.5 16 8'/%3E%3Cpath d='M8.5 9.5c0 3 2.5 5.5 5.5 5.5l1-2-2.5-1-1 1c-1-.5-2-1.5-2.5-2.5l1-1-1-2.5-2 1z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="facebook"] { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M15 8h2V5h-2c-2 0-3.5 1.5-3.5 3.5V11H9v3h2.5v6H14v-6h2.3l.7-3H14V8.8c0-.5.3-.8.8-.8Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M15 8h2V5h-2c-2 0-3.5 1.5-3.5 3.5V11H9v3h2.5v6H14v-6h2.3l.7-3H14V8.8c0-.5.3-.8.8-.8Z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="youtube"] { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Crect x='3' y='6' width='18' height='12' rx='3'/%3E%3Cpath d='M10.5 9.5v5l4.5-2.5z' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Crect x='3' y='6' width='18' height='12' rx='3'/%3E%3Cpath d='M10.5 9.5v5l4.5-2.5z' fill='black'/%3E%3C/svg%3E"); }
.about-panel-highlight .social-icon { background: var(--paper); }

@media (max-width: 780px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 640px) {
    .navbar-container { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 10px; }
    .nav-center, .nav-right { justify-self: center; }
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .detail-produk { flex-direction: column; gap: 32px; }
    .detail-gallery { max-width: 100%; }
    .detail-gallery-main img { height: 420px; }
    .payment-sidebar { position: static; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
