/* =========================================================
   SC BOAT DETAILS - LUXURY EDITORIAL DESIGN
   ========================================================= */

/* Reset and Container */
.scbd-premium-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
    box-sizing: border-box;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #111827;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scbd-premium-wrap * {
    box-sizing: border-box;
}

/* =========================================================
   Modern Photo Grid (UNTOUCHED)
   ========================================================= */
.scbd-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: minmax(200px, 280px);
    gap: 12px;
    width: 100%;
}

.scbd-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #f4f4f4;
}

.main-item {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.scbd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.scbd-gallery-item:hover img {
    transform: scale(1.04);
}

.scbd-see-all-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.scbd-gallery-item:hover .scbd-see-all-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
}

.scbd-gallery-source {
    display: none;
}

.scbd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #111; 
    display: none;
    flex-direction: column;
}

.scbd-lightbox.is-open {
    display: flex;
}

.scbd-lb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    color: #fff;
}

.scbd-lb-counter {
    font-size: 15px;
    color: #888;
    letter-spacing: 1px;
}

.scbd-lb-close {
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.scbd-lb-close:hover {
    color: #fff;
}

.scbd-lb-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    min-height: 0; 
}

.scbd-lb-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    opacity: 0.5;
    transition: opacity 0.2s;
    z-index: 10;
}

.scbd-lb-nav:hover {
    opacity: 1;
}

.scbd-lb-img-wrap {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.scbd-lb-img-wrap img {
    max-width: 100%;
    max-height: calc(100vh - 200px); 
    object-fit: contain;
}

.scbd-lb-caption {
    color: #aaa;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.scbd-lb-footer {
    height: 110px;
    padding: 10px 20px 30px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: center;
}

.scbd-lb-footer::-webkit-scrollbar {
    height: 6px;
}

.scbd-lb-footer::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.scbd-lb-thumb {
    flex: 0 0 100px;
    height: 65px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.4;
    transition: all 0.2s;
}

.scbd-lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scbd-lb-thumb.is-active {
    border-color: #00d2ff; 
    opacity: 1;
}

.scbd-lb-thumb:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .scbd-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: minmax(150px, 200px);
    }
    .main-item {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

@media (max-width: 600px) {
    .scbd-gallery-grid {
        display: flex;
        flex-direction: column;
    }
    .scbd-gallery-item {
        height: 250px;
    }
    .small-item:not(:nth-child(2)) {
        display: none; 
    }
}

/* =========================================================
   Breadcrumbs
   ========================================================= */
.scbd-breadcrumbs {
    margin: 40px 0 0 0;
    padding: 0;
    width: 100%;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
}

.scbd-breadcrumbs::-webkit-scrollbar {
    display: none; 
}

.scbd-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    white-space: nowrap; 
}

.scbd-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    font-size: 13px; 
    color: #9ca3af;
    letter-spacing: 0.02em;
}

.scbd-breadcrumbs a {
    color: #6b7280; 
    text-decoration: none;
    transition: color 0.2s ease;
}

.scbd-breadcrumbs a:hover {
    color: #111827; 
}

.scbd-bc-sep {
    margin: 0 10px;
    color: #d1d5db;
    font-size: 11px;
    user-select: none;
}

.scbd-bc-current {
    color: #111827; 
    font-weight: 500;
}

/* =========================================================
   Header Summary
   ========================================================= */
