html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nino-btn-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: rgba(255, 255, 255, 1);
    vertical-align: -2px;
    animation: nino-btn-spin 0.8s linear infinite;
}

@keyframes nino-btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.nino-booking-preview-card {
    background:
        radial-gradient(460px 180px at 8% -28%, rgba(178, 148, 117, 0.16), transparent 68%),
        radial-gradient(420px 180px at 92% -42%, rgba(140, 109, 79, 0.12), transparent 72%),
        #fff;
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.2, 0.65, 0.25, 1), opacity 0.28s ease;
    will-change: transform, opacity;
}

.nino-booking-preview-modal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.nino-booking-preview-backdrop {
    opacity: 0;
    transition: opacity 0.24s ease;
}

.nino-booking-preview-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nino-booking-preview-modal.is-active .nino-booking-preview-backdrop {
    opacity: 1;
}

.nino-booking-preview-modal.is-active .nino-booking-preview-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nino-booking-preview-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #ece1d2;
    background: rgba(255, 255, 255, 0.94);
    color: #7a6e61;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 3;
}

.nino-booking-preview-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    height: 28px;
    padding: 0 0.7rem;
    border-radius: 999px;
    border: 1px solid #e8d9c6;
    background: rgba(255, 255, 255, 0.75);
    color: #8c6d4f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nino-booking-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
}

.nino-booking-preview-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    min-height: 60px;
    border-radius: 12px;
    border: 1px solid #eee4d7;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.62rem 0.65rem;
    opacity: 0;
    transform: translateY(8px);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.nino-booking-preview-item > div {
    min-width: 0;
}

.nino-booking-preview-item-full {
    grid-column: 1 / -1;
}

.nino-booking-preview-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1px solid #eadcca;
    background: #f7f1ea;
    color: #8c6d4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.nino-booking-preview-item small {
    display: block;
    font-size: 0.67rem;
    color: #8a847c;
    margin-bottom: 0.08rem;
}

