/* ==========================================================================
   Single Cruise Page — css/single-cruise.css
   ========================================================================== */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --sc-orange: #e8792a;
    --sc-orange-dark: #c9621c;
    --sc-bg: #f4f6f8;
    --sc-border: #e2e5ea;
    --sc-text: #333;
    --sc-muted: #777;
    --sc-radius: 8px;
    --sc-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

/* ── Gallery Slider ─────────────────────────────────────────── */
.sc-gallery-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

/* Slick container */
.sc-gallery-slider {
    height: 480px;
}

/* Mỗi slide */
.sc-slide {
    height: 480px;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 0 2px;
}

.sc-slide-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.sc-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.sc-slide:hover .sc-slide-inner img {
    transform: scale(1.03);
}

/* Video slide: play button overlay */
.sc-slide--video .sc-gallery-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: background .2s, transform .2s;
    z-index: 2;
}

.sc-slide--video:hover .sc-gallery-play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.sc-gallery-play svg {
    width: 28px;
    height: 28px;
    fill: var(--sc-orange);
    margin-left: 5px;
}

.sc-slide--video .sc-slide-inner img {
    opacity: .88;
}

/* Slick arrow overrides */
.sc-gallery-slider .slick-prev,
.sc-gallery-slider .slick-next {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: background .2s;
}

.sc-gallery-slider .slick-prev {
    left: 12px;
}

.sc-gallery-slider .slick-next {
    right: 12px;
}

.sc-gallery-slider .slick-prev:hover,
.sc-gallery-slider .slick-next:hover {
    background: rgba(255, 255, 255, .35);
}

/* Ẩn pseudo-element mặc định của Slick */
.sc-gallery-slider .slick-prev::before,
.sc-gallery-slider .slick-next::before {
    display: none;
}

/* Chevron trắng mỏng */
.sc-gallery-slider .slick-prev::after,
.sc-gallery-slider .slick-next::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    position: relative;
}

.sc-gallery-slider .slick-prev::after {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.sc-gallery-slider .slick-next::after {
    transform: rotate(45deg);
    margin-right: 3px;
}

/* Photo count badge */
.sc-gallery-count {
    position: absolute;
    bottom: 16px;
    right: 20px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
    transition: background .2s;
}

.sc-gallery-count:hover {
    background: rgba(0, 0, 0, .8);
}

.sc-gallery-count i {
    font-size: 14px;
}

/* Video lightbox */
.sc-video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.sc-video-lightbox.active {
    display: flex;
}

.sc-video-lightbox-inner {
    position: relative;
    width: 900px;
    max-width: 95vw;
    aspect-ratio: 16/9;
}

.sc-video-lightbox-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.sc-video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
}

/* ── Page layout: main + sidebar ───────────────────────────── */
.sc-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    align-items: start;
}

.sc-main {
    min-width: 0;
}

.sc-sidebar-col {
    position: sticky;
    top: 80px;
    z-index: 50;
}

/* ── Cruise Header ──────────────────────────────────────────── */
.sc-header {
    padding: 20px 0 12px;
}

.sc-title-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.sc-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sc-text);
    margin: 0;
    line-height: 1.3;
}

.sc-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f4a831;
    font-size: 16px;
    flex-shrink: 0;
    padding-top: 4px;
}

.sc-address {
    color: var(--sc-muted);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}

.sc-address i {
    color: var(--sc-orange);
}

/* ── Sidebar Booking Box ────────────────────────────────────── */
.sc-booking-box {
    background: #fff;
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    box-shadow: var(--sc-shadow);
    overflow: hidden;
    margin-top: 20px;
}

.sc-booking-box-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--sc-border);
}

.sc-booking-price {
    padding: 14px 16px;
    border-right: 1px solid var(--sc-border);
}

.sc-booking-price .from-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--sc-muted);
    margin-bottom: 2px;
}

.sc-booking-price .regular-price {
    font-size: 13px;
    color: var(--sc-muted);
    text-decoration: line-through;
    margin-bottom: 0;
}

.sc-booking-price .sale-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--sc-orange);
    line-height: 1;
}

.sc-booking-price .sale-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--sc-muted);
}

.sc-booking-price .currency {
    font-size: 14px;
    font-weight: 700;
    vertical-align: super;
    font-style: italic;
    color: var(--sc-orange);
}

.sc-booking-score {
    padding: 14px 16px;
}

.sc-booking-score .score-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--sc-muted);
    margin-bottom: 6px;
}

.sc-booking-score .score-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #27ae60;
    color: #fff;
    border-radius: 4px;
    padding: 3px 8px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.sc-booking-score .score-excellent {
    color: #27ae60;
    font-weight: 600;
    font-size: 13px;
}

.sc-booking-score .score-count {
    font-size: 12px;
    color: var(--sc-muted);
}