.scbd-header-summary {
    margin-top: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.scbd-h1-premium {
    font-family: "Playfair Display", Didot, "Times New Roman", serif; 
    font-size: 56px; 
    font-weight: 600; 
    color: #111827; 
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.scbd-h1-premium .sep {
    font-weight: 300;
    color: #e5e7eb;
    margin: 0 16px;
}

.scbd-h1-premium .name {
    color: #111827; 
}

.scbd-location-row {
    margin-bottom: 56px; 
}

.scbd-location-row a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4b5563; 
    font-size: 16px; 
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.scbd-location-row a:hover {
    color: #d90429;
}

.scbd-icon-pin {
    color: #d90429; 
    flex-shrink: 0;
    width: 20px; 
    height: 20px;
}

.scbd-specs-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px 48px; 
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb; 
    border-bottom: 1px solid #e5e7eb; 
}

.scbd-chip {
    display: flex;
    align-items: center;
    gap: 16px;
}

.scbd-chip-icon {
    width: 32px; 
    height: 32px;
    stroke: #d90429; 
    stroke-width: 2; 
    flex-shrink: 0;
}

.scbd-chip-data {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.scbd-chip-data .label {
    font-size: 11px; 
    text-transform: uppercase;
    color: #6b7280; 
    font-weight: 600;
    letter-spacing: 0.1em; 
    margin-bottom: 2px;
}

.scbd-chip-data .val {
    font-size: 18px; 
    font-weight: 600; 
    color: #111827;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .scbd-h1-premium { font-size: 44px; }
}

@media (max-width: 768px) {
    .scbd-h1-premium { font-size: 38px; }
}

/* =========================================================
   Content Layout
   ========================================================= */
.scbd-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 64px;
    align-items: start;
    min-width: 0; /* allow grid to shrink inside narrow containers */
}

.scbd-h2-boatname {
    display: none; 
}

.scbd-desc-intro {
    font-family: "Playfair Display", Didot, "Times New Roman", serif; 
    font-size: 22px; 
    font-style: italic;
    color: #374151; 
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.scbd-desc-main {
    font-size: 16px; 
    color: #4b5563; 
    line-height: 1.8; 
}

.scbd-desc-main-p {
    margin: 0 0 24px 0;
}
.scbd-desc-main-p:last-child {
    margin-bottom: 0;
}

.scbd-desc-bullets {
    list-style: none;
    padding: 0;
    margin: 48px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.scbd-desc-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 19px; 
    color: #111827;
    font-weight: 500;
    line-height: 1.4;
}

.scbd-bullet-icon {
    stroke: #d90429; 
    flex-shrink: 0;
    margin-top: 2px;
}

.scbd-desc-notices {
    background: #f9fafb;
    padding: 20px 24px;
    border-radius: 8px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 48px;
    border-left: 3px solid #d90429; 
}
.scbd-desc-notices-label {
    font-weight: 700;
    color: #111827;
}

@media (max-width: 1024px) {
    .scbd-content-grid { gap: 48px; }
}

.scbd-content-grid.scbd-intro-only {
    grid-template-columns: 1fr;
}

@media (max-width: 900px) {
    .scbd-content-grid {
        grid-template-columns: 1fr; 
    }
}

.scbd .scbd-section-title {
    font-family: "Playfair Display", Didot, "Times New Roman", serif;
    font-size: 34px; 
    font-weight: 600; 
    color: #111827;
    margin: 0 0 40px 0;
}

/* =========================================================
   Yacht Specifications Table
   ========================================================= */
.scbd .scbd-specs-section {
    margin-top: 80px;
}

.scbd .scbd-specs-table {
    border: none;
    border-top: 2px solid #111827; 
    background: transparent;
}

.scbd .scbd-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8px; 
    border-bottom: 1px solid #f3f4f6; 
    transition: background-color 0.2s ease;
}

.scbd .scbd-spec-row:hover {
    background-color: #fcfcfd; 
}

.scbd .scbd-spec-label {
    color: #6b7280;
    font-weight: 400; 
    flex: 1;
    padding-right: 16px;
    font-size: 15px; 
}

.scbd .scbd-spec-value {
    color: #111827;
    font-weight: 600; 
    text-align: right;
    flex: 1;
    font-size: 15px; 
}

@media (max-width: 480px) {
    .scbd .scbd-spec-row { padding: 16px 4px; }
    .scbd .scbd-spec-label, .scbd .scbd-spec-value { font-size: 14px; }
}

/* =========================================================
   Equipment Layout
   ========================================================= */
.scbd-specs-equip-grid.scbd {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 80px;
}

.scbd-equipment-groups.scbd { 
    display: flex; 
    flex-direction: column; 
    gap: 56px;
}

.scbd-equipment-group-title.scbd {
    font-family: inherit;
    font-weight: 700;
    font-size: 17px; 
    letter-spacing: 0.1em; 
    text-transform: uppercase;
    color: #111827; 
    margin: 0 0 24px 0;
    padding: 0 0 12px 0;
    border-bottom: 1px solid #d90429; 
}

.scbd-equipment-list.scbd { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 16px 32px; 
}

.scbd-equipment-item.scbd { 
    display: flex; 
    gap: 12px; 
    align-items: flex-start; 
    font-size: 17px; 
    color: #374151; 
    line-height: 1.4;
}

.scbd-eq-check.scbd {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #d90429; 
    margin-top: 1px;
    font-weight: bold;
}

/* =========================================================
   Pricing Add-ons & Services
   ========================================================= */
.scbd-pricing-add-ons {
    margin-top: 96px;
}

.scbd-addons-section {
    margin-bottom: 80px;
}

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

.scbd-addon-group {
    display: grid;
    grid-template-columns: 220px 1fr; 
    gap: 48px;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.scbd-addon-group:first-of-type {
    border-top: 2px solid #111827; 
}

.scbd-addon-group-name {
    font-family: "Playfair Display", Didot, serif;
    font-size: 22px; 
    font-weight: 600;
    color: #111827;
    padding-top: 2px;
}

.scbd-addon-group-items {
    display: flex;
    flex-direction: column;
    gap: 32px; 
}

.scbd-addon-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.scbd-addon-info {
    flex: 1;
}

.scbd-addon-title {
    font-size: 16px; 
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    line-height: 1.5;
}

.scbd-addon-check {
    width: 20px; 
    height: 20px;
    stroke: #d90429; 
    stroke-width: 2; 
    flex-shrink: 0;
    margin-top: 2px;
}

.scbd-addon-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px; 
    border: 1px solid #e5e7eb;
    line-height: 1;
    letter-spacing: 0.05em;
}

.scbd-addon-desc {
    font-size: 14px; 
    color: #6b7280; 
    margin-top: 8px;
    margin-left: 32px; 
    display: block;
    line-height: 1.6; 
}

.scbd-addon-price {
    font-size: 18px; 
    font-weight: 700; 
    color: #111827; 
    text-align: right;
    white-space: nowrap;
    padding-top: 2px;
}

.scbd-addon-unit {
    font-weight: 400;
    color: #9ca3af;
    font-size: 14px; 
    margin-left: 6px;
}

@media (max-width: 768px) {
    .scbd-addon-group {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
    }
    .scbd-addon-group-name {
        padding-top: 0;
    }
    .scbd-addon-item {
        flex-direction: column;
        gap: 12px;
    }
    .scbd-addon-price {
        text-align: left;
        margin-left: 32px; 
    }
}

/* =========================================================
   Sidebar column
   ========================================================= */
.scbd-main-col {
    min-width: 0; /* allow 50% column to shrink; prevents overflow */
}

.scbd-sidebar-col {
    display: flex;
    flex-direction: column;
    min-width: 0; /* allow 50% column to shrink so pricing carousel doesn't stretch page */
}

/* =========================================================
   Pricing Calculator Inner Block
   ========================================================= */
.scbd-pricing-calculator {
    background: #f9fafb; 
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid #f3f4f6;
}

.scbd-pc-dates {
    background: #ffffff; 
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    display: inline-flex;
    align-self: flex-start;
}

/* Selected week title + badge (checkin mode) — matches premium mockup */
.scbd-pc-selected-week-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.scbd-pc-selected-week-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.scbd-pc-selected-week-head .scbd-dc-badge {
    flex-shrink: 0;
}

.scbd-pc-selected-week-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.scbd-pc-selected-week-prices .scbd-pc-old-price {
    font-size: 16px;
    color: #9ca3af;
    text-decoration-line: line-through;
    text-decoration-thickness: 1px;
}

.scbd-pc-selected-week-prices .scbd-pc-new-price {
    font-size: 34px;
    font-weight: 850;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.scbd-pc-selected-week-prices .scbd-dc-status-pill {
    margin-left: 0;
}

/* Selected charter logistics (Pick-up / Drop-off) */
.scbd-selected-logistics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    padding: 16px 18px;
    margin: 4px 0 18px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 16px;
}
.scbd-selected-logistics__item {
    min-width: 0;
}
.scbd-selected-logistics__label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}
.scbd-selected-logistics__date {
    font-size: 15px;
    font-weight: 750;
    color: #0f172a;
    margin-bottom: 2px;
}
.scbd-selected-logistics__time {
    font-size: 13px;
    color: #475569;
    margin-bottom: 2px;
}
.scbd-selected-logistics__location {
    font-size: 13px;
    color: #334155;
}
.scbd-selected-logistics__location a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(51, 65, 85, .35);
    text-underline-offset: 2px;
}
.scbd-selected-logistics__location a:hover {
    text-decoration-color: rgba(51, 65, 85, .7);
}

