/**
 * boats.css — Chapman Boat Listings & Bookings
 * Front-end styles for single-boat template.
 * Designed to work with bb-theme child theme.
 * Palette: dark navy #191c26, white #fff, accent gold #25adbb
 * Fonts: serif for headings, sans-serif for body.
 * ────────────────────────────────────────────────────────── */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── Container ── */
.cbb-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
}

/* ── Base Typography ── */
.cbb-hero-eyebrow,
.cbb-hero-title,
.cbb-cta-title,
.cbb-section-title,
.cbb-boat-name,
.cbb-sidebar-header h2 {
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.cbb-hero-title {
    color: #fff;
    font-size: 3rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.9);
    margin: 0 0 16px;
}

.cbb-cta-title {
    font-size: 1.75rem;
    margin: 0 0 12px;
}

.cbb-section-eyebrow {
    display: block;
    text-align: center;
    font-family: "Roboto Slab", serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #25adbb;
    margin: 0 0 10px;
}

.cbb-section-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin: 0 0 16px;
    color: #191c26;
    text-align: center;
    position: relative;
}

.cbb-section-title-rule {
    display: block;
    width: 56px;
    height: 3px;
    background: #25adbb;
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════ */
/* HERO SECTION                                       */
/* ═══════════════════════════════════════════════════ */
.cbb-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
    position: relative;
    min-height: auto;
    background-color: #191c26;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 70px;
}

.cbb-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(
            100deg,
            rgba(15, 17, 24, 0.88) 0%,
            rgba(15, 17, 24, 0.72) 30%,
            rgba(15, 17, 24, 0.4) 60%,
            rgba(15, 17, 24, 0.2) 100%
        ),
        linear-gradient(
            180deg,
            rgba(15, 17, 24, 0.35) 0%,
            rgba(15, 17, 24, 0.15) 40%,
            rgba(15, 17, 24, 0.65) 100%
        );
}

.cbb-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cbb-hero-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}

.cbb-hero-inner > * {
    max-width: 640px;
}

.cbb-hero-eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #d9bd85;
    margin: 0 0 12px;
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.cbb-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.cbb-hero-meta-item {
    color: #fff;
    font-size: 1.5rem;
    font-family: "Roboto Slab", serif;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.cbb-hero-meta-item:not(:last-child)::after {
    content: '|';
    margin-left: 24px;
    color: #25adbb;
}

.cbb-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}




/* ── Buttons ── */
.cbb-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1.5rem;
    font-family: "Roboto Slab", serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1.2;
}

.cbb-btn-primary {
    background: #25adbb;
    color: #191c26;
    border-color: #25adbb;
}

.cbb-btn-primary:hover {
    background: #1c8b96;
    border-color: #1c8b96;
    color: #fff;
}

.cbb-btn-secondary {
    background: rgba(15, 17, 24, 0.45);
    color: #fff;
    border-color: #25adbb;
    backdrop-filter: blur(3px);
}

.cbb-btn-secondary:hover {
    background: #25adbb;
    color: #191c26;
    border-color: #25adbb;
}

.cbb-btn-light {
    background: #fff;
    color: #191c26;
    border-color: #fff;
}

.cbb-btn-light:hover {
    background: #f0f0f0;
}

.cbb-btn-block {
    display: block;
    width: 100%;
}

.cbb-btn-large {
    padding: 18px 36px;
    font-size: 1.5rem;
}

.cbb-btn-small {
    padding: 6px 16px;
    font-size: 1.5rem;
    background: #e0e0e0;
    color: #333;
    border: none;
}

.cbb-btn-small:hover {
    background: #25adbb;
    color: #fff;
}

/* ═══════════════════════════════════════════════════ */
/* TWO-COLUMN SECTION                                 */
/* ═══════════════════════════════════════════════════ */
.cbb-two-column-section {
    padding: 64px 0;
    background: #f7f7f8;
    overflow-x: hidden;
}

.cbb-two-col-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
    align-items: start;
}

.cbb-gallery-col {
    min-width: 0;
    max-width: 100%;
}

.cbb-sidebar-col {
    min-width: 0;
}

/* ── Gallery (Left Column) ── */
.cbb-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    max-height: 480px;
    background: #191c26;
    overflow: hidden;
    border-radius: 4px;
}