.sc-booking-box-promo {
    padding: 10px 16px;
    border-bottom: 1px solid var(--sc-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--sc-orange);
}

.sc-booking-box-promo i {
    margin-right: 4px;
}

.sc-booking-box-actions {
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.sc-btn-wishlist {
    width: 44px;
    height: 44px;
    border: 1px solid var(--sc-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    background: #fff;
    color: var(--sc-muted);
    font-size: 18px;
    transition: color .2s, border-color .2s;
}

.sc-btn-wishlist:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}

.sc-btn-book {
    flex: 1;
    background: var(--sc-orange);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background .2s;
}

.sc-btn-book:hover {
    background: var(--sc-orange-dark);
    color: #fff;
    text-decoration: none;
}

/* ── Sticky Nav Tabs ────────────────────────────────────────── */
.sc-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid var(--sc-border);
    margin-bottom: 0;
}

.sc-nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
}

.sc-nav-inner::-webkit-scrollbar {
    display: none;
}

.sc-nav-tab {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sc-muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}

.sc-nav-tab:hover,
.sc-nav-tab.active {
    color: var(--sc-orange);
    border-bottom-color: var(--sc-orange);
    text-decoration: none;
}

.sc-nav-price {
    margin-left: auto;
    font-size: 14px;
    color: var(--sc-muted);
    white-space: nowrap;
    padding: 0 0 0 20px;
    flex-shrink: 0;
}

.sc-nav-price strong {
    color: var(--sc-orange);
    font-size: 16px;
}

.sc-nav-price s {
    font-size: 12px;
    color: #aaa;
    margin-right: 4px;
}

.sc-nav-btn {
    background: var(--sc-orange);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 12px;
    white-space: nowrap;
    text-decoration: none;
}

.sc-nav-btn:hover {
    background: var(--sc-orange-dark);
    color: #fff;
    text-decoration: none;
}

/* ── Content Sections ───────────────────────────────────────── */
.sc-section {
    padding: 32px 0 20px;
    border-bottom: 1px solid var(--sc-border);
}

.sc-section:last-child {
    border-bottom: 0;
}

.sc-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--sc-text);
    margin: 0 0 18px;
}

/* ── Quick Facts grid ───────────────────────────────────────── */
.sc-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
    padding: 20px 0 0;
}

.sc-fact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
}

.sc-fact-item i {
    color: var(--sc-orange);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sc-fact-item .fact-label {
    color: var(--sc-muted);
    font-size: 12px;
}

.sc-fact-item .fact-val {
    color: var(--sc-text);
    font-weight: 600;
    font-size: 13.5px;
}

.sc-fact-item a {
    color: var(--sc-orange);
    text-decoration: none;
}

.sc-fact-item a:hover {
    text-decoration: underline;
}

/* ── Highlights Box ─────────────────────────────────────────── */
.sc-highlights-box {
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    padding: 20px 24px;
    margin: 20px 0 0;
    background: #fafbfc;
}

.sc-highlights-box h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--sc-text);
    margin: 0 0 14px;
}

.sc-highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--sc-text);
    line-height: 1.5;
}

.sc-highlights-list li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e8792a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Rates Bar ──────────────────────────────────────────────── */
.sc-rates-bar {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    background: #fff;
    margin-bottom: 20px;
    flex-wrap: wrap;
    overflow: visible;
    position: relative;
}

.sc-rates-field {
    padding: 12px 20px;
    border-right: 1px solid var(--sc-border);
    flex: 1;
    min-width: 130px;
}

.sc-rates-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--sc-muted);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sc-rates-label i {
    color: var(--sc-orange);
    font-size: 12px;
}

.sc-rates-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--sc-text);
}

/* Duration dropdown */
.sc-dur-wrap {
    position: relative;
    cursor: pointer;
    flex: 1;
}

.sc-dur-selected {
    font-size: 14px;
    font-weight: 700;
    color: var(--sc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.sc-dur-arrow {
    font-size: 10px;
    color: var(--sc-muted);
    margin-left: auto;
    transition: transform .2s;
}

.sc-dur-wrap.open .sc-dur-arrow {
    transform: rotate(180deg);
}

.sc-dur-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: -1px;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    z-index: 200;
}

.sc-dur-wrap.open .sc-dur-dropdown {
    display: block;
}

.sc-dur-option {
    padding: 11px 18px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--sc-text);
    transition: background .15s;
}

.sc-dur-option:hover {
    background: #f5f5f5;
}

.sc-dur-option.active {
    font-weight: 700;
    color: var(--sc-orange);
}

.sc-dur-option i {
    color: var(--sc-orange);
    font-size: 12px;
}

