:root {
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --gold: #c9952e;
    --gold-light: #f5ecd7;
    --gold-dark: #a67c1e;
    --gold-glow: rgba(201, 149, 46, 0.08);
    --gold-glow-strong: rgba(201, 149, 46, 0.2);
    --bg: #fdfaf5;
    --bg-card: #ffffff;
    --bg-soft: #fcf9f4;
    --text: #111122;
    --text-body: #444455;
    --text-muted: #9999aa;
    --text-light: #555566;
    --border: #e6e0d5;
    --border-light: #f3eee4;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.03);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.cbp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ==================== CRUISE SINGLE ==================== */
.cbp-single-cruise {
    background: var(--bg);
    font-family: var(--font);
    color: var(--text-body);
    overflow-x: hidden;
}

/* ---------- GALLERY: Airbnb-Style Collage ---------- */
.cbp-gallery-wrap {
    background: var(--bg);
    padding-top: 32px;
    padding-bottom: 8px;
}

.cbp-gallery-split {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    gap: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cbp-gallery-featured {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.cbp-gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cbp-gallery-featured:hover img {
    transform: scale(1.03);
}

.cbp-gallery-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%),
                linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 20%);
    pointer-events: none;
}

.cbp-gallery-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.cbp-gallery-badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.15);
}

.cbp-gallery-mobile-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: none; /* Desktop hidden */
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition), transform var(--transition);
}

.cbp-gallery-mobile-badge:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.cbp-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100%;
    gap: 12px;
}

.cbp-gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.cbp-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cbp-gallery-thumb:hover img {
    transform: scale(1.04);
}

.cbp-thumb-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 34, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition);
}

.cbp-thumb-more:hover {
    background: rgba(17, 17, 34, 0.75);
}

.cbp-thumb-more-count {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font);
    letter-spacing: -0.01em;
}

/* ---------- HEADER BAR ---------- */
.cbp-header-bar {
    padding: 40px 0 32px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
}

.cbp-header-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cbp-header-bar-left { flex: 1; min-width: 0; }

.cbp-header-bar-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.cbp-header-bar-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.15;
    color: var(--text);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.cbp-header-bar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cbp-header-bar-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    transition: var(--transition);
}

.cbp-header-bar-meta-item:hover {
    border-color: var(--gold-light);
    background: var(--bg-card);
    color: var(--text);
}

.cbp-header-bar-meta-item svg {
    flex-shrink: 0;
}

.cbp-header-bar-stars {
    gap: 2px;
    padding: 6px 12px;
}

/* Price Card */
.cbp-price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    min-width: 260px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.cbp-price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 149, 46, 0.15);
    border-color: var(--gold-light);
}

.cbp-price-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gold-glow-strong) 0%, transparent 50%, var(--gold-glow) 100%);
    pointer-events: none;
}

.cbp-price-card-old {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
    font-weight: 500;
}

.cbp-price-card-amount {
    display: block;
    font-size: 44px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.02em;
}

.cbp-price-card-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cbp-price-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--gold);
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cbp-price-card-btn:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 24px var(--gold-glow-strong);
    color: #fff;
}

/* ---------- LAYOUT ---------- */
.cbp-layout-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 48px 0 72px;
}

.cbp-layout-main { min-width: 0; }

/* ---------- SECTIONS ---------- */
.cbp-section {
    margin-bottom: 56px;
}

.cbp-section:last-child { margin-bottom: 0; }

.cbp-section-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--border);
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    position: relative;
}

.cbp-section-heading::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.cbp-lead-text {
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.cbp-section-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-body);
}

.cbp-section-content p { margin: 0 0 20px; }
.cbp-section-content p:last-child { margin: 0; }

/* ---------- HIGHLIGHTS ---------- */
.cbp-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cbp-highlight-tile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cbp-highlight-tile:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cbp-highlight-tile-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(201, 149, 46, 0.15);
    transition: var(--transition);
}

.cbp-highlight-tile:hover .cbp-highlight-tile-icon {
    background: var(--gold);
}

.cbp-highlight-tile:hover .cbp-highlight-tile-icon svg,
.cbp-highlight-tile:hover .cbp-highlight-tile-icon .dashicons {
    color: #fff;
    stroke: #fff;
}

.cbp-highlight-tile-icon .dashicons {
    color: var(--gold);
    font-size: 18px;
    width: 18px;
    height: 18px;
    transition: color var(--transition);
}

