  .boat-section-box {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
  }

  .boat-small-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #888;
    margin: 0 0 1rem;
    text-transform: uppercase;
  }

  /* Grid */
  .boat-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }

  /* Card — seluruh kartu jadi tombol */
  .boat-card-small {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
  }

  .boat-card-small:hover,
  .boat-card-small:focus-visible {
    border-color: #5DCAA5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 158, 117, 0.14);
  }

  /* Image wrapper + hover overlay */
  .boat-image-small {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #E1F5EE;
    position: relative;
    display: block;
  }

  .boat-image-small svg,
  .boat-image-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Hint overlay "Lihat Interior" */
  .tb-hover-hint {
    position: absolute;
    inset: 0;
    background: rgba(8, 80, 65, 0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
    letter-spacing: 0.02em;
  }

  .boat-card-small:hover .tb-hover-hint,
  .boat-card-small:focus-visible .tb-hover-hint {
    opacity: 1;
  }

  /* Card content */
  .boat-content-small {
    padding: 11px 13px 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .boat-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 99px;
    background: #E1F5EE;
    color: #0F6E56;
    letter-spacing: 0.03em;
    width: fit-content;
  }

  .boat-content-small h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
  }

  .boat-capacity {
    font-size: 12px;
    color: #888;
    margin: 0;
  }

  /* Modal backdrop */
  .tb-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
  }

  .tb-modal-backdrop.active {
    display: flex;
  }

  /* Modal box */
  .tb-modal-box {
    background: #fff;
    border-radius: 14px;
    width: min(620px, 100%);
    overflow: hidden;
    position: relative;
    animation: tb-in 0.22s cubic-bezier(0.34, 1.4, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }

  @keyframes tb-in {
    from { opacity: 0; transform: scale(0.93) translateY(12px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
  }

  /* Tombol tutup — floating di pojok gambar */
  .tb-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: background 0.15s ease, transform 0.15s ease;
    backdrop-filter: blur(4px);
  }

  .tb-modal-close:hover {
    background: #fff;
    transform: scale(1.08);
  }

  /* Gambar utama — 16:9, full width */
  .tb-modal-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #C8EDE2;
    display: block;
  }

  .tb-modal-img-wrap svg,
  .tb-modal-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Caption bar */
  .tb-modal-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 10px;
    border-top: 1px solid #f0f0f0;
  }

  .tb-modal-caption-left {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
  }

  .tb-modal-caption-left strong {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tb-capacity-tag {
    font-size: 12px;
    color: #0F6E56;
    background: #E1F5EE;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .boat-grid-small { grid-template-columns: 1fr; }
    .tb-modal-caption-left strong { font-size: 13px; }
  }