.scbd-selected-logistics-note {
    margin: 10px 0 18px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
}

.scbd-waiting-option-subtext {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .scbd-selected-logistics {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px 14px;
    }
}

.scbd-pc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4b5563;
}

.scbd-pc-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================================================
   Prices & Availability — full-width section (premium mockup)
   ========================================================= */

.scbd-pricing-section {
    width: 100%;
    max-width: 100%;
    margin: 48px 0 0;
    padding: 0;
    box-sizing: border-box;
}

.scbd-pricing-widget {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    padding: 40px 44px 32px;
    overflow: hidden;
    box-sizing: border-box;
}

.scbd-pricing-head {
    margin-bottom: 26px;
}

.scbd-pricing-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.01em;
}

.scbd-pricing-subtitle {
    margin: 0 0 24px;
    font-size: 15px;
    color: #64748b;
}

.scbd-pricing-rail {
    position: relative;
    width: 100%;
    /* Reserve inner gutter so arrows never overlap cards */
    padding: 0 96px;
    box-sizing: border-box;
}

.scbd-pricing-carousel-wrap {
    width: 100%;
    min-width: 0;
    /* Clip only at widget edges, not card shadows */
    overflow: hidden;
    border-radius: 18px;
    padding: 12px 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.scbd-pricing-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    /* Horizontal padding prevents first/last card from feeling chopped */
    padding: 24px 14px 26px;
    margin: 0;
    scrollbar-width: none;
    scroll-padding-left: 82px;
    scroll-padding-right: 86px;
    /* Ensure the track is the actual scroll container */
    pointer-events: auto;
    touch-action: pan-y;
}
.scbd-pricing-carousel::-webkit-scrollbar { height: 0; }
.scbd-pricing-carousel.is-dragging { cursor: grabbing; cursor: -webkit-grabbing; }

