/* =========================================================================
   ESTRIPORA — stylesheet frontend tunggal
   Menyerap seluruh CSS inline halaman, header, footer, dan style.css template.
   Urutan: reset -> token -> utility -> header -> footer -> layout -> komponen
   ========================================================================= */

/* ------------------------------------------------------------------ reset */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    padding-top: var(--header-h);
    background: var(--surface);
    color: var(--ink-2);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 { color: var(--ink); }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-700); }

/* Fokus keyboard terlihat jelas tanpa mengganggu klik mouse. */
:focus-visible {
    outline: 3px solid rgba(25, 135, 84, .45);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* ------------------------------------------------------------------ token */
:root {
    --brand-900: #062e16;
    --brand-800: #0a3d1e;
    --brand-700: #146c43;
    --brand: #198754;
    --brand-400: #20c997;
    --brand-300: #5de0a0;
    --brand-050: #f0fdf4;
    --brand-100: #d1fae5;

    --ink: #1a1a2e;
    --ink-2: #495057;
    --ink-3: #6c757d;
    --line: #e9ecef;
    --line-2: #f0f0f0;
    --surface: #fff;
    --canvas: #f8f9fa;

    --danger: #dc3545;
    --warn: #fd7e14;

    --r-sm: 10px;
    --r: 14px;
    --r-lg: 18px;
    --r-pill: 50px;

    --sh-1: 0 1px 4px rgba(0, 0, 0, .05);
    --sh-2: 0 2px 12px rgba(0, 0, 0, .07);
    --sh-3: 0 12px 36px rgba(0, 0, 0, .13);

    --header-h: 64px;
    --tap: 44px; /* target sentuh minimum */
}

@media (min-width: 1200px) {
    :root { --header-h: 70px; }
}

/* ---------------------------------------------------------------- utility */
/* Bootstrap 5 tidak punya kelas font-weight berangka; ini dipakai di banyak view. */
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.text-brand { color: var(--brand); }
.bg-canvas { background: var(--canvas); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--brand);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 var(--r-sm) 0;
    font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* Reveal saat scroll — pengganti wow.js + animate.css */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------- header */
/* Selalu solid. Header transparan tidak pernah berfungsi karena body memakai
   padding-top, sehingga hero berada di bawah header dan bukan di belakangnya. */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    transition: box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 18px rgba(0, 0, 0, .09); }

.site-header .navbar-brand img { height: 34px; width: auto; }

.site-header .navbar-toggler {
    border: 0;
    min-width: var(--tap);
    min-height: var(--tap);
    padding: 6px 10px;
    border-radius: var(--r-sm);
    background: var(--canvas);
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1;
}
.site-header .navbar-toggler:focus { box-shadow: none; }

/* Menu terlipat tampil sebagai kartu putih di layar kecil. */
.site-header .navbar-collapse {
    background: var(--surface);
    border-radius: var(--r-lg);
    margin-top: 8px;
    padding: 14px;
    box-shadow: var(--sh-3);
}

.nav-link-item {
    display: flex;
    align-items: center;
    min-height: var(--tap);
    padding: 10px 14px;
    border-radius: var(--r-sm);
    color: var(--ink);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .2px;
    transition: color .2s ease, background .2s ease;
}
.nav-link-item:hover { color: var(--brand); background: var(--brand-050); }
.nav-link-item.active { color: var(--brand); }