.nino-booking-preview-item strong {
    display: block;
    font-size: 0.78rem;
    color: #1c1b1a;
    line-height: 1.35;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.nino-booking-preview-actions {
    display: flex;
    flex-direction: row;
}

.nino-booking-preview-action {
    flex: 1 1 0;
    min-width: 0;
}

.nino-booking-preview-action span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nino-booking-preview-modal.is-active .nino-booking-preview-item {
    opacity: 1;
    transform: translateY(0);
}

.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(1) { transition-delay: 0.03s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(2) { transition-delay: 0.05s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(3) { transition-delay: 0.07s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(4) { transition-delay: 0.09s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(5) { transition-delay: 0.11s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(6) { transition-delay: 0.13s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(7) { transition-delay: 0.15s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(8) { transition-delay: 0.17s; }
.nino-booking-preview-modal.is-active .nino-booking-preview-item:nth-child(9) { transition-delay: 0.19s; }

.nino-booking-confirm {
    border-radius: 20px;
    border: 1px solid #ebdfd0;
    background:
        radial-gradient(560px 240px at 10% -34%, rgba(178, 148, 117, 0.16), transparent 70%),
        radial-gradient(540px 240px at 90% -40%, rgba(140, 109, 79, 0.13), transparent 70%),
        #fff;
    padding: 1.45rem 1.2rem;
}

.nino-booking-confirm-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 78px;
    height: 78px;
    margin: 0 auto 0.55rem;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.18) 0%, rgba(37, 211, 102, 0.1) 60%, rgba(37, 211, 102, 0.06) 100%);
    box-shadow: inset 0 0 0 1px rgba(32, 186, 86, 0.15);
}

.nino-booking-confirm-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px dashed rgba(32, 186, 86, 0.2);
    pointer-events: none;
}

.nino-booking-confirm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    color: #20ba56;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(32, 186, 86, 0.24);
    font-size: 1.8rem;
    box-shadow: 0 8px 16px rgba(32, 186, 86, 0.16);
}

.nino-booking-confirm-icon iconify-icon {
    display: block;
    transform: translateY(1px);
}

.nino-booking-confirm-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 28px;
    padding: 0 0.75rem;
    border-radius: 999px;
    border: 1px solid #dfd4c6;
    color: #8c6d4f;
    background: #f9f3eb;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.16rem;
}

.nino-booking-confirm-summary {
    border: 1px solid #eee4d7;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.92rem;
    display: grid;
    gap: 0.55rem;
}

.nino-booking-confirm-item {
    border: 1px solid #f1e8dc;
    border-radius: 11px;
    background: #fcfaf7;
    padding: 0.58rem 0.65rem;
}

.nino-booking-confirm-item span {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    color: #867d74;
    font-size: 0.69rem;
    margin-bottom: 0.1rem;
}

.nino-booking-confirm-item strong {
    display: block;
    color: #1c1b1a;
    font-size: 0.87rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.nino-booking-confirm-head {
    position: relative;
}

.nino-booking-confirm-ref {
    max-width: 460px;
    margin: 1rem auto 0;
    border: 1px dashed #e6d8c7;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(249, 243, 235, 0.78) 0%, rgba(255, 255, 255, 0.94) 100%);
    padding: 0.65rem 0.72rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.nino-booking-confirm-ref-copy {
    min-width: 0;
}

.nino-booking-confirm-ref-copy small {
    display: block;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #8f8578;
    margin-bottom: 0.08rem;
}

.nino-booking-confirm-ref-copy strong {
    display: block;
    font-size: 0.99rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1c1b1a;
    word-break: break-word;
}

.nino-booking-copy-btn {
    height: 38px;
    min-width: 116px;
    border-radius: 10px;
    border: 1px solid #e2d6c7;
    background: #fff;
    color: #7f684d;
    padding: 0 0.78rem;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: all 0.22s ease;
}

.nino-booking-copy-btn:hover {
    border-color: #ccb79f;
    color: #6f5537;
    background: #fcf7f1;
}

.nino-booking-copy-btn.is-success {
    border-color: #bfe9cf;
    color: #20894b;
    background: #ecfbf2;
}

.nino-booking-confirm-layout {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
}

.nino-booking-confirm-steps {
    border: 1px solid #ece2d4;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.92rem;
}

.nino-booking-confirm-steps h4 {
    margin: 0 0 0.62rem;
    color: #1c1b1a;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nino-booking-confirm-steps ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.54rem;
}

.nino-booking-confirm-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.46rem;
}

.nino-booking-confirm-steps li iconify-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid #eadbc8;
    background: #f8f2e9;
    color: #8c6d4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    flex-shrink: 0;
}

.nino-booking-confirm-steps li span {
    display: block;
    color: #6f6a64;
    font-size: 0.74rem;
    line-height: 1.48;
}

.nino-booking-confirm-actions {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.nino-booking-confirm-actions > a,
.nino-booking-confirm-actions > button[data-booking-download-ics] {
    width: 100%;
}

.nino-booking-confirm-actions > button[data-booking-reset] {
    width: auto;
    align-self: center;
}

.nino-booking-confirm {
    animation: nino-booking-confirm-reveal 0.38s ease both;
}

@keyframes nino-booking-confirm-reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nino-page-loader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 251, 250, 0.9);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.nino-page-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nino-page-loader-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ece2d4;
    box-shadow: 0 12px 28px rgba(28, 27, 26, 0.12);
    color: #6b6a68;
    font-size: 0.82rem;
    font-weight: 600;
}

.nino-page-loader-inner p {
    margin: 0;
}

.nino-page-loader-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e7ddcf;
    border-top-color: #b29475;
    animation: nino-page-loader-spin 0.9s linear infinite;
}

@keyframes nino-page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

#bottom-tab-bar {
    overflow: visible;
    width: 100%;
    max-width: 100vw;
}

#bottom-tab-bar .nino-bottom-tab-inner {
    max-width: 100%;
}

#bottom-tab-bar .nino-bottom-tab-link {
    min-width: 0;
}

#bottom-tab-bar .nino-bottom-tab-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#bottom-tab-bar .nino-bottom-tab-link-booking {
    transform: translateY(-10px);
}