.scbd-pricing-widget .scbd-date-card,
.scbd-pricing-widget button.scbd-date-card {
    flex: 0 0 290px;
    min-width: 290px;
    max-width: 290px;
    min-height: 122px;
    height: 122px;
    border-radius: 12px;
    border: 1px solid #d6dee8;
    background: #ffffff !important;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    scroll-snap-align: start;
    box-sizing: border-box;
    text-align: left;
    color: #0f172a;
    transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
    overflow: hidden; /* keep status pill fully inside card */
}

.scbd-date-card.is-clickable { cursor: pointer; }
.scbd-pricing-widget .scbd-date-card.is-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .10);
    border-color: #cbd5e1;
}

.scbd-pricing-widget .scbd-date-card.is-active {
    background: #ffffff !important;
    border-color: #bfdbfe;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, .12), 0 10px 26px rgba(59, 130, 246, .10);
}

.scbd-pricing-widget .scbd-date-card.is-booked {
    background: #fff5f5 !important;
    border-color: #f1d5d8;
    cursor: default;
}
.scbd-pricing-widget .scbd-date-card.is-on-hold {
    background: #fffbeb !important;
    border-color: #f5d48b;
}
.scbd-pricing-widget .scbd-date-card.is-on-hold.is-clickable {
    cursor: pointer;
}
.scbd-pricing-widget .scbd-date-card.is-on-hold:not(.is-clickable) {
    cursor: default;
}
.scbd-pricing-widget .scbd-date-card.is-unavailable {
    background: #f7f9fc !important;
    border-color: #e3eaf2;
    cursor: default;
}