.cbp-highlight-tile-icon svg {
    transition: stroke var(--transition), color var(--transition);
}

.cbp-highlight-tile-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) sepia(30%) hue-rotate(-5deg) brightness(0.8);
    transition: filter var(--transition);
}

.cbp-highlight-tile:hover .cbp-highlight-tile-icon img {
    filter: brightness(0) invert(1);
}

.cbp-highlight-tile > span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

/* ---------- PACKAGES ---------- */
.cbp-pkg-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.cbp-pkg-chip {
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: inherit;
    font-family: var(--font);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cbp-pkg-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    opacity: 0;
    transition: opacity var(--transition);
}

.cbp-pkg-chip:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cbp-pkg-chip.active {
    border-color: var(--gold);
    box-shadow: 0 8px 24px var(--gold-glow), var(--shadow-md);
    transform: translateY(-2px);
}

.cbp-pkg-chip.active::before {
    opacity: 1;
}

.cbp-pkg-chip-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.cbp-pkg-chip-dur {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cbp-pkg-chip-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 4px;
    font-family: var(--font-heading);
}

.cbp-pkg-chip-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 6px;
    font-weight: 500;
}

.cbp-pkg-chip-sale {
    color: #dc2626;
    font-weight: 700;
}

/* ---------- ITINERARY TIMELINE ---------- */
.cbp-itin-timeline {
    position: relative;
    padding-left: 90px;
}

.cbp-itin-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--border) 100%);
}

.cbp-itin-item {
    position: relative;
    padding-bottom: 32px;
}

.cbp-itin-item:last-child { padding-bottom: 0; }

.cbp-itin-marker {
    position: absolute;
    left: -90px;
    top: 2px;
    width: 80px;
    text-align: right;
    padding-right: 20px;
}

.cbp-itin-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.cbp-itin-day::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
    z-index: 2;
}

.cbp-itin-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cbp-itin-card:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cbp-itin-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}

.cbp-itin-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* ---------- COST ---------- */
.cbp-cost-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cbp-cost-box {
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cbp-cost-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cbp-cost-box-in {
    border-top: 4px solid #16a34a;
}

.cbp-cost-box-ex {
    border-top: 4px solid #dc2626;
}

.cbp-cost-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--text);
}

.cbp-cost-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cbp-cost-box li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cbp-cost-box li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.cbp-cost-box-in li::before {
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.cbp-cost-box-ex li::before {
    background: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* ---------- FAQ ---------- */
.cbp-faq-list {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.cbp-faq-row {
    border-bottom: 1px solid var(--border-light);
    transition: background-color var(--transition);
}

.cbp-faq-row:last-child { border-bottom: none; }

.cbp-faq-row.open {
    background: var(--bg-soft);
}

.cbp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    transition: var(--transition);
    font-family: var(--font);
}

.cbp-faq-q:hover {
    background: var(--bg-soft);
    color: var(--gold);
}

.cbp-faq-q svg {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
    color: var(--text-muted);
}

.cbp-faq-row.open .cbp-faq-q {
    color: var(--gold);
}

.cbp-faq-row.open .cbp-faq-q svg {
    transform: rotate(180deg);
    color: var(--gold);
}

.cbp-faq-a {
    display: none;
    padding: 0 24px 20px 24px;
}

.cbp-faq-a p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 10px;
    line-height: 1.8;
}

.cbp-faq-a p:last-child {
    margin: 0;
}

.cbp-faq-a-content {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.cbp-faq-a-content p {
    margin: 0 0 10px;
}

.cbp-faq-a-content p:last-child {
    margin: 0;
}

.cbp-faq-a-content ul,
.cbp-faq-a-content ol {
    margin: 8px 0;
    padding-left: 20px;
}

.cbp-faq-a-content li {
    margin-bottom: 4px;
}

.cbp-faq-a-content strong {
    font-weight: 700;
    color: var(--text);
}

/* ---------- AMENITIES ---------- */
.cbp-amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ---------- CRUISE FACILITIES ---------- */
.cbp-facilities-intro {
    margin-bottom: 28px;
}

.cbp-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cbp-facilities-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cbp-facilities-col:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cbp-facilities-col-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid rgba(201, 149, 46, 0.15);
}

.cbp-facilities-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 14px;
}

.cbp-facilities-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cbp-facilities-col li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cbp-facilities-col li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.cbp-facilities-col li strong {
    font-weight: 600;
    color: var(--text);
}