/* Mobile: ensure content not hidden behind sticky bars */
@media (max-width: 767px) {
    body {
        padding-bottom: 62px;
    }

    /* bottom-tab 56px + safety gap */
}

/* Navbar smooth transition */
nav {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Before/After slider handle z-index */
.ba-handle {
    z-index: 2;
    pointer-events: none;
}

.ba-after {
    z-index: 1;
}

/* Custom Scrollbar for sliders */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Radio styling for booking */
.booking-radio:checked+div {
    border-color: #B29475;
    background-color: #FAF6F3;
}

.booking-radio:checked+div .radio-indicator {
    background-color: #B29475;
    border-color: #B29475;
}

/* Contact map embed sizing */
.nino-map-embed iframe {
    width: 100%;
    min-height: 270px;
    border: 0;
    display: block;
}

@media (min-width: 768px) {
    .nino-map-embed iframe {
        min-height: 320px;
    }
}

/* Scroll reveal base */
.reveal,
.reveal-left,
.reveal-right,
.reveal-fade {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal {
    transform: translateY(28px);
}

.reveal-left {
    transform: translateX(-36px);
}

.reveal-right {
    transform: translateX(36px);
}

.reveal-fade {
    transform: scale(0.97);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-fade.active {
    opacity: 1;
    transform: none;
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.10s;
}

.delay-200 {
    transition-delay: 0.20s;
}

.delay-300 {
    transition-delay: 0.30s;
}

.delay-400 {
    transition-delay: 0.40s;
}

.delay-500 {
    transition-delay: 0.50s;
}

section.hero-section {
    min-height: 66vh;
}

@media (min-width: 768px) {
    section.hero-section {
        min-height: 74vh;
    }
}

/* Mobile hero height */
@media (max-width: 767px) {
    section.hero-section {
        min-height: 58vh !important;
    }
}

/* Hero Slider */
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 14, 10, 0.7) 0%, rgba(28, 27, 26, 0.42) 34%, rgba(28, 27, 26, 0.26) 60%, rgba(28, 27, 26, 0.74) 100%),
        radial-gradient(95% 74% at 12% 18%, rgba(205, 167, 127, 0.4) 0%, rgba(205, 167, 127, 0) 66%),
        radial-gradient(72% 62% at 92% 20%, rgba(103, 161, 173, 0.24) 0%, rgba(103, 161, 173, 0) 70%);
}

.nino-contact-hero {
    isolation: isolate;
}

.nino-contact-hero-overlay {
    background:
        linear-gradient(180deg, rgba(20, 14, 10, 0.62) 0%, rgba(28, 27, 26, 0.42) 42%, rgba(28, 27, 26, 0.74) 100%),
        radial-gradient(92% 76% at 12% 18%, rgba(205, 167, 127, 0.34) 0%, rgba(205, 167, 127, 0) 68%),
        radial-gradient(70% 62% at 88% 22%, rgba(103, 161, 173, 0.2) 0%, rgba(103, 161, 173, 0) 70%);
}

.nino-contact-hero-actions > a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

.hero-bg-slide.active img {
    animation: kenBurns 7s ease-out forwards;
}

/* Thumbnail nav */
.slide-thumb {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.55;
    cursor: pointer;
}

.slide-thumb.active {
    border-color: #B29475;
    opacity: 1;
}

.slide-thumb:hover {
    opacity: 0.9;
}

/* Slide progress bar */
.slide-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #B29475;
    width: 0%;
    transition: width linear;
}

/* Content typography for dynamic CMS content */
.nino-prose > * + * {
    margin-top: 1rem;
}

.nino-prose h1,
.nino-prose h2,
.nino-prose h3,
.nino-prose h4,
.nino-prose h5,
.nino-prose h6 {
    color: #1c1b1a;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
}

.nino-prose p {
    color: #4a4947;
    line-height: 1.75;
}