.header-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line-2);
}
.header-cta .btn {
    width: 100%;
    min-height: var(--tap);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header-username {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ----------------------------------------------------------------- footer */
.site-footer {
    background: var(--brand-900);
    color: rgba(255, 255, 255, .78);
    padding: 44px 0 0;
    font-size: .88rem;
}
.site-footer h2 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: var(--brand-300); }
.site-footer p { margin: 0; }

.footer-logo img { height: 40px; width: auto; margin-bottom: 14px; }

.social-nav { display: flex; gap: 8px; margin-top: 16px; }
.social-nav a {
    width: var(--tap);
    height: var(--tap);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}
.social-nav a:hover { background: var(--brand); transform: translateY(-2px); color: #fff; }

.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-contact i { color: var(--brand-300); font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; }

.footer-map {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: var(--r-sm);
    display: block;
}

.footer-bottom {
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 16px 0;
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .62);
}

/* ------------------------------------------------- scroll top & cookie bar */
.scrolltop {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    width: var(--tap);
    height: var(--tap);
    border: 0;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: var(--sh-3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity .25s ease, transform .25s ease;
}
.scrolltop:hover { background: var(--brand-700); color: #fff; }
.scrolltop[hidden],
.scrolltop.is-hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.cookiealert {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1100;
    display: none;
    background: var(--brand-800);
    color: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-3);
    padding: 18px 20px;
}
.cookiealert h2 { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 8px; }
.cookiealert p { font-size: .84rem; color: rgba(255, 255, 255, .8); margin: 0 0 14px; }

/* ----------------------------------------------------------------- layout */
.page {
    background: var(--canvas);
    padding: 28px 0 48px;
}

.sec { padding: 40px 0; }
.sec--tight { padding: 28px 0; }
.sec--plain { background: var(--surface); }

.sec-heading__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}
.sec-heading__sub {
    font-size: .875rem;
    color: var(--ink-3);
    margin: 4px 0 0;
}

/* ------------------------------------------------------------------- hero */
/* Satu foto besar per halaman; kepadatan informasi ditaruh di bawahnya. */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--brand-800);
    min-height: 260px;
}
.hero--tall { min-height: 340px; align-items: center; }

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 46, 22, .45) 0%, rgba(6, 46, 22, .88) 100%);
}
.hero--tall .hero__veil {
    background: linear-gradient(135deg, rgba(6, 46, 22, .92) 0%, rgba(25, 135, 84, .72) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px 0;
}
.hero--tall .hero__inner { padding: 48px 0 40px; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--r-pill);
    padding: 5px 14px;
    color: rgba(255, 255, 255, .92);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hero__title {
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    margin: 0 0 8px;
}
.hero__title span { color: var(--brand-300); }
.hero__sub { color: rgba(255, 255, 255, .82); font-size: 1rem; margin: 0; }
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: rgba(255, 255, 255, .88);
    font-size: .85rem;
    margin-top: 10px;
}
.hero__meta i { color: var(--brand-300); }
.hero__back {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    margin-bottom: 10px;
}
.hero__back:hover { color: #fff; }

/* Kartu pencarian mengambang di batas hero. */
.searchbox {
    display: flex;
    gap: 8px;
    background: var(--surface);
    border-radius: var(--r);
    padding: 8px;
    box-shadow: var(--sh-3);
    max-width: 620px;
    flex-wrap: wrap;
}
.searchbox input {
    flex: 1 1 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: .95rem;
    padding: 8px 10px;
    color: var(--ink);
}
.searchbox .btn {
    flex: 1 1 100%;
    min-height: var(--tap);
    border-radius: var(--r-sm) !important;
    font-weight: 700;
}

.hero__stats { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 22px; }
.hero__stat { color: rgba(255, 255, 255, .9); }
.hero__stat b {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-300);
    line-height: 1;
}
.hero__stat span { font-size: .74rem; opacity: .85; }

/* ------------------------------------------------------------- filter bar */
.filterbar {
    position: sticky;
    top: var(--header-h);
    z-index: 99;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    padding: 12px 0;
}
.pills {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pills::-webkit-scrollbar { display: none; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 38px;
    padding: 7px 15px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--ink-2);
    font-size: .82rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: all .18s ease;
}
.pill:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-050); }
.pill.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.pill__count {
    background: var(--line);
    color: var(--ink-3);
    border-radius: var(--r-pill);
    padding: 1px 7px;
    font-size: .7rem;
    font-weight: 700;
}
.pill.active .pill__count { background: rgba(255, 255, 255, .25); color: #fff; }

/* ------------------------------------------------------------------- tile */
/* Kartu fasilitas & penginapan — satu komponen untuk keduanya. */
.tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-2);
    transition: transform .25s ease, box-shadow .25s ease;
}
a:hover > .tile,
.tile:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }

