@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Playball&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* SCOPED ROOT/CONTAINER VARIABLES */
.cruise-page-outer-container {
    --primary-navy: #0B2038;
    --primary-navy-dark: #051221;
    --gold: #F2CF87;
    --gold-light: #F4EFE6;
    --bg-cream: #FDFCF9;
    --bg-light: #F9F9FB;
    --text-dark: #2A2A2A;
    --text-muted: #666666;
    --border-color: #ECE7DF;
    
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.cruise-page-outer-container * {
    box-sizing: border-box;
}

/* ============================================
   RESET: Override theme active/focus styles
   ============================================ */
.cruise-page-outer-container button,
.cruise-page-outer-container a,
.cruise-page-outer-container input,
.cruise-page-outer-container select,
.cruise-page-outer-container textarea {
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.cruise-page-outer-container button:focus,
.cruise-page-outer-container button:active,
.cruise-page-outer-container button:focus-visible,
.cruise-page-outer-container a:focus,
.cruise-page-outer-container a:active,
.cruise-page-outer-container a:focus-visible,
.cruise-page-outer-container input:focus,
.cruise-page-outer-container input:active,
.cruise-page-outer-container select:focus,
.cruise-page-outer-container textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit;
    background-color: inherit;
    color: inherit;
    text-decoration: none;
}

/* ================= DESKTOP EMULATOR STYLE ================= */
/* Emulator phone frame is disabled - app renders full width on desktop */
.cruise-page-desktop-emulator {
    display: none !important;
}

.emulator-left {
    display: none !important;
}

.emulator-phone-frame {
    display: none !important;
}

.phone-screen-container {
    display: none !important;
}

.phone-screen-container .cruise-page-app-container {
    display: none !important;
}



/* ================= MOBILE APP STYLES ================= */
.cruise-page-app-container {
    width: 100%;
    max-width: 800px;
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

/* STICKY HEADER */
.app-header {
    background: var(--primary-navy);
    color: #fff;
    height: 60px;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--gold);
}

.header-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.header-btn:hover {
    color: var(--gold);
}

.icon-svg {
    width: 24px;
    height: 24px;
}

.header-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 60%;
}

.app-logo-img {
    max-height: 28px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.emulator-logo-img {
    max-height: 65px;
    max-width: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-top: -2px;
}

.logo-txt {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.logo-subtxt {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

/* CONTENT CONTAINER */
.app-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 80px; /* space for sticky footer */
    -webkit-overflow-scrolling: touch;
}

.tab-screen {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HERO BANNER */
.hero-banner {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    background: linear-gradient(to top, rgba(11,32,56,0.95) 0%, rgba(11,32,56,0) 100%);
    width: 100%;
    padding: 20px 16px 44px 20px;
    color: #fff;
}

.hero-overlay h2 {
    font-size: 36px;
    font-style: italic;
    margin: 0 0 6px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 13px;
    margin: 0;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

/* TOP MINI NAVIGATION */
.top-nav-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    padding: 6px;
    background: #ffffff;
    border-radius: 16px;
    margin: -32px 16px 16px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.top-tab {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 10px 2px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.25s ease;
}

.top-tab:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--border-color);
    transition: opacity 0.2s;
}

.top-tab.active::after,
.top-tab:has(+ .top-tab.active)::after {
    opacity: 0;
}

.top-tab-icon {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    color: var(--primary-navy);
    transition: color 0.25s;
}

.top-tab-icon svg {
    width: 24px;
    height: 24px;
}

.top-tab-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 2px;
}

.top-tab-subtitle {
    font-size: 8px;
    color: var(--text-muted);
    line-height: 1.1;
    text-align: center;
}

.top-tab.active {
    background: var(--primary-navy) !important;
}
.top-tab.active .top-tab-icon {
    color: #fff;
}

.top-tab.active .top-tab-title {
    color: #fff;
}

.top-tab.active .top-tab-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* PACKAGE TOGGLE & HEADER ALIGNMENT */
.itinerary-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 8px 16px;
    gap: 10px;
}

.today-itinerary-header {
    text-align: left;
    margin: 0;
    padding: 0 !important;
}

.today-itinerary-header h3 {
    font-size: 16px;
    margin: 0 0 2px 0 !important;
    color: var(--primary-navy);
    font-weight: 700;
    text-transform: uppercase;
}

.today-itinerary-header .divider-ornament {
    justify-content: flex-start;
    margin: 4px 0;
}