.nino-prose ul,
.nino-prose ol {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.nino-prose ul {
    list-style: disc;
}

.nino-prose ol {
    list-style: decimal;
}

.nino-prose li {
    margin: 0.3rem 0;
}

.nino-prose a {
    color: #8c6d4f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.nino-prose a:hover {
    color: #6b5139;
}

.nino-prose img {
    border-radius: 14px;
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
}

.nino-prose blockquote {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border-left: 4px solid #b29475;
    background-color: #faf6f3;
    color: #5e5c59;
    border-radius: 10px;
}

.nino-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    overflow-x: auto;
    display: block;
}

.nino-prose table th,
.nino-prose table td {
    border: 1px solid #ebdfd0;
    padding: 0.6rem;
    text-align: left;
    vertical-align: top;
}

.nino-prose table th {
    background: #f7f1ea;
    color: #1c1b1a;
}

.nino-pagination-wrapper nav ul {
    flex-wrap: wrap;
}

.nino-pagination-wrapper .pagination-link {
    border-radius: 12px !important;
    border-color: #e6decf !important;
    color: #6b6a68 !important;
}

.nino-pagination-wrapper .pagination-link:hover {
    background: #faf6f3 !important;
    color: #1c1b1a !important;
    border-color: #d9c8b2 !important;
}

.nino-pagination-wrapper nav ul li span {
    background: #1c1b1a !important;
    color: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(28, 27, 26, 0.18) !important;
}

.nino-page-shell {
    background-image:
        radial-gradient(1200px 520px at 8% -18%, rgba(178, 148, 117, 0.12), transparent 58%),
        radial-gradient(920px 420px at 92% -14%, rgba(140, 109, 79, 0.10), transparent 60%);
}

.nino-breadcrumb a {
    text-decoration: none;
}

.nino-card-hover {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.nino-card-hover:hover {
    transform: translateY(-4px);
}

.nino-package-hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nino-package-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.nino-package-filter-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nino-package-filter {
    border: 1px solid #e9dfd2;
    background: #fff;
    color: #6b6a68;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
    min-height: 34px;
    padding: 0 0.9rem;
    transition: all 0.22s ease;
}

.nino-package-filter:hover {
    border-color: #d4bea4;
    color: #1c1b1a;
}

.nino-package-filter.is-active {
    border-color: #8c6d4f;
    background: #8c6d4f;
    color: #fff;
    box-shadow: 0 8px 20px rgba(140, 109, 79, 0.25);
}

.nino-package-search-wrap {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    min-width: 100%;
    padding: 0 0.75rem;
    border-radius: 999px;
    border: 1px solid #e9dfd2;
    background: #fff;
}

.nino-package-search-icon {
    color: #8a8886;
    font-size: 1rem;
}

.nino-package-search-input {
    width: 100%;
    height: 32px;
    border: 0;
    outline: none;
    background: transparent;
    color: #1c1b1a;
    font-size: 0.83rem;
}

.nino-package-search-input::placeholder {
    color: #9e9c99;
}

.nino-package-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.2s ease;
}

