/* ================================================================
   Single Boat Detail Page
   ================================================================ */

.single-boat__hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.single-boat__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-boat__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(27,58,92,0.7));
}

.single-boat__hero-content {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
}

.single-boat__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 0.75rem;
}

.single-boat__hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.single-boat__hero-meta span {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ── Body ──────────────────────────────────────────────────────── */
.single-boat__body {
    padding: 4rem 0 6rem;
}

/* ── Gallery ───────────────────────────────────────────────────── */
.single-boat__gallery {
    margin-bottom: 3rem;
}

.single-boat__gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.single-boat__gallery-item {
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.single-boat__gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.single-boat__gallery-item:hover img {
    transform: scale(1.05);
}

/* ── Layout ────────────────────────────────────────────────────── */
.single-boat__layout {
    display: grid;
    margin-top: 70px;
    margin-bottom: 70px;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.single-boat__section {
    margin-bottom: 3.5rem;
}

.single-boat__section:last-child {
    margin-bottom: 0;
}

.single-boat__section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1B3A5C;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #C4A265;
}

.single-boat__content {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* ── Specs ──────────────────────────────────────────────────────── */
.single-boat__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.single-boat__spec {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
}

.single-boat__spec:nth-child(odd) {
    background: #F8F6F1;
}

.single-boat__spec-label {
    font-weight: 600;
    color: #1B3A5C;
    font-size: 0.9rem;
}

.single-boat__spec-value {
    color: #333;
    font-size: 0.9rem;
}

/* ── Pricing Table ─────────────────────────────────────────────── */
.single-boat__pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.75rem;
}

.single-boat__pricing-table th,
.single-boat__pricing-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.single-boat__pricing-table th {
    background: #1B3A5C;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-boat__pricing-table tbody tr:nth-child(odd) {
    background: #F8F6F1;
}

.single-boat__pricing-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin: 1rem 0 0;
}

/* ── Sidebar CTA Card ──────────────────────────────────────────── */
.single-boat__sidebar {
    position: sticky;
    top: 100px;
}

.single-boat__cta-card {
    background: #fff;
    border: 2px solid #1B3A5C;
    border-radius: 16px;
    padding: 2.25rem;
    text-align: center;
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
}

.single-boat__cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1B3A5C;
    margin: 0 0 1rem;
}

.single-boat__cta-boat-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    object-fit: cover;
}

.single-boat__cta-price {
    margin-bottom: 1.25rem;
}

.single-boat__cta-from {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-boat__cta-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #C4A265;
}

.single-boat__cta-unit {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.single-boat__cta-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #C4A265;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: background 0.25s ease;
}

.single-boat__cta-btn:hover {
    background: #b08e4f;
}

.single-boat__cta-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    text-align: left;
}

.single-boat__cta-includes li {
    font-size: 0.85rem;
    color: #444;
    padding: 0.3rem 0;
}

.single-boat__cta-phone {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.single-boat__cta-phone a {
    color: #C4A265;
    font-weight: 600;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .single-boat__body {
        padding: 2.5rem 0 4rem;
    }

    .single-boat__layout {
        grid-template-columns: 1fr;
    }

    .single-boat__sidebar {
        position: static;
    }

    .single-boat__specs {
        grid-template-columns: 1fr;
    }

    .single-boat__title {
        font-size: 1.75rem;
    }
}