.package-toggle-container {
    padding: 3px;
    gap: 4px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
}

.pkg-btn {
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary-navy);
    transition: all 0.25s;
    box-shadow: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkg-btn svg {
    color: var(--gold);
}

.pkg-btn.active {
    background: var(--primary-navy);
    color: #fff;
    box-shadow: 0 4px 10px rgba(11,32,56,0.15);
}

.pkg-btn.active svg {
    color: #fff;
}


/* ORNAMENTS & HEADERS */
.today-itinerary-header, .food-drink-header, .faq-header-top {
    text-align: center;
    padding: 16px 16px 4px 16px;
}

.today-itinerary-header h3, .faq-header-top h2 {
    font-size: 22px;
    letter-spacing: 3px;
    margin: 0 0 6px 0;
    color: var(--primary-navy);
    font-weight: 700;
}

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
}

.divider-ornament .line {
    height: 1px;
    width: 40px;
    background: var(--border-color);
}

.divider-ornament .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* GRID LAYOUTS */
.itinerary-grid {
    padding: 0 16px;
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.itinerary-info-sidebar {
    background: var(--primary-navy);
    color: #fff;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    min-width: 0;
}

.day-badge-box {
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.day-lbl {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 0 0 6px 0;
}

.day-num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
    letter-spacing: 1px;
}

.day-date {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.day-name {
    font-size: 11px;
    color: #fff;
    margin: 2px 0 0 0;
}

.time-weather-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0px;
    width: 100%;
}

.time-weather-box {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
}

.time-flex-row, .weather-flex-row {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.weather-flex-row {
    border-bottom: none;
}

.sidebar-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
}

.sidebar-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.time-val {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.sidebar-sub {
    font-size: 9px;
    color: #fff;
}

.weather-temp {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.weather-desc {
    font-size: 9px;
    color: #fff;
}

/* NEXT ACTIVITY WIDGET */
.next-activity-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    padding: 10px;
    position: relative;
}

.activity-body-row {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 12px;
}

.activity-details-col {
    flex: 1;
    min-width: 0;
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
}

.activity-header-flex {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    justify-content: space-between;
}

.activity-icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafc;
}

.activity-icon-circle svg {
    width: 24px;
    height: 24px;
}

.activity-text-stack {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-activity {
    font-size: 12px;
    font-weight: 400;
    color: var(--gold);
    text-transform: uppercase;
}

.activity-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}

.activity-meta-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.meta-icon {
    color: var(--primary-navy);
    display: flex;
    align-items: center;
}

.countdown-green {
    color: #2e7d32;
    font-weight: 700;
}

.activity-info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f1f7fc;
    border-radius: 8px;
    border: 1px solid #e1eef9;
}

.info-box-icon {
    color: #0288d1;
    display: flex;
    align-items: center;
}

.info-box-text {
    font-size: 10px;
    color: #000;
    font-weight: 500;
}

.activity-img-col {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    margin: 0;
    display: block;
}

/* TIMELINE STYLES */
.timeline-container {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 10px 0;
    margin: 0 10px 20px 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 0;
    width: 2px;
    background: #ECE7DF;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #FAF6EE;
    margin-bottom: 0;
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-item:first-child {
    padding-top: 0;
}

.timeline-badge-col {
    width: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    position: absolute;
    left: -11px;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #A38259;
    z-index: 2;
    transition: all 0.3s;
}

.timeline-content-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 15px;
}

.time-box {
    width: 54px;
    min-width: 54px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
}

.timeline-icon-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #FAF6EE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.timeline-icon-circle.has-img {
    background: transparent !important;
    border: none !important;
}
.timeline-icon-circle.has-img img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.timeline-icon-circle svg {
    width: 16px;
    height: 16px;
}

.details-box {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.details-left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.details-left-side h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-navy);
}