.nino-package-image-fallback {
    background:
        radial-gradient(480px 140px at 15% -35%, rgba(178, 148, 117, 0.42), transparent 62%),
        radial-gradient(420px 140px at 85% -55%, rgba(140, 109, 79, 0.34), transparent 58%),
        linear-gradient(140deg, #f6efe6 0%, #f4ebdf 50%, #efe2d2 100%);
    border: 1px solid #eadfce;
}

.nino-package-card.is-selected {
    border-color: #b29475 !important;
    box-shadow: 0 0 0 2px rgba(178, 148, 117, 0.18), 0 14px 36px rgba(28, 27, 26, 0.12);
}

.nino-package-card.hidden-by-filter {
    display: none !important;
}

.nino-list-intro-panel {
    position: relative;
    border-radius: 24px;
    border: 1px solid #ece1d3;
    background: linear-gradient(180deg, #fffefc 0%, #fcf8f3 100%);
    padding: 1.25rem 1.2rem;
    box-shadow: 0 10px 28px rgba(28, 27, 26, 0.05);
}

.nino-list-search-panel {
    border-color: #eadfce !important;
    background: linear-gradient(180deg, #fffefc 0%, #fdf9f4 100%);
}

.nino-article-content .nino-prose {
    color: #484643;
    line-height: 1.82;
}

.nino-article-content .nino-prose > :first-child {
    margin-top: 0;
}

.nino-article-content .nino-prose > :last-child {
    margin-bottom: 0;
}

.nino-article-content .nino-prose h2 {
    font-size: 1.46rem;
}

.nino-article-content .nino-prose h3 {
    font-size: 1.28rem;
}

.nino-article-content .nino-prose p + p {
    margin-top: 1.05rem;
}

.nino-contact-grid-card {
    border: 1px solid #eee6da;
    box-shadow: 0 10px 26px rgba(28, 27, 26, 0.05);
}

.nino-contact-phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.nino-contact-phone-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nino-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.nino-detail-aside {
    top: 92px;
}

.line-clamp-2,
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.nino-prose {
    font-size: 1rem;
}

.nino-prose hr {
    border: 0;
    border-top: 1px solid #eee3d5;
    margin: 1.3rem 0;
}

.nino-prose pre,
.nino-prose code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.nino-prose pre {
    background: #f7f1ea;
    border: 1px solid #eadfce;
    border-radius: 10px;
    padding: 0.8rem;
    overflow-x: auto;
}

.nino-promo-sticky {
    position: fixed;
    right: 1rem;
    bottom: 5.6rem;
    z-index: 42;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 220px;
    max-width: 320px;
    border: 1px solid #eadbc9;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(28, 27, 26, 0.16);
    padding: 0.55rem 0.75rem;
    text-align: left;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nino-promo-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(28, 27, 26, 0.18);
}

.nino-promo-sticky-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    min-width: 52px;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: #b29475;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nino-promo-sticky-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nino-promo-sticky-copy strong {
    color: #1c1b1a;
    font-size: 0.76rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nino-promo-sticky-copy span {
    color: #746d66;
    font-size: 0.68rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nino-promo-sticky-price {
    color: #8c6d4f;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.nino-promo-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    padding: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.nino-promo-popup.is-open {
    display: flex;
}

.nino-promo-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 27, 26, 0.72);
    backdrop-filter: blur(2px);
}

.nino-promo-popup-card {
    position: relative;
    z-index: 1;
    width: min(94vw, 860px);
    min-height: 340px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eadcc9;
    box-shadow: 0 20px 48px rgba(28, 27, 26, 0.26);
    display: grid;
    grid-template-columns: 1.02fr 1fr;
}

.nino-promo-popup-close {
    position: absolute;
    top: 0.62rem;
    right: 0.62rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: rgba(28, 27, 26, 0.75);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.nino-promo-popup-media {
    background: linear-gradient(150deg, #f7efe6 8%, #eadbc9 100%);
    min-height: 100%;
}

.nino-promo-popup-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nino-promo-popup-media-fallback {
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c6d4f;
    font-size: 5rem;
}

.nino-promo-popup-body {
    padding: 1.25rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.nino-promo-popup-chip {
    margin: 0;
    color: #8c6d4f;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.62rem;
    font-weight: 700;
}

.nino-promo-popup-body h3 {
    margin: 0;
    color: #1c1b1a;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 700;
}

.nino-promo-popup-package {
    margin: 0;
    color: #5f4f3f;
    font-size: 0.9rem;
    font-weight: 600;
}

.nino-promo-popup-desc {
    margin: 0;
    color: #6e6963;
    font-size: 0.85rem;
    line-height: 1.55;
}

.nino-promo-popup-price {
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nino-promo-popup-price-before {
    color: #9d968f;
    font-size: 0.8rem;
    text-decoration: line-through;
}

.nino-promo-popup-price strong {
    color: #1c1b1a;
    font-size: 1.45rem;
    line-height: 1.2;
}

.nino-promo-popup-actions {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.45rem;
}

.nino-promo-popup-btn {
    flex: 1;
    height: 42px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nino-promo-popup-btn-muted {
    border-color: #ece2d7;
    color: #6b6864;
    background: #fff;
}

.nino-promo-popup-btn-primary {
    color: #fff;
    background: #b29475;
    box-shadow: 0 8px 18px rgba(178, 148, 117, 0.35);
}

.nino-promo-popup-link {
    margin-top: 0.28rem;
    color: #8c6d4f;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
}

.nino-promo-popup-note {
    margin: 0.08rem 0 0;
    color: #8a847d;
    font-size: 0.74rem;
    line-height: 1.45;
}

.nino-promo-popup-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.nino-promo-popup-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 0.62rem;
    border-radius: 999px;
    background: #f6ede3;
    color: #7f5f40;
    border: 1px solid #eadbc8;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nino-promo-popup-badge-muted {
    background: #f7f6f4;
    color: #716b65;
    border-color: #ece6de;
}

/* Small-screen recaptcha fit */
@media (max-width: 420px) {
    .g-recaptcha {
        transform: scale(0.88);
        transform-origin: left top;
    }

    .nino-contact-hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nino-share-grid {
        grid-template-columns: 1fr;
    }

    .nino-package-filter-group {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .nino-booking-confirm {
        padding: 1.1rem 0.85rem;
    }

    .nino-booking-confirm-ref {
        flex-direction: column;
        align-items: stretch;
    }

    .nino-booking-copy-btn {
        width: 100%;
    }

    .nino-booking-confirm-layout {
        grid-template-columns: 1fr;
    }

    .nino-booking-confirm-icon-wrap {
        width: 68px;
        height: 68px;
    }

    .nino-booking-confirm-icon {
        width: 48px;
        height: 48px;
        font-size: 1.55rem;
    }

    .nino-booking-preview-grid {
        grid-template-columns: 1fr;
    }

    .nino-booking-preview-modal {
        align-items: flex-start;
        padding-top: 0.6rem;
        padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
    }

    .nino-booking-preview-card {
        max-height: calc(100dvh - 1.2rem);
        border-radius: 16px;
        padding: 0.95rem 0.85rem;
    }

    .nino-booking-preview-close {
        top: 0.4rem;
        right: 0.4rem;
        width: 30px;
        height: 30px;
        font-size: 1.05rem;
    }

    .nino-booking-preview-chip {
        max-width: calc(100% - 2rem);
        min-height: 0;
        height: auto;
        line-height: 1.2;
        padding-top: 0.32rem;
        padding-bottom: 0.32rem;
        white-space: normal;
        text-align: left;
    }

    .nino-booking-preview-item {
        min-height: 56px;
        padding: 0.56rem 0.58rem;
    }

    .nino-booking-preview-item strong {
        font-size: 0.75rem;
    }

    .nino-booking-preview-action {
        height: 44px;
        padding-left: 0.45rem;
        padding-right: 0.45rem;
        font-size: 0.73rem;
        gap: 0.28rem;
    }

    .nino-booking-preview-action iconify-icon {
        font-size: 0.95rem;
    }

    .nino-promo-sticky {
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(62px + env(safe-area-inset-bottom));
        max-width: none;
        min-width: 0;
    }

    .nino-promo-popup {
        padding: 0.65rem;
    }

    .nino-promo-popup-card {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .nino-promo-popup-media {
        max-height: 200px;
    }

    .nino-promo-popup-body {
        padding: 1.05rem 0.95rem;
    }

    .nino-card-hover:hover {
        transform: none;
    }

    .nino-prose {
        font-size: 0.95rem;
    }

    .nino-prose h1,
    .nino-prose h2,
    .nino-prose h3,
    .nino-prose h4,
    .nino-prose h5,
    .nino-prose h6 {
        margin-top: 1.2rem;
    }

    .nino-list-intro-panel {
        border-radius: 20px;
        padding: 1rem 0.95rem;
    }

    .nino-article-content .nino-prose {
        line-height: 1.76;
    }

    .nino-article-content .nino-prose h2 {
        font-size: 1.26rem;
    }

    .nino-article-content .nino-prose h3 {
        font-size: 1.15rem;
    }

    .nino-package-toolbar {
        gap: 0.65rem;
    }

    .nino-package-search-wrap {
        min-width: 100%;
    }
}

@media (min-width: 768px) {
    .nino-promo-sticky {
        right: 1.4rem;
        max-width: 336px;
    }

    .nino-package-search-wrap {
        min-width: 270px;
    }
}
