/* =========================================
   DETAIL BOAT - COMPACT / CUTE
========================================= */

.boat-detail-page {
    padding: 28px 0 70px;
    background: #f6f8fb;
    min-height: calc(100vh - 100px);
}

.boat-detail-card {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,.07);
}

/* IMAGE */

.boat-detail-image {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.boat-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.boat-detail-status {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    color: #16803c;
    padding: 6px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(0,0,0,.12);
}

.boat-detail-status i {
    margin-right: 4px;
}

/* CONTENT */

.boat-detail-content {
    padding: 24px;
}

.boat-detail-category {
    display: inline-block;
    background: #eef5ff;
    color: #0b74de;
    padding: 5px 10px;
    border-radius: 18px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
}

.boat-detail-content h1 {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f2937;
}

.boat-detail-route {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
    color: #555;
    font-size: 13px;
    flex-wrap: wrap;
}

.boat-detail-route span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.boat-detail-route span i {
    color: #0b74de;
    font-size: 12px;
}

.boat-detail-route > i {
    color: #aaa;
    font-size: 12px;
}

/* INFO */

.boat-detail-info {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.boat-detail-info > div {
    min-width: 145px;
    padding: 13px;
    border: 1px solid #edf0f4;
    border-radius: 10px;
    background: #fafbfc;
}

.boat-detail-info i {
    display: block;
    color: #0b74de;
    font-size: 17px;
    margin-bottom: 6px;
}

.boat-detail-info small {
    display: block;
    color: #888;
    font-size: 10px;
    margin-bottom: 3px;
}

.boat-detail-info strong {
    display: block;
    color: #222;
    font-size: 13px;
}

/* DESKRIPSI */

.boat-description {
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.boat-description h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #222;
}

.boat-description h3 i {
    color: #0b74de;
    margin-right: 6px;
}

.boat-description p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

/* INFO ANAK */

.boat-child-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 11px 13px;
    background: #fff8e8;
    border: 1px solid #ffe2a8;
    border-radius: 9px;
    color: #765800;
}

.boat-child-note > i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #e6a400;
    font-size: 14px;
}

.boat-child-note span {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 11px;
    line-height: 1.5;
}

.boat-child-note strong {
    font-size: 11px;
    color: #5f4800;
}

.boat-child-note b {
    color: #16803c;
    font-weight: 800;
}

/* BUTTON */

.boat-detail-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.btn-back-boat,
.btn-book-boat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 9px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
    white-space: nowrap;
}

.btn-back-boat {
    background: #f1f3f5;
    color: #555;
}

.btn-back-boat:hover {
    background: #e5e7eb;
    color: #333;
}

.btn-book-boat {
    background: #0b74de;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(11,116,222,.20);
}

.btn-book-boat:hover {
    background: #095fb5;
    color: #fff !important;
    transform: translateY(-1px);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .boat-detail-page {
        padding: 16px 0 70px;
    }

    .boat-detail-card {
        border-radius: 13px;
    }

    .boat-detail-image {
        height: 210px;
    }

    .boat-detail-status {
        top: 10px;
        right: 10px;
        padding: 5px 9px;
        font-size: 10px;
    }

    .boat-detail-content {
        padding: 17px;
    }

    .boat-detail-category {
        padding: 4px 9px;
        font-size: 9px;
    }

    .boat-detail-content h1 {
        font-size: 22px;
    }

    .boat-detail-route {
        gap: 8px;
        margin-top: 10px;
        font-size: 12px;
    }

    .boat-detail-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 18px;
    }

    .boat-detail-info > div {
        min-width: 0;
        padding: 11px;
        border-radius: 9px;
    }

    .boat-detail-info i {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .boat-detail-info small {
        font-size: 9px;
    }

    .boat-detail-info strong {
        font-size: 12px;
    }

    .boat-description {
        margin-top: 19px;
        padding-top: 17px;
    }

    .boat-description h3 {
        font-size: 14px;
    }

    .boat-description p {
        font-size: 12px;
        line-height: 1.65;
    }

    .boat-child-note {
        margin-top: 13px;
        padding: 10px 11px;
        gap: 9px;
        border-radius: 8px;
    }

    .boat-child-note > i {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 13px;
    }

    .boat-child-note span {
        font-size: 10px;
    }

    .boat-child-note strong {
        font-size: 10px;
    }

    .boat-detail-actions {
        flex-direction: row;
        gap: 7px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .btn-back-boat,
    .btn-book-boat {
        width: auto;
        flex: 1;
        min-width: 0;
        min-height: 40px;
        padding: 0 8px;
        border-radius: 8px;
        font-size: 11px;
        gap: 5px;
    }
}