.cbp-itin-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.cbp-itin-desc p {
    margin: 0 0 10px;
}

.cbp-itin-desc p:last-child {
    margin: 0;
}

@media (max-width: 768px) {
    .cbp-facilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.cbp-amenity-tile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cbp-amenity-tile:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cbp-amenity-tile-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.cbp-amenity-tile:hover .cbp-amenity-tile-icon {
    background: var(--gold-glow);
    border-color: rgba(201, 149, 46, 0.25);
}

.cbp-amenity-tile-icon .dashicons {
    color: var(--gold);
    font-size: 19px;
    width: 19px;
    height: 19px;
}

.cbp-amenity-tile-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) sepia(30%) hue-rotate(-5deg) brightness(0.8);
}

.cbp-amenity-tile-info { flex: 1; min-width: 0; }

.cbp-amenity-tile-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}

.cbp-amenity-tile-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ---------- SCHEDULE ---------- */
.cbp-schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cbp-schedule-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cbp-schedule-tile:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cbp-schedule-tile svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}
.cbp-schedule-tile:hover svg {
    transform: scale(1.1);
}

.cbp-schedule-tile strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    flex-shrink: 0;
}

.cbp-schedule-tile span:last-child {
    margin-left: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

/* ---------- MAP ---------- */
.cbp-map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.cbp-map-box iframe {
    width: 100%;
    display: block;
}

/* ---------- LIGHTBOX ---------- */
.cbp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cbp-lightbox.active {
    display: flex;
    opacity: 1;
}

.cbp-lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 22, 0.95);
    backdrop-filter: blur(16px);
}

.cbp-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.cbp-lightbox-close:hover { background: rgba(255,255,255,0.12); }

.cbp-lightbox-close svg { width: 20px; height: 20px; }

.cbp-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.cbp-lightbox-arrow:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-50%) scale(1.06);
}

.cbp-lightbox-prev { left: 24px; }
.cbp-lightbox-next { right: 24px; }

.cbp-lightbox-arrow svg { width: 24px; height: 24px; }

.cbp-lightbox-slide {
    position: relative;
    z-index: 5;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbp-lightbox-slide img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.cbp-lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    z-index: 10;
    font-family: var(--font);
}

/* ==================== BUTTONS ==================== */
.cbp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.4;
    font-family: var(--font);
}

.cbp-btn-primary {
    background: var(--gold);
    color: #fff;
}

.cbp-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--gold-glow-strong);
    color: #fff;
}

.cbp-btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-light);
}

.cbp-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cbp-btn-large { padding: 14px 32px; font-size: 15px; }

/* ==================== ARCHIVE ==================== */
.cbp-archive-wrapper {
    padding: 48px 0;
    background: var(--bg);
    min-height: 60vh;
    font-family: var(--font);
}

.cbp-archive-header {
    text-align: center;
    margin-bottom: 48px;
}

.cbp-archive-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.cbp-archive-desc {
    color: var(--text-light);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Search Form ---- */
.cbp-search-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

.cbp-search-fields {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.cbp-search-field {
    flex: 1;
    min-width: 180px;
}

.cbp-search-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cbp-search-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    background: var(--bg-soft);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.cbp-search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
    background: var(--bg-card);
}

.cbp-search-submit { flex: 0 0 auto; min-width: auto; }

.cbp-search-btn {
    padding: 11px 28px !important;
    white-space: nowrap;
    border-radius: 100px !important;
    width: 100%;
    font-size: 14px !important;
}

@media (max-width: 768px) {
    .cbp-search-form { padding: 20px; }
    .cbp-search-fields { flex-direction: column; gap: 12px; }
    .cbp-search-field { min-width: 100%; }
    .cbp-search-submit { flex: 1; width: 100%; }
}

/* ---- Card Grid ---- */
.cbp-cruise-grid {
    display: grid;
    gap: 32px;
}

.cbp-grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.cbp-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cbp-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cbp-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Cruise Card ---- */
.cbp-cruise-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
}

.cbp-cruise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--gold-glow-strong);
    border-color: var(--gold-light);
}

.cbp-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-soft);
}

.cbp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cbp-cruise-card:hover .cbp-card-img {
    transform: scale(1.04);
}

.cbp-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 3;
    max-width: calc(100% - 28px);
}

.cbp-card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.15);
}

