:root {
    --page-green-50: #f0f8f4;
    --page-green-100: #dcefe5;
    --page-green-700: #196c46;
    --page-green-800: #124d32;
    --page-gold: #d2ad35;
    --page-ink: #26322b;
    --page-muted: #667169;
    --page-line: #e2e9e4;
    --page-surface: #ffffff;
    --page-soft: #f7faf8;
    --page-danger: #c2414e;
}

.navbar .nav-login {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary-color);
    line-height: 1;
}

.navbar .nav-login i {
    flex: 0 0 auto;
    font-size: 14px;
}

.navbar .nav-login:hover,
.navbar .nav-login:focus-visible {
    color: #fff;
    background: var(--primary-dark);
}

@media (max-width: 992px) {
    .navbar .nav-login-item {
        padding-top: 12px;
    }

    .navbar .nav-login {
        width: 100%;
        min-height: 48px;
        padding: 13px 20px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.01em;
        box-shadow: 0 8px 18px rgba(25, 108, 70, 0.18);
    }

    .navbar .nav-login i {
        font-size: 15px;
    }
}

.page-hero {
    position: relative;
    display: flex;
    min-height: 480px;
    align-items: flex-end;
    overflow: hidden;
    padding: 90px 5% 70px;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 41, 27, 0.88) 0%, rgba(9, 49, 32, 0.67) 48%, rgba(0, 0, 0, 0.3) 100%);
    content: "";
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    background: rgba(25, 108, 70, 0.85);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(40px, 5.2vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.page-hero h1 span {
    color: #67df99;
}

.page-hero p {
    max-width: 760px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 1.5vw, 20px);
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.page-shell {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.page-section {
    padding: 84px 0;
    background: var(--page-surface);
}

.page-section.soft {
    background: var(--page-soft);
}

.page-section.green {
    color: #fff;
    background: var(--page-green-700);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--page-green-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 3px;
    background: var(--page-gold);
    content: "";
}

.section-heading h2 {
    color: var(--page-ink);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.section-heading p {
    margin-top: 16px;
    color: var(--page-muted);
    font-size: 17px;
}

.page-section.green .eyebrow,
.page-section.green .section-heading h2,
.page-section.green .section-heading p {
    color: #fff;
}

.split-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(38px, 6vw, 80px);
}

.split-layout.reverse .split-media {
    order: -1;
}

.split-copy h2 {
    color: var(--page-ink);
    font-size: clamp(30px, 3.3vw, 45px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.split-copy > p {
    margin-top: 20px;
    color: var(--page-muted);
    font-size: 17px;
}

.split-media {
    position: relative;
}

.split-media img {
    display: block;
    width: 100%;
    min-height: 420px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 18px 48px rgba(16, 61, 40, 0.15);
}

.image-note {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: min(285px, 75%);
    padding: 20px;
    border-left: 4px solid var(--page-gold);
    border-radius: 6px;
    color: #fff;
    background: var(--page-green-800);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.image-note strong {
    display: block;
    margin-bottom: 4px;
    font-size: 22px;
}

.image-note span {
    font-size: 13px;
}

.feature-list {
    display: grid;
    margin-top: 28px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--page-ink);
    font-size: 14px;
    font-weight: 600;
}

.feature-list i {
    margin-top: 3px;
    color: var(--page-green-700);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--page-line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.stat-block {
    padding: 35px 24px;
    text-align: center;
}

.stat-block + .stat-block {
    border-left: 1px solid var(--page-line);
}

.stat-block strong {
    display: block;
    color: var(--page-green-700);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
}

.stat-block span {
    display: block;
    margin-top: 10px;
    color: var(--page-muted);
    font-size: 14px;
}

.video-frame {
    overflow: hidden;
    margin-top: 42px;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    background: #0c1c13;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-card {
    padding: 28px;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.info-card:hover {
    border-color: #b8d5c4;
    box-shadow: 0 14px 35px rgba(22, 72, 48, 0.09);
    transform: translateY(-3px);
}

.info-card-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 6px;
    color: #fff;
    background: var(--page-green-700);
    font-size: 21px;
}

.info-card h3 {
    color: var(--page-ink);
    font-size: 19px;
}

.info-card p {
    margin-top: 9px;
    color: var(--page-muted);
    font-size: 14px;
}

.button-primary,
.button-secondary,
.button-light {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button-primary {
    color: #fff;
    background: var(--page-green-700);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--page-green-800);
    transform: translateY(-1px);
}

.button-secondary {
    border-color: var(--page-green-700);
    color: var(--page-green-700);
    background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: #fff;
    background: var(--page-green-700);
}

.button-light {
    color: var(--page-green-800);
    background: #fff;
}

.button-light:hover,
.button-light:focus-visible {
    background: var(--page-green-50);
    transform: translateY(-1px);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: 10px;
    color: #fff;
    background: var(--page-green-800);
}

.cta-panel h2 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.16;
}

.cta-panel p {
    max-width: 680px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

/* Office */
.office-summary {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

.office-intro,
.office-hours {
    padding: 32px;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
}

.office-intro h2,
.office-hours h2 {
    color: var(--page-ink);
    font-size: 26px;
}

.office-intro p {
    margin-top: 14px;
    color: var(--page-muted);
}

.office-details {
    display: grid;
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--page-muted);
    font-size: 14px;
}

.office-detail i {
    width: 20px;
    margin-top: 3px;
    color: var(--page-green-700);
    text-align: center;
}

.hours-list {
    margin-top: 18px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--page-line);
    color: var(--page-muted);
    font-size: 14px;
}

.hours-list strong {
    color: var(--page-ink);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.timeline::before {
    position: absolute;
    top: 20px;
    right: 5%;
    left: 5%;
    height: 2px;
    background: var(--page-line);
    content: "";
}

.timeline-item {
    position: relative;
    padding-top: 48px;
}

.timeline-item::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 4px solid var(--page-green-100);
    border-radius: 50%;
    background: var(--page-green-700);
    content: "";
}

.timeline-item strong {
    color: var(--page-green-700);
    font-size: 22px;
}

.timeline-item p {
    margin-top: 8px;
    color: var(--page-muted);
    font-size: 13px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card-public {
    overflow: hidden;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
}

.team-photo,
.team-avatar-public {
    display: flex;
    width: 100%;
    height: 260px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, var(--page-green-700), #2e8b60);
    object-fit: cover;
    font-size: 50px;
    font-weight: 800;
}

.team-info {
    padding: 21px;
}

.team-role {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--page-green-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-info h3 {
    color: var(--page-ink);
    font-size: 18px;
}

.team-info p {
    margin-top: 7px;
    color: var(--page-muted);
    font-size: 13px;
}

.gallery-grid-public {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    grid-template-rows: repeat(2, 220px);
    gap: 14px;
}

.gallery-item-public {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}

.gallery-item-public:first-child {
    grid-row: 1 / 3;
}

.gallery-item-public img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item-public:hover img {
    transform: scale(1.04);
}

/* Marketplace */
.catalog-toolbar {
    display: grid;
    align-items: end;
    margin-bottom: 20px;
    grid-template-columns: minmax(240px, 1fr) 220px auto;
    gap: 12px;
}

.field-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--page-ink);
    font-size: 12px;
    font-weight: 700;
}

.catalog-search,
.catalog-select,
.form-control {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    border: 1px solid var(--page-line);
    border-radius: 6px;
    outline: none;
    color: var(--page-ink);
    background: #fff;
}

.catalog-search:focus,
.catalog-select:focus,
.form-control:focus {
    border-color: var(--page-green-700);
    box-shadow: 0 0 0 3px rgba(25, 108, 70, 0.1);
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.category-chip {
    padding: 8px 13px;
    border: 1px solid var(--page-line);
    border-radius: 999px;
    color: var(--page-muted);
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.category-chip:hover,
.category-chip.active {
    border-color: var(--page-green-700);
    color: #fff;
    background: var(--page-green-700);
}

.catalog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.catalog-meta h2 {
    color: var(--page-ink);
    font-size: 24px;
}

.catalog-meta span {
    color: var(--page-muted);
    font-size: 13px;
}

.product-grid-public {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card-public {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card-public:hover {
    box-shadow: 0 14px 32px rgba(22, 72, 48, 0.11);
    transform: translateY(-3px);
}

.product-image-public {
    position: relative;
    overflow: hidden;
    background: var(--page-soft);
    aspect-ratio: 1 / 0.8;
}

.product-image-public img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-public:hover .product-image-public img {
    transform: scale(1.04);
}

.product-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #aac0b2;
    font-size: 42px;
}

.product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 4px;
    color: #fff;
    background: rgba(18, 77, 50, 0.9);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.stock-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    color: var(--page-green-800);
    background: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    font-weight: 800;
}

.stock-badge.out {
    color: #fff;
    background: rgba(180, 48, 60, 0.92);
}

.product-content-public {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-seller {
    overflow: hidden;
    margin-bottom: 6px;
    color: var(--page-muted);
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-content-public h3 {
    overflow: hidden;
    min-height: 48px;
    color: var(--page-ink);
    font-size: 16px;
    line-height: 1.45;
}

.product-price {
    margin-top: 10px;
    color: var(--page-green-700);
    font-size: 19px;
    font-weight: 800;
}

.product-actions {
    display: grid;
    margin-top: auto;
    padding-top: 16px;
    grid-template-columns: 1fr 42px;
    gap: 8px;
}

.product-actions button {
    border: 0;
}

.icon-action {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--page-line) !important;
    border-radius: 5px;
    color: var(--page-green-700);
    background: #fff;
    cursor: pointer;
}

.icon-action:disabled,
.button-primary:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.catalog-empty {
    grid-column: 1 / -1;
    padding: 70px 20px;
    border: 1px dashed var(--page-line);
    border-radius: 8px;
    color: var(--page-muted);
    background: #fff;
    text-align: center;
}

.catalog-empty i {
    display: block;
    margin-bottom: 12px;
    color: #a4baad;
    font-size: 44px;
}

.pagination-public {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 38px;
}

.pagination-public button {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--page-line);
    border-radius: 5px;
    color: var(--page-ink);
    background: #fff;
    cursor: pointer;
}

.pagination-public button.active {
    border-color: var(--page-green-700);
    color: #fff;
    background: var(--page-green-700);
}

.pagination-public button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.catalog-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 25, 16, 0.72);
}

.catalog-modal.is-open {
    display: flex;
}

.catalog-modal-card {
    position: relative;
    display: grid;
    width: min(900px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    background: #fff;
}

.catalog-modal-media {
    min-height: 470px;
    background: var(--page-soft);
}

.catalog-modal-media img,
.catalog-modal-media .product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.catalog-modal-copy {
    padding: 42px 34px 34px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--page-line);
    border-radius: 50%;
    color: var(--page-ink);
    background: #fff;
    cursor: pointer;
}

.catalog-modal-copy h2 {
    margin-top: 10px;
    color: var(--page-ink);
    font-size: 28px;
    line-height: 1.2;
}

.catalog-modal-copy > p {
    margin-top: 14px;
    color: var(--page-muted);
}

.modal-price {
    margin-top: 18px;
    color: var(--page-green-700);
    font-size: 27px;
    font-weight: 800;
}

.modal-stock {
    margin-top: 5px;
    color: var(--page-muted);
    font-size: 12px;
}

.modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.modal-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid var(--page-line);
    border-radius: 5px;
    color: var(--page-ink);
    font-size: 12px;
    font-weight: 700;
}

.cart-fab {
    position: fixed;
    right: 28px;
    bottom: 112px;
    z-index: 900;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--page-green-800);
    box-shadow: 0 12px 30px rgba(18, 77, 50, 0.28);
    cursor: pointer;
    font-weight: 700;
}

.cart-fab.is-visible {
    display: flex;
}

.cart-count {
    display: inline-flex;
    min-width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--page-green-800);
    background: #fff;
    font-size: 11px;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1290;
    visibility: hidden;
    background: rgba(5, 25, 16, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-overlay.is-open {
    visibility: visible;
    opacity: 1;
}

.cart-drawer-public {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    display: flex;
    width: min(460px, 100%);
    flex-direction: column;
    background: #fff;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.2);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.cart-drawer-public.is-open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--page-line);
}

.cart-header h2 {
    color: var(--page-ink);
    font-size: 20px;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: grid;
    align-items: center;
    padding: 12px 0;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    border-bottom: 1px solid var(--page-line);
}

.cart-item img,
.cart-item-placeholder {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #9db2a5;
    background: var(--page-soft);
    object-fit: cover;
}

.cart-item h3 {
    color: var(--page-ink);
    font-size: 13px;
}

.cart-item p {
    color: var(--page-green-700);
    font-size: 12px;
    font-weight: 700;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 4px;
}

.quantity-control button {
    display: flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--page-line);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.quantity-control span {
    min-width: 24px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.cart-empty {
    padding: 50px 10px;
    color: var(--page-muted);
    text-align: center;
}

.cart-form {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--page-line);
}

.cart-form h3 {
    margin-bottom: 18px;
    color: var(--page-ink);
    font-size: 16px;
}

.form-row {
    margin-bottom: 13px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    color: var(--page-ink);
    font-size: 12px;
    font-weight: 700;
}

textarea.form-control {
    min-height: 76px;
    resize: vertical;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 17px 0;
    padding: 14px;
    border-radius: 6px;
    color: var(--page-ink);
    background: var(--page-green-50);
}

.cart-total strong {
    color: var(--page-green-700);
    font-size: 18px;
}

.toast-public {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1400;
    display: none;
    max-width: min(390px, calc(100vw - 50px));
    padding: 14px 18px;
    border-radius: 6px;
    color: #fff;
    background: var(--page-green-800);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
}

.toast-public.is-visible {
    display: block;
}

.toast-public.error {
    background: var(--page-danger);
}

/* Wisata */
.tourism-search {
    display: flex;
    width: min(610px, 100%);
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
    background: #fff;
}

.tourism-search input {
    min-width: 0;
    flex: 1;
    padding: 13px 15px;
    border: 0;
    outline: 0;
    color: var(--page-ink);
}

.tourism-search button {
    width: 54px;
    border: 0;
    color: #fff;
    background: var(--page-green-700);
    cursor: pointer;
}

.tourism-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.tourism-meta h2 {
    color: var(--page-ink);
    font-size: 32px;
}

.tourism-meta p,
.tourism-meta span {
    color: var(--page-muted);
    font-size: 14px;
}

.tourism-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tourism-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
}

.tourism-card-media {
    position: relative;
    height: 230px;
    background: var(--page-green-50);
}

.tourism-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourism-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #9ab3a4;
    font-size: 44px;
}

.ticket-badge-public {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 9px;
    border-radius: 4px;
    color: var(--page-green-800);
    background: rgba(255, 255, 255, 0.94);
    font-size: 10px;
    font-weight: 800;
}

.tourism-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.tourism-card-body h3 {
    color: var(--page-ink);
    font-size: 19px;
}

.tourism-card-body > p {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    color: var(--page-muted);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tourism-facts {
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid var(--page-line);
}

.tourism-facts li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 7px;
    color: var(--page-muted);
    font-size: 12px;
}

.tourism-facts i {
    width: 16px;
    margin-top: 2px;
    color: var(--page-green-700);
    text-align: center;
}

.tourism-card-body .button-primary {
    width: 100%;
    margin-top: auto;
}

.tourism-card-spacer {
    min-height: 20px;
    flex: 1;
}

#wisata-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(22, 72, 48, 0.09);
}