.details-right-side {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.status-badge {
    font-size: 8px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-icon {
    width: 10px;
    height: 10px;
}

/* Status variants */
.status-completed { background: #FAF6EE; color: #A38259; }
.status-upnext { background: #EEF1F4; color: #0B2038; }
.status-upcoming { background: #EAF5EA; color: #2E7D32; }
.status-later { background: #F4F5F6; color: #6B7280; }



.desc-txt {
    margin: 6px 0 0 0;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* TOMORROW HIGHLIGHTS */
.tomorrow-highlights-section {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FAF6EE;
    border-radius: 16px;
    padding: 10px 12px;
    margin: 0 16px 20px 16px;
}

.tomorrow-header {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.tomorrow-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.tmr-sun-icon {
    flex-shrink: 0;
}

.tomorrow-highlights-section h4 {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #A38259;
    margin: 0;
}

.tomorrow-highlights-section h5 {
    font-size: 11px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-navy);
    line-height: 1.2;
}

.tomorrow-scroll-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.tomorrow-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    padding: 2px 38px 2px 2px;
    width: 100%;
    scrollbar-width: none;
}

.tomorrow-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.tmr-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 6px 4px;
    flex: 1;
    min-width: 52px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.tmr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.tmr-icon svg {
    width: 18px;
    height: 18px;
}

.tmr-time {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-navy);
}

.tmr-title {
    font-size: 8px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: normal;
    word-break: break-word;
    line-height: 1.1;
}

.tomorrow-btn-next {
    position: absolute;
    right: -2px;
    background: linear-gradient(to left, #FAF6EE 70%, rgba(250,246,238,0) 100%);
    height: 100%;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border: none;
    color: var(--primary-navy);
    cursor: pointer;
    z-index: 5;
    padding: 0 4px 0 0;
}

/* PLATFORM BADGES REVIEW */
.review-badges-row {
    margin: 16px;
    background: var(--primary-navy);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.badge-title {
    font-size: 10px;
    color: var(--gold);
    margin: 0 0 4px 0;
}

.badge-subtitle {
    font-size: 14px;
    margin: 0 0 16px 0;
}

.badge-platforms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-badge {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s;
}

.platform-badge:hover {
    transform: translateY(-2px);
}

.p-icon {
    font-weight: 700;
}

.google-color { color: #4285F4; }
.trip-color { color: #00AF87; }

/* ================= FOOD & DRINK SCREEN ================= */
.food-drink-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 12px;
    padding: 20px 20px 8px 20px;
}

.fd-icon-circle {
    border: 1.5px solid #A38259;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fd-icon-circle.has-img {
    border: none !important;
    background: transparent !important;
}

.fd-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.food-drink-header h2 {
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--primary-navy);
    margin: 0;
    font-weight: 700;
}

.food-drink-header .sub-title {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    margin: 2px 0 0 0;
}

.fd-header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fd-header-divider .line {
    height: 1px;
    width: 60px;
    background-color: var(--border-color);
}

.fd-header-divider .dot-ornament {
    color: #C5A880;
    font-size: 14px;
}

.meal-times-card {
    background: #fff;
    border: 1px solid var(--border-color);
    margin: 0 16px 20px 16px;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.meal-card-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.meal-card-title-row .title-line {
    height: 1px;
    background: #e0e0e0;
    flex: 1;
}

.meal-times-card h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #A38259;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.meal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.meal-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.meal-grid .meal-box:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.m-icon-wrap {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.meal-box h5 {
    font-size: 10px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-navy);
}

.m-time {
    font-size: 10.5px;
    font-weight: 700;
    color: #A38259;
    margin: 0;
}

.m-loc {
    font-size: 9px;
    color: var(--text-muted);
    margin: 0;
}

.food-menu-title-section-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 32px 0 8px 0;
    padding: 0 16px;
}

.food-menu-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2px;
}

.food-menu-title-row h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.fd-menu-title-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.menu-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 16px 20px 16px;
    scrollbar-width: none;
    width: 100%;
}

.menu-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.menu-meal-card {
    flex: 0 0 calc((100% - 20px) / 2.2);
    max-width: 320px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.meal-card-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.meal-card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meal-card-content h4 {
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
    color: var(--gold);
    font-weight: 400;
    text-align: center;
}

.meal-card-time {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    margin: -8px 0 0 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.meal-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meal-items-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin-bottom: 5px;
}

.item-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-dot {
    width: 5px;
    height: 5px;
    background: #A38259;
    border-radius: 50%;
    flex-shrink: 0;
}

.meal-items-list li strong {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-navy);
    display: inline-block;
}

.item-desc {
    font-size: 9px;
    color: var(--text-muted);
    padding-left: 11px;
    display: block;
}

/* ================= CRUISE GUIDE SCREEN ================= */
.guide-sections-list {
    padding: 0 0 16px 0;
}

/* Hero banner — image only */
.guide-hero-banner {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.guide-hero-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 250px;
    z-index: 2;
}

.guide-welcome-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
    font-family: 'Dancing Script', 'Playball', cursive;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.guide-welcome-sub {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Title block below the banner — white background */
.guide-title-below {
    background: #fff;
    text-align: center;
    padding: 38px 20px 12px 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.guide-helm-icon {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #C5A880;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    z-index: 10;
    color: #C5A880;
}

.guide-main-title {
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--primary-navy);
    margin: 0 0 4px 0;
    font-weight: 700;
}

.guide-main-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    margin: 0 0 6px 0;
}

.guide-ornament-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px auto 0 auto;
}

.guide-ornament-row .line {
    height: 1px;
    width: 60px;
    background-color: var(--border-color);
}

.guide-ornament-row .flower {
    font-size: 14px;
    color: #C5A880;
}

/* Section headers used outside cards (e.g. Spa Menu) */
.guide-section-header {
    margin: 20px 16px 12px 16px;
    width: calc(100% - 32px);
}

/* Meal times block inside guide */
.guide-meal-times {
    margin: 0 16px 16px 16px;
}

/* Cabin Card Redesign */
.cabin-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin: 0 16px 20px 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.cabin-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cabin-thumb {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 12px; /* All 4 corners rounded! */
    flex-shrink: 0;
}

.cabin-info-cols {
    display: flex;
    gap: 16px;
    width: 100%;
}

.cabin-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.cabin-vertical-divider {
    width: 1px;
    background: var(--border-color);
    align-self: stretch;
}

.cabin-info-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cib-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    min-width: 0;
}

.cib-title-row .cib-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cib-title-row strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--primary-navy);
    line-height: 1.2;
}