.cbb-gallery-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cbb-gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.cbb-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* ── Gallery Arrows ── */
.cbb-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(25,28,38,0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    backdrop-filter: blur(4px);
}

.cbb-gallery-arrow:hover {
    background: #25adbb;
}

.cbb-gallery-prev {
    left: 12px;
}

.cbb-gallery-next {
    right: 12px;
}

/* ── Gallery Counter ── */
.cbb-gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 5;
    background: rgba(25,28,38,0.6);
    color: #fff;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* ── Lightbox ── */
.cbb-lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbb-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}

.cbb-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
    line-height: 1;
}

.cbb-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.cbb-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.cbb-lightbox-arrow:hover {
    background: #25adbb;
}

.cbb-lightbox-prev {
    left: 24px;
}

.cbb-lightbox-next {
    right: 24px;
}

.cbb-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    opacity: 0.7;
}

.cbb-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
}

.cbb-gallery-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.cbb-gallery-thumb:hover {
    opacity: 0.85;
}

.cbb-gallery-thumb.active {
    opacity: 1;
    border-color: #25adbb;
}

.cbb-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cbb-gallery-video-link {
    margin-top: 16px;
    text-align: center;
}

.cbb-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #191c26;
    text-decoration: none;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #25adbb;
    padding-bottom: 4px;
}

.cbb-play-icon {
    color: #25adbb;
    font-size: 1.2rem;
}

/* ── Sticky Sidebar (Right Column) ── */
.cbb-sticky-sidebar {
    position: sticky;
    top: 80px;
}

.cbb-sidebar-card {
    background: #fff;
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.cbb-sidebar-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cbb-boat-name {
    font-size: 1.75rem !important;
    color: #191c26;
    margin: 0 0 8px;
}

.cbb-price-from {
    font-size: 1.5rem;
    color: #191c26;
    font-family: "Roboto Slab", serif;
    margin: 0;
    font-weight: 600;
}

.cbb-price-unit {
    font-size: 1.5rem;
    color: #888;
    margin: 4px 0 0;
    font-family: "Roboto Slab", serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cbb-sidebar-specs {
    margin-bottom: 20px;
}

.cbb-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
}

.cbb-spec-row:last-child {
    border-bottom: none;
}

.cbb-spec-label {
    color: #666;
}

.cbb-spec-value {
    color: #191c26;
    font-weight: 600;
}

.cbb-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cbb-sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #191c26;
    text-decoration: none;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 16px;
    background: #f7f7f8;
    border-radius: 4px;
    transition: background 0.2s;
}

.cbb-sidebar-link:hover {
    background: #efefef;
}

.cbb-sidebar-tags {
    margin-top: 24px;
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.cbb-tags-label {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin: 0 0 12px;
    font-family: "Roboto Slab", serif;
}

.cbb-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cbb-tag {
    background: #191c26;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-family: "Roboto Slab", serif;
}

/* ═══════════════════════════════════════════════════ */
/* DESCRIPTION SECTION                                */
/* ═══════════════════════════════════════════════════ */
.cbb-description-section {
    padding: 72px 0 64px;
    background: #fff;
    border-top: 1px solid #ececec;
}

.cbb-content-block {
    max-width: 800px;
    margin: 0 auto;
}

.cbb-boat-description {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
}

.cbb-boat-description p {
    margin: 0 0 20px;
}

/* ═══════════════════════════════════════════════════ */
/* TABBED SECTION                                     */
/* ═══════════════════════════════════════════════════ */
.cbb-tabs-section {
    padding: 72px 0;
    background: #f7f7f8;
    border-top: 1px solid #ececec;
}

.cbb-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.cbb-tab-btn {
    background: none;
    border: none;
    padding: 16px 40px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.cbb-tab-btn:hover {
    color: #666;
    color: #666;
}

.cbb-tab-btn.active {
    color: #191c26;
    border-bottom-color: #25adbb;
}

.cbb-tab-content {
    display: none;
}

.cbb-tab-content.active {
    display: block;
}

/* ── Rates Table ── */
.cbb-rates-table {
    max-width: 600px;
    margin: 0 auto;
}

.cbb-rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    font-family: "Roboto Slab", serif;
}

.cbb-rate-label {
    color: #666;
    font-size: 1.5rem;
}

.cbb-rate-value {
    color: #191c26;
    font-weight: 600;
    font-size: 1.5rem;
}

.cbb-rates-note {
    max-width: 600px;
    margin: 32px auto 0;
    text-align: center;
    color: #999;
    font-size: 1.5rem;
    font-family: "Roboto Slab", serif;
    line-height: 1.6;
}

/* ── Specs Grid ── */
.cbb-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    max-width: 700px;
    margin: 0 auto;
    font-family: "Roboto Slab", serif;
}