/* Check Rates button in bar */
.sc-rates-cta {
    padding: 0 24px;
    height: 100%;
    min-height: 72px;
    background: rgba(232, 121, 42, .08);
    color: var(--sc-orange);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-left: 1px solid var(--sc-border);
    white-space: nowrap;
    transition: background .2s;
    border-radius: 0 var(--sc-radius) var(--sc-radius) 0;
}

.sc-rates-cta:hover {
    background: var(--sc-orange);
    color: #fff;
    text-decoration: none;
}

/* ── Cabin Cards (3-column) ──────────────────────────────────── */
.sc-cabin-card {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 0;
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: var(--sc-shadow);
}

.sc-cabin-card-img {
    overflow: hidden;
    min-height: 180px;
}

.sc-cabin-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 180px;
    transition: transform .4s;
}

.sc-cabin-card:hover .sc-cabin-card-img img {
    transform: scale(1.04);
}

.sc-cabin-card-body {
    padding: 18px 22px;
    border-right: 1px solid var(--sc-border);
}

.sc-cabin-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sc-text);
    margin: 0 0 10px;
}

.sc-cabin-specs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.sc-cabin-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--sc-muted);
}

.sc-cabin-spec i {
    font-size: 12px;
    color: #bbb;
}

.sc-cabin-features {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sc-cabin-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #27ae60;
}

.sc-cabin-features li i {
    font-size: 12px;
}

.sc-cabin-detail-link {
    color: var(--sc-orange);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.sc-cabin-detail-link:hover {
    text-decoration: underline;
}

/* Pricing column */
.sc-cabin-pricing {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fafbfc;
}

.sc-cabin-price-rows {
    font-size: 12.5px;
    color: var(--sc-muted);
}

.sc-cabin-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    gap: 6px;
}

.sc-cabin-price-row span:last-child {
    font-weight: 600;
    color: var(--sc-text);
    white-space: nowrap;
}

.sc-cabin-tax-note {
    font-size: 11px;
    color: var(--sc-muted);
    display: block !important;
    padding-top: 3px;
    border-top: 1px solid var(--sc-border);
    margin-top: 4px;
}

.sc-cabin-total {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 6px 0 4px;
}

.sc-cabin-regular {
    font-size: 12px;
    color: var(--sc-muted);
}

.sc-cabin-sale {
    font-size: 26px;
    font-weight: 800;
    color: var(--sc-orange);
    line-height: 1;
}

.sc-cabin-book-btn {
    display: block;
    background: var(--sc-orange);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    margin-top: 4px;
}

.sc-cabin-book-btn:hover {
    background: var(--sc-orange-dark);
    color: #fff;
    text-decoration: none;
}

.sc-cabin-secure {
    font-size: 11px;
    color: var(--sc-muted);
    text-align: center;
}

.sc-cabin-price-tba {
    color: var(--sc-muted);
    font-size: 13px;
    padding: 20px 0;
    text-align: center;
}

/* ── Accordion ───────────────────────────────────────────────── */
.sc-accordion-item {
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.sc-accordion-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    background: #f7f8fa;
    font-size: 15px;
    font-weight: 600;
    color: var(--sc-text);
    user-select: none;
    transition: background .15s;
}

.sc-accordion-head:hover {
    background: #f0f1f4;
}

.sc-accordion-head .sc-acc-icon {
    font-size: 18px;
    color: var(--sc-muted);
    transition: transform .25s;
    flex-shrink: 0;
}

.sc-accordion-item.open .sc-acc-icon {
    transform: rotate(45deg);
}

.sc-accordion-body {
    display: none;
    padding: 16px 18px;
    background: #fff;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sc-text);
}

.sc-accordion-item.open .sc-accordion-body {
    display: block;
}

.sc-accordion-body ul {
    padding-left: 20px;
}

.sc-accordion-body li {
    margin-bottom: 5px;
}

/* ── Itinerary section ───────────────────────────────────────── */
.sc-itinerary-map {
    border-radius: var(--sc-radius);
    overflow: hidden;
    margin-bottom: 18px;
}

.sc-itinerary-map img {
    width: 100%;
    height: auto;
    display: block;
}

.sc-itin-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.sc-itin-tab {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--sc-border);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: var(--sc-muted);
    transition: all .15s;
}

.sc-itin-tab.active {
    background: var(--sc-text);
    color: #fff;
    border-color: var(--sc-text);
}

.sc-itin-panel {
    display: none;
}

.sc-itin-panel.active {
    display: block;
}

.sc-itin-day-item {
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.sc-itin-day-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    cursor: pointer;
    background: #fff;
    transition: background .15s;
}

.sc-itin-day-head:hover {
    background: #f9f9f9;
}

.sc-itin-day-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sc-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.sc-itin-day-head h4 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--sc-text);
    flex: 1;
}