.leaflet-popup-content-wrapper {
    border-radius: 7px;
    font-family: "Inter", sans-serif;
}

.map-popup {
    min-width: 190px;
}

.map-popup img {
    width: 100%;
    height: 90px;
    margin-bottom: 8px;
    border-radius: 5px;
    object-fit: cover;
}

.map-popup strong {
    display: block;
    color: var(--page-green-700);
}

.map-popup span {
    display: block;
    margin-top: 5px;
    color: var(--page-muted);
    font-size: 11px;
}

.map-popup a {
    display: block;
    margin-top: 9px;
    padding: 7px;
    border-radius: 4px;
    color: #fff;
    background: var(--page-green-700);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

/* Public detail and overview pages */
.breadcrumb-bar {
    padding: 16px 0;
    border-bottom: 1px solid var(--page-line);
    background: var(--page-soft);
}

.breadcrumb-public {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--page-muted);
    font-size: 12px;
}

.breadcrumb-public a:hover {
    color: var(--page-green-700);
}

.breadcrumb-public i {
    color: #a5b3aa;
    font-size: 10px;
}

.overview-metrics {
    display: grid;
    margin-bottom: 50px;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
}

.overview-metric {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 23px;
}

.overview-metric + .overview-metric {
    border-left: 1px solid var(--page-line);
}