.cbp-card-duration-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-sm);
}

.cbp-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.2));
    z-index: 1;
    pointer-events: none;
}

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

.cbp-card-subtitle {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.cbp-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
}

.cbp-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.cbp-card-title a:hover { color: var(--gold); }

.cbp-card-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.cbp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    gap: 12px;
}

.cbp-card-footer .cbp-btn {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cbp-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.cbp-card-price .cbp-price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    display: inline;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.cbp-card-price .cbp-price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.cbp-card-price .cbp-price-discounted {
    font-size: 22px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
    display: inline;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.cbp-card-footer .cbp-price-label {
    font-size: 12px;
    color: var(--text-muted);
    display: inline;
    width: auto;
    font-weight: 500;
}

/* ==================== SIDEBAR ==================== */
.cbp-layout-sidebar { position: relative; }

.cbp-sidebar-sticky {
    position: sticky;
    top: 40px;
}

/* ==================== BOOKING FORM ==================== */
.cbp-booking-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cbp-booking-form-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.cbp-booking-header {
    background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 100%);
    padding: 26px 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.cbp-booking-header-icon {
    display: block;
    margin: 0 auto 10px;
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.cbp-booking-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    font-family: var(--font-heading);
}

.cbp-booking-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

.cbp-booking-body { padding: 26px 30px 30px; }

.cbp-form-group { margin-bottom: 18px; }

.cbp-form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cbp-form-group label .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.cbp-form-group .required { color: #dc2626; }

.cbp-form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    background: var(--bg-soft);
    transition: var(--transition);
    font-family: var(--font);
}

.cbp-form-control:hover {
    border-color: var(--gold-light);
}

.cbp-form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.cbp-form-control::placeholder { color: var(--text-muted); }

select.cbp-form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9952e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

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

.cbp-form-row {
    display: flex;
    gap: 12px;
}

.cbp-form-half { flex: 1; }

.cbp-form-response {
    margin-top: 16px;
    font-size: 13px;
    display: none;
}

.cbp-form-response.show { display: block; }

.cbp-form-response.success {
    color: #16a34a;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: var(--radius-sm);
    border: 1px solid #bbf7d0;
    font-weight: 600;
}

.cbp-form-response.error {
    color: #dc2626;
    padding: 12px 16px;
    background: #fef2f2;
    border-radius: var(--radius-sm);
    border: 1px solid #fecaca;
    font-weight: 600;
}

/* Summary */
.cbp-booking-summary {
    background: var(--bg-soft);
    border: 1.5px solid var(--gold-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
    display: none;
}

.cbp-booking-summary.show { display: block; }

.cbp-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.cbp-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1.5px dashed var(--gold-light);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.cbp-summary-total .cbp-summary-label {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-light);
}

/* Submit */
.cbp-btn-submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cbp-btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gold-glow-strong);
}

.cbp-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.cbp-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cbp-spin 0.6s linear infinite;
}

.cbp-btn-submit.loading .cbp-spinner { display: inline-block; }

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

.cbp-empty-state {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ==================== CAROUSEL ==================== */
.cbp-carousel-wrap {
    position: relative;
    width: 100%;
    padding: 8px 0 24px;
    overflow: hidden;
}

.cbp-carousel-wrap.swiper {
    width: 100%;
}

.cbp-carousel-wrap .swiper-wrapper {
    display: flex;
}

.cbp-carousel-wrap .cbp-carousel-slide {
    min-height: 1px;
    box-sizing: border-box;
}

.cbp-carousel-wrap .cbp-carousel-slide .cbp-cruise-card {
    width: 100%;
    height: 100%;
}

/* Swiper Nav Buttons - Match plugin style */
.cbp-carousel-wrap .swiper-button-prev,
.cbp-carousel-wrap .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cbp-carousel-wrap .swiper-button-prev::after,
.cbp-carousel-wrap .swiper-button-next::after {
    font-size: 16px;
    color: var(--text);
    transition: var(--transition);
}

.cbp-carousel-wrap .swiper-button-prev:hover,
.cbp-carousel-wrap .swiper-button-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 8px 24px var(--gold-glow-strong);
}

.cbp-carousel-wrap .swiper-button-prev:hover::after,
.cbp-carousel-wrap .swiper-button-next:hover::after {
    color: #fff;
}

.cbp-carousel-wrap .swiper-button-prev {
    left: -8px;
}