.sc-itin-day-head .sc-acc-icon {
    font-size: 16px;
    color: var(--sc-muted);
    transition: transform .25s;
}

.sc-itin-day-item.open .sc-itin-day-head .sc-acc-icon {
    transform: rotate(180deg);
}

.sc-itin-day-body {
    display: none;
    padding: 14px 16px 14px 64px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sc-text);
    background: #fafafa;
}

.sc-itin-day-item.open .sc-itin-day-body {
    display: block;
}

.sc-important-notes {
    background: #fff8f2;
    border: 1px solid #fad4b0;
    border-radius: var(--sc-radius);
    padding: 16px 18px;
    margin-top: 16px;
    font-size: 13.5px;
    color: var(--sc-text);
}

.sc-important-notes h4 {
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--sc-orange-dark);
}

/* ── Q&As ────────────────────────────────────────────────────── */
.sc-faq-item {
    border-bottom: 1px solid var(--sc-border);
    padding: 0;
}

.sc-faq-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--sc-text);
    user-select: none;
    gap: 12px;
}

.sc-faq-head .sc-acc-icon {
    font-size: 18px;
    color: var(--sc-muted);
    transition: transform .25s;
    flex-shrink: 0;
}

.sc-faq-item.open .sc-faq-head .sc-acc-icon {
    transform: rotate(45deg);
}

.sc-faq-body {
    display: none;
    padding: 0 0 14px;
    font-size: 14px;
    color: var(--sc-muted);
    line-height: 1.7;
}

.sc-faq-item.open .sc-faq-body {
    display: block;
}

/* ── Related Cruises ─────────────────────────────────────────── */
.sc-related {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--sc-border);
}

.sc-related h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.sc-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 0;
    font-size: 13px;
    color: var(--sc-muted);
}

.sc-breadcrumb a {
    color: var(--sc-muted);
    text-decoration: none;
}

.sc-breadcrumb a:hover {
    color: var(--sc-orange);
}

.sc-breadcrumb span {
    margin: 0 6px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .sc-layout {
        grid-template-columns: 1fr;
    }

    .sc-sidebar-col {
        position: static;
        order: -1;
    }

    .sc-gallery {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .sc-gallery-item:last-child {
        display: none;
    }

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

    .sc-cabin-card {
        grid-template-columns: 1fr;
    }

    .sc-cabin-card-img img {
        min-height: 200px;
    }
}

@media (max-width: 600px) {
    .sc-quick-facts {
        grid-template-columns: 1fr;
    }

    .sc-title {
        font-size: 20px;
    }

    .sc-nav-price,
    .sc-nav-btn {
        display: none;
    }
}

/* ── Cabin Popup ──────────────────────────────────── */
.sc-cabin-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.sc-cabin-popup-overlay.show {
    display: flex;
}

.sc-cabin-popup-box {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: popupFadeIn 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.sc-cabin-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    z-index: 10;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.sc-cabin-popup-close:hover {
    color: var(--sc-orange);
}

.sc-cabin-popup-content {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.sc-cabin-popup-left {
    flex: 0 0 60%;
    max-width: 60%;
    background: #000;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.sc-cabin-popup-left .sc-cabin-popup-slider {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sc-cabin-popup-slider .slick-list,
.sc-cabin-popup-slider .slick-track {
    height: 100%;
}

.sc-cpopup-slide {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.sc-cpopup-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Slick Navigation Arrows */
.sc-cabin-popup-slider .sc-slick-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 32px;
    transition: 0.3s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.sc-cabin-popup-slider .sc-slick-nav:hover {
    color: var(--sc-orange);
    background: transparent;
}

.sc-cabin-popup-slider .slick-prev::before,
.sc-cabin-popup-slider .slick-next::before {
    display: none !important;
}

.sc-cabin-popup-slider .slick-prev {
    left: 15px;
}

.sc-cabin-popup-slider .slick-next {
    right: 15px;
}

.sc-cabin-popup-right {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.sc-cabin-popup-title {
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--sc-dark);
}

.sc-cabin-popup-desc p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sc-cabin-popup-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 14px;
}

.sc-cabin-popup-specs li {
    margin-bottom: 8px;
    color: #333;
}

.sc-cabin-popup-amenities {
    border-top: 1px dashed #ddd;
    padding-top: 20px;
}

.sc-cabin-popup-amenities h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sc-cabin-popup-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sc-cabin-popup-amenities li {
    font-size: 13px;
    color: #666;
}

.sc-cabin-popup-amenities li i {
    color: #28a745;
    margin-right: 6px;
}

@media (max-width: 768px) {

    .sc-cabin-popup-left,
    .sc-cabin-popup-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sc-cabin-popup-right {
        padding: 20px;
    }

    .sc-cabin-popup-left img {
        height: auto;
        min-height: 200px;
    }
}