.scbd-dc-range {
    font-size: 12px;
    font-weight: 650;
    color: #334155;
    margin-bottom: 0;
    line-height: 1.2;
}

.scbd-dc-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 18px;
}

.scbd-dc-status-row {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
}

.scbd-dc-old {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
    white-space: nowrap;
}
.scbd-dc-new {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}
.scbd-dc-badge {
    font-size: 11px;
    font-weight: 700;
    color: #be123c;
    background: rgba(244, 63, 94, .12);
    border-radius: 999px;
    padding: 4px 8px;
    white-space: nowrap;
}

.scbd-dc-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scbd-dc-status-available { background: rgba(34, 197, 94, .12); color: #15803d; }
.scbd-dc-status-on-hold { background: rgba(245, 158, 11, .14); color: #b45309; }
.scbd-dc-status-booked { background: rgba(244, 63, 94, .12); color: #be123c; }
.scbd-dc-status-unavailable { background: rgba(148, 163, 184, .16); color: #475569; }

.scbd-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: #ffffff !important;
    border: 1px solid #d9e1ea !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .07) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    color: #0f172a !important;
    background-image: none !important;
    filter: none !important;
    padding: 0 !important;
    line-height: 0;
    min-width: 60px;
    min-height: 60px;
    box-sizing: border-box;
    overflow: hidden;
    transition: background .18s, border-color .18s, box-shadow .18s, transform .10s, opacity .18s;
}
.scbd-carousel-nav::before,
.scbd-carousel-nav::after {
    content: none !important;
}
.scbd-carousel-nav.prev { left: 8px; }
.scbd-carousel-nav.next { right: 8px; }
.scbd-carousel-nav:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #b8c5d8;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .10) !important;
    transform: translateY(-50%) scale(1.03);
}
.scbd-carousel-nav:disabled {
    opacity: .35;
    cursor: default;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06) !important;
}
.scbd-carousel-nav svg { width: 26px; height: 26px; }

/* Arrow icon reliability: some themes reset SVG display/stroke */
.scbd-carousel-nav svg {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
    fill: none !important;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
    stroke-width: 2.8px !important;
}

.scbd-carousel-nav svg polyline {
    stroke: currentColor !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    vector-effect: non-scaling-stroke;
}

.scbd-pricing-summary {
    margin-top: 32px;
    border-top: 0;
    padding-top: 0;
}

.scbd-pricing-summary-card {
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 22px;
    padding: 34px 40px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
    box-sizing: border-box;
    font-family: inherit;
}

/* AJAX loading state: summary only */
.scbd-pricing-summary-card.scbd-summary-loading {
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

/* No-date summary copy polish (template currently outputs .scbd-addons-note with inline styles) */
.scbd-pricing-summary-card .scbd-addons-note {
    margin: 0 0 18px !important;
    color: #475569 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

/* Make CTA feel integrated within pricing panel */
.scbd-pricing-summary .scbd-btn-book {
    padding: 0 30px !important;
    height: 66px !important;
    font-size: 16px !important;
    border-radius: 999px !important;
    box-shadow: 0 18px 42px rgba(217, 4, 41, 0.22) !important;
}

@media (max-width: 900px) {
    .scbd-pricing-widget .scbd-date-card,
    .scbd-pricing-widget button.scbd-date-card {
        flex: 0 0 min(84vw, 360px);
        min-width: min(84vw, 360px);
        max-width: min(84vw, 360px);
        min-height: 92px;
        height: auto;
    }
}

@media (max-width: 600px) {
    .scbd-pricing-widget {
        padding: 24px 20px 20px;
    }
    .scbd-pricing-rail {
        padding: 0 40px;
    }
    .scbd-pricing-summary-card {
        padding: 22px 20px;
    }
}

.scbd-pc-highlight {
    color: #d90429;
    font-weight: 700;
}

.scbd-info-icon {
    width: 14px;
    height: 14px;
    stroke: #9ca3af;
    cursor: help;
    transition: stroke 0.2s;
}
.scbd-info-icon:hover {
    stroke: #111827;
}

.scbd-pc-val {
    text-align: right;
    color: #111827;
    font-weight: 500;
}

.scbd-pc-divider {
    height: 1px;
    background: #eef2f7;
    margin: 18px 0;
}

.scbd-pc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scbd-pc-total-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scbd-pc-total-label {
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scbd-pc-total-sub {
    font-size: 13px;
    color: #6b7280;
}

.scbd-pc-total-right {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.scbd-pc-old-price {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.scbd-pc-new-price {
    font-size: 36px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.scbd-pc-action {
    display: flex;
    margin-top: 30px;
    width: 100%;
}

.scbd-btn-book {
    background-color: #d90429 !important; 
    color: #ffffff !important; 
    padding: 18px 32px !important;
    border-radius: 999px !important; 
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.25) !important;
}

.scbd-btn-book:hover {
    background-color: #b90323 !important; 
    transform: translateY(-2px) !important; 
    box-shadow: 0 12px 24px rgba(217, 4, 41, 0.35) !important;
}

.scbd-btn-book svg {
    stroke: #ffffff !important; 
    transition: transform 0.2s ease !important;
}

.scbd-btn-book:hover svg {
    transform: translateX(4px) !important;
}

/* Trust & Plans */
.scbd-pc-payment-plan {
    margin-top: 24px;
    border-top: 1px dashed #e5e7eb;
    padding-top: 24px;
}

.scbd-pc-plan-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scbd-pc-plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

.scbd-pc-plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.scbd-bullet-diamond {
    width: 14px;
    height: 14px;
    stroke: #9ca3af;
    fill: #f9fafb;
    flex-shrink: 0;
    margin-top: 2px;
}

.scbd-pc-plan-list strong {
    color: #111827;
    font-weight: 700;
}

.scbd-pc-trust-box {
    margin-top: 20px;
    background: #f0fdf4; 
    border: 1px solid #bbf7d0;
    padding: 16px;
    border-radius: 8px;
}

.scbd-pc-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #065f46;
    font-weight: 500;
}

.scbd-check-cyan {
    width: 18px;
    height: 18px;
    stroke: #10b981; 
    stroke-width: 2.5;
}

/* =========================================================
   2-Column Ledgers (Price Includes / Extras)
   ========================================================= */
.scbd-pc-inclusions-extras {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.scbd-pc-list-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.scbd-pc-list-card-title {
    font-family: "Playfair Display", Didot, serif;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    font-size: 18px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.scbd-pc-ledger-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
}

.scbd-pc-ledger-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scbd-pc-ledger-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .scbd-pc-inclusions-extras {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px) {
    .scbd-pc-total-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .scbd-pc-total-right {
        width: 100%;
        justify-content: space-between;
    }
}