.tile__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--line-2);
    flex-shrink: 0;
}
.tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.tile:hover .tile__media img { transform: scale(1.05); }

.tile__tag,
.tile__rank {
    position: absolute;
    top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: var(--r-pill);
    padding: 4px 11px;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
}
.tile__tag {
    right: 10px;
    background: rgba(25, 135, 84, .92);
    border: 1px solid rgba(255, 255, 255, .22);
}
.tile__rank {
    left: 10px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 2px 10px rgba(239, 68, 68, .35);
}
.tile__rank--new {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    box-shadow: 0 2px 10px rgba(99, 102, 241, .35);
}

.tile__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
}
.tile__title {
    font-size: .98rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tile__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    margin-bottom: 12px;
}

.meta-line {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: .8rem;
    color: var(--ink-3);
    line-height: 1.4;
}
.meta-line i { flex-shrink: 0; font-size: .95rem; color: var(--brand); margin-top: 1px; }
.meta-line--proof b { color: var(--brand); }

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 9px 12px;
    margin-bottom: 10px;
    background: var(--brand-050);
    border: 1px solid var(--brand-100);
    border-radius: var(--r-sm);
}
.price__label {
    font-size: .7rem;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .4px;
}
.price__value {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--brand-800);
    line-height: 1;
}
.price__value small { font-size: .74rem; font-weight: 600; color: var(--ink-3); }

.tile__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--tap);
    padding: 10px;
    border: 0;
    border-radius: var(--r-sm);
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: .87rem;
}
.tile__cta:hover { background: var(--brand-700); color: #fff; }

/* --------------------------------------------------------------- surfaces */
.card-surface {
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-2);
    padding: 20px;
    margin-bottom: 18px;
}
.card-surface > h2,
.card-surface > h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-050);
}
.card-surface > h2 i,
.card-surface > h4 i { color: var(--brand); }
.card-surface p { font-size: .9rem; color: var(--ink-2); line-height: 1.7; margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 9px 14px;
    font-size: .82rem;
    color: var(--ink-2);
    box-shadow: var(--sh-1);
}
.chip i { font-size: 1rem; color: var(--brand); }
.chip strong { color: var(--ink); display: block; font-size: .78rem; }

.map-frame {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: var(--r-sm);
    display: block;
}

/* ----------------------------------------------------------- order widget */
/* Satu komponen untuk widget pesan fasilitas maupun penginapan. */
.order-widget {
    position: sticky;
    top: calc(var(--header-h) + 12px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-3);
}
.order-widget__head {
    background: linear-gradient(135deg, var(--brand-800), var(--brand));
    padding: 16px 20px;
}
.order-widget__head h2 {
    color: #fff;
    font-weight: 800;
    font-size: 1.02rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.order-widget__head p { color: rgba(255, 255, 255, .78); font-size: .78rem; margin: 4px 0 0; }
.order-widget__body { padding: 20px; }

.field { margin-bottom: 14px; }
.field > label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink-2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.field > label i { color: var(--brand); font-size: .9rem; }
.field .form-control,
.field .form-select {
    min-height: var(--tap);
    border-radius: var(--r-sm);
    border: 1.5px solid var(--line);
    padding: 10px 13px;
    font-size: .9rem;
}
.field .form-control:focus,
.field .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(25, 135, 84, .12);
}

.btn-primary-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--tap);
    padding: 13px;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.btn-primary-block:hover { background: var(--brand-700); color: #fff; }
.btn-primary-block:disabled { background: #adb5bd; }

/* ------------------------------------------------------------- slot jadwal */
/* Blok jam sebagai tombol besar, bukan checkbox kecil di dalam tabel. */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}
.slot {
    position: relative;
    display: block;
    cursor: pointer;
}
.slot input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}
.slot__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--tap);
    padding: 10px 12px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--surface);
    transition: all .18s ease;
}
.slot input:checked + .slot__box {
    border-color: var(--brand);
    background: var(--brand-050);
    box-shadow: 0 0 0 3px rgba(25, 135, 84, .12);
}
.slot input:focus-visible + .slot__box { outline: 3px solid rgba(25, 135, 84, .45); outline-offset: 2px; }
.slot__time { font-size: .84rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.slot__meta { font-size: .72rem; color: var(--ink-3); margin-top: 2px; }
.slot__price { font-size: .78rem; font-weight: 700; color: var(--brand); margin-top: 3px; }

.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--surface);
    margin-bottom: 8px;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.qty-row:hover { border-color: var(--brand-300); }