.overview-metric i {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    background: var(--page-green-700);
    font-size: 18px;
}

.overview-metric strong {
    display: block;
    color: var(--page-ink);
    font-size: 21px;
}

.overview-metric span {
    color: var(--page-muted);
    font-size: 12px;
}

#umkm-map,
#single-wisata-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(22, 72, 48, 0.09);
}

.detail-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(32px, 5vw, 64px);
}

.detail-layout.wisata-detail-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 40px;
}

.detail-gallery {
    min-width: 0;
}

.detail-main-media {
    display: flex;
    width: 100%;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--page-line);
    border-radius: 9px;
    color: #9eb2a5;
    background: var(--page-soft);
    font-size: 55px;
}

.detail-main-media img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.detail-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}

.detail-thumbnail {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    background: var(--page-soft);
    cursor: pointer;
}

.detail-thumbnail.active {
    border-color: var(--page-green-700);
}

.detail-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-summary {
    padding: 34px;
    border: 1px solid var(--page-line);
    border-radius: 9px;
    background: #fff;
}

.detail-summary h1 {
    margin-top: 9px;
    color: var(--page-ink);
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.detail-seller {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 14px;
    color: var(--page-muted);
    font-size: 13px;
}

.detail-seller i {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--page-green-700);
    background: var(--page-green-50);
}

