:root {
    --deep: #04171d;
    --deep-two: #062631;
    --aqua: #16b9c8;
    --aqua-soft: #78ecf3;
    --white: #f5fcfd;
    --muted: #a9c8ce;
    --line: rgba(120, 236, 243, 0.22);
    --card: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--deep);
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.noya-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(22, 185, 200, 0.28), transparent 26%),
        radial-gradient(circle at 80% 10%, rgba(120, 236, 243, 0.12), transparent 28%),
        linear-gradient(145deg, #031217 0%, #062631 52%, #04171d 100%);
}

.noya-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(4, 23, 29, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.brand img {
    width: 132px;
    height: auto;
    display: block;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.header-actions a {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 44px 6vw;
}

.hero-content {
    max-width: 680px;
}

.eyebrow,
.section-heading span,
.badge {
    color: var(--aqua-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.hero-content h1 {
    margin: 14px 0 12px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 540px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.trust-strip span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.booking-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(5, 28, 35, 0.82);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.booking-card h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.booking-card label {
    display: grid;
    gap: 7px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 13px;
}

.booking-card label span {
    opacity: 0.7;
}

.booking-card input {
    width: 100%;
    min-height: 50px;
    padding: 12px 13px;
    border: 1px solid rgba(120, 236, 243, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 16px;
    outline: none;
}

.booking-card input:focus {
    border-color: var(--aqua-soft);
}

.booking-card input[readonly] {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.04);
}

.guest-status {
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid rgba(120, 236, 243, 0.25);
    border-radius: 14px;
    background: rgba(22, 185, 200, 0.10);
    color: var(--aqua-soft);
    font-size: 12px;
    line-height: 1.5;
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-card button,
.package-card button {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--aqua), var(--aqua-soft));
    color: #031217;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}

.booking-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.gallery-section,
.packages-section,
.result-section,
.policy-section,
.noya-footer {
    padding: 34px 6vw;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(26px, 4vw, 44px);
    letter-spacing: -0.04em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
    grid-column: span 2;
}

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

.package-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
}

.package-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.package-card div {
    padding: 16px;
}

.package-card h3 {
    margin: 8px 0 6px;
    font-size: 22px;
}

.package-card p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.5;
}

.package-card strong {
    display: block;
    margin-bottom: 14px;
}

.package-card button {
    border-radius: 0;
}

.result-section {
    max-width: 920px;
    margin: 0 auto;
}

#resultBox {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted);
    line-height: 1.7;
}

.policy-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.policy-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.policy-card h3 {
    margin: 0 0 8px;
}

.policy-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.noya-footer {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    padding-bottom: 104px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.noya-footer strong {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.khepra-credit {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(120, 236, 243, 0.12);
    font-size: 12px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    padding: 13px 16px;
    border-radius: 999px;
    background: #25d366;
    color: #052e16;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.mobile-book-now {
    display: none;
}

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 28px;
    }

    .package-grid,
    .policy-section {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid img,
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(4) {
        grid-column: span 1;
        height: 150px;
    }

    .noya-footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .noya-header {
        padding: 12px;
    }

    .brand img {
        width: 106px;
    }

    .header-actions a {
        padding: 9px 10px;
        font-size: 12px;
    }

    .hero-section {
        padding: 22px 14px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

    .booking-card {
        padding: 16px;
        border-radius: 22px;
    }

    .gallery-section,
    .packages-section,
    .result-section,
    .policy-section,
    .noya-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .two-cols {
        gap: 10px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 74px;
    }

    .mobile-book-now {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 49;
        display: block;
        padding: 15px 18px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--aqua), var(--aqua-soft));
        color: #031217;
        text-align: center;
        font-weight: 900;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    }
}

/* NOYA MOBILE VISUAL FIX V2 START */

@media (max-width: 560px) {
    .noya-page {
        padding-bottom: 88px;
    }

    .noya-header {
        min-height: auto;
        padding: 8px 12px;
    }

    .brand img {
        width: 92px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions a {
        padding: 8px 9px;
        font-size: 12px;
    }

    .hero-section {
        gap: 18px;
        padding: 16px 14px 24px;
    }

    .hero-content h1 {
        margin-top: 8px;
        font-size: 34px;
        line-height: 1.02;
        letter-spacing: -0.045em;
    }

    .hero-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.55;
    }

    .trust-strip {
        gap: 7px;
        margin-top: 16px;
    }

    .trust-strip span {
        padding: 7px 10px;
        font-size: 12px;
    }

    .booking-card {
        padding: 15px;
        border-radius: 22px;
        scroll-margin-top: 74px;
    }

    .booking-card h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .booking-card label {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .booking-card input {
        min-height: 48px;
        font-size: 16px;
        border-radius: 14px;
    }

    .gallery-section,
    .packages-section,
    .result-section,
    .policy-section,
    .noya-footer {
        padding-top: 24px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 82px;
        padding: 10px 13px;
        font-size: 13px;
    }

    .mobile-book-now {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 13px 16px;
        border-radius: 15px;
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .booking-card {
        padding: 13px;
    }

    .two-cols {
        grid-template-columns: 1fr;
    }
}

/* NOYA MOBILE VISUAL FIX V2 END */

/* NOYA MOBILE VISUAL FIX V3 START */

@media (max-width: 560px) {
    .noya-page {
        padding-bottom: 28px;
    }

    .hero-section {
        padding-top: 12px;
    }

    .hero-content h1 {
        font-size: 31px;
        line-height: 1.05;
    }

    .trust-strip span {
        padding: 6px 9px;
        font-size: 11px;
    }

    .booking-card {
        margin-top: 4px;
    }

    .mobile-book-now {
        display: none !important;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 14px;
        padding: 9px 12px;
        font-size: 12px;
        opacity: 0.94;
    }
}

/* NOYA MOBILE VISUAL FIX V3 END */

/* NOYA MOBILE VISUAL FIX V4 START */

@media (max-width: 560px) {
    .whatsapp-float {
        display: none !important;
    }

    .booking-card {
        margin-bottom: 24px;
    }

    .noya-page {
        padding-bottom: 42px;
    }
}

/* NOYA MOBILE VISUAL FIX V4 END */

/* NOYA MOBILE VISUAL FIX V5 START */

.whatsapp-float {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 999px;
    background: #25d366;
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: #ffffff;
}

@media (max-width: 560px) {
    .booking-card {
        overflow: hidden;
        margin-bottom: 24px;
    }

    .booking-card label,
    .booking-card input,
    .two-cols {
        min-width: 0;
        max-width: 100%;
    }

    .booking-card input[type="date"] {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        appearance: none;
        -webkit-appearance: none;
    }

    .whatsapp-float {
        display: flex !important;
        right: 14px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        opacity: 0.96;
    }

    .whatsapp-float svg {
        width: 29px;
        height: 29px;
    }
}

/* NOYA MOBILE VISUAL FIX V5 END */

/* NOYA PACKAGE RESULT UX V6 START */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.package-card {
    position: relative;
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    padding: 18px;
    border: 1px solid rgba(120, 236, 243, 0.26);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.package-card:hover {
    transform: translateY(-2px);
    border-color: rgba(120, 236, 243, 0.58);
    background: rgba(255, 255, 255, 0.1);
}

.package-card.selected {
    border-color: var(--aqua-soft);
    box-shadow: 0 0 0 2px rgba(120, 236, 243, 0.18), 0 20px 50px rgba(0, 0, 0, 0.24);
}

.package-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.15;
}

.package-card p {
    flex: 1;
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.45;
}

.package-meta {
    min-height: 38px;
    margin: 0 0 16px;
    color: var(--white);
    font-size: 13px;
    line-height: 1.45;
}

.package-badge {
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 9px;
    border: 1px solid rgba(120, 236, 243, 0.34);
    border-radius: 999px;
    background: rgba(22, 185, 200, 0.14);
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 800;
}

.package-card button {
    width: 100%;
    margin-top: auto;
}

.result-section {
    padding-top: 28px;
}

#resultBox {
    max-width: 860px;
    margin: 0 auto;
}

.booking-result-card {
    border: 1px solid rgba(120, 236, 243, 0.28);
    border-radius: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.booking-result-kicker {
    margin-bottom: 6px;
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-result-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.booking-result-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.booking-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.booking-result-grid div {
    padding: 12px;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.14);
}

.booking-result-grid span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
}

.booking-result-grid strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

@media (max-width: 920px) {
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .package-card {
        padding: 15px;
        border-radius: 20px;
    }

    .package-card h3 {
        font-size: 19px;
    }

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

    .booking-result-card {
        padding: 16px;
        border-radius: 20px;
    }
}

/* NOYA PACKAGE RESULT UX V6 END */

/* NOYA SEARCH FLOW V7 START */

.package-card.selected::after {
    content: "Selected";
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(120, 236, 243, 0.18);
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 900;
}

.package-card button.selected-button,
.package-card.selected button {
    background: linear-gradient(135deg, var(--aqua-soft), var(--aqua));
    color: #031217;
}

.package-card button.selected-button::before {
    content: "";
}

.result-section {
    scroll-margin-top: 84px;
}

/* NOYA SEARCH FLOW V7 END */

/* KHEPRA FOOTER BRAND V8 START */

.khepra-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    text-align: center;
}

.khepra-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.khepra-brand-link img {
    display: block;
    width: 96px;
    max-width: 100%;
    height: auto;
    opacity: 0.94;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.khepra-credit div {
    display: grid;
    gap: 4px;
    justify-items: center;
    text-align: center;
}

.khepra-credit div span,
.khepra-credit div a {
    text-align: center;
}

@media (max-width: 560px) {
    .khepra-credit {
        gap: 6px;
        margin-top: 4px;
    }

    .khepra-brand-link img {
        width: 82px;
    }

    .khepra-credit div {
        gap: 2px;
    }
}

/* KHEPRA FOOTER BRAND V8 END */

/* KHEPRA LOGO CLEAN V10 START */

.khepra-credit {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.khepra-brand-link img {
    width: 74px;
    opacity: 0.92;
    filter: none !important;
}

.khepra-credit div {
    justify-items: center;
    text-align: center;
}

@media (max-width: 560px) {
    .khepra-brand-link img {
        width: 68px;
    }

    .khepra-credit {
        gap: 5px;
    }
}

/* KHEPRA LOGO CLEAN V10 END */

/* NOYA REAL AVAILABILITY V11 START */

.booking-card select {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(120, 236, 243, 0.26);
    border-radius: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 15px;
}

.booking-card select option {
    color: #08262d;
}

.availability-results-card {
    max-width: 1050px;
    margin: 0 auto;
}

.availability-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0 20px;
}

.availability-summary div,
.availability-facts div {
    padding: 12px;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.14);
}

.availability-summary span,
.availability-facts span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
}

.availability-summary strong,
.availability-facts strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.availability-list {
    display: grid;
    gap: 14px;
}

.availability-option {
    padding: 18px;
    border: 1px solid rgba(120, 236, 243, 0.2);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
}

.availability-option-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.availability-kicker {
    margin-bottom: 6px;
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.availability-option h3 {
    margin: 0 0 8px;
    font-size: 23px;
}

.availability-option p {
    margin: 0;
    color: var(--muted);
}

.availability-price {
    display: grid;
    gap: 8px;
    justify-items: end;
    min-width: 150px;
}

.availability-price strong {
    color: var(--white);
    font-size: 20px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.availability-badge.available {
    background: rgba(120, 236, 178, 0.18);
    color: #8cffc7;
}

.availability-badge.unavailable {
    background: rgba(255, 170, 120, 0.16);
    color: #ffd0a6;
}

.availability-facts {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.availability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.availability-tags span {
    padding: 5px 9px;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
}

.availability-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.continue-option {
    min-width: 140px;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--aqua-soft), var(--aqua));
    color: #031217;
    font-weight: 900;
    cursor: pointer;
}

.continue-option.disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.availability-empty {
    padding: 18px;
    border: 1px solid rgba(255, 170, 120, 0.18);
    border-radius: 18px;
    background: rgba(255, 170, 120, 0.08);
}

.availability-empty p {
    margin: 6px 0 0;
    color: var(--muted);
}

@media (max-width: 900px) {
    .availability-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .availability-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .availability-option-top {
        grid-template-columns: 1fr;
    }

    .availability-price {
        justify-items: start;
    }
}

@media (max-width: 560px) {
    .availability-summary,
    .availability-facts {
        grid-template-columns: 1fr;
    }

    .availability-option {
        padding: 15px;
        border-radius: 20px;
    }

    .availability-actions {
        justify-content: stretch;
    }

    .continue-option {
        width: 100%;
    }
}

/* NOYA REAL AVAILABILITY V11 END */

/* NOYA VALIDATION CAPACITY V13 START */

.booking-card button[disabled],
.booking-card button.disabled {
    opacity: 0.48;
    cursor: not-allowed;
    filter: grayscale(0.35);
}

.availability-facts {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .availability-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .availability-facts {
        grid-template-columns: 1fr;
    }
}

/* NOYA VALIDATION CAPACITY V13 END */

/* NOYA AVAILABLE DATE INVOICE V14 START */

.availability-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.online-mini-invoice {
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.14);
}

.online-mini-invoice-title {
    padding: 11px 13px;
    border-bottom: 1px solid rgba(120, 236, 243, 0.14);
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.online-mini-invoice-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 10px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.online-mini-invoice-row:last-child {
    border-bottom: none;
}

.online-mini-invoice-row span {
    color: var(--muted);
    font-size: 13px;
}

.online-mini-invoice-row strong {
    color: var(--white);
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .availability-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .availability-summary {
        grid-template-columns: 1fr;
    }

    .online-mini-invoice-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* NOYA AVAILABLE DATE INVOICE V14 END */

/* NOYA PUBLIC CARD CLEANUP V14 START */

.public-results-card {
    max-width: 1120px;
}

.public-result-summary {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 16px 0 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.public-result-summary span {
    flex: 0 0 auto;
    max-width: 260px;
    padding: 10px 12px;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.14);
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-result-summary strong {
    color: var(--white);
}

.public-availability-list {
    gap: 16px;
}

.public-booking-card {
    padding: 0;
    overflow: hidden;
}

.public-card-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 18px;
    align-items: stretch;
    padding: 18px;
}

.public-card-copy {
    min-width: 0;
}

.single-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-booking-card h3 {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.2;
}

.public-card-description {
    display: -webkit-box;
    max-width: 780px;
    min-height: 24px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.public-card-meta {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.public-card-meta span {
    flex: 0 0 auto;
    max-width: 220px;
    padding: 7px 10px;
    border: 1px solid rgba(120, 236, 243, 0.16);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.12);
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-card-meta strong {
    color: var(--white);
}

.public-card-side {
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 11px;
    min-width: 0;
}

.public-card-price {
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
}

.online-mini-invoice.compact {
    margin-top: 14px;
    max-width: 650px;
    border: 1px solid rgba(120, 236, 243, 0.16);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.12);
}

.online-mini-invoice-title {
    padding: 9px 12px;
    border-bottom: 1px solid rgba(120, 236, 243, 0.12);
    color: var(--aqua-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.online-mini-invoice-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.online-mini-invoice-row:last-child {
    border-bottom: none;
}

.online-mini-invoice-row span {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.online-mini-invoice-row strong {
    color: var(--white);
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .public-result-summary {
        flex-wrap: wrap;
    }

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

    .public-card-side {
        justify-items: start;
    }

    .public-card-meta {
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .public-booking-card h3 {
        white-space: normal;
    }

    .public-result-summary span,
    .public-card-meta span {
        max-width: 100%;
    }

    .online-mini-invoice-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

/* NOYA PUBLIC CARD CLEANUP V14 END */

/* NOYA PUBLIC CARD FONT AMOUNT V15 START */

.public-results-card {
    max-width: 1180px;
}

.public-result-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
}

.public-result-summary span {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.public-card-main {
    grid-template-columns: minmax(0, 1fr) 190px;
}

.public-card-meta {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
}

.public-card-meta span {
    max-width: none;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.public-card-price {
    font-size: 25px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.online-mini-invoice.compact {
    max-width: 680px;
}

.online-mini-invoice-row {
    grid-template-columns: minmax(0, 1fr) 130px;
}

.online-mini-invoice-row span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.online-mini-invoice-row strong {
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .public-card-main {
        grid-template-columns: 1fr;
    }

    .public-card-side {
        justify-items: start;
    }

    .online-mini-invoice-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 560px) {
    .public-result-summary span,
    .public-card-meta span {
        white-space: normal;
    }

    .online-mini-invoice-row {
        grid-template-columns: 1fr;
    }

    .online-mini-invoice-row strong {
        text-align: left;
    }
}

/* NOYA PUBLIC CARD FONT AMOUNT V15 END */

/* NOYA RESULT VISUAL TUNE V16 START */

.public-option-card {
    position: relative;
}

.public-card-main {
    align-items: start;
}

.public-card-body {
    min-width: 0;
}

.public-card-title {
    color: #56dfee;
    font-weight: 800;
}

.public-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.public-card-meta span,
.public-card-meta strong {
    color: #ffffff;
}

.online-mini-invoice-row span,
.online-mini-invoice-row strong,
.online-mini-invoice-row.total span,
.online-mini-invoice-row.total strong {
    color: #ffffff;
}

.public-card-side {
    justify-content: flex-start;
    align-items: flex-end;
    gap: 16px;
    padding-top: 0;
}

.public-card-status {
    align-self: flex-end;
    margin-bottom: 6px;
}

.public-card-price {
    color: #ffffff;
    white-space: nowrap;
}

@media (min-width: 901px) {
    .public-option-card .public-card-status {
        position: absolute;
        top: 22px;
        right: 22px;
        z-index: 2;
    }

    .public-option-card .public-card-side {
        padding-top: 44px;
    }
}

@media (max-width: 900px) {
    .public-card-side {
        align-items: flex-start;
    }

    .public-card-status {
        align-self: flex-start;
        margin-bottom: 0;
    }
}

/* NOYA RESULT VISUAL TUNE V16 END */

/* NOYA SORT BUTTONS TITLE V17 START */

.public-booking-card h3,
.package-card h3,
.availability-option h3,
.public-booking-card h3.single-line {
    color: #65f3ff;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(74, 219, 231, 0.20);
}

.sort-native-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.sort-button-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 8px;
}

.sort-choice {
    min-height: 42px;
    border: 1px solid rgba(120, 236, 243, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.sort-choice:hover {
    transform: translateY(-1px);
    border-color: rgba(120, 236, 243, 0.60);
    background: rgba(120, 236, 243, 0.12);
}

.sort-choice.active {
    border-color: rgba(101, 243, 255, 0.95);
    background: linear-gradient(135deg, var(--aqua-soft), var(--aqua));
    color: #031217;
    box-shadow: 0 10px 24px rgba(74, 219, 231, 0.20);
}

@media (max-width: 560px) {
    .sort-button-group {
        grid-template-columns: 1fr;
    }
}

/* NOYA SORT BUTTONS TITLE V17 END */

/* NOYA COMPACT SORT DROPDOWN V18 START */

.sort-button-group {
    display: none !important;
}

.sort-native-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.sort-dropdown {
    position: relative;
    width: 100%;
    margin-top: 8px;
}

.sort-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(120, 236, 243, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.sort-dropdown-trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sort-dropdown-trigger b {
    color: var(--aqua-soft);
    font-size: 13px;
}

.sort-dropdown.open .sort-dropdown-trigger {
    border-color: rgba(101, 243, 255, 0.85);
    box-shadow: 0 0 0 3px rgba(74, 219, 231, 0.10);
}

.sort-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    overflow: hidden;
    padding: 6px;
    border: 1px solid rgba(120, 236, 243, 0.26);
    border-radius: 16px;
    background: #082c33;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.sort-dropdown-item {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 0 11px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.sort-dropdown-item:hover {
    background: rgba(120, 236, 243, 0.13);
}

.sort-dropdown-item.active {
    background: linear-gradient(135deg, var(--aqua-soft), var(--aqua));
    color: #031217;
}

/* Keep result titles bright using current real selectors */
.public-booking-card h3,
.package-card h3,
.availability-option h3,
.public-booking-card h3.single-line {
    color: #65f3ff;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(74, 219, 231, 0.20);
}

/* NOYA COMPACT SORT DROPDOWN V18 END */

/* NOYA CONTINUE REVIEW PANEL V19 START */

.review-card {
    max-width: 980px;
    margin: 0 auto;
}

.review-card h3 {
    color: #65f3ff;
    font-size: 30px;
    font-weight: 900;
}

.review-description {
    max-width: 720px;
    margin: 6px 0 18px;
    color: #ffffff;
    opacity: 0.86;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.review-grid div {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.14);
}

.review-grid span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
}

.review-grid strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.review-invoice {
    max-width: 680px;
    overflow: hidden;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.14);
}

.review-invoice h4 {
    margin: 0;
    padding: 11px 13px;
    border-bottom: 1px solid rgba(120, 236, 243, 0.14);
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-invoice-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 12px;
    align-items: center;
    padding: 10px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.review-invoice-row:last-child {
    border-bottom: none;
}

.review-invoice-row span,
.review-invoice-row strong {
    color: #ffffff;
    white-space: nowrap;
}

.review-invoice-row span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-invoice-row strong {
    text-align: right;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.review-back-button,
.review-confirm-button {
    min-height: 46px;
    border: none;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 900;
    cursor: pointer;
}

.review-back-button {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(120, 236, 243, 0.20);
}

.review-confirm-button {
    background: linear-gradient(135deg, var(--aqua-soft), var(--aqua));
    color: #031217;
    opacity: 0.55;
    cursor: not-allowed;
}

.review-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 900px) {
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .review-invoice-row {
        grid-template-columns: 1fr;
    }

    .review-invoice-row strong {
        text-align: left;
    }

    .review-back-button,
    .review-confirm-button {
        width: 100%;
    }
}

/* NOYA CONTINUE REVIEW PANEL V19 END */

/* NOYA TIME WINDOW THIN SORT V20 START */

.booking-card .sort-dropdown {
    margin-top: 7px;
}

.booking-card .sort-dropdown-trigger {
    min-height: 42px !important;
    padding: 0 13px !important;
    border: 1px solid rgba(120, 236, 243, 0.24) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    letter-spacing: 0.01em;
}

.booking-card .sort-dropdown-trigger:hover {
    border-color: rgba(120, 236, 243, 0.48) !important;
    background: rgba(255, 255, 255, 0.075) !important;
}

.booking-card .sort-dropdown.open .sort-dropdown-trigger {
    border-color: rgba(101, 243, 255, 0.70) !important;
    box-shadow: 0 0 0 3px rgba(74, 219, 231, 0.08) !important;
}

.sort-dropdown-trigger b {
    opacity: 0.75;
    font-size: 11px !important;
}

.sort-dropdown-menu {
    padding: 5px !important;
    border-radius: 14px !important;
    background: rgba(6, 38, 45, 0.98) !important;
}

.sort-dropdown-item {
    min-height: 36px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
}

.sort-dropdown-item.active {
    background: rgba(101, 243, 255, 0.16) !important;
    color: #ffffff !important;
}

.public-card-meta span {
    color: #ffffff;
}

.public-card-meta strong {
    color: #ffffff;
}

.review-grid strong {
    color: #ffffff;
}

/* NOYA TIME WINDOW THIN SORT V20 END */

/* NOYA SORT DROPDOWN MENU STYLE V21 START */

.sort-dropdown-menu {
    display: grid !important;
    gap: 6px !important;
    padding: 8px !important;
    border: 1px solid rgba(120, 236, 243, 0.28) !important;
    border-radius: 16px !important;
    background: rgba(7, 39, 46, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42) !important;
}

.sort-dropdown-menu[hidden] {
    display: none !important;
}

.sort-dropdown .sort-dropdown-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 42px !important;
    padding: 0 13px !important;
    border: 1px solid rgba(120, 236, 243, 0.18) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-align: left !important;
    box-shadow: none !important;
}

.sort-dropdown .sort-dropdown-item:hover {
    border-color: rgba(120, 236, 243, 0.46) !important;
    background: rgba(255, 255, 255, 0.085) !important;
    color: #ffffff !important;
}

.sort-dropdown .sort-dropdown-item.active {
    border-color: rgba(101, 243, 255, 0.82) !important;
    background: rgba(101, 243, 255, 0.12) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 2px rgba(74, 219, 231, 0.08) inset !important;
}

.sort-dropdown .sort-dropdown-item.active::after {
    content: "✓";
    color: var(--aqua-soft);
    font-size: 13px;
    font-weight: 900;
}

.sort-dropdown-trigger {
    background: rgba(255, 255, 255, 0.055) !important;
}

/* NOYA SORT DROPDOWN MENU STYLE V21 END */

/* NOYA HIDE FAKE LOADING ADD TIME V23 START */

.packages-section[hidden] {
    display: none !important;
}

.public-card-meta {
    gap: 8px;
}

.public-card-meta span {
    color: #ffffff;
    max-width: none;
}

.public-card-meta strong {
    color: #ffffff;
}

/* NOYA HIDE FAKE LOADING ADD TIME V23 END */

/* NOYA REDUCE HEADER HEIGHT V26 START */

.site-header {
    min-height: 118px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

.site-header img {
    max-height: 54px !important;
}

.header-actions {
    align-items: center !important;
}

.header-actions a {
    min-height: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 700px) {
    .site-header {
        min-height: 104px !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .site-header img {
        max-height: 46px !important;
    }

    .header-actions a {
        min-height: 36px !important;
    }
}

/* NOYA REDUCE HEADER HEIGHT V26 END */

/* NOYA REDUCE HEADER HEIGHT MORE V27 START */

.site-header {
    min-height: 82px !important;
    height: 82px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.site-header img {
    max-height: 42px !important;
    width: auto !important;
}

.header-actions {
    align-items: center !important;
    gap: 8px !important;
}

.header-actions a {
    min-height: 32px !important;
    height: 32px !important;
    padding: 0 13px !important;
    font-size: 13px !important;
    line-height: 32px !important;
}

@media (max-width: 700px) {
    .site-header {
        min-height: 72px !important;
        height: 72px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .site-header img {
        max-height: 38px !important;
    }

    .header-actions a {
        min-height: 30px !important;
        height: 30px !important;
        padding: 0 11px !important;
        font-size: 12px !important;
        line-height: 30px !important;
    }
}

/* NOYA REDUCE HEADER HEIGHT MORE V27 END */

/* NOYA ACCESS TIME PROMINENT V28 START */

.public-card-access-time {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 2px 0 13px;
    padding: 8px 12px;
    border: 1px solid rgba(120, 236, 243, 0.28);
    border-radius: 999px;
    background: rgba(120, 236, 243, 0.08);
    color: #ffffff;
}

.public-card-access-time span {
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.public-card-access-time strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .public-card-access-time {
        display: flex;
        width: 100%;
        justify-content: space-between;
        border-radius: 16px;
    }

    .public-card-access-time strong {
        white-space: normal;
        text-align: right;
    }
}

/* NOYA ACCESS TIME PROMINENT V28 END */

/* NOYA FOOTER CLEANUP V29 START */

.noya-footer {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 18px 34px !important;
    align-items: start !important;
    padding: 30px 7vw 34px !important;
    border-top: 1px solid rgba(120, 236, 243, 0.16) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(74, 219, 231, 0.06), transparent 36%),
        rgba(1, 25, 31, 0.66) !important;
}

.noya-footer > div:first-child {
    min-width: 0 !important;
}

.noya-footer strong {
    display: block !important;
    margin-bottom: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.noya-footer p {
    margin: 5px 0 !important;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 10px 16px !important;
    max-width: 520px !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.footer-links a:hover {
    color: var(--aqua-soft) !important;
}

.khepra-credit {
    grid-column: 1 / -1 !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    margin-top: 6px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    text-align: center !important;
}

.khepra-brand-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.khepra-brand-link img {
    width: auto !important;
    max-width: 92px !important;
    max-height: 58px !important;
    object-fit: contain !important;
}

.khepra-credit div {
    display: grid !important;
    gap: 2px !important;
    justify-items: center !important;
}

.khepra-credit div span,
.khepra-credit div a {
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

.khepra-credit div a:hover {
    color: var(--aqua-soft) !important;
}

@media (max-width: 800px) {
    .noya-footer {
        grid-template-columns: 1fr !important;
        padding: 26px 24px 32px !important;
        text-align: left !important;
    }

    .footer-links {
        justify-content: flex-start !important;
        max-width: none !important;
    }

    .khepra-credit {
        justify-items: start !important;
        text-align: left !important;
    }

    .khepra-credit div {
        justify-items: start !important;
    }
}

/* NOYA FOOTER CLEANUP V29 END */

/* NOYA FOOTER THREE COLUMN V30 START */

.noya-footer {
    display: grid !important;
    grid-template-columns: minmax(260px, 1.25fr) minmax(260px, 1fr) minmax(230px, 0.85fr) !important;
    gap: 26px !important;
    align-items: center !important;
    padding: 28px 7vw !important;
    border-top: 1px solid rgba(120, 236, 243, 0.16) !important;
    background:
        linear-gradient(180deg, rgba(1, 25, 31, 0.72), rgba(1, 20, 26, 0.92)),
        radial-gradient(circle at 50% 0%, rgba(74, 219, 231, 0.06), transparent 42%) !important;
}

.noya-footer > div:first-child {
    min-width: 0 !important;
}

.noya-footer strong {
    display: block !important;
    margin-bottom: 7px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.noya-footer p {
    margin: 4px 0 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 9px 14px !important;
    max-width: none !important;
    padding: 0 18px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.09) !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 13px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.footer-links a:hover {
    color: var(--aqua-soft) !important;
}

.khepra-credit {
    grid-column: auto !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    justify-items: end !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    text-align: right !important;
}

.khepra-brand-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.khepra-brand-link img {
    width: auto !important;
    max-width: 86px !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

.khepra-credit div {
    display: grid !important;
    gap: 2px !important;
    justify-items: end !important;
}

.khepra-credit div span,
.khepra-credit div a {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

.khepra-credit div a:hover {
    color: var(--aqua-soft) !important;
}

@media (max-width: 1050px) {
    .noya-footer {
        grid-template-columns: 1fr 1fr !important;
    }

    .khepra-credit {
        grid-column: 1 / -1 !important;
        justify-items: center !important;
        text-align: center !important;
        padding-top: 16px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .khepra-credit div {
        justify-items: center !important;
    }

    .footer-links {
        justify-content: flex-end !important;
        border-right: none !important;
    }
}

@media (max-width: 720px) {
    .noya-footer {
        grid-template-columns: 1fr !important;
        padding: 24px 24px 28px !important;
        text-align: left !important;
    }

    .footer-links {
        justify-content: flex-start !important;
        padding: 14px 0 !important;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .khepra-credit {
        grid-column: auto !important;
        justify-items: start !important;
        text-align: left !important;
        padding-top: 0 !important;
        border-top: none !important;
    }

    .khepra-credit div {
        justify-items: start !important;
    }
}

/* NOYA FOOTER THREE COLUMN V30 END */

/* NOYA FOOTER FINAL RESET V34 START */

.noya-footer.noya-footer-compact {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
    padding: 28px 7vw 18px !important;
    border-top: 1px solid rgba(120, 236, 243, 0.14) !important;
    background:
        linear-gradient(180deg, rgba(2, 30, 36, 0.58), rgba(1, 18, 24, 0.94)),
        radial-gradient(circle at 50% 0%, rgba(74, 219, 231, 0.055), transparent 44%) !important;
    text-align: left !important;
}

.noya-footer-compact .footer-main-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) !important;
    gap: 42px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
}

.noya-footer-compact .footer-brand-block,
.noya-footer-compact .footer-contact-block {
    display: grid !important;
    align-content: start !important;
    justify-items: start !important;
    gap: 6px !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left !important;
}

.noya-footer-compact .footer-kicker {
    color: var(--aqua-soft) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.13em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.noya-footer-compact .footer-brand-block strong {
    max-width: none !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.noya-footer-compact .footer-brand-block p {
    max-width: 520px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.noya-footer-compact .footer-contact-lines {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 8px 18px !important;
    min-width: 0 !important;
}

.noya-footer-compact .footer-contact-lines a {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.noya-footer-compact .footer-policy-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin-top: 4px !important;
}

.noya-footer-compact .footer-policy-links a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 28px !important;
    padding: 0 10px !important;
    border: 1px solid rgba(120, 236, 243, 0.15) !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.12) !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.noya-footer-compact .footer-contact-lines a:hover,
.noya-footer-compact .footer-policy-links a:hover,
.noya-footer-compact .footer-powered-row a:hover {
    color: var(--aqua-soft) !important;
}

.noya-footer-compact .footer-powered-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px 11px !important;
    width: 100% !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
    text-align: center !important;
}

.noya-footer-compact .footer-powered-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.noya-footer-compact .footer-powered-logo img {
    width: auto !important;
    max-width: 34px !important;
    max-height: 22px !important;
    object-fit: contain !important;
}

.noya-footer-compact .footer-powered-row span,
.noya-footer-compact .footer-powered-row a {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

@media (max-width: 850px) {
    .noya-footer-compact .footer-main-row {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .noya-footer-compact .footer-contact-block {
        padding-top: 16px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
    }
}

@media (max-width: 560px) {
    .noya-footer.noya-footer-compact {
        padding: 24px 24px 18px !important;
    }

    .noya-footer-compact .footer-powered-row span,
    .noya-footer-compact .footer-powered-row a {
        white-space: normal !important;
    }
}

/* NOYA FOOTER FINAL RESET V34 END */


/* ============================================================
   Online Package Visuals
   ============================================================ */

.public-booking-card {
    overflow: hidden;
}

.public-card-image-wrap {
    width: 100%;
    height: 168px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    border-bottom: 1px solid rgba(103, 232, 249, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.public-card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.public-card-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 6px 0;
}

.public-package-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(103, 232, 249, 0.42);
    border-radius: 999px;
    padding: 4px 9px;
    background: rgba(34, 211, 238, 0.12);
    color: #67e8f9;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 560px) {
    .public-card-image-wrap {
        height: 148px;
    }
}


/* ============================================================
   Mobile Gallery Compact Override V39
   Purpose:
       Keep public gallery images small and balanced on mobile.
       This overrides older featured-image / nth-child sizing.
   ============================================================ */

@media (max-width: 700px) {
    .gallery-section {
        padding: 22px 18px !important;
        overflow: hidden !important;
    }

    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    .gallery-grid img,
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(4) {
        width: 100% !important;
        height: 132px !important;
        min-height: 0 !important;
        max-height: 132px !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
        grid-column: auto !important;
        grid-row: auto !important;
        border-radius: 14px !important;
    }
}

@media (max-width: 390px) {
    .gallery-grid {
        gap: 8px !important;
    }

    .gallery-grid img,
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(4) {
        height: 116px !important;
        max-height: 116px !important;
        border-radius: 12px !important;
    }
}


/* ============================================================
   Tiny Mobile Images Override V40
   Purpose:
       Make online-booking mobile images small thumbnail/logo size.
       This overrides gallery and package-card image sizing.
   ============================================================ */

@media (max-width: 700px) {
    .gallery-section {
        padding: 14px 18px !important;
        overflow: hidden !important;
    }

    .gallery-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    .gallery-grid img,
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(4) {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        max-width: 64px !important;
        min-height: 64px !important;
        max-height: 64px !important;
        flex: 0 0 64px !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
        grid-column: auto !important;
        grid-row: auto !important;
        border-radius: 12px !important;
    }

    .public-booking-card {
        position: relative !important;
        overflow: hidden !important;
    }

    .public-booking-card .public-card-image-wrap {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        max-width: 64px !important;
        min-height: 64px !important;
        max-height: 64px !important;
        border-radius: 12px !important;
        margin: 12px 0 0 12px !important;
        overflow: hidden !important;
        border: 1px solid rgba(103, 232, 249, 0.28) !important;
        background: rgba(255, 255, 255, 0.06) !important;
    }

    .public-booking-card .public-card-image {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        max-width: 64px !important;
        min-height: 64px !important;
        max-height: 64px !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }
}

@media (max-width: 390px) {
    .gallery-grid img,
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(4),
    .public-booking-card .public-card-image-wrap,
    .public-booking-card .public-card-image {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        max-width: 54px !important;
        min-height: 54px !important;
        max-height: 54px !important;
        flex-basis: 54px !important;
        border-radius: 10px !important;
    }
}


/* ============================================================
   Forced Small Square Images V41
   Purpose:
       Structural small square gallery and package thumbnails.
       Uses dedicated wrapper classes instead of only resizing img.
   ============================================================ */

.gallery-small-square-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    max-width: 820px !important;
    margin: 0 auto !important;
}

.gallery-small-square {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    border: 1px solid rgba(103, 232, 249, 0.24) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    flex: 0 0 72px !important;
}

.gallery-small-square img,
.gallery-small-square-grid img,
.gallery-small-square-grid img:nth-child(1),
.gallery-small-square-grid img:nth-child(4) {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 0 !important;
    aspect-ratio: 1 / 1 !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

.public-card-image-small-square,
.public-card-image-small-square .public-card-image {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    aspect-ratio: 1 / 1 !important;
}

@media (max-width: 390px) {
    .gallery-small-square,
    .gallery-small-square img,
    .gallery-small-square-grid img,
    .public-card-image-small-square,
    .public-card-image-small-square .public-card-image {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
        flex-basis: 60px !important;
    }
}

/* ============================================================
   Move Thumbnail To Top Right V42
   Purpose:
       Place the package thumbnail inside the option content
       area near the package title to save vertical space on
       mobile.
   ============================================================ */

.public-card-main {
    position: relative !important;
    padding-right: 92px !important;
}

.public-card-image-small-square {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    z-index: 2 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
}

.public-card-image-small-square .public-card-image {
    display: block !important;
}

@media (max-width: 767px) {
    .public-card-main {
        padding-right: 72px !important;
    }

    .public-card-image-small-square {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        top: 2px !important;
        right: 0 !important;
        border-radius: 12px !important;
    }

    .public-card-image-small-square .public-card-image {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
    }
}

@media (max-width: 480px) {
    .public-card-main {
        padding-right: 66px !important;
    }

    .public-card-image-small-square {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
    }

    .public-card-image-small-square .public-card-image {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
    }
}



/* ============================================================
   Remove Package Thumbnail Box V43
   Purpose:
       Keep package image small/top-right, but remove the visible
       wrapper box so only the image appears.
   ============================================================ */

.public-card-image-small-square {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.public-card-image-small-square .public-card-image {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 12px !important;
}

@media (max-width: 767px) {
    .public-card-image-small-square {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        border-radius: 12px !important;
        top: 2px !important;
        right: 0 !important;
    }

    .public-card-image-small-square .public-card-image {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
}

@media (max-width: 480px) {
    .public-card-image-small-square {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
    }

    .public-card-image-small-square .public-card-image {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
    }
}



/* ============================================================
   Online Success WhatsApp Handoff V45
   ============================================================ */

.reservation-success-v45 h3 {
    color: #67e8f9;
}

.reservation-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.reservation-whatsapp-button,
.reservation-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.reservation-whatsapp-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.42);
}

.reservation-call-button {
    background: rgba(255, 255, 255, 0.08);
    color: #e0f2fe;
    border: 1px solid rgba(103, 232, 249, 0.28);
}

@media (max-width: 560px) {
    .reservation-success-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .reservation-whatsapp-button,
    .reservation-call-button {
        width: 100%;
    }
}



/* ============================================================
   Online Success Back Home Button V46
   ============================================================ */

.reservation-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.reservation-home-button:hover {
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.11);
}

@media (max-width: 560px) {
    .reservation-home-button {
        width: 100%;
    }
}



/* ============================================================
   Confirm Reservation Cursor Fix V47
   Purpose:
       Remove blocked cursor from active Confirm Reservation button.
   ============================================================ */

.review-confirm-button,
.review-confirm-button:not(:disabled):not(.disabled),
.booking-card .review-confirm-button:not(:disabled):not(.disabled) {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.review-confirm-button:disabled,
.review-confirm-button.disabled,
.booking-card .review-confirm-button:disabled,
.booking-card .review-confirm-button.disabled {
    cursor: progress !important;
    pointer-events: none !important;
}



/* ============================================================
   Guest Lookup No Layout Shift V49
   Purpose:
       Keep guest lookup status in a fixed small line so messages
       do not push the booking form/page downward.
   ============================================================ */

#guestLookupStatus,
#guestLookupStatus[hidden] {
    display: block !important;
    visibility: hidden;
    min-height: 18px !important;
    height: 18px !important;
    max-height: 18px !important;
    margin: 4px 0 0 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    font-size: 11px !important;
    line-height: 18px !important;
}

#guestLookupStatus:not([hidden]) {
    visibility: visible;
}



/* ============================================================
   Native Mobile Sort Select V50
   Purpose:
       Prevent custom sort dropdown from being clipped behind
       lower page sections on mobile.
   ============================================================ */

@media (max-width: 700px) {
    .sort-dropdown {
        display: none !important;
    }

    #sortBy,
    #sortBy.sort-native-hidden {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        height: 46px !important;
        min-height: 46px !important;
        margin: 0 !important;
        padding: 0 14px !important;
        border-radius: 14px !important;
        border: 1px solid rgba(103, 232, 249, 0.28) !important;
        background: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        appearance: auto !important;
        -webkit-appearance: menulist !important;
        z-index: 3 !important;
    }

    #sortBy option {
        color: #111827 !important;
        background: #ffffff !important;
    }
}



/* ============================================================
   Eid Party Promo Strip V51
   ============================================================ */

.event-promo-strip {
    width: min(1100px, calc(100% - 36px));
    margin: 22px auto 4px auto;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(103, 232, 249, 0.24);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(20, 83, 96, 0.78), rgba(8, 47, 54, 0.84));
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.20);
}

.event-promo-thumb {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.event-promo-thumb img {
    width: 72px;
    height: 72px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.event-promo-copy {
    min-width: 0;
}

.event-promo-copy span {
    display: block;
    margin-bottom: 3px;
    color: #67e8f9;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.16em;
}

.event-promo-copy strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.2;
}

.event-promo-copy p {
    margin: 4px 0 0 0;
    color: rgba(224, 242, 254, 0.78);
    font-size: 13px;
    font-weight: 650;
}

.event-promo-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-promo-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.28);
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.event-promo-actions a:last-child {
    border-color: rgba(34, 197, 94, 0.42);
    background: rgba(34, 197, 94, 0.16);
    color: #dcfce7;
}

@media (max-width: 700px) {
    .event-promo-strip {
        width: calc(100% - 32px);
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 10px;
        margin-top: 14px;
        padding: 10px;
        border-radius: 16px;
    }

    .event-promo-thumb,
    .event-promo-thumb img {
        width: 56px;
        height: 56px;
        border-radius: 13px;
    }

    .event-promo-copy strong {
        font-size: 14px;
    }

    .event-promo-copy p {
        font-size: 11px;
    }

    .event-promo-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .event-promo-actions a {
        min-height: 36px;
        font-size: 12px;
    }
}



/* ============================================================
   Clickable Small Gallery Originals V53
   ============================================================ */

.gallery-small-square {
    cursor: pointer !important;
    text-decoration: none !important;
}

.gallery-small-square:hover {
    transform: translateY(-1px);
    border-color: rgba(103, 232, 249, 0.46) !important;
}

.gallery-small-square:focus {
    outline: 2px solid rgba(103, 232, 249, 0.60) !important;
    outline-offset: 2px !important;
}



/* ============================================================
   Visible Online Search Hint V56
   ============================================================ */

.booking-date-availability-hint {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 0 0 !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(103, 232, 249, 0.28) !important;
    background: rgba(8, 47, 73, 0.56) !important;
    color: #dbeafe !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
}

@media (max-width: 560px) {
    .booking-date-availability-hint {
        margin-top: 8px !important;
        padding: 9px 10px !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
    }
}

/* ============================================================
   Online Booking Guest Count Range Message V1
   Purpose:
       Customer-safe range message for impossible guest counts.
============================================================ */

.online-availability-warning {
    border-color: rgba(180, 83, 9, 0.28);
    background: rgba(251, 191, 36, 0.08);
}

.online-availability-warning strong {
    color: #92400e;
}

.online-availability-warning p {
    color: #92400e;
}

/* ============================================================
   Online Booking Warning Contrast V1
   Purpose:
       Make customer warning messages readable on the dark theme.
============================================================ */

.online-availability-warning {
    border-color: rgba(251, 191, 36, 0.52) !important;
    background: rgba(251, 191, 36, 0.12) !important;
    box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.10);
}

.online-availability-warning strong {
    color: #fde68a !important;
    font-weight: 760;
}

.online-availability-warning p {
    color: #fff7d6 !important;
    font-weight: 520;
}

.online-availability-warning strong,
.online-availability-warning p {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.24);
}

/* ============================================================
   Online Booking Back To Search Button V1
   Purpose:
       Add a clear return action for no-availability messages.
============================================================ */

.online-back-to-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 14px;
    padding: 10px 16px;
    border: 1px solid rgba(125, 249, 255, 0.36);
    border-radius: 999px;
    background: rgba(125, 249, 255, 0.10);
    color: #e6fdff;
    font-size: 13px;
    font-weight: 760;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.online-back-to-search-button:hover {
    transform: translateY(-1px);
    border-color: rgba(125, 249, 255, 0.62);
    background: rgba(125, 249, 255, 0.18);
}

.online-back-to-search-button:focus {
    outline: 2px solid rgba(125, 249, 255, 0.42);
    outline-offset: 3px;
}

/* ============================================================
   Online Booking Image Lightbox V1
   Purpose:
       Preview poster, gallery, and package images in-page.
============================================================ */

.online-lightbox-open {
    overflow: hidden;
}

.online-image-lightbox[hidden] {
    display: none !important;
}

.online-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.online-image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 18, 23, 0.82);
    backdrop-filter: blur(8px);
}

.online-image-lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 94vw);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(125, 249, 255, 0.28);
    border-radius: 24px;
    background: rgba(6, 34, 41, 0.94);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.online-image-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 76vh;
    object-fit: contain;
    border-radius: 18px;
}

.online-image-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(0, 18, 23, 0.72);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.online-image-lightbox-close:hover {
    background: rgba(125, 249, 255, 0.18);
    border-color: rgba(125, 249, 255, 0.42);
}

.online-image-lightbox-caption {
    color: #dffcff;
    font-size: 13px;
    font-weight: 650;
    text-align: center;
}

.gallery-small-square,
.public-card-image-wrap,
a[href="/online-booking-eid-party"] {
    cursor: zoom-in;
}

@media (max-width: 720px) {
    .online-image-lightbox {
        padding: 12px;
    }

    .online-image-lightbox-panel {
        width: 96vw;
        max-height: 88vh;
        padding: 10px;
        border-radius: 18px;
    }

    .online-image-lightbox-image {
        max-height: 78vh;
        border-radius: 14px;
    }
}

/* ============================================================
   Online Booking Gallery Lightbox Arrows V1
   Purpose:
       Add previous / next controls for gallery lightbox.
============================================================ */

.online-image-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 58px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(0, 18, 23, 0.72);
    color: #ffffff;
    font-size: 46px;
    font-weight: 300;
    line-height: 0.8;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6px;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.online-image-lightbox-nav:hover {
    background: rgba(125, 249, 255, 0.18);
    border-color: rgba(125, 249, 255, 0.48);
}

.online-image-lightbox-prev {
    left: 16px;
}

.online-image-lightbox-next {
    right: 16px;
}

.online-image-lightbox-single .online-image-lightbox-nav {
    display: none;
}

@media (max-width: 720px) {
    .online-image-lightbox-nav {
        width: 38px;
        height: 50px;
        font-size: 40px;
    }

    .online-image-lightbox-prev {
        left: 8px;
    }

    .online-image-lightbox-next {
        right: 8px;
    }
}

/* ============================================================
   Online Booking Input Validation UX V3
   Purpose:
       Explain why Search Availability is disabled.
============================================================ */

.search-availability-hint {
    display: block;
    margin-top: 9px;
    min-height: 16px;
    color: rgba(224, 252, 255, 0.72);
    font-size: 12px;
    line-height: 1.4;
}

.search-availability-hint.warning {
    color: #fde68a;
}

.search-availability-hint.ready {
    color: #bbf7d0;
}

/* ============================================================
   Online Booking Warning And Old Date UX V67
   Purpose:
       Make disabled-search warnings harder to miss.
============================================================ */

.search-availability-hint.warning {
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(251, 191, 36, 0.55);
    border-radius: 14px;
    background: rgba(251, 191, 36, 0.13);
    color: #fff3bf;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.45;
    box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.08);
}

.search-availability-hint.ready {
    display: block;
    padding: 9px 12px;
    border: 1px solid rgba(187, 247, 208, 0.34);
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.10);
    color: #bbf7d0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

/* ============================================================
   Online Booking Package Card Compact Image V69
   Purpose:
       Fixed-size package image frame and shorter mobile card.
============================================================ */

.public-booking-card .public-card-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
}

.public-booking-card .public-card-image-hero {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    height: 160px !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 160px !important;
    max-height: 160px !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    cursor: zoom-in;
}

.public-booking-card .public-card-image-hero .public-card-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.public-card-meta-compact {
    gap: 7px !important;
}

@media (max-width: 700px) {
    .public-booking-card {
        padding: 14px !important;
    }

    .public-booking-card .public-card-main {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .public-booking-card .public-card-image-hero {
        height: 128px !important;
        min-height: 128px !important;
        max-height: 128px !important;
        margin-bottom: 10px !important;
        border-radius: 18px !important;
    }

    .public-booking-card .public-card-image-hero .public-card-image {
        border-radius: 18px !important;
    }

    .public-booking-card .public-card-copy {
        display: grid !important;
        gap: 8px !important;
    }

    .public-booking-card .availability-kicker {
        margin-bottom: 0 !important;
        font-size: 11px !important;
    }

    .public-booking-card h3 {
        margin-bottom: 0 !important;
        font-size: 19px !important;
        line-height: 1.2 !important;
    }

    .public-booking-card .public-card-description {
        display: none !important;
    }

    .public-booking-card .public-card-access-time {
        margin-top: 2px !important;
        padding: 9px 10px !important;
        border-radius: 14px !important;
    }

    .public-booking-card .public-meta-mobile-hide {
        display: none !important;
    }

    .public-booking-card .public-card-meta-compact {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-top: 2px !important;
    }

    .public-booking-card .public-card-meta-compact span {
        padding: 6px 8px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .public-booking-card .public-card-side {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: 4px !important;
    }

    .public-booking-card .public-card-status {
        display: none !important;
    }

    .public-booking-card .public-card-price {
        justify-self: start !important;
        font-size: 18px !important;
    }

    .public-booking-card .continue-option {
        min-width: 112px !important;
        padding: 11px 14px !important;
    }
}

@media (max-width: 390px) {
    .public-booking-card .public-card-image-hero {
        height: 112px !important;
        min-height: 112px !important;
        max-height: 112px !important;
        border-radius: 16px !important;
    }

    .public-booking-card .public-card-image-hero .public-card-image {
        border-radius: 16px !important;
    }

    .public-booking-card h3 {
        font-size: 18px !important;
    }

    .public-booking-card .continue-option {
        min-width: 104px !important;
    }
}

/* ============================================================
   Online Booking Mobile Card Compression V70
   Purpose:
       Shorter mobile package card and cleaner price/action area.
============================================================ */

@media (max-width: 700px) {
    .public-booking-card {
        padding: 12px !important;
        border-radius: 22px !important;
    }

    .public-booking-card .public-card-image-hero {
        height: 112px !important;
        min-height: 112px !important;
        max-height: 112px !important;
        margin-bottom: 8px !important;
        border-radius: 16px !important;
    }

    .public-booking-card .public-card-image-hero .public-card-image {
        border-radius: 16px !important;
    }

    .public-booking-card .public-card-copy {
        gap: 7px !important;
    }

    .public-booking-card .availability-kicker {
        font-size: 10px !important;
        letter-spacing: 0.16em !important;
    }

    .public-booking-card h3 {
        font-size: 18px !important;
        line-height: 1.15 !important;
    }

    .public-booking-card .public-card-access-time {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 8px 10px !important;
        border-radius: 14px !important;
    }

    .public-booking-card .public-card-access-time span {
        flex: 0 0 auto !important;
        margin: 0 !important;
        white-space: nowrap !important;
        font-size: 11px !important;
        letter-spacing: 0.14em !important;
    }

    .public-booking-card .public-card-access-time strong {
        flex: 1 1 auto !important;
        text-align: right !important;
        white-space: nowrap !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
    }

    .public-booking-card .public-card-meta-compact {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 6px !important;
        margin-top: 0 !important;
    }

    .public-booking-card .public-card-meta-compact span {
        width: fit-content !important;
        max-width: 100% !important;
        padding: 5px 8px !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
    }

    .public-booking-card .public-meta-summary {
        width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .public-booking-card .public-meta-child {
        color: #bbf7d0 !important;
        border-color: rgba(187, 247, 208, 0.26) !important;
        background: rgba(34, 197, 94, 0.10) !important;
    }

    .public-booking-card .online-mini-invoice {
        display: none !important;
    }

    .public-booking-card .public-card-side {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        margin-top: 6px !important;
    }

    .public-booking-card .public-card-price {
        justify-self: center !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 20px !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    .public-booking-card .continue-option {
        width: 100% !important;
        min-width: 0 !important;
        padding: 12px 14px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 390px) {
    .public-booking-card .public-card-image-hero {
        height: 100px !important;
        min-height: 100px !important;
        max-height: 100px !important;
    }

    .public-booking-card .public-card-access-time strong {
        font-size: 14px !important;
    }

    .public-booking-card .public-card-price {
        font-size: 19px !important;
    }
}

/* ============================================================
   Online Booking Compact Review Screen V71
   Purpose:
       Shorter mobile review after Continue.
============================================================ */

.review-card-compact {
    max-width: 760px;
}

.review-card-compact h3 {
    margin-bottom: 10px;
}

.review-description-compact {
    margin-bottom: 12px !important;
}

.review-compact-summary {
    padding: 10px 12px;
    border: 1px solid rgba(120, 236, 243, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(238, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 760;
    line-height: 1.45;
}

.review-compact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.review-compact-tags span {
    display: inline-flex;
    padding: 6px 9px;
    border: 1px solid rgba(187, 247, 208, 0.28);
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.10);
    color: #bbf7d0;
    font-size: 12px;
    font-weight: 800;
}

.review-compact-access,
.review-compact-guest,
.review-compact-total {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(120, 236, 243, 0.24);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.14);
}

.review-compact-access span,
.review-compact-guest span,
.review-compact-total span {
    color: var(--aqua-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.review-compact-access strong,
.review-compact-guest strong,
.review-compact-total strong {
    min-width: 0;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-compact-guest em {
    grid-column: 2;
    margin-top: -8px;
    color: rgba(204, 238, 241, 0.72);
    font-size: 12px;
    font-style: normal;
    text-align: right;
}

.review-compact-total {
    border-color: rgba(120, 236, 243, 0.36);
    background: rgba(120, 236, 243, 0.10);
}

.review-compact-total strong {
    color: #ffffff;
    font-size: 24px;
}

.review-details-collapsible {
    margin-top: 12px;
    border: 1px solid rgba(120, 236, 243, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.review-details-collapsible summary {
    padding: 11px 13px;
    color: var(--aqua-soft);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.review-details-collapsible .review-grid {
    margin: 0;
    padding: 0 12px 12px;
}

.review-details-collapsible .review-invoice {
    margin: 0 12px 12px;
}

.review-actions-compact {
    margin-top: 14px;
}

.review-note-compact {
    margin-top: 10px !important;
    font-size: 12px !important;
}

@media (max-width: 700px) {
    .review-card-compact {
        padding: 16px !important;
        border-radius: 22px !important;
    }

    .review-card-compact .booking-result-kicker {
        font-size: 10px !important;
        letter-spacing: 0.16em !important;
    }

    .review-card-compact h3 {
        margin-bottom: 8px !important;
        font-size: 21px !important;
        line-height: 1.15 !important;
    }

    .review-description-compact {
        display: none !important;
    }

    .review-compact-summary {
        padding: 9px 10px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .review-compact-tags {
        margin-top: 8px !important;
        gap: 6px !important;
    }

    .review-compact-tags span {
        padding: 5px 8px !important;
        font-size: 11px !important;
    }

    .review-compact-access,
    .review-compact-guest,
    .review-compact-total {
        margin-top: 9px !important;
        padding: 10px 11px !important;
        border-radius: 16px !important;
    }

    .review-compact-access span,
    .review-compact-guest span,
    .review-compact-total span {
        font-size: 10px !important;
        letter-spacing: 0.12em !important;
    }

    .review-compact-access strong,
    .review-compact-guest strong {
        font-size: 14px !important;
    }

    .review-compact-total strong {
        font-size: 22px !important;
    }

    .review-details-collapsible {
        margin-top: 10px !important;
    }

    .review-details-collapsible summary {
        padding: 10px 11px !important;
        font-size: 12px !important;
    }

    .review-actions-compact {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 8px !important;
    }

    .review-actions-compact .review-confirm-button {
        order: 1;
        width: 100% !important;
    }

    .review-actions-compact .review-back-button {
        order: 2;
        width: 100% !important;
    }

    .review-note-compact {
        text-align: center !important;
    }
}


/* ============================================================
   Online Booking Field Status Colors V1
   Purpose:
       Color-code guest/mobile/adult/children inputs using the
       same valid / invalid / checking language as Reception.
============================================================ */

.booking-field-status.booking-field-valid {
    border-color: rgba(34, 197, 94, 0.72) !important;
    background: rgba(240, 253, 244, 0.96) !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12) !important;
}

.booking-field-status.booking-field-invalid {
    border-color: rgba(220, 38, 38, 0.72) !important;
    background: rgba(254, 242, 242, 0.98) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.11) !important;
}

.booking-field-status.booking-field-info {
    border-color: rgba(14, 165, 233, 0.72) !important;
    background: rgba(240, 249, 255, 0.98) !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.11) !important;
}

.booking-int-input {
    appearance: textfield;
    -moz-appearance: textfield;
}

.booking-int-input::-webkit-outer-spin-button,
.booking-int-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

/* ============================================================
   Online Booking Input Contrast Fix V1
   Purpose:
       Keep mobile, guest, email, adult, child and date inputs
       readable while typing, focused, valid/invalid, or browser
       autofilled. This is CSS-only and does not touch validation
       roles/status logic.
============================================================ */

.ob-field input,
.ob-field select,
.ob-form input,
.ob-form select,
.ob-search-card input,
.ob-search-card select,
#obMobile,
#obGuestName,
#obGuestEmail,
#obAdults,
#obChildren,
#obVisitDate {
    background-color: rgba(9, 45, 51, 0.96) !important;
    color: #f8fafc !important;
    -webkit-text-fill-color: #f8fafc !important;
    caret-color: #67e8f9 !important;
}

.ob-field input::placeholder,
.ob-form input::placeholder,
.ob-search-card input::placeholder,
#obMobile::placeholder,
#obGuestName::placeholder,
#obGuestEmail::placeholder,
#obAdults::placeholder,
#obChildren::placeholder {
    color: rgba(226, 232, 240, 0.68) !important;
    -webkit-text-fill-color: rgba(226, 232, 240, 0.68) !important;
}

.ob-field input:focus,
.ob-field select:focus,
.ob-form input:focus,
.ob-form select:focus,
.ob-search-card input:focus,
.ob-search-card select:focus,
#obMobile:focus,
#obGuestName:focus,
#obGuestEmail:focus,
#obAdults:focus,
#obChildren:focus,
#obVisitDate:focus {
    background-color: rgba(9, 45, 51, 0.98) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.ob-field input:-webkit-autofill,
.ob-form input:-webkit-autofill,
.ob-search-card input:-webkit-autofill,
#obMobile:-webkit-autofill,
#obGuestName:-webkit-autofill,
#obGuestEmail:-webkit-autofill,
#obAdults:-webkit-autofill,
#obChildren:-webkit-autofill,
#obVisitDate:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(9, 45, 51, 0.98) inset !important;
    box-shadow: 0 0 0 1000px rgba(9, 45, 51, 0.98) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #67e8f9 !important;
}

/* ============================================================
   Online Booking Field Status Contrast Fix V2
   Purpose:
       Fix actual online booking fields after validation status
       classes turn inputs pale/white. Validation roles/classes
       remain unchanged; status is still shown by border/shadow.
============================================================ */

.booking-card input,
.booking-card select,
.booking-card input.booking-field-status,
.booking-card input.booking-field-status.booking-field-valid,
.booking-card input.booking-field-status.booking-field-invalid,
.booking-card input.booking-field-status.booking-field-info,
#guestMobile,
#guestMobile.booking-field-status,
#guestMobile.booking-field-status.booking-field-valid,
#guestMobile.booking-field-status.booking-field-invalid,
#guestMobile.booking-field-status.booking-field-info,
#guestName,
#guestName.booking-field-status,
#guestName.booking-field-status.booking-field-valid,
#guestName.booking-field-status.booking-field-invalid,
#guestName.booking-field-status.booking-field-info,
#guestEmail,
#adultCount,
#adultCount.booking-field-status,
#adultCount.booking-field-status.booking-field-valid,
#adultCount.booking-field-status.booking-field-invalid,
#adultCount.booking-field-status.booking-field-info,
#childCount,
#childCount.booking-field-status,
#childCount.booking-field-status.booking-field-valid,
#childCount.booking-field-status.booking-field-invalid,
#childCount.booking-field-status.booking-field-info,
#bookingDate,
#sortBy {
    background-color: rgba(9, 45, 51, 0.96) !important;
    color: #f5fcfd !important;
    -webkit-text-fill-color: #f5fcfd !important;
    caret-color: #67e8f9 !important;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card input.booking-field-status:focus,
.booking-card input.booking-field-status.booking-field-valid:focus,
.booking-card input.booking-field-status.booking-field-invalid:focus,
.booking-card input.booking-field-status.booking-field-info:focus,
#guestMobile:focus,
#guestName:focus,
#guestEmail:focus,
#adultCount:focus,
#childCount:focus,
#bookingDate:focus,
#sortBy:focus {
    background-color: rgba(9, 45, 51, 0.98) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.booking-card input::placeholder,
#guestMobile::placeholder,
#guestName::placeholder,
#guestEmail::placeholder,
#adultCount::placeholder,
#childCount::placeholder {
    color: rgba(226, 232, 240, 0.68) !important;
    -webkit-text-fill-color: rgba(226, 232, 240, 0.68) !important;
}

.booking-card input:-webkit-autofill,
#guestMobile:-webkit-autofill,
#guestName:-webkit-autofill,
#guestEmail:-webkit-autofill,
#adultCount:-webkit-autofill,
#childCount:-webkit-autofill,
#bookingDate:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(9, 45, 51, 0.98) inset !important;
    box-shadow: 0 0 0 1000px rgba(9, 45, 51, 0.98) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #67e8f9 !important;
}

/* ============================================================
   Online Booking Footer App Version V1
   Purpose:
       Show Resort Master app title/version before rights text.
============================================================ */

.noya-footer-compact .footer-app-version {
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
}


/* ============================================================
   Safe Compact Online Success Summary V1
   Purpose:
       Compact reservation success screen without touching HTML.
============================================================ */

.reservation-success-compact-safe-v1 {
    padding: 16px !important;
}

.reservation-success-safe-head {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.reservation-success-safe-head h3 {
    margin: 0 !important;
    color: #67e8f9;
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.12;
}

.reservation-success-safe-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.28);
    background: rgba(34, 197, 94, 0.14);
    color: #bbf7d0;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.reservation-success-safe-note {
    margin-top: 6px !important;
    margin-bottom: 10px !important;
}

.reservation-success-safe-ref {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 9px;
    align-items: center;
    margin: 10px 0;
    padding: 11px;
    border: 1px solid rgba(103, 232, 249, 0.28);
    border-radius: 16px;
    background: rgba(103, 232, 249, 0.08);
}

.reservation-success-safe-ref span {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.reservation-success-safe-ref strong {
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0.02em;
}

.reservation-copy-ref-button {
    min-height: 34px;
    border: 1px solid rgba(103, 232, 249, 0.34);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #e0f2fe;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.reservation-success-safe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 12px;
}

.reservation-success-safe-grid div {
    min-width: 0;
    padding: 9px;
    border: 1px solid rgba(120, 236, 243, 0.16);
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.13);
}

.reservation-success-safe-grid span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
}

.reservation-success-safe-grid strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.reservation-success-safe-actions {
    margin-top: 12px !important;
}

@media (max-width: 560px) {
    .reservation-success-compact-safe-v1 {
        padding: 13px !important;
        border-radius: 18px !important;
    }

    .reservation-success-safe-head {
        align-items: flex-start;
    }

    .reservation-success-safe-ref {
        padding: 10px;
        border-radius: 15px;
    }

    .reservation-success-safe-grid {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }
}

@media (max-width: 390px) {
    .reservation-success-safe-head {
        display: block;
    }

    .reservation-success-safe-pill {
        margin-top: 8px;
    }

    .reservation-success-safe-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   Exact Compact Availability Preview V1
   Purpose:
       Compact mobile availability results and use guest-friendly
       wording such as "Children free".
============================================================ */

.public-option-compact-safe-v1 {
    position: relative;
}

.public-option-number {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 10px 0;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.38);
    color: #67e8f9;
    background: rgba(103, 232, 249, 0.08);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-option-compact-safe-v1 .public-meta-child {
    color: #bbf7d0 !important;
    border-color: rgba(34, 197, 94, 0.36) !important;
    background: rgba(34, 197, 94, 0.12) !important;
}

.public-option-compact-safe-v1 .public-card-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.public-option-compact-safe-v1 .public-card-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 720px) {
    .availability-results-card.public-results-card {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    .availability-results-card.public-results-card > h3 {
        font-size: 30px !important;
        line-height: 1.08;
        margin-bottom: 12px !important;
    }

    .availability-results-card .public-result-summary {
        display: flex !important;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 14px;
    }

    .availability-results-card .public-result-summary span {
        padding: 8px 10px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        line-height: 1.2;
    }

    .public-option-compact-safe-v1 {
        padding: 14px !important;
        border-radius: 22px !important;
    }

    .public-option-compact-safe-v1 .public-card-main {
        display: block !important;
    }

    .public-option-compact-safe-v1 .public-card-image-wrap {
        width: 100% !important;
        margin: 0 auto 14px auto !important;
        border-radius: 18px !important;
    }

    .public-option-compact-safe-v1 .public-card-image {
        width: 100% !important;
        max-height: 220px !important;
        border-radius: 18px !important;
    }

    .public-option-compact-safe-v1 h3 {
        font-size: 30px !important;
        line-height: 1.08;
        margin: 8px 0 10px !important;
    }

    .public-option-compact-safe-v1 .public-card-description {
        margin-bottom: 10px !important;
        font-size: 14px !important;
        line-height: 1.35;
    }

    .public-option-compact-safe-v1 .public-card-meta {
        display: flex !important;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 8px !important;
    }

    .public-option-compact-safe-v1 .public-card-meta span {
        max-width: 100%;
        font-size: 12px !important;
        line-height: 1.2;
    }

    .public-option-compact-safe-v1 .review-invoice {
        margin-top: 12px !important;
        max-height: 210px;
        overflow: auto;
    }

    .public-option-compact-safe-v1 .public-card-side {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: stretch;
        margin-top: 14px !important;
        text-align: center;
    }

    .public-option-compact-safe-v1 .public-card-price {
        font-size: 34px !important;
        line-height: 1;
    }

    .public-option-compact-safe-v1 .continue-option {
        width: 100% !important;
        min-height: 48px;
    }
}

@media (max-width: 430px) {
    .public-option-compact-safe-v1 .public-card-image {
        max-height: 190px !important;
    }

    .public-option-compact-safe-v1 h3 {
        font-size: 28px !important;
    }

    .public-option-compact-safe-v1 .public-card-price {
        font-size: 30px !important;
    }
}


/* ============================================================
   Exact Mobile Availability Preview Tight V2
   Purpose:
       Make the mobile availability option card shorter and make
       the image fill the card width.
============================================================ */

@media (max-width: 720px) {
    .availability-list.public-availability-list {
        gap: 12px !important;
    }

    .availability-results-card.public-results-card {
        padding: 14px !important;
        border-radius: 20px !important;
    }

    .availability-results-card.public-results-card > h3 {
        font-size: 26px !important;
        line-height: 1.05 !important;
        margin: 4px 0 10px !important;
    }

    .availability-results-card .public-result-summary {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 7px !important;
        margin-bottom: 12px !important;
    }

    .availability-results-card .public-result-summary span {
        padding: 6px 9px !important;
        border-radius: 999px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .public-option-compact-safe-v1 {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .public-option-compact-safe-v1 .public-option-number {
        margin-bottom: 8px !important;
        padding: 5px 9px !important;
        font-size: 11px !important;
        letter-spacing: 0.10em !important;
    }

    .public-option-compact-safe-v1 .public-card-main {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(112px, 138px) !important;
        gap: 8px 10px !important;
        align-items: start !important;
    }

    .public-option-compact-safe-v1 .public-card-image-wrap,
    .public-option-compact-safe-v1 .public-card-image-hero {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: none !important;
        height: 150px !important;
        margin: 0 0 8px 0 !important;
        border-radius: 14px !important;
    }

    .public-option-compact-safe-v1 .public-card-image {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        max-height: none !important;
        border-radius: 14px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .public-option-compact-safe-v1 .public-card-copy {
        grid-column: 1 !important;
        min-width: 0 !important;
    }

    .public-option-compact-safe-v1 .public-card-side {
        grid-column: 2 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        align-items: stretch !important;
        margin-top: 0 !important;
        text-align: center !important;
    }

    .public-option-compact-safe-v1 .availability-kicker {
        margin: 0 0 5px 0 !important;
        font-size: 11px !important;
        letter-spacing: 0.12em !important;
    }

    .public-option-compact-safe-v1 .public-card-badge-row {
        margin: 0 0 5px 0 !important;
    }

    .public-option-compact-safe-v1 .public-package-badge {
        padding: 5px 9px !important;
        font-size: 11px !important;
    }

    .public-option-compact-safe-v1 h3,
    .public-option-compact-safe-v1 h3.single-line {
        font-size: 22px !important;
        line-height: 1.08 !important;
        margin: 4px 0 7px !important;
    }

    .public-option-compact-safe-v1 .public-card-description {
        display: none !important;
    }

    .public-option-compact-safe-v1 .public-card-access-time {
        width: fit-content !important;
        max-width: 100% !important;
        margin: 6px 0 7px !important;
        padding: 7px 10px !important;
        border-radius: 14px !important;
    }

    .public-option-compact-safe-v1 .public-card-access-time span {
        font-size: 10px !important;
        letter-spacing: 0.16em !important;
    }

    .public-option-compact-safe-v1 .public-card-access-time strong {
        font-size: 15px !important;
        line-height: 1.1 !important;
    }

    .public-option-compact-safe-v1 .public-card-meta,
    .public-option-compact-safe-v1 .public-card-meta-compact {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-top: 6px !important;
    }

    .public-option-compact-safe-v1 .public-card-meta span,
    .public-option-compact-safe-v1 .public-card-meta-compact span {
        max-width: 100% !important;
        padding: 5px 8px !important;
        font-size: 11px !important;
        line-height: 1.15 !important;
    }

    .public-option-compact-safe-v1 .public-meta-summary {
        overflow: hidden !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }

    .public-option-compact-safe-v1 .review-invoice,
    .public-option-compact-safe-v1 .online-mini-invoice {
        display: none !important;
    }

    .public-option-compact-safe-v1 .public-card-status {
        justify-self: center !important;
        padding: 5px 9px !important;
        font-size: 10px !important;
    }

    .public-option-compact-safe-v1 .public-card-price {
        font-size: 24px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .public-option-compact-safe-v1 .continue-option {
        width: 100% !important;
        min-height: 42px !important;
        padding: 9px 10px !important;
        border-radius: 999px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 430px) {
    .public-option-compact-safe-v1 .public-card-main {
        grid-template-columns: minmax(0, 1fr) 124px !important;
        gap: 8px !important;
    }

    .public-option-compact-safe-v1 .public-card-image-wrap,
    .public-option-compact-safe-v1 .public-card-image-hero {
        height: 132px !important;
    }

    .public-option-compact-safe-v1 h3,
    .public-option-compact-safe-v1 h3.single-line {
        font-size: 21px !important;
    }

    .public-option-compact-safe-v1 .public-card-access-time strong {
        font-size: 14px !important;
    }

    .public-option-compact-safe-v1 .public-card-price {
        font-size: 22px !important;
    }
}

@media (max-width: 360px) {
    .public-option-compact-safe-v1 .public-card-main {
        grid-template-columns: 1fr !important;
    }

    .public-option-compact-safe-v1 .public-card-side {
        grid-column: 1 !important;
    }
}


/* ============================================================
   Online Availability Little Cards V3
   Purpose:
       Build compact option cards without relying on the old
       public-card-side / mini invoice preview layout.
============================================================ */

.public-option-little-v3 {
    padding: 14px !important;
    border-radius: 22px !important;
}

.public-option-little-v3 .option-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.public-option-little-v3 .public-option-number,
.public-option-little-v3 .option-status-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.public-option-little-v3 .public-option-number {
    border: 1px solid rgba(103, 232, 249, 0.40);
    color: #67e8f9;
    background: rgba(103, 232, 249, 0.08);
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.public-option-little-v3 .option-status-pill {
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.12);
}

.public-option-little-v3 .option-image-frame {
    width: 100%;
    height: 155px;
    margin: 0 0 12px 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.14);
}

.public-option-little-v3 .option-image-full {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
}

.public-option-little-v3 .option-little-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 142px;
    gap: 12px;
    align-items: stretch;
}

.public-option-little-v3 .option-main-info {
    min-width: 0;
}

.public-option-little-v3 .availability-kicker {
    margin: 0 0 6px 0 !important;
    font-size: 11px !important;
    letter-spacing: 0.13em !important;
}

.public-option-little-v3 .option-badge {
    margin: 0 0 7px 0;
    padding: 5px 9px !important;
    font-size: 11px !important;
}

.public-option-little-v3 h3 {
    margin: 4px 0 8px 0 !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
}

.public-option-little-v3 .option-description {
    margin: 0 0 8px 0 !important;
    color: rgba(221, 245, 246, 0.70);
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.public-option-little-v3 .option-access-card {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    margin: 0 0 9px 0;
    padding: 7px 10px;
    border: 1px solid rgba(103, 232, 249, 0.28);
    border-radius: 14px;
    background: rgba(103, 232, 249, 0.07);
}

.public-option-little-v3 .option-access-card span {
    color: #67e8f9;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.public-option-little-v3 .option-access-card strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
}

.public-option-little-v3 .option-detail-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.public-option-little-v3 .option-detail-card,
.public-option-little-v3 .option-total-card {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.14);
}

.public-option-little-v3 .option-detail-card span,
.public-option-little-v3 .option-total-card span {
    display: block;
    margin-bottom: 3px;
    color: rgba(185, 215, 219, 0.78);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.public-option-little-v3 .option-detail-card strong,
.public-option-little-v3 .option-total-card strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.22;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.public-option-little-v3 .option-detail-green {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.10);
}

.public-option-little-v3 .option-detail-green strong {
    color: #bbf7d0;
}

.public-option-little-v3 .option-action-card {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 9px;
    align-items: stretch;
}

.public-option-little-v3 .option-total-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.public-option-little-v3 .option-total-card strong {
    font-size: 20px;
    white-space: normal;
}

.public-option-little-v3 .option-continue-button {
    width: 100% !important;
    min-height: 42px !important;
    padding: 9px 10px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 950 !important;
}

.public-option-little-v3 .review-invoice,
.public-option-little-v3 .online-mini-invoice,
.public-option-little-v3 .public-card-side {
    display: none !important;
}

@media (max-width: 720px) {
    .availability-list.public-availability-list {
        gap: 12px !important;
    }

    .availability-results-card.public-results-card {
        padding: 14px !important;
        border-radius: 20px !important;
    }

    .availability-results-card.public-results-card > h3 {
        margin: 4px 0 10px !important;
        font-size: 27px !important;
        line-height: 1.08 !important;
    }

    .availability-results-card .public-result-summary {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 7px !important;
        margin-bottom: 12px !important;
    }

    .availability-results-card .public-result-summary span {
        padding: 6px 9px !important;
        border-radius: 999px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 430px) {
    .public-option-little-v3 {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .public-option-little-v3 .option-image-frame {
        height: 135px;
        border-radius: 14px;
    }

    .public-option-little-v3 .option-little-body {
        grid-template-columns: minmax(0, 1fr) 128px;
        gap: 9px;
    }

    .public-option-little-v3 h3 {
        font-size: 22px !important;
    }

    .public-option-little-v3 .option-description {
        display: none;
    }

    .public-option-little-v3 .option-detail-cards {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .public-option-little-v3 .option-detail-card {
        padding: 7px 8px;
    }

    .public-option-little-v3 .option-total-card strong {
        font-size: 18px;
    }

    .public-option-little-v3 .option-access-card strong {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .public-option-little-v3 .option-little-body {
        grid-template-columns: 1fr;
    }

    .public-option-little-v3 .option-action-card {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}


/* ============================================================
   Mobile Portrait Availability Layout V5
   Purpose:
       Keep wide/landscape card layout, but use a separate compact
       stacked layout for normal mobile portrait.
============================================================ */

/* Slightly shorter desktop/wide header without changing layout */
@media (min-width: 721px) {
    .noya-header {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .brand img {
        width: 118px !important;
    }

    .header-actions a {
        padding: 8px 11px !important;
        font-size: 12px !important;
    }
}

/* Compact header for mobile landscape / short-height screens */
@media (orientation: landscape) and (max-height: 520px) {
    .noya-header {
        padding: 5px 12px !important;
        min-height: 0 !important;
    }

    .brand img {
        width: 82px !important;
        max-height: 34px !important;
        object-fit: contain !important;
    }

    .header-actions {
        gap: 6px !important;
    }

    .header-actions a {
        padding: 6px 9px !important;
        font-size: 11px !important;
        line-height: 1 !important;
    }
}

/* Normal mobile portrait only */
@media (max-width: 560px) and (orientation: portrait) {
    .availability-results-card.public-results-card {
        padding: 12px !important;
        border-radius: 20px !important;
    }

    .availability-results-card.public-results-card > h3 {
        margin: 4px 0 10px !important;
        font-size: 26px !important;
        line-height: 1.05 !important;
    }

    .availability-results-card .public-result-summary {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 7px !important;
        margin-bottom: 12px !important;
    }

    .availability-results-card .public-result-summary span {
        max-width: 100% !important;
        padding: 6px 9px !important;
        border-radius: 999px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .public-option-little-v3 {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .public-option-little-v3 .option-card-top-row {
        margin-bottom: 8px !important;
    }

    .public-option-little-v3 .public-option-number,
    .public-option-little-v3 .option-status-pill {
        min-height: 25px !important;
        padding: 5px 9px !important;
        font-size: 10.5px !important;
        line-height: 1 !important;
    }

    .public-option-little-v3 .option-image-frame {
        width: 100% !important;
        height: 138px !important;
        margin: 0 0 10px 0 !important;
        border-radius: 14px !important;
    }

    .public-option-little-v3 .option-image-full {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .public-option-little-v3 .option-little-body {
        display: block !important;
    }

    .public-option-little-v3 .option-main-info {
        width: 100% !important;
        min-width: 0 !important;
    }

    .public-option-little-v3 .availability-kicker {
        margin: 0 0 5px 0 !important;
        font-size: 10.5px !important;
    }

    .public-option-little-v3 .option-badge {
        margin: 0 0 6px 0 !important;
        padding: 5px 9px !important;
        font-size: 10.5px !important;
    }

    .public-option-little-v3 h3 {
        margin: 4px 0 8px !important;
        font-size: 24px !important;
        line-height: 1.08 !important;
    }

    .public-option-little-v3 .option-description {
        display: none !important;
    }

    .public-option-little-v3 .option-access-card {
        width: fit-content !important;
        max-width: 100% !important;
        margin: 0 0 9px !important;
        padding: 7px 10px !important;
        border-radius: 14px !important;
    }

    .public-option-little-v3 .option-access-card span {
        font-size: 10px !important;
    }

    .public-option-little-v3 .option-access-card strong {
        font-size: 14px !important;
    }

    .public-option-little-v3 .option-detail-cards {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
        margin-bottom: 10px !important;
    }

    .public-option-little-v3 .option-detail-card {
        padding: 8px 9px !important;
        border-radius: 13px !important;
    }

    .public-option-little-v3 .option-detail-card span {
        margin-bottom: 3px !important;
        font-size: 10px !important;
    }

    .public-option-little-v3 .option-detail-card strong {
        font-size: 12.5px !important;
        line-height: 1.2 !important;
    }

    .public-option-little-v3 .option-action-card {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(130px, 42%) !important;
        grid-template-rows: auto !important;
        gap: 9px !important;
        align-items: stretch !important;
        margin-top: 0 !important;
    }

    .public-option-little-v3 .option-total-card {
        min-height: 50px !important;
        padding: 8px 10px !important;
        border-radius: 14px !important;
        text-align: left !important;
        justify-content: center !important;
    }

    .public-option-little-v3 .option-total-card span {
        margin-bottom: 2px !important;
        font-size: 10px !important;
    }

    .public-option-little-v3 .option-total-card strong {
        font-size: 18px !important;
        line-height: 1.05 !important;
        white-space: nowrap !important;
    }

    .public-option-little-v3 .option-continue-button {
        width: 100% !important;
        min-height: 50px !important;
        padding: 10px 12px !important;
        border-radius: 999px !important;
        font-size: 15px !important;
        align-self: stretch !important;
    }
}

@media (max-width: 370px) and (orientation: portrait) {
    .public-option-little-v3 .option-detail-cards {
        grid-template-columns: 1fr !important;
    }

    .public-option-little-v3 .option-action-card {
        grid-template-columns: 1fr !important;
    }

    .public-option-little-v3 .option-total-card {
        text-align: center !important;
    }
}

/* ============================================================
   Dynamic Online Gallery V1
   Purpose:
       Support ERPNext-controlled image/video gallery items while
       preserving the existing small square gallery layout.
   ============================================================ */

.gallery-small-square-video {
    position: relative !important;
}

.gallery-video-badge {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(2, 6, 23, 0.22) !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55) !important;
    pointer-events: none !important;
}

/* ============================================================
   Dynamic Poster Hero V1
   Purpose:
       Wire ERPNext-controlled Poster and Hero media on public
       online booking page while preserving current fallback.
============================================================ */

.event-promo-thumb-dynamic {
    overflow: hidden;
}

.event-promo-media {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 74px;
    object-fit: cover;
    border-radius: 18px;
}

.online-hero-media[hidden] {
    display: none !important;
}

.online-hero-media {
    width: 100%;
    margin: 22px 0 18px;
}

.online-hero-media-frame {
    position: relative;
    width: min(100%, 560px);
    max-height: min(42vh, 360px);
    border: 1px solid rgba(111, 224, 235, 0.22);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(22, 187, 203, 0.18), rgba(3, 28, 33, 0.82)),
        rgba(3, 28, 33, 0.72);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.online-hero-media-visual {
    display: block;
    width: 100%;
    max-height: min(42vh, 360px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
}

.online-hero-media-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: calc(100% - 32px);
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(1, 20, 25, 0.78), rgba(1, 20, 25, 0.34));
    backdrop-filter: blur(12px);
}

.online-hero-media-caption strong,
.online-hero-media-caption span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.online-hero-media-caption strong {
    font-size: 14px;
    font-weight: 800;
}

.online-hero-media-caption span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
    .online-hero-media {
        margin: 18px 0 14px;
    }

    .online-hero-media-frame {
        width: 100%;
        border-radius: 22px;
    }
}

@media (max-width: 560px) {
    .event-promo-media {
        min-height: 64px;
        border-radius: 16px;
    }

    .online-hero-media {
        margin: 14px 0 12px;
    }

    .online-hero-media-frame {
        border-radius: 20px;
    }

    .online-hero-media-visual {
        max-height: 280px;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .online-hero-media-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 8px 10px;
        border-radius: 14px;
    }
}

@media (orientation: landscape) and (max-height: 520px) {
    .online-hero-media {
        margin: 10px 0;
    }

    .online-hero-media-frame,
    .online-hero-media-visual {
        max-height: 170px;
    }

    .online-hero-media-visual {
        aspect-ratio: auto;
        object-fit: contain;
    }
}

/* ============================================================
   Online Booking Coupon Review UI V1
   Purpose:
     Public online coupon input and preview in Booking Review.
     UI-only. Backend validates and controls coupon lifecycle.
============================================================ */

.online-review-commerce-card {
    margin: 10px 0 12px;
    padding: 12px;
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 16px;
    background: rgba(240, 253, 250, 0.64);
}

.online-review-commerce-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 9px;
}

.online-review-commerce-head span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 950;
}

.online-review-commerce-head small {
    max-width: 360px;
    color: #64748b;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.35;
    text-align: right;
}

.online-review-coupon-field {
    display: grid;
    gap: 5px;
    margin: 0;
}

.online-review-coupon-field span {
    color: #475569;
    font-size: 11px;
    font-weight: 850;
}

.online-review-coupon-input {
    min-height: 40px;
    width: 100%;
    padding: 8px 11px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    outline: none;
}

.online-review-coupon-input:focus {
    border-color: rgba(20, 184, 166, 0.72);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.13);
}

.online-review-coupon-preview {
    margin-top: 9px;
}

.online-coupon-status-card {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    padding: 9px 11px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    text-align: left;
}

.online-coupon-status-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.12;
}

.online-coupon-message-lines {
    display: grid;
    gap: 3px;
}

.online-coupon-message-line {
    display: block;
    color: #475569;
    font-size: 12px;
    line-height: 1.28;
    font-weight: 750;
    white-space: normal;
}

.online-coupon-neutral {
    border-color: rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.92);
}

.online-coupon-neutral strong {
    color: #334155;
}

.online-coupon-info {
    border-color: rgba(56, 189, 248, 0.35);
    background: rgba(240, 249, 255, 0.9);
}

.online-coupon-info strong {
    color: #0369a1;
}

.online-coupon-success {
    border-color: rgba(20, 184, 166, 0.35);
    background: rgba(204, 251, 241, 0.50);
}

.online-coupon-success strong {
    color: #0f766e;
}

.online-coupon-error {
    border-color: rgba(248, 113, 113, 0.42);
    background: rgba(254, 242, 242, 0.96);
}

.online-coupon-error strong {
    color: #991b1b;
}

.online-coupon-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.online-coupon-price-grid div {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    background: #ffffff;
}

.online-coupon-price-grid span,
.online-coupon-success-grid span {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 850;
}

.online-coupon-price-grid strong,
.online-coupon-success-grid strong {
    display: block;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 950;
    line-height: 1.18;
    white-space: normal;
    word-break: break-word;
}

.online-coupon-success-card {
    margin: 10px 0;
    padding: 10px 11px;
    border: 1px solid rgba(20, 184, 166, 0.32);
    border-radius: 15px;
    background: rgba(204, 251, 241, 0.34);
}

.online-coupon-success-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 7px;
}

.online-coupon-success-head span {
    color: #0f766e;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.online-coupon-success-head strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 950;
}

.online-coupon-success-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.online-coupon-success-grid div {
    padding: 7px 8px;
    border: 1px solid rgba(20, 184, 166, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
}

.online-coupon-success-card p {
    margin: 7px 0 0;
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 760px) {
    .online-review-commerce-head {
        display: block;
    }

    .online-review-commerce-head small {
        display: block;
        max-width: none;
        margin-top: 3px;
        text-align: left;
    }

    .online-coupon-price-grid,
    .online-coupon-success-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Online Coupon Theme And Success Totals V2
   Purpose:
     Make online coupon UI match the dark/glass Noya theme,
     make active confirmation button clearly clickable,
     and show full coupon totals on success.
============================================================ */

.online-review-commerce-card {
    margin: 12px 0 13px !important;
    padding: 13px !important;
    border: 1px solid rgba(120, 236, 243, 0.26) !important;
    border-radius: 20px !important;
    background:
        linear-gradient(135deg, rgba(11, 52, 61, 0.82), rgba(11, 38, 47, 0.92)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.18) !important;
}

.online-review-commerce-head {
    margin-bottom: 10px !important;
}

.online-review-commerce-head span {
    color: #78ecf3 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

.online-review-commerce-head small {
    color: rgba(210, 246, 249, 0.72) !important;
}

.online-review-coupon-field span {
    color: rgba(210, 246, 249, 0.76) !important;
}

.online-review-coupon-input {
    border: 1px solid rgba(120, 236, 243, 0.34) !important;
    background: rgba(4, 23, 29, 0.72) !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.online-review-coupon-input:focus {
    border-color: rgba(120, 236, 243, 0.88) !important;
    box-shadow: 0 0 0 3px rgba(120, 236, 243, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.online-coupon-status-card {
    border: 1px solid rgba(120, 236, 243, 0.20) !important;
    background: rgba(4, 23, 29, 0.52) !important;
    color: rgba(255, 255, 255, 0.84) !important;
}

.online-coupon-status-card strong {
    color: #ffffff !important;
}

.online-coupon-message-line {
    color: rgba(210, 246, 249, 0.78) !important;
}

.online-coupon-neutral {
    border-color: rgba(120, 236, 243, 0.18) !important;
    background: rgba(4, 23, 29, 0.42) !important;
}

.online-coupon-info {
    border-color: rgba(120, 236, 243, 0.30) !important;
    background: rgba(22, 185, 200, 0.12) !important;
}

.online-coupon-info strong {
    color: #78ecf3 !important;
}

.online-coupon-success {
    border-color: rgba(34, 197, 94, 0.42) !important;
    background: rgba(6, 78, 59, 0.38) !important;
}

.online-coupon-success strong {
    color: #8cffc7 !important;
}

.online-coupon-error {
    border-color: rgba(248, 113, 113, 0.50) !important;
    background: rgba(127, 29, 29, 0.28) !important;
}

.online-coupon-error strong {
    color: #fecaca !important;
}

.online-coupon-error .online-coupon-message-line {
    color: #ffe4e6 !important;
}

.online-coupon-price-grid div,
.online-coupon-success-grid div {
    border: 1px solid rgba(120, 236, 243, 0.16) !important;
    background: rgba(3, 18, 23, 0.62) !important;
}

.online-coupon-price-grid span,
.online-coupon-success-grid span {
    color: rgba(210, 246, 249, 0.68) !important;
}

.online-coupon-price-grid strong,
.online-coupon-success-grid strong {
    color: #ffffff !important;
}

.review-compact-total.online-review-total-box-coupon-applied {
    border-color: rgba(34, 197, 94, 0.40) !important;
    background: rgba(6, 78, 59, 0.22) !important;
}

#onlineReviewMainTotal.online-review-total-after-coupon {
    color: #8cffc7 !important;
}

.review-actions .review-confirm-button {
    min-width: 190px !important;
    min-height: 52px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #65f3ff, #16b9c8) !important;
    color: #031217 !important;
    font-weight: 950 !important;
    opacity: 1 !important;
    cursor: pointer !important;
    box-shadow: 0 14px 34px rgba(22, 185, 200, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
    filter: none !important;
    transform: translateY(0);
    transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.review-actions .review-confirm-button:hover:not(:disabled):not(.disabled) {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(22, 185, 200, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.38) !important;
}

.review-actions .review-confirm-button:disabled,
.review-actions .review-confirm-button.disabled {
    opacity: 0.56 !important;
    cursor: wait !important;
    filter: grayscale(0.28) !important;
    box-shadow: none !important;
    transform: none !important;
}

.online-coupon-success-card-v2 {
    border: 1px solid rgba(34, 197, 94, 0.38) !important;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.44), rgba(4, 23, 29, 0.42)) !important;
}

.online-coupon-success-head span {
    color: #8cffc7 !important;
}

.online-coupon-success-head strong {
    color: #ffffff !important;
}

.online-coupon-success-grid-v2 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.online-coupon-success-card p {
    color: rgba(210, 246, 249, 0.76) !important;
}

@media (max-width: 760px) {
    .online-coupon-success-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    .review-actions .review-confirm-button {
        width: 100% !important;
    }

    .online-coupon-success-grid-v2 {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   Online Policy Cards V1
   Five-card payment / policy / support section for Paymob review.
   ============================================================ */

.policy-section.policy-section-five {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    margin-top: 36px;
}

.policy-section-five .policy-card {
    min-height: 178px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 22px;
}

.policy-card-kicker {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.95;
}

.policy-section-five .policy-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
}

.policy-section-five .policy-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted);
}

.policy-card-link {
    margin-top: auto;
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.2;
}

.policy-card-link:hover {
    text-decoration: underline;
}

@media (max-width: 1180px) {
    .policy-section.policy-section-five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .policy-section.policy-section-five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .policy-section-five .policy-card {
        min-height: 165px;
        padding: 16px;
    }
}

@media (max-width: 520px) {
    .policy-section.policy-section-five {
        grid-template-columns: 1fr;
    }

    .policy-section-five .policy-card {
        min-height: unset;
    }
}