.cib-assistance-text {
    padding-left: 0;
}

.cib-assistance-text p {
    font-size: 10px;
    color: var(--text-muted);
    margin: 2px 0 0 0;
    line-height: 1.4;
}

/* Bullet list style for guide */
.guide-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guide-bullets-list li {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.4;
    padding-left: 10px;
    position: relative;
}

.guide-bullets-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

/* Card Header Row with trailing line */
.card-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
}

.card-header-row h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-navy);
    margin: 0;
    white-space: nowrap;
}

.card-header-row .header-line {
    height: 1px;
    background: var(--border-color);
    flex: 1;
}

.card-header-row .card-icon {
    display: flex;
    align-items: center;
    color: var(--gold);
}

/* Side-by-side row (Deck+WiFi, Payment+Kayak) */
.guide-side-row {
    display: flex;
    gap: 12px;
    margin: 0 16px 16px 16px;
}

@media (max-width: 480px) {
    .guide-side-row {
        flex-direction: column;
        gap: 16px;
    }
}

.guide-side-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Deck Layout Image Redesign */
.deck-image-wrap-guide {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    flex: 1;
}

.deck-image-wrap-guide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Wi-Fi Card Layout Redesign */
.wifi-side-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    width: 100%;
}

.wifi-side-content .wifi-field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAF9F6;
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    padding: 6px 10px;
    width: 100%;
}

.wifi-side-content .wifi-lbl {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

.wifi-side-content .wifi-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-navy);
}

.wifi-side-content .wifi-note {
    font-size: 9px;
    color: var(--text-muted);
    margin: 4px 0 0 0;
    font-style: italic;
    line-height: 1.35;
    text-align: center;
}

.wifi-small-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

/* Payment Badges Redesign */
.payment-methods-row {
    width: 100%;
    margin: 8px 0;
    display: flex;
    justify-content: flex-start;
}

.payment-methods-img {
    width: 140px;
    height: auto;
    max-width: 100%;
    display: block;
}

.pay-badge.cash .cash-text {
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
}

/* Kayak Guide Layout */
.kayak-side-layout {
    display: flex;
    gap: 12px;
    align-items: stretch; /* Stretch vertically to match height */
    flex: 1;
}

.kayak-side-layout .guide-bullets-list {
    flex: 1.25;
}

.kayak-image-wrap {
    width: 90px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.kayak-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Spa scroll cards */
.spa-scroll-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 16px 16px 16px;
    scrollbar-width: none;
}

.spa-scroll-container::-webkit-scrollbar {
    display: none;
}