.detail-price {
    margin-top: 24px;
    color: var(--page-green-700);
    font-size: 32px;
    font-weight: 800;
}

.detail-stock {
    display: inline-flex;
    margin-top: 6px;
    padding: 5px 9px;
    border-radius: 4px;
    color: var(--page-green-700);
    background: var(--page-green-50);
    font-size: 11px;
    font-weight: 800;
}

.detail-stock.out {
    color: var(--page-danger);
    background: #fff1f2;
}

.detail-description {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--page-line);
    color: var(--page-muted);
    white-space: pre-line;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.detail-actions .button-primary,
.detail-actions .button-secondary {
    flex: 1;
}

.detail-message {
    display: none;
    margin-top: 13px;
    padding: 10px 12px;
    border-radius: 5px;
    color: var(--page-green-800);
    background: var(--page-green-50);
    font-size: 12px;
    font-weight: 700;
}

.detail-message.is-visible {
    display: block;
}

.trust-grid {
    display: grid;
    margin-top: 28px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.trust-item {
    padding: 14px;
    border: 1px solid var(--page-line);
    border-radius: 6px;
    text-align: center;
}

.trust-item i {
    display: block;
    margin-bottom: 7px;
    color: var(--page-green-700);
    font-size: 19px;
}

.trust-item strong {
    display: block;
    color: var(--page-ink);
    font-size: 11px;
}

.trust-item span {
    color: var(--page-muted);
    font-size: 10px;
}

.content-article {
    min-width: 0;
    padding: 34px;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
    word-break: break-word;
    overflow-wrap: break-word;
}

.content-article h2,
.content-article h3 {
    color: var(--page-ink);
}

.content-article h2 {
    font-size: 28px;
}

.content-article h3 {
    margin-top: 28px;
    font-size: 20px;
}

.content-article p {
    margin-top: 15px;
    color: var(--page-muted);
    white-space: pre-line;
}

.detail-sidebar {
    min-width: 0;
    position: sticky;
    top: 112px;
    padding: 26px;
    border: 1px solid var(--page-line);
    border-radius: 8px;
    background: #fff;
    word-break: break-word;
    overflow-wrap: break-word;
}

.detail-sidebar h2 {
    color: var(--page-ink);
    font-size: 21px;
}

.detail-facts {
    margin-top: 15px;
}

.detail-fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--page-line);
}