/* ditandai saat jumlahnya > 0; kelas diatur skrip di facility/partials/booking.blade.php */
.qty-row.is-active {
    border-color: var(--brand);
    background: var(--brand-050);
    box-shadow: 0 0 0 3px rgba(25, 135, 84, .12);
}
/* biarkan kolom teks menyusut supaya nama panjang tidak mendorong stepper keluar kartu */
.qty-row > div:first-child { min-width: 0; }
.qty-row__name { font-size: .84rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.qty-row__price { font-size: .74rem; color: var(--ink-3); margin-top: 2px; }
.qty-row__price .total-price { font-weight: 700; color: var(--brand); white-space: nowrap; }

.qty-stepper {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    width: auto; /* batalkan .input-group { width: 100% } bawaan Bootstrap */
}
.qty-stepper .btn {
    flex: 0 0 var(--tap);
    width: var(--tap);
    min-height: var(--tap);
    padding: 0;
    font-weight: 700;
    line-height: 1;
}
.qty-stepper .form-control {
    flex: 0 0 52px; /* batalkan .input-group > .form-control { flex: 1 1 auto } */
    width: 52px;
    min-height: var(--tap);
    text-align: center;
    font-weight: 700;
    color: var(--ink);
    background: var(--surface);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}
.qty-stepper .form-control:focus { box-shadow: none; border-color: var(--line); }

/* --------------------------------------------------------------- ringkasan */
.summary { font-size: .86rem; }
.summary__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    color: var(--ink-2);
}
.summary__row > span:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.summary__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid var(--line);
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 800;
    color: var(--brand-800);
    font-size: 1.05rem;
}
.summary--boxed { border-top: 1px dashed #dee2e6; margin-top: 14px; padding-top: 14px; }

.order-table { width: 100%; font-size: .84rem; margin-bottom: 14px; }
.order-table th { font-weight: 700; color: var(--ink-2); }
.order-table td { vertical-align: middle; color: var(--ink-2); }
.slot-badge {
    background: var(--brand-050);
    color: var(--brand);
    border-radius: var(--r-pill);
    padding: 2px 8px;
    font-size: .7rem;
    font-weight: 700;
}

/* ----------------------------------------------------------------- status */
.status-head { text-align: center; padding: 8px 0 4px; }
.status-head__icon { font-size: 3.2rem; line-height: 1; }
.status-head__title { font-size: 1.35rem; font-weight: 800; color: var(--ink); margin: 8px 0; }

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    border-radius: var(--r-pill);
    font-size: .78rem;
    font-weight: 700;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.step { display: flex; align-items: center; gap: 6px; }
.step__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--line);
    color: var(--ink-3);
    font-size: .68rem;
    font-weight: 700;
    flex-shrink: 0;
}
.step--done .step__dot { background: var(--brand); color: #fff; }
.step--now .step__dot { background: var(--warn); color: #fff; }
.step__label { font-size: .75rem; color: var(--ink-3); font-weight: 600; }
.step--done .step__label,
.step--now .step__label { color: var(--ink); }
.step__bar { width: 26px; height: 2px; background: var(--line); }
.step--done + .step__bar { background: var(--brand); }

/* ------------------------------------------------------- metode pembayaran */
.pay-option { display: block; cursor: pointer; margin-bottom: 10px; }
.pay-option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pay-option__box {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: var(--tap);
    border: 1.5px solid var(--line);
    border-radius: var(--r);
    padding: 13px 15px;
    transition: all .18s ease;
}
.pay-option input:checked + .pay-option__box {
    border-color: var(--brand);
    background: var(--brand-050);
    box-shadow: 0 0 0 3px rgba(25, 135, 84, .1);
}
.pay-option input:focus-visible + .pay-option__box {
    outline: 3px solid rgba(25, 135, 84, .45);
    outline-offset: 2px;
}
.pay-option__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--brand-050);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.pay-option__name { font-weight: 700; font-size: .9rem; color: var(--ink); }
.pay-option__desc { font-size: .76rem; color: var(--ink-3); }

/* ----------------------------------------------------------------- profil */
.profile-hero {
    background: linear-gradient(135deg, var(--brand-800), var(--brand));
    color: #fff;
    padding: 32px 0 26px;
}
.profile-hero h1 { color: #fff; }
.profile-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 2px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--r);
    box-shadow: var(--sh-1);
    padding: 14px;
    height: 100%;
}
.stat-card b { display: block; font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.stat-card span { font-size: .75rem; color: var(--ink-3); }

.row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-left: 3px solid var(--brand);
    border-radius: var(--r);
    box-shadow: var(--sh-1);
    padding: 13px 15px;
    margin-bottom: 10px;
}
.row-item__title { font-weight: 700; font-size: .92rem; color: var(--ink); }
.row-item__meta { font-size: .8rem; color: var(--ink-3); }