.spa-card {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: 200px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.spa-card-img {
    height: 100px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.spa-card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.spa-card-body h5 {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--primary-navy);
    margin: 0;
}

.spa-duration {
    font-size: 8.5px;
    color: var(--gold);
    font-weight: 600;
}

.spa-desc {
    font-size: 8.5px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.spa-price {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 4px;
    display: block;
}

/* Emergency card */
.guide-card {
    background: #fff;
    border: 1px solid var(--border-color);
    margin: 0 16px 16px 16px;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.guide-card .guide-section-label {
    margin: 0 0 12px 0;
}

.emergency-card {
    background: #fff;
    border: 1px solid var(--border-color);
}

.emergency-5col {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.em-box {
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    padding: 2px 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.em-box:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.em-lbl {
    display: block;
    font-size: 7.5px;
    color: var(--primary-navy);
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.em-val {
    font-size: 8.5px;
    color: #333333;
    font-weight: 600;
    word-break: break-all;
    line-height: 1.3;
}

.em-sub {
    font-size: 7px;
    color: var(--text-muted);
}

/* Bottom Alert Banner */
.emergency-alert-box {
    background: #FCF9F2;
    border: 1px solid #EBDCB9;
    border-radius: 12px;
    margin: 0 16px 20px 16px;
    padding: 10px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.emergency-alert-box .alert-icon {
    color: #A38259;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.emergency-alert-box .alert-content {
    flex: 1;
}

.emergency-alert-box .alert-content p {
    font-size: 9.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* Wi-Fi card accent (kept for wifi screen tab) */
.wifi-card-accent {
    background: var(--bg-cream);
    border-color: var(--gold);
}

.wifi-widget-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.wifi-text-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wifi-field {
    font-size: 11px;
}

.wifi-field .lbl {
    display: block;
    color: var(--text-muted);
    font-size: 9px;
}

.wifi-field .val {
    font-size: 13px;
}

.button-gold-small {
    background: var(--primary-navy);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: flex-start;
}

/* Guide list (old — kept for backward compat with Wi-Fi tab) */
.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    line-height: 1.5;
}

.guide-list li strong {
    color: var(--primary-navy);
}

.guide-list li span {
    display: block;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ================= WI-FI PAGE SCREEN ================= */
.wifi-page-main-header {
    padding: 24px 16px 16px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wifi-header-flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: auto;
}

.wifi-header-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    flex-shrink: 0;
}

.wifi-header-icon-circle img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.wifi-header-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wifi-page-main-header h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
    font-size: 28px !important;
    letter-spacing: 0.5px !important;
    color: var(--primary-navy) !important;
    margin: 0 0 4px 0 !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

/* Custom Gold Divider Ornament specifically for this header */
.wifi-header-text-block .divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 4px 0 0 0;
}

.wifi-header-text-block .divider-ornament .line {
    height: 1px;
    width: 32px;
    background: var(--gold) !important;
}

.wifi-header-text-block .divider-ornament .flower-icon {
    color: var(--gold) !important;
    font-size: 14px;
    line-height: 1;
    display: block;
}

.wifi-cards-container-1col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px 24px 16px;
}

.wifi-card-panel {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.015);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.panel-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.panel-header-row .panel-icon {
    display: flex;
    align-items: center;
    color: var(--primary-navy);
}

.panel-header-row h4 {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

.panel-header-row .header-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* WiFi Card Details */
.wifi-table-rows {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.wifi-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
}

.wifi-table-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.wifi-table-row .lbl {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.wifi-table-row .val {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-navy);
}

.wifi-bottom-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wifi-phone-mock {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.wifi-phone-mock img {
    width: 100%;
    height: auto;
    display: block;
}

.wifi-prompt-text {
    flex: 1;
}

.wifi-prompt-text p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.45;
    margin: 0;
    font-weight: 500;
}

/* FAQ Rows List */
.faq-list-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-row-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.faq-row-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-row-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.faq-row-q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--text-dark);
    border-radius: 50%;
    font-weight: bold;
    font-size: 10px;
    color: var(--text-dark);
}

.faq-row-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-row-q {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

.faq-row-a {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.faq-row-arrow {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    padding-top: 2px;
}

/* TripAdvisor Card */
.review-flex-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.review-qr-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.qr-code-box {
    background: #fff;
    padding: 6px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tripadvisor-qr-img {
    width: 100px;
    height: auto;
    display: block;
}

.header-panel-img-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.panel-icon.img-icon {
    border-radius: 0 !important;
    background: transparent !important;
}

.review-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-text-col .desc {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.rating-stars {
    color: #ffb400;
    font-size: 14px;
    letter-spacing: 2px;
}

.thank-you-script {
    font-family: 'Playball', cursive;
    font-size: 16px;
    color: var(--gold);
}

/* WhatsApp Card */
.whatsapp-flex-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.whatsapp-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-text-col .intro {
    font-size: 10.5px;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.wa-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wa-bullets li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-bullets .wa-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #09a86a;
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.panel-icon.wa-header-icon {
    background: #09a86a !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.wa-bullets .bullet-text {
    font-size: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.whatsapp-btn-pill {
    background: #25d366;
    color: #fff;
    border-radius: 20px;
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.whatsapp-btn-pill .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.whatsapp-btn-pill .btn-text span {
    font-size: 8px;
    opacity: 0.9;
}

.whatsapp-btn-pill .btn-text strong {
    font-size: 10px;
    font-weight: 700;
}

.whatsapp-phone-col {
    width: 90px;
    flex-shrink: 0;
}

.whatsapp-phone-col img {
    width: 100%;
    height: auto;
    display: block;
}

/* Meal Times & Activities Card */
.meals-activities-panel {
    background: #FAF8F5 !important;
    border: 1px solid #EBDCB9 !important;
}

.meals-header {
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 20px !important;
}

.meals-header h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #A38259;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.meals-header h4::before,
.meals-header h4::after {
    content: "";
    flex: 0.15;
    height: 1px;
    background: #EBDCB9;
}

.meals-grid-4col {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
}

.meal-col-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 4px 0;
}

.meal-col-item:not(:last-child) {
    border-right: 1px solid rgba(163, 130, 89, 0.18);
}

.meal-col-item .meal-icon {
    color: #A38259;
    margin-bottom: 4px;
}

.meal-col-item .meal-name {
    font-size: 9px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
}

.meal-col-item .meal-time {
    font-size: 9.5px;
    font-weight: 800;
    color: var(--text-dark);
}

.meal-col-item .meal-loc {
    font-size: 7.5px;
    color: var(--text-muted);
}

/* Share - Connect - Inspire Banner */
.share-inspire-banner-card {
    background-size: cover;
    background-position: left center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-height: 140px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #EBDCB9;
    padding: 0px 14px;
}

.banner-blue-col {
    background: rgba(11, 32, 56, 0.95);
    padding: 12px 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    max-width: 65%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.banner-blue-col h5 {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
    color: var(--gold);
    text-align: center;
}

.banner-icons-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
}

.banner-icon-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.banner-icon-item .icon-wrap {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.banner-icon-item .lbl {
    font-size: 6.5px;
    color: rgba(255,255,255,0.9);
    line-height: 1.2;
    font-weight: 500;
}

/* ================= BOTTOM NAV BAR ================= */
.app-navigation {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    background: var(--primary-navy);
    height: 70px;
    border-top: 2px solid #A38259;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    display: block !important;
    overflow: hidden;
}

.nav-links-row {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nav-item {
    flex: 1;
    min-width: 0;
    max-width: calc(100% / 6);
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s;
    padding: 0 2px;
    overflow: hidden;
}

.nav-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.nav-icon svg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    overflow: visible !important;
}

.nav-icon svg path,
.nav-icon svg polygon,
.nav-icon svg rect,
.nav-icon svg circle {
    display: block !important;
    visibility: visible !important;
    fill: currentColor !important;
}

.nav-lbl {
    display: block !important;
    font-size: 7.5px !important;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
}

.cruise-page-outer-container .nav-item {
    color: rgba(255,255,255,0.6) !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
}

.cruise-page-outer-container .nav-item.active {
    color: var(--gold) !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.cruise-page-outer-container .nav-item.active .nav-icon svg {
    fill: var(--gold) !important;
    color: var(--gold) !important;
}

.cruise-page-outer-container .nav-item.active .nav-lbl {
    color: var(--gold) !important;
}

.cruise-page-outer-container .nav-item.active .nav-icon svg path,
.cruise-page-outer-container .nav-item.active .nav-icon svg polygon,
.cruise-page-outer-container .nav-item.active .nav-icon svg rect,
.cruise-page-outer-container .nav-item.active .nav-icon svg circle {
    fill: var(--gold) !important;
}

.cruise-page-outer-container .nav-item:hover {
    color: #fff !important;
    background: transparent !important;
    background-color: transparent !important;
}

.review-badge-right {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

/* PC/Desktop Default Styles for Review Badge (Base Styles) */
.review-badge-right .platform-badge {
    background: #ffffff !important;
    border-radius: 10px !important;
    width: auto !important;
    height: 48px !important;
    padding: 0 16px !important;
    gap: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    flex-shrink: 0 !important;
}

.review-badge-right .platform-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}

.review-badge-right .platform-badge .platform-logo {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.review-badge-right .platform-badge-text {
    display: block !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: #0B2038 !important; /* Dark Navy to match theme */
    line-height: 1.3 !important;
    white-space: nowrap !important;
    text-align: left !important;
}

/* ================= RESPONSIVE LAYOUTS ================= */
@media (min-width: 769px) {
    /* Desktop: full container at 800px, no emulator */
    .cruise-page-outer-container {
        align-items: flex-start;
        min-height: auto;
    }

    .cruise-page-app-container {
        height: auto;
        min-height: 100vh;
        max-width: 800px;
    }

    /* Fixed footer on desktop – pinned to bottom of viewport, centered to container */
    .app-navigation {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        max-width: 100vw;
        z-index: 999;
    }

    .app-content {
        padding-bottom: 80px;
    }

    /* Food menu: grid layout on desktop */
    .menu-horizontal-scroll {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: unset;
        gap: 16px;
        padding: 4px 16px 20px 16px;
    }

    .menu-meal-card {
        flex: unset;
        max-width: 100%;
    }

    /* WiFi page: 2x2 grid on desktop */
    .wifi-cards-container-1col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 16px 20px 16px;
    }

    /* Row 1: WiFi (col1) | FAQ (col2) */
    #section-wifi {
        grid-column: 1;
        grid-row: 1;
    }
    #section-faq {
        grid-column: 2;
        grid-row: 1;
    }
    /* Row 2: Review (col1) | Connect (col2) */
    #section-review {
        grid-column: 1;
        grid-row: 2;
    }
    #section-whatsapp {
        grid-column: 2;
        grid-row: 2;
    }

    /* Full width: Meals & Share–Connect–Inspire */
    #section-meals,
    .share-inspire-banner-card {
        grid-column: 1 / -1;
    }

    /* timeline-container: sync margin to 16px like other blocks */
    .timeline-container {
        margin: 0 16px 20px 16px;
    }
}

@media (max-width: 768px) {
    /* Hide Emulator on Mobile */
    .cruise-page-desktop-emulator {
        display: none !important;
    }
    .cruise-page-outer-container {
        padding: 0;
        min-height: auto;
    }
    .cruise-page-outer-container .cruise-page-app-container {
        display: flex;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        border-radius: 0;
        box-shadow: none;
    }

    /* Mobile Review Badge Overrides (≤768px) */
    .timeline-container {
        margin: 0 10px 20px 10px;
    }

    .review-badge-right {
        gap: 12px !important;
    }

    .review-badge-right .platform-badge {
        background: #ffffff !important;
        border-radius: 50% !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .review-badge-right .platform-badge:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
    }

    .review-badge-right .platform-badge-text {
        display: none !important;
    }

    .review-badge-right .platform-badge .platform-logo {
        width: 24px !important;
        height: 24px !important;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
}

/* ================= NEW UI ENHANCEMENTS ================= */

/* Header Language Selector */
.header-lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    background: rgba(255,255,255,0.08);
    padding: 4px 8px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}

.header-lang-selector:hover {
    background: rgba(255,255,255,0.15);
}

.icon-lang-globe {
    opacity: 0.8;
}

.lang-txt-val {
    letter-spacing: 0.5px;
}

.icon-lang-arrow {
    opacity: 0.6;
}

/* Next Activity Info Box */
.activity-info-box {
    background: #E3F2FD;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: var(--primary-navy);
    font-weight: 500;
    border: 1px solid rgba(13, 71, 161, 0.1);
    margin-top: 8px;
}

.info-box-icon {
    flex-shrink: 0;
    color: var(--primary-navy);
}

/* Timeline Expandable Details & Accordion Toggle */
.details-right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-timeline-toggle {
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.btn-timeline-toggle.active {
    transform: rotate(180deg);
}

/* details-box restructure: top-row holds title+status side by side, expanded details goes full width below */
.details-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.timeline-expanded-details {
    width: 100%;
    padding-top: 8px;
    border-top: 1px dashed var(--border-color);
    margin-top: 8px;
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.5;
}

.expanded-txt {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: var(--text-muted) !important;
    letter-spacing: 0;
    text-transform: none;
}



/* Redesigned Review Badges Row Banner */
.review-badges-row {
    background: var(--primary-navy);
    color: #fff;
    padding: 20px 10px;
    margin: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(11,32,56,0.15);
}

.review-badge-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.review-star-left-icon {
    flex-shrink: 0;
}

.review-text-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.icon-review-star-gold {
    width: 42px;
    height: 42px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.review-badges-row .badge-title {
    font-size: 12px;
    font-weight: 600;
    color: #F2CF87;
    margin: 0;
    line-height: 1.4;
}

.review-badges-row .badge-subtitle {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    margin: 2px 0 6px 0;
    line-height: 1.2;
}

.badge-stars-row {
    color: #F2CF87;
    font-size: 13px;
    display: flex;
    gap: 2px;
    justify-content: flex-start;
}


/* Hide Chaty Widget globally on this page */
#chaty-widget-0,
#chaty-widget-0 * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Combined More Page Section Styles */
.more-page-section {
    padding-top: 24px;
    padding-bottom: 24px;
}

.more-section-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0 16px;
    border-style: none;
    border-top: 1px dashed var(--border-color);
}

@media (max-width: 430px) {
    .top-nav-tabs {
        margin: -24px 10px 16px 10px;
        padding: 4px;
    }
    .top-tab {
        padding: 8px 1px;
    }
    .top-tab-icon svg {
        width: 18px;
        height: 18px;
    }
    .top-tab-title {
        font-size: 8.5px;
        letter-spacing: -0.2px;
    }
    .top-tab-subtitle {
        font-size: 6.5px;
        letter-spacing: -0.2px;
    }
    .today-itinerary-header h3 {
        font-size: 13px;
        letter-spacing: 0;
        font-weight: 700;
    }
    .pkg-btn {
        padding: 6px 12px;
        font-size: 9px;
        gap: 6px;
    }
    .itinerary-header-row {
        gap: 6px;
        padding: 12px 10px;
    }

    /* Grid layout stack on mobile */
    .itinerary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }

    /* Sidebar horizontal strip */
    .itinerary-info-sidebar {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 12px 10px;
        gap: 8px;
    }

    .day-badge-box {
        display: flex;
        grid-template-areas: 
            "lbl date"
            "num name";
        column-gap: 12px;
        row-gap: 1px;
        align-items: center;
        text-align: left;
        width: 50%;
    }

    .day-lbl {
        grid-area: lbl;
        margin: 0;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .day-num {
        grid-area: num;
        font-size: 22px;
        margin: 0;
        line-height: 1.1;
    }

    .day-date {
        grid-area: date;
        font-size: 11px;
        margin: 0;
        white-space: nowrap;
    }

    .day-name {
        grid-area: name;
        font-size: 11px;
        margin: 0;
        white-space: nowrap;
    }

    .time-weather-divider {
        width: 1px;
        height: 36px;
        background: rgba(255, 255, 255, 0.15);
        margin: 0 4px;
    }

    .time-weather-box {
        gap: 5px;
        align-items: center;
        margin-left: 0;
        flex-direction: row;
    }

    .time-flex-row, .weather-flex-row {
        gap: 6px;
        border:none;
    }

    .time-val, .weather-temp {
        font-size: 15px;
    }

    .sidebar-sub, .weather-desc {
        font-size: 11px;
        white-space: nowrap;
    }

    /* Next activity widget full-width styling */
    .next-activity-widget {
        padding: 8px;
    }

    .activity-body-row {
        gap: 10px;
    }

    .activity-details-col {
        flex: none;
        width: 63%;
        min-width: 0;
        padding: 4px 0;
        gap: 6px;
    }

    .activity-img-col {
        width: 37%;
        min-width: unset;
        max-width: unset;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }

    .badge-activity {
        font-size: 9.5px;
        letter-spacing: 0.5px;
    }

    .activity-title {
        font-size: 16px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .activity-icon-circle {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .activity-icon-circle svg {
        width: 20px;
        height: 20px;
    }

    .meta-item {
        font-size: 14px;
        gap: 6px;
        white-space: nowrap;
    }

    .meta-icon svg {
        width: 12px;
        height: 12px;
    }

    .activity-info-box {
        padding: 6px 8px;
        gap: 6px;
    }

    .info-box-text {
        font-size: 14px;
        line-height: 1.3;
    }

    .desc-txt {
        font-size: 12px;
    }

    .details-left-side h4 {
        font-size: 14px;
    }

    .time-box {
        font-size: 12px;
    }

    .timeline-container::before {
        left: 0;
        top: 30px;
        bottom: 30px;
    }

    .timeline-item {
        padding: 8px 0;
    }

    .timeline-expanded-details {
        font-size: 11px;
    }
}

/* WordPress Admin Bar adjustment for sticky header */
.admin-bar .app-header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar .app-header {
        top: 46px !important;
    }
}