.detail-fact div {
    min-width: 0;
    flex: 1;
    word-break: break-word;
    overflow-wrap: break-word;
}

.detail-fact i {
    display: flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--page-green-700);
    background: var(--page-green-50);
}

.detail-fact small {
    display: block;
    color: var(--page-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.detail-fact strong,
.detail-fact span {
    display: block;
    margin-top: 3px;
    color: var(--page-ink);
    font-size: 13px;
}

/* Wisata Detail Components */
.wisata-featured-img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.wisata-detail-title {
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 5px;
    margin-bottom: 15px;
    word-break: break-word;
    color: var(--page-ink);
}

.wisata-detail-desc {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--page-muted);
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.wisata-section-box {
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid var(--page-line);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.wisata-section-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--page-ink);
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
}

.wisata-activities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.wisata-activity-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    color: #047857;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    word-break: break-word;
    line-height: 1.35;
}

.wisata-activity-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.wisata-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.wisata-facility-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--page-muted);
    background: #f8fafc;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    word-break: break-word;
    text-align: center;
}

.wisata-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.wisata-gallery-thumb {
    border-radius: 8px;
    overflow: hidden;
    display: block;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 85px;
    border: 1px solid var(--page-line);
}

.wisata-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wisata-gallery-thumb:hover img {
    transform: scale(1.05);
}