.cbp-carousel-wrap .swiper-button-next {
    right: -8px;
}

.cbp-carousel-wrap .swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Swiper Pagination - Match plugin gold style */
.cbp-carousel-wrap .swiper-pagination {
    padding-top: 12px;
}

.cbp-carousel-wrap .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: var(--border);
    opacity: 1;
    border-radius: 30px;
    transition: var(--transition);
}

.cbp-carousel-wrap .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 100px;
}

.cbp-carousel-wrap .swiper-pagination-bullet:hover {
    background: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .cbp-carousel-wrap .swiper-button-prev,
    .cbp-carousel-wrap .swiper-button-next {
        display: none;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .cbp-gallery-split { height: 420px; }

    .cbp-header-bar-title { font-size: 34px; }

    .cbp-layout-row {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

    .cbp-price-card-amount { font-size: 36px; }

    .cbp-itin-timeline { padding-left: 76px; }
    .cbp-itin-marker {
        left: -76px;
        width: 66px;
    }

    .cbp-lightbox-arrow { width: 42px; height: 42px; }
}

@media (max-width: 768px) {
    .cbp-cruise-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cbp-archive-title { font-size: 26px; }

    .cbp-gallery-thumbs {
        display: none !important;
    }

    .cbp-gallery-split {
        grid-template-columns: 1fr !important;
        height: 360px !important;
    }

    .cbp-gallery-featured {
        height: 100% !important;
    }

    .cbp-gallery-mobile-badge {
        display: flex;
    }

    .cbp-header-bar { padding: 28px 0 24px; }

    .cbp-header-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .cbp-header-bar-right { width: 100%; }

    .cbp-price-card {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 24px;
        text-align: left;
        flex-wrap: wrap;
    }

    .cbp-price-card::before { display: none; }

    .cbp-price-card-old { display: inline; font-size: 13px; margin-bottom: 0; }

    .cbp-price-card-amount { font-size: 30px; display: inline; }

    .cbp-price-card-label { display: inline; margin: 0; font-size: 12px; }

    .cbp-price-card-btn {
        margin-left: auto;
        width: auto;
        padding: 10px 24px;
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .cbp-header-bar-title { font-size: 28px; }

    .cbp-layout-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 48px;
    }

    .cbp-layout-sidebar { order: -1; }

    .cbp-sidebar-sticky { position: static; }

    .cbp-highlight-grid,
    .cbp-amenity-grid,
    .cbp-schedule-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cbp-cost-row { grid-template-columns: 1fr; gap: 16px; }

    .cbp-itin-timeline { padding-left: 60px; }

    .cbp-itin-marker {
        left: -60px;
        width: 50px;
        padding-right: 8px;
    }

    .cbp-itin-day {
        font-size: 10px;
        padding: 4px 10px;
    }

    .cbp-itin-day::after {
        right: -18px;
        width: 8px;
        height: 8px;
    }

    .cbp-form-row { flex-direction: column; gap: 0; }

    .cbp-booking-header { padding: 18px 24px; }
    .cbp-booking-body { padding: 20px 24px 24px; }
    .cbp-booking-title { font-size: 16px; }

    .cbp-lightbox-slide { max-width: 92vw; }
    .cbp-lightbox-slide img { max-height: 75vh; }
    .cbp-lightbox-prev { left: 16px; }
    .cbp-lightbox-next { right: 16px; }
}

@media (max-width: 480px) {
    .cbp-cruise-grid { grid-template-columns: 1fr !important; }
    .cbp-container { padding: 0 20px; }

    .cbp-gallery-split {
        height: 240px !important;
    }

    .cbp-gallery-mobile-badge {
        bottom: 12px;
        right: 12px;
        font-size: 11px;
        padding: 4px 10px;
    }

    .cbp-header-bar-title { font-size: 24px; }

    .cbp-section-heading { font-size: 22px; }

    .cbp-price-card { flex-direction: column; text-align: center; gap: 6px; padding: 20px; }
    .cbp-price-card-btn { margin-left: 0; width: 100%; }

    .cbp-card-badges { top: 10px; left: 10px; gap: 4px; }
    .cbp-card-badge { font-size: 9px; padding: 3px 10px; }

    .cbp-card-duration-badge {
        bottom: 10px;
        right: 10px;
        font-size: 10px;
        padding: 4px 12px;
    }

    .cbp-lightbox-arrow { display: none; }
}