.cbb-spec-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cbb-spec-item-label {
    color: #666;
    flex-shrink: 0;
    font-weight: 400;
}

.cbb-spec-item-value {
    color: #191c26;
    font-weight: 600;
    margin-left: auto;
}

/* ── Features Grid ── */
.cbb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    font-family: "Roboto Slab", serif;
}

.cbb-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 4px;
    font-size: 1.5rem;
    color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.cbb-feature-icon {
    color: #25adbb;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════ */
/* VIDEO SECTION                                      */
/* ═══════════════════════════════════════════════════ */
.cbb-video-section {
    padding: 72px 0;
    background: #191c26;
    border-top: 3px solid #25adbb;
}

.cbb-video-section .cbb-section-title {
    color: #fff;
}

.cbb-video-embed {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 50.625%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 6px;
}

.cbb-video-embed iframe,
.cbb-video-embed embed,
.cbb-video-embed object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════════════════ */
/* CTA BAND                                           */
/* ═══════════════════════════════════════════════════ */
.cbb-cta-band {
    padding: 80px 0;
    background: #25adbb;
    text-align: center;
}

.cbb-cta-title {
    color: #191c26;
    margin: 0 0 12px;
}

.cbb-cta-subtitle {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #191c26;
    margin: 0 0 32px;
    opacity: 0.85;
}

/* ═══════════════════════════════════════════════════ */
/* BOOKING SECTION                                    */
/* ═══════════════════════════════════════════════════ */
.cbb-booking-section {
    padding: 88px 0;
    background: #f5f5f6;
}

.cbb-booking-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
}

/* ── Intro / Sidebar ── */
.cbb-booking-intro {
    padding-top: 8px;
}

.cbb-booking-intro-title {
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191c26;
    margin: 0 0 20px;
}

.cbb-booking-intro-text {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #6b6f76;
    margin: 0 0 32px;
}

.cbb-booking-intro-call-label {
    display: block;
    font-family: "Roboto Slab", serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #191c26;
    margin-bottom: 8px;
}

.cbb-booking-intro-call-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #25adbb;
    text-decoration: underline;
    text-decoration-color: rgba(37,173,187,0.35);
}

.cbb-booking-intro-call-number:hover {
    color: #1c8b96;
}

/* Calendar removed — form only */

/* ── Booking Form ── */
.cbb-booking-form-wrap {
    background: #fff;
    border-radius: 4px;
    padding: 48px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.cbb-form-heading {
    font-family: "Roboto Slab", serif;
    font-size: 1.75rem;
    color: #191c26;
    margin: 0 0 24px;
}

.cbb-form-row {
    margin-bottom: 20px;
}

.cbb-form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cbb-form-three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.cbb-form-field {
    display: flex;
    flex-direction: column;
}

.cbb-form-field label {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7d8790;
    margin-bottom: 10px;
}

.cbb-form-field input,
.cbb-form-field select,
.cbb-form-field textarea {
    padding: 10px 2px 10px 0;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 0;
    font-size: 1.5rem;
    font-family: "Roboto Slab", serif;
    background: transparent;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.cbb-form-field input:focus,
.cbb-form-field select:focus,
.cbb-form-field textarea:focus {
    border-color: #25adbb;
    outline: none;
    box-shadow: none;
}

.cbb-form-field input[readonly] {
    background: transparent;
    cursor: pointer;
}

.cbb-field-hint {
    font-size: 1.5rem;
    color: #999;
    margin-top: 4px;
    font-family: "Roboto Slab", serif;
}

.required {
    color: #e53935;
}

/* ── Checkbox / T&C ── */
.cbb-tc-row {
    padding: 16px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.cbb-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #444;
    line-height: 1.5;
}

.cbb-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #25adbb;
}

.cbb-checkbox-label a {
    color: #191c26;
    text-decoration: underline;
}

/* ── Signature Pad ── */
.cbb-signature-row label {
    display: block;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #191c26;
    margin-bottom: 8px;
}

.cbb-signature-pad-wrap {
    position: relative;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 8px;
}

.cbb-signature-canvas {
    width: 100%;
    height: 180px;
    display: block;
    cursor: crosshair;
    touch-action: none;
}

.cbb-signature-line {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: #d0d0d0;
}

/* ── Submit ── */
.cbb-submit-row {
    margin-top: 28px;
}

/* ── Messages ── */
.cbb-booking-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 4px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
}