.wisata-ticket-sublist {
    margin-left: 36px;
    margin-top: -8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--page-muted);
    line-height: 1.55;
    border-left: 2px solid var(--page-line);
    padding-left: 12px;
}

.wisata-social-section {
    margin-top: 20px;
    border-top: 1px solid var(--page-line);
    padding-top: 15px;
}

.wisata-social-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--page-muted);
}

.wisata-social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.wisata-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.wisata-social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.wisata-social-btn.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.wisata-social-btn.tiktok {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.wisata-social-btn.website {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.wisata-wa-btn {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.detail-video {
    overflow: hidden;
    margin-top: 24px;
    border-radius: 7px;
    background: #0c1c13;
    aspect-ratio: 16 / 9;
}

.detail-video iframe,
.detail-video video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* Footer */
.site-footer {
    padding: 64px 5% 0;
    color: rgba(255, 255, 255, 0.78);
    background: #0f3f2a;
}

.site-footer-grid {
    display: grid;
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns: 1.4fr 0.75fr 1fr;
    gap: 60px;
}

.site-footer-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
}

.site-footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: contain;
}

.site-footer-logo span {
    display: flex;
    flex-direction: column;
}

.site-footer-logo strong {
    font-size: 14px;
}

.site-footer-logo small {
    margin-top: 2px;
    font-size: 11px;
}

.site-footer-brand p {
    max-width: 450px;
    margin-top: 18px;
    font-size: 14px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
}

.site-footer-links,
.site-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.site-footer a:hover {
    color: #67df99;
}

.site-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer-contact i {
    width: 16px;
    margin-top: 4px;
    color: #67df99;
    text-align: center;
}

.site-footer-bottom {
    display: flex;
    max-width: 1180px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 50px auto 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 12px;
}

@media (max-width: 1100px) {
    .product-grid-public,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .tourism-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .page-hero {
        min-height: 420px;
    }

    .split-layout,
    .office-summary {
        grid-template-columns: 1fr;
    }

    .split-layout.reverse .split-media {
        order: initial;
    }

    .card-grid,
    .stats-strip {
        grid-template-columns: 1fr;
    }

    .stat-block + .stat-block {
        border-top: 1px solid var(--page-line);
        border-left: 0;
    }

    .team-grid,
    .product-grid-public {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-public {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-public:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .catalog-toolbar {
        grid-template-columns: 1fr 210px;
    }

    .catalog-toolbar > :last-child {
        grid-column: 1 / -1;
    }

    .catalog-modal-card {
        grid-template-columns: 1fr;
    }

    .detail-layout,
    .detail-layout.wisata-detail-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-sidebar {
        position: static;
        top: auto;
    }

    .tourism-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .catalog-modal-media,
    .catalog-modal-media img,
    .catalog-modal-media .product-placeholder {
        min-height: 300px;
        max-height: 360px;
    }

    .site-footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .site-footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .page-shell {
        width: min(1180px, calc(100% - 28px));
    }

    .page-section {
        padding: 65px 0;
    }

    .page-hero {
        min-height: 390px;
        padding-top: 70px;
        padding-bottom: 55px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .feature-list,
    .office-details,
    .timeline,
    .team-grid,
    .product-grid-public,
    .tourism-grid,
    .overview-metrics,
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .overview-metric + .overview-metric {
        border-top: 1px solid var(--page-line);
        border-left: 0;
    }

    .split-media img {
        min-height: 330px;
    }

    .image-note {
        right: 12px;
        bottom: -18px;
    }

    .cta-panel,
    .tourism-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-grid-public {
        display: flex;
        flex-direction: column;
    }

    .gallery-item-public {
        height: 240px;
    }

    .catalog-toolbar {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar > :last-child {
        grid-column: auto;
    }

    .product-image-public {
        aspect-ratio: 1 / 0.72;
    }

    .catalog-modal {
        align-items: flex-end;
        padding: 0;
    }

    .catalog-modal-card {
        max-height: 94vh;
        border-radius: 10px 10px 0 0;
    }

    .catalog-modal-copy {
        padding: 34px 22px 25px;
    }

    .detail-main-media,
    .detail-main-media img {
        min-height: 350px;
        height: 350px;
    }

    .detail-summary,
    .content-article {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .detail-sidebar {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .wisata-featured-img {
        max-height: 250px;
        margin-bottom: 16px;
        border-radius: 8px;
    }

    .wisata-section-box {
        padding: 14px 12px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .wisata-facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }

    .wisata-facility-item {
        padding: 8px 10px;
        font-size: 0.84rem;
    }

    .wisata-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .wisata-ticket-sublist {
        margin-left: 20px;
        padding-left: 10px;
        font-size: 0.82rem;
    }

    #umkm-map,
    #single-wisata-map,
    #wisata-map {
        height: 300px;
        border-radius: 8px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .cart-fab {
        right: 18px;
        bottom: 88px;
    }

    .site-footer-grid > :last-child {
        grid-column: auto;
    }

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .page-shell {
        width: min(1180px, calc(100% - 20px));
    }

    .page-hero h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .product-grid-public {
        grid-template-columns: 1fr;
    }

    .content-article {
        padding: 16px 12px;
    }

    .detail-sidebar {
        padding: 16px 12px;
    }

    .wisata-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