/* ------------------------------------------------------- state & skeleton */
.state-empty { text-align: center; padding: 48px 20px; }
.state-empty i { font-size: 3.4rem; color: #dee2e6; }
.state-empty h5 { margin-top: 12px; color: var(--ink-3); }
.state-empty p { font-size: .85rem; color: var(--ink-3); }

.skel { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.skel__img { aspect-ratio: 4 / 3; }
.skel__img,
.skel__line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skel 1.4s infinite;
}
.skel__body { padding: 14px 16px 16px; }
.skel__line { height: 13px; border-radius: 6px; margin-bottom: 9px; }
@keyframes skel {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --------------------------------------------------------- fitur / alasan */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--r);
    box-shadow: var(--sh-1);
    padding: 16px;
    height: 100%;
}
.feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-400));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.feature h3 { font-size: .95rem; font-weight: 700; color: var(--ink); margin: 0 0 3px; }
.feature p { font-size: .82rem; color: var(--ink-3); margin: 0; line-height: 1.5; }

/* -------------------------------------------------------- CTA bawah mobile */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
    padding: 10px 16px;
}
.sticky-cta .btn { flex-shrink: 0; min-height: var(--tap); }

/* ------------------------------------------------------------- responsif */
@media (min-width: 576px) {
    .searchbox { flex-wrap: nowrap; border-radius: var(--r-pill); padding: 6px 6px 6px 18px; }
    .searchbox input { flex: 1; padding: 0; }
    .searchbox .btn { flex: 0 0 auto; border-radius: var(--r-pill) !important; padding: 10px 26px; }
    .hero__stat b { font-size: 1.7rem; }
    .map-frame { height: 300px; }
    .cookiealert { left: auto; right: 20px; max-width: 380px; }
}

@media (min-width: 992px) {
    .hero { min-height: 300px; }
    .hero--tall { min-height: 420px; }
    .sec { padding: 52px 0; }
    .sec-heading__title { font-size: 1.7rem; }
    .card-surface { padding: 24px; }
    .sticky-cta { display: none; }
    .footer-map { height: 200px; }
}

/* Header versi desktop: menu sebaris, teks putih di atas hero transparan. */
@media (min-width: 1200px) {
    .site-header { padding: 12px 0; }
    .site-header.scrolled { padding: 6px 0; }
    .site-header .navbar-brand img { height: 40px; }

    .site-header .navbar-collapse {
        background: transparent;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        box-shadow: none;
    }

    .nav-link-item {
        position: relative;
        min-height: auto;
    }
    .nav-link-item::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--brand);
        border-radius: 2px;
        transform: scaleX(0);
        transition: transform .2s ease;
    }
    .nav-link-item:hover::after,
    .nav-link-item.active::after { transform: scaleX(1); }

    .header-cta {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }
    .header-cta .btn { width: auto; }
}