.cbb-booking-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.cbb-booking-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}


/* ── Form Sections & Info Boxes ── */
.cbb-form-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e8e8;
}

.cbb-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.cbb-form-section .cbb-form-heading {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #25adbb;
    display: inline-block;
}

.cbb-form-info-box {
    background: #f5f9fa;
    border-left: 3px solid #25adbb;
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.cbb-form-info-box p {
    margin: 0;
}

/* ── Radio Groups (BYO fields) ── */
.cbb-radio-group {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-top: 10px;
}

.cbb-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #191c26;
    cursor: pointer;
}

.cbb-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #25adbb;
    cursor: pointer;
}

/* ── Select styling ── */
.cbb-form-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2325adbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    cursor: pointer;
}

/* ── Bond section ── */
.cbb-bond-section {
    background: #fafafa;
    padding: 24px;
    border-radius: 6px;
    margin-top: 8px;
}

.cbb-bond-section .cbb-form-heading {
    color: #b71c1c;
    border-bottom-color: #e53935;
}

/* ═══════════════════════════════════════════════════ */
/* FAQS                                               */
/* ═══════════════════════════════════════════════════ */
.cbb-faqs-section {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid #ececec;
}

.cbb-faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.cbb-faq-item {
    background: #f7f7f8;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.cbb-faq-question {
    padding: 18px 24px;
    cursor: pointer;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #191c26;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cbb-faq-question::-webkit-details-marker {
    display: none;
}

.cbb-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #25adbb;
    transition: transform 0.2s;
}

.cbb-faq-item[open] .cbb-faq-question::after {
    transform: rotate(45deg);
}

.cbb-faq-answer {
    padding: 0 24px 18px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
}

