.boat-details {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

/* Carousel */
.boat-carousel {
    position: relative;
    flex: 1 1 500px;
    overflow: hidden;
    border-radius: var(--radius);
    max-height: 520px;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .slide {
    min-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}

/* Navigation Buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.65);
    color: white;
    border: none;
    font-size: 22px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.nav.left  { left: 14px; }
.nav.right { right: 14px; }

.nav:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-50%) scale(1.08);
}

/* Rechte Spalte: Infos */
.boat-info {
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.boat-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    letter-spacing: -1px;
}

.boat-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

.boat-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.boat-specs div {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: var(--dark);
    border: 1px solid var(--border);
}

.boat-cta {
    margin-top: 8px;
    padding: 16px 28px;
    font-size: 16px;
    text-align: center;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.25);
}

.boat-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .boat-specs { grid-template-columns: 1fr; }
    .boat-title { letter-spacing: -0.5px; }
    .boat-carousel { flex: 1 1 100%; max-height: 380px; }
    .boat-details { gap: 32px; }
}