/* ═══════════════════════════════════════════════════ */
/* RESPONSIVE                                          */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .cbb-two-col-wrap {
        grid-template-columns: 1fr;
    }

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

    .cbb-booking-wrap {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cbb-booking-form-wrap {
        padding: 32px;
    }

    .cbb-hero-title {
    color: #fff;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cbb-container {
        padding: 0 16px;
    }

    .cbb-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
        min-height: 60vh;
    }

    .cbb-hero-title {
    color: #fff;
        font-size: 2rem;
    }

    .cbb-hero-cta {
        grid-template-columns: 1fr;
    }

    .cbb-hero-cta .cbb-btn {
        text-align: center;
    }

    .cbb-hero-meta {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cbb-hero-meta-item:not(:last-child)::after {
        display: none;
    }

    .cbb-section-title {
        font-size: 2rem;
    }

    .cbb-cta-title {
        font-size: 1.75rem;
    }

    .cbb-tabs-nav {
        flex-wrap: wrap;
    }

    .cbb-tab-btn {
        padding: 12px 20px;
        font-size: 1.5rem;
    }

    .cbb-form-two-col,
    .cbb-form-three-col {
        grid-template-columns: 1fr;
    }

    .cbb-specs-grid {
        grid-template-columns: 1fr;
    }

    .cbb-features-grid {
        grid-template-columns: 1fr;
    }

    .cbb-booking-form-wrap {
        padding: 20px;
    }

    .cbb-form-section {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .cbb-bond-section {
        padding: 16px;
    }



    .cbb-cta-band {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .cbb-hero-title {
    color: #fff;
        font-size: 3.2rem;
    }

    .cbb-hero-eyebrow {
        font-size: 0.875rem;
    }

    .cbb-hero-cta .cbb-btn {
        font-size: 1.1rem;
        padding: 10px 26px;
    }

    .cbb-gallery-thumbs {
        gap: 6px;
    }

    .cbb-gallery-thumb {
        aspect-ratio: 4/3;
    }

    .cbb-gallery-arrow {
        width: 36px;
        height: 36px;
    }
}

/* ═════════════════════════════════════════════════════ */
/* GRAVITY FORM STYLING — COMPACT BOAT PAGE              */
/* ═════════════════════════════════════════════════════ */

/* Reset GF defaults */
.cbb-gf-wrap .gform_wrapper {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.cbb-gf-wrap .gform_wrapper form {
    margin: 0 !important;
    padding: 0 !important;
}

.cbb-gf-wrap .gform_body {
    width: 100% !important;
}

.cbb-gf-wrap .gform_fields {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Field spacing — compact */
.cbb-gf-wrap .gfield {
    margin-bottom: 10px !important;
    padding: 0 !important;
}

/* Labels */
.cbb-gf-wrap .gfield_label {
    font-family: "Roboto Slab", serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #191c26 !important;
    margin-bottom: 5px !important;
    display: block !important;
}

.cbb-gf-wrap .gfield_required_asterisk {
    color: #e53935 !important;
    margin-left: 2px !important;
}

/* Inputs — compact and styled */
.cbb-gf-wrap .ginput_container input[type="text"],
.cbb-gf-wrap .ginput_container input[type="email"],
.cbb-gf-wrap .ginput_container input[type="tel"],
.cbb-gf-wrap .ginput_container input[type="number"],
.cbb-gf-wrap .ginput_container input[type="date"],
.cbb-gf-wrap .ginput_container select,
.cbb-gf-wrap .ginput_container textarea {
    padding: 8px 12px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 4px !important;
    font-size: 1.5rem !important;
    font-family: "Roboto Slab", serif !important;
    background: #fff !important;
    box-sizing: border-box !important;
    width: 100% !important;
    transition: border-color 0.2s !important;
}

.cbb-gf-wrap .ginput_container input:focus,
.cbb-gf-wrap .ginput_container select:focus,
.cbb-gf-wrap .ginput_container textarea:focus {
    border-color: #25adbb !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(201,169,106,0.15) !important;
}

/* Multi-select styling */
.cbb-gf-wrap .ginput_container_multiselect select {
    min-height: 60px !important;
    padding: 6px !important;
    font-size: 1.5rem !important;
}

/* Radio buttons — compact */
.cbb-gf-wrap .gfield_radio {
    display: flex !important;
    gap: 16px !important;
    margin-top: 4px !important;
}

.cbb-gf-wrap .gfield_radio li {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 !important;
}

.cbb-gf-wrap .gfield_radio input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    accent-color: #25adbb !important;
}

.cbb-gf-wrap .gfield_radio label {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #444 !important;
    margin: 0 !important;
}

/* Time fields — compact */
.cbb-gf-wrap .ginput_container_time {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.cbb-gf-wrap .ginput_container_time input {
    width: 50px !important;
    padding: 9px 8px !important;
    text-align: center !important;
}

.cbb-gf-wrap .ginput_container_time select {
    width: auto !important;
    min-width: 60px !important;
}

/* HTML blocks — styled */
.cbb-gf-wrap .gfield_html {
    font-size: 1.5rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
    padding: 12px !important;
    background: #fff !important;
    border-radius: 4px !important;
    border: 1px solid #e8e8e8 !important;
    margin-bottom: 16px !important;
}

.cbb-gf-wrap .gfield_html h3,
.cbb-gf-wrap .gfield_html h4 {
    font-family: "Roboto Slab", serif !important;
    color: #191c26 !important;
    font-size: 1.5rem !important;
    margin: 0 0 8px !important;
}

.cbb-gf-wrap .gfield_html table {
    width: 100% !important;
    font-size: 1.5rem !important;
}

.cbb-gf-wrap .gfield_html table th {
    padding: 6px 8px !important;
    text-align: left !important;
    border-bottom: 1px solid #ddd !important;
}

.cbb-gf-wrap .gfield_html table td {
    padding: 6px 8px !important;
}

/* Section headers — BIGGER AND BOLDER */
.cbb-gf-wrap .gsection,
.cbb-gf-wrap .gsection_title {
    border-top: 2px solid #25adbb !important;
    padding-top: 20px !important;
    margin-top: 24px !important;
    margin-bottom: 16px !important;
}

.cbb-gf-wrap .gsection_title {
    font-family: "Roboto Slab", serif !important;
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    color: #191c26 !important;
    text-transform: none !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 4px !important;
    padding-bottom: 8px !important;
}

/* Make the top HTML block heading (contract header) bold */
.cbb-gf-wrap .gfield_html h3,
.cbb-gf-wrap .gfield_html h4,
.cbb-gf-wrap .gfield_html strong {
    font-family: "Roboto Slab", serif !important;
    color: #191c26 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 8px !important;
}

/* Compact field spacing */
.cbb-gf-wrap .gfield {
    margin-bottom: 10px !important;
    padding: 0 !important;
}

/* T&C checkbox styling */
.cbb-gf-wrap .cbb-tc-checkbox .gfield_label {
    display: none !important;
}

.cbb-gf-wrap .cbb-tc-checkbox .ginput_container {
    padding: 14px 16px !important;
    background: #f8f6f1 !important;
    border: 1px solid #e0dccd !important;
    border-radius: 6px !important;
}

.cbb-gf-wrap .cbb-tc-checkbox .gfield_checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 0 !important;
}

.cbb-gf-wrap .cbb-tc-checkbox .gfield_checkbox li {
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.cbb-gf-wrap .cbb-tc-checkbox input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    margin-top: 2px !important;
    accent-color: #25adbb !important;
}

.cbb-gf-wrap .cbb-tc-checkbox .gfield_checkbox label {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #333 !important;
    line-height: 1.5 !important;
}

.cbb-gf-wrap .cbb-tc-checkbox .gfield_description {
    font-size: 0.95rem !important;
    color: #888 !important;
    margin-top: 8px !important;
    padding-left: 30px !important;
}

.cbb-gf-wrap .cbb-tc-checkbox .gfield_description a {
    color: #25adbb !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
}

/* Signature compact — smaller canvas */
.cbb-gf-wrap .cbb-sig-compact .ginput_container_signature canvas {
    height: 80px !important;
}

/* Signature pad — compact */
.cbb-gf-wrap .ginput_container_signature {
    padding: 0 !important;
}

.cbb-gf-wrap .ginput_container_signature canvas {
    border: 1px solid #d0d0d0 !important;
    border-radius: 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 120px !important;
}

.cbb-gf-wrap .ginput_container_signature .button-link {
    font-size: 1.5rem !important;
    color: #999 !important;
}

/* Submit button */
.cbb-gf-wrap .gform_footer {
    margin-top: 20px !important;
    padding: 0 !important;
}

.cbb-gf-wrap .gform_button,
.cbb-gf-wrap .gform_wrapper .gform_button {
    width: 100% !important;
    padding: 14px 24px !important;
    background: #25adbb !important;
    color: #191c26 !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    font-family: "Roboto Slab", serif !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: background 0.2s !important;
}

.cbb-gf-wrap .gform_button:hover {
    background: #b8923f !important;
}

/* Half/third column layout fixes for compact display */
.cbb-gf-wrap .gf_left_half {
    width: 48% !important;
    float: left !important;
    clear: left !important;
    margin-right: 4% !important;
}

.cbb-gf-wrap .gf_right_half {
    width: 48% !important;
    float: right !important;
    clear: none !important;
}

.cbb-gf-wrap .gf_left_third {
    width: 31% !important;
    float: left !important;
    clear: left !important;
    margin-right: 3.5% !important;
}

.cbb-gf-wrap .gf_middle_third {
    width: 31% !important;
    float: left !important;
    clear: none !important;
    margin-right: 3.5% !important;
}

.cbb-gf-wrap .gf_right_third {
    width: 31% !important;
    float: right !important;
    clear: none !important;
}

/* Clear floats after each row */
.cbb-gf-wrap .gform_fields li:after {
    content: '';
    display: block;
    clear: both;
}

/* GF validation messages — styled */
.cbb-gf-wrap .gfield_error .gfield_label {
    color: #c62828 !important;
}

.cbb-gf-wrap .validation_error {
    color: #c62828 !important;
    font-size: 1.5rem !important;
    margin-bottom: 16px !important;
    padding: 10px 14px !important;
    background: #ffebee !important;
    border-radius: 4px !important;
    border: 1px solid #ffcdd2 !important;
}

.cbb-gf-wrap .gfield_validation_message {
    font-size: 1.5rem !important;
    color: #c62828 !important;
    margin-top: 4px !important;
}

/* GF confirmation message — styled */
.cbb-gf-wrap .gform_confirmation_wrapper {
    padding: 20px !important;
    background: #e8f5e9 !important;
    border-radius: 4px !important;
    border: 1px solid #c8e6c9 !important;
}

.cbb-gf-wrap .gform_confirmation_message {
    color: #2e7d32 !important;
    font-size: 1.5rem !important;
    font-family: "Roboto Slab", serif !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cbb-gf-wrap .gf_left_half,
    .cbb-gf-wrap .gf_right_half,
    .cbb-gf-wrap .gf_left_third,
    .cbb-gf-wrap .gf_middle_third,
    .cbb-gf-wrap .gf_right_third {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
        clear: both !important;
    }
}


/* ═════════════════════════════════════════════════════ */
/* ARCHIVE / BOATS LISTING PAGE                         */
/* ═════════════════════════════════════════════════════ */

.cbb-archive-hero {
    position: relative;
    padding: 80px 0 64px;
    background: linear-gradient(135deg, #1a2433 0%, #2a3d4f 100%);
    text-align: center;
}

.cbb-archive-title {
    font-family: "Roboto Slab", serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.cbb-archive-subtitle {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* ── Filter Bar ── */
.cbb-filter-section {
    background: #f7f7f8;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.cbb-filter-form {
    width: 100%;
}

.cbb-filter-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    gap: 12px;
    align-items: center;
}

.cbb-filter-search {
    position: relative;
    
    
}

.cbb-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.cbb-search-input {
    width: 100%;
    padding: 11px 16px 11px 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
}

.cbb-search-input:focus {
    outline: none;
    border-color: #25adbb;
    box-shadow: 0 0 0 2px rgba(37,173,187,0.1);
}

.cbb-filter-select {
    padding: 11px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
}

.cbb-filter-select:focus {
    outline: none;
    border-color: #25adbb;
}

.cbb-filter-btn {
    padding: 11px 28px;
}

.cbb-filter-clear {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #666;
    text-decoration: none;
    margin-left: 4px;
}

.cbb-filter-clear:hover {
    color: #25adbb;
}

/* ── Boats Grid ── */
.cbb-boats-grid-section {
    padding: 32px 0 64px;
    background: #f7f7f8;
}

.cbb-result-count {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #666;
    margin: 0 0 20px;
}

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

/* ── Boat Card ── */
.cbb-boat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cbb-boat-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.cbb-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e8e8e8;
}

.cbb-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cbb-boat-card:hover .cbb-card-image img {
    transform: scale(1.05);
}

.cbb-card-no-img {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
}

.cbb-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(25,28,38,0.65);
    color: #fff;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.cbb-card-body {
    padding: 20px 22px 16px;
    flex: 1;
}

.cbb-card-title {
    font-family: "Roboto Slab", serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #191c26;
    margin: 0 0 8px;
    line-height: 1.3;
}

.cbb-card-desc {
    font-family: "Roboto Slab", serif;
    font-size: 1.65rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px;
}

.cbb-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cbb-card-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Roboto Slab", serif;
    font-size: 1.65rem;
    color: #555;
}

.cbb-card-spec svg {
    color: #25adbb;
    flex-shrink: 0;
    width: 20px !important;
    height: 20px !important;
}

.cbb-card-footer {
    padding: 0 22px 18px;
}

.cbb-card-cta {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #25adbb;
    transition: color 0.2s;
}

.cbb-boat-card:hover .cbb-card-cta {
    color: #1c8b96;
}

.cbb-no-results {
    text-align: center;
    padding: 60px 20px;
}

.cbb-no-results p {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #666;
    margin: 0 0 20px;
}

/* ── Archive Responsive ── */
@media (max-width: 1024px) {
    .cbb-boats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cbb-boats-grid {
        grid-template-columns: 1fr;
    }

    .cbb-archive-title {
        font-size: 2rem;
    }

    .cbb-filter-row {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cbb-filter-select,
    .cbb-filter-btn {
        width: 100%;
    }

    .cbb-filter-clear {
        text-align: center;
        display: block;
        margin-top: 4px;
    }
}

/* ═════════════════════════════════════════════════════ */
/* FONT FIXES — match existing site typography            */
/* Body: "Helvetica Neue", Helvetica, Arial, sans-serif   */
/* Headings: "Roboto Slab"                               */
/* Base: 14px body, line-height 1.43, color #333         */
/* ═════════════════════════════════════════════════════ */

/* Override small fonts throughout the boat template */
.cbb-boat-page,
.cbb-boat-page p,
.cbb-boat-page li,
.cbb-boat-page td,
.cbb-boat-page th,
.cbb-boat-page label,
.cbb-boat-page span,
.cbb-boat-page div,
.cbb-boat-page a,
.cbb-boat-page button,
.cbb-boat-page input,
.cbb-boat-page select,
.cbb-boat-page textarea {
    font-family: "Roboto Slab", serif;
}

.cbb-boat-page h1,
.cbb-boat-page h2,
.cbb-boat-page h3,
.cbb-boat-page h4,
.cbb-boat-page h5,
.cbb-boat-page h6,
.cbb-section-title,
.cbb-tab-rate-title,
.cbb-boat-name,
.cbb-card-title,
.cbb-archive-title {
    font-family: "Roboto Slab", serif;
}

/* Bump up font sizes to match site baseline */
.cbb-spec-label,
.cbb-spec-item-label,
.cbb-tags-label {
    font-size: 1.5rem !important;
}

.cbb-spec-value,
.cbb-spec-item-value {
    font-size: 1.5rem !important;
}

.cbb-spec-row,
.cbb-spec-item {
    font-size: 1.5rem !important;
}

.cbb-sidebar-link,
.cbb-sidebar-link span {
    font-size: 1.5rem !important;
}

.cbb-price-from {
    font-size: 1.5rem !important;
}

.cbb-price-unit {
    font-size: 1.5rem !important;
    color: #777 !important;
}

.cbb-boat-name {
    font-size: 1.75rem !important;
    font-weight: 400 !important;
}

.cbb-section-title {
    font-size: 3rem !important;
    font-weight: 400 !important;
}

.cbb-tab-rate-title {
    font-size: 1.75rem !important;
    font-weight: 400 !important;
}

.cbb-cta-title {
    font-size: 1.75rem !important;
    font-weight: 400 !important;
}

.cbb-description-text p {
    font-size: 1.5rem !important;
    line-height: 1.6 !important;
    color: #444 !important;
}

.cbb-faq-question {
    font-size: 1.5rem !important;
}

.cbb-faq-answer p {
    font-size: 1.5rem !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

/* Gallery counter + arrows */
.cbb-gallery-counter {
    font-size: 1.5rem;
}

/* Tabs nav */
.cbb-tab-nav-item {
    font-size: 1.5rem !important;
}

/* ── Sidebar Price Block (both rates) ── */
.cbb-sidebar-desc {
    font-family: "Roboto Slab", serif;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 8px 0 14px;
}

.cbb-price-block {
    margin: 8px 0 0;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.cbb-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.cbb-price-row:last-child {
    margin-bottom: 0;
}

.cbb-price-label {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    color: #555;
}

.cbb-price-value {
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #191c26;
}


/* ═══════════════════════════════════════════════════ */
/* FEATURED BOAT SECTION (full-width, image left)       */
/* ═══════════════════════════════════════════════════ */
.cbb-featured-boat {
    padding: 48px 0 32px;
    background: #f7f7f8;
}

.cbb-featured-boat-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
    max-width: 100%;
}

.cbb-featured-image {
    position: relative;
    min-height: 380px;
    background: #191c26;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbb-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cbb-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.cbb-featured-flag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #25adbb;
    color: #191c26;
    font-family: "Roboto Slab", serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.cbb-featured-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cbb-featured-title {
    font-family: "Roboto Slab", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #191c26;
    margin: 0 0 14px;
    line-height: 1.15;
}

.cbb-featured-desc {
    font-size: 1.35rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 480px;
}

.cbb-featured-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 32px;
}

.cbb-featured-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #191c26;
    font-family: "Roboto Slab", serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.cbb-featured-spec svg {
    color: #25adbb;
    flex-shrink: 0;
    width: 22px !important;
    height: 22px !important;
}

.cbb-featured-cta {
    align-self: flex-start;
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Other boats grid heading */
.cbb-boats-grid-section .cbb-result-count {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .cbb-featured-boat-card {
        grid-template-columns: 1fr;
    }
    .cbb-featured-image {
        min-height: 260px;
    }
    .cbb-featured-body {
        padding: 32px 24px;
    }
    .cbb-featured-title {
        font-size: 1.9rem;
    }
    .cbb-featured-desc {
        font-size: 1.35rem;
    }
    .cbb-featured-specs {
        gap: 16px;
    }
    .cbb-featured-spec {
        font-size: 1.15rem;
    }
}

/* Hide the filter section */
.cbb-filter-section {
    display: none !important;
}
