.river-cruise-ship-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.river-cruise-ship-header {
    margin-bottom: 30px;
}

.river-cruise-ship-header h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.river-cruise-ship-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

/* Deck Plan View Toggle */
.deck-plan-view-toggle {
    margin-bottom: 30px;
    text-align: center;
}

.deck-plan-toggle-btn {
    padding: 10px 20px;
    margin: 0 5px;
    border: 2px solid #0073aa;
    background: #fff;
    color: #0073aa;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.deck-plan-toggle-btn:hover {
    background: #f0f0f0;
}

.deck-plan-toggle-btn.active {
    background: #0073aa;
    color: #fff;
}

/* Complete Deck Plan View */
.complete-deck-plan-view {
    margin-bottom: 30px;
}

.complete-deck-plan-container {
    text-align: center;
    margin-bottom: 30px;
}

.complete-deck-plan-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Two-column layout */
.decks-layout-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Left Panel: Deck Selector */
.deck-selector-panel {
    width: 250px;
    flex-shrink: 0;
}

.deck-selector-title {
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.deck-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deck-list li {
    margin: 0;
    margin-bottom: 2px;
}

.deck-list-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #666;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 14px;
    cursor: pointer;
}

.deck-list-item:hover {
    background: #e0e0e0;
    color: #333;
}

.deck-list-item.active {
    background: #b3d9f2;
    color: #0066cc;
    font-weight: 500;
}

/* Right Panel: Deck Plan */
.deck-plan-panel {
    flex: 1;
    min-width: 0;
}

.river-cruise-deck-plan {
    width: 100%;
}

.river-cruise-deck-canvas {
    width: 100%;
    background: #f0f0f0;
    border-radius: 0;
    padding: 20px 0;
    margin-bottom: 20px;
    overflow-x: auto;
}

/* Deck Plan Image Container */
.deck-plan-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

.deck-plan-base-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.deck-plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deck-plan-overlay > * {
    pointer-events: auto;
}

.deck-plan-base-image {
    display: block;
    width: 100%;
    height: auto;
}

.deck-plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.river-cruise-cabin-overlay {
    pointer-events: auto;
    border: none !important;
    opacity: 1; /* Available overlay cabins are fully opaque */
}

/* Hide any cabin numbers in overlay - they're already in the image */
.river-cruise-cabin-overlay .cabin-number,
.river-cruise-cabin-overlay span,
.river-cruise-cabin-overlay::before,
.river-cruise-cabin-overlay::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.river-cruise-cabin-overlay:hover {
    opacity: 0.4 !important;
    transform: translate(-50%, -50%) scale(1.05);
    z-index: 1000 !important;
    border: none !important;
}

.river-cruise-cabin-overlay.selected {
    opacity: 0.5 !important;
    border: none !important;
    z-index: 25 !important;
}

.river-cruise-cabin-overlay[data-status="reserved"] {
    opacity: 0.7 !important;
    cursor: not-allowed;
}

.river-cruise-cabin-overlay[data-status="maintenance"] {
    opacity: 0.25 !important;
    cursor: not-allowed;
    border: none !important;
}

/* Ship Shape Layout - Blueprint Style */
.ship-shape {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-width: 800px;
    padding: 20px 0;
    gap: 0;
    margin: 0;
}

/* Stern (Left) - Slightly flattened curve */
.ship-stern {
    width: 40px;
    flex-shrink: 0;
    display: flex;
    margin: 0;
    margin-right: -2px; /* Overlap to remove gap */
}

.stern-shape {
    width: 100%;
    height: 100%;
    background-color: #b0cace;
    border: 2px solid #000;
    border-right: none; /* Remove right border to connect with body */
    border-radius: 50% 0 0 50% / 80% 0 0 80%; /* Flatter curve */
    margin: 0;
    box-sizing: border-box;
}

/* Ship Body (Center) */
.ship-body {
    flex: 1;
    background-color: #b0cace;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    border-left: none; /* Remove left border - connected to stern */
    border-right: none; /* Remove right border - connected to bow */
    padding: 0;
    position: relative;
    margin: 0;
    margin-left: -2px; /* Overlap with stern */
    margin-right: -2px; /* Overlap with bow */
    box-sizing: border-box;
}

/* Remove subtle corridor lines from modern design */
.ship-body::before,
.ship-body::after {
    display: none;
}

/* Bow (Right) - Long bullet shape */
.ship-bow {
    width: 160px; /* Longer */
    flex-shrink: 0;
    display: flex;
    margin: 0;
    margin-left: -2px; /* Overlap to remove gap */
}

.bow-shape {
    width: 100%;
    height: 100%;
    background-color: #b0cace;
    border: 2px solid #000;
    border-left: none; /* Remove left border to connect with body */
    border-radius: 0 100% 100% 0 / 0 50% 50% 0; /* Bullet shape */
    margin: 0;
    box-sizing: border-box;
}

/* Horizontal deck plan layout */
.deck-plan-layout-horizontal {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    justify-content: center; /* Center vertically */
    padding: 0;
}

.deck-row {
    display: flex;
    flex-direction: row;
    gap: 0; /* No gap between cabins */
    align-items: center;
    justify-content: flex-end; /* Push cabins to the right (bow) */
    flex-wrap: nowrap;
    height: 50px;
    padding-right: 20px; /* Space before bow */
}

.port-row {
    align-items: flex-end; /* Bottom align to touch corridor */
    margin-bottom: 0;
}

.starboard-row {
    align-items: flex-start; /* Top align to touch corridor */
    margin-top: 0;
}

/* Corridor */
.deck-corridor-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end; /* Align elements to the right */
    gap: 0;
    height: 20px;
    background-color: transparent; /* Match ship body */
    padding-right: 20px;
}

.corridor-area {
    flex: 1;
    height: 100%;
    /* No distinct background color */
}

.deck-lift {
    width: 25px;
    height: 20px;
    background-color: #e74c3c; /* Red lift */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: normal;
    border: 1px solid #000;
    flex-shrink: 0;
    margin-right: 25px; /* Spacing from stairs */
}

.deck-stairs {
    width: 30px;
    height: 25px; /* Overlap slightly */
    position: relative;
    border: none;
    margin-right: 10px;
}

.stairs-icon {
    width: 100%;
    height: 100%;
    background: transparent;
    /* Simple stairs icon using border/lines could go here, keeping hatched pattern for now */
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        #666 2px,
        #666 3px
    );
    border-radius: 0 15px 15px 0; /* Curved stairs shape hint */
    border: 1px solid #666;
    border-left: none;
}

/* Cabins */
.river-cruise-cabin {
    width: 28px; /* Narrow */
    height: 50px; /* Tall */
    border: 1px solid #000;
    border-right: none; /* Shared borders */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background-color: #e68aace; /* Default pink from screenshot */
    color: #000;
    font-weight: normal;
    font-size: 10px;
    position: relative;
    flex-shrink: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    box-shadow: none;
    border-radius: 0;
    opacity: 0 /* Available cabins are fully opaque */
}

.river-cruise-cabin:first-child {
    border-right: 1px solid #000; /* Right-most cabin (first in DOM due to flex-direction) needs border */
}

.river-cruise-cabin:last-child {
    border-left: 1px solid #000;
}

/* Colors matching screenshot */
/* Pink: #d685a8, Purple: #a89bb0, Orange: #eeb075 */

.river-cruise-cabin:hover {
    background-color: #fff !important;
    z-index: 10;
    box-shadow: none;
    border: 1px solid #000;
}

.river-cruise-cabin.selected {
    background-color: #fff !important;
    box-shadow: inset 0 0 0 2px #ff6b6b;
}

.river-cruise-cabin[data-status="reserved"] {
    opacity: 0.7;
    cursor: not-allowed;
}

.river-cruise-cabin[data-status="maintenance"] {
    background-color: #95a5a6 !important;
    opacity: 0.7;
    cursor: not-allowed;
}

.river-cruise-cabin .cabin-number {
    pointer-events: none;
    text-align: center;
    line-height: 1;
}

/* Deck Legend */
.deck-legend {
    margin-top: 20px;
    padding: 0;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    display: inline-block;
    width: 25px;
    height: 18px;
    border: 1px solid #333;
    border-radius: 2px;
    flex-shrink: 0;
}

.legend-label {
    font-size: 14px;
    color: #333;
}

/* Modal Styles */
.river-cruise-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.river-cruise-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

.river-cruise-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.river-cruise-modal-close:hover,
.river-cruise-modal-close:focus {
    color: #000;
}

.reservation-cabin-info {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.reservation-cabin-info h3 {
    margin: 0 0 10px 0;
    color: #0073aa;
}

.reservation-cabin-info p {
    margin: 0;
    color: #666;
}

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

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="number"],
.form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-row textarea {
    resize: vertical;
}

.form-row button {
    margin-right: 10px;
}

.reservation-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.reservation-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.reservation-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Reservation form refresh - modern and more user friendly */
.river-cruise-modal {
    backdrop-filter: blur(2px);
}

.river-cruise-modal-content {
    background: #ffffff !important;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
    max-height: 86vh;
    overflow-y: auto;
}

.river-cruise-modal-content h2 {
    margin: 0 36px 20px 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.river-cruise-modal-close {
    color: #6b7280;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
}

.river-cruise-modal-close:hover,
.river-cruise-modal-close:focus {
    color: #111827;
    background: #f3f4f6;
}

#reservation-form {
    display: grid;
    gap: 14px;
}

#reservation-form .form-row {
    margin-bottom: 0;
}

#reservation-form .form-row label {
    margin-bottom: 6px;
    font-size: 0.96rem;
    font-weight: 600;
    color: #1f2937 !important;
}

#reservation-form input[type="text"],
#reservation-form input[type="email"],
#reservation-form input[type="tel"],
#reservation-form input[type="date"],
#reservation-form input[type="number"],
#reservation-form select,
#reservation-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.35;
    background: #ffffff !important;
    color: #111827 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#reservation-form textarea {
    min-height: 96px;
}

#reservation-form input::placeholder,
#reservation-form textarea::placeholder {
    color: #9ca3af;
}

#reservation-form input:focus,
#reservation-form select:focus,
#reservation-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

#reservation-form .button {
    min-height: 44px;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 18px;
}

#reservation-form .button.button-primary {
    background: #2563eb;
    border-color: #2563eb;
}

#reservation-form .button.button-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.reservation-cabin-info {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 4px;
}

.reservation-cabin-info h3 {
    color: #1e3a8a !important;
    font-size: 1.45rem;
    margin: 0 0 4px 0;
}

.reservation-cabin-info p {
    color: #334155 !important;
    margin: 0;
}

#additional-guests-container .additional-guest,
#extra-bed-guest-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
}

#additional-guests-container .additional-guest h4,
#extra-bed-guest-container h4 {
    margin: 0 0 10px 0 !important;
    color: #0f172a;
}

.cruise-dates-info {
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
    border-radius: 12px !important;
    color: #1e3a8a;
}

/* Force visible number arrows (spinner) despite theme overrides */
#reservation-form input[type="number"] {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    -moz-appearance: auto !important;
    padding-right: 10px;
}

#reservation-form input[type="number"]::-webkit-outer-spin-button,
#reservation-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button !important;
    appearance: auto !important;
    opacity: 1 !important;
    display: block !important;
    margin: 0;
}

@supports (-moz-appearance: auto) {
    #reservation-form input[type="number"] {
        -moz-appearance: number-input !important;
    }
}


/* Shared dining preferences – prominent, user-friendly box */
.river-cruise-dining-preferences-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.river-cruise-dining-preferences-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.river-cruise-dining-icon {
    font-size: 1.4em;
    line-height: 1;
}

.river-cruise-dining-title {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #212529;
}

.river-cruise-dining-description {
    margin: 0 0 12px 0;
    font-size: 0.95em;
    color: #495057;
    line-height: 1.45;
}

.river-cruise-dining-preferences-box textarea {
    width: 100%;
    min-height: 72px;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
}

.river-cruise-dining-preferences-box textarea:focus {
    border-color: #0d6efd;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.river-cruise-dining-preferences-box .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Allergen link and modal */
.form-row-allergens {
    margin-bottom: 12px;
}

.river-cruise-allergen-link {
    background: none;
    border: 1px solid #0073aa;
    color: #0073aa;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.river-cruise-allergen-link:hover {
    background: #0073aa;
    color: #fff;
}

.river-cruise-allergen-modal {
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.river-cruise-allergen-modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 24px;
    border: 1px solid #ddd;
    width: 90%;
    max-width: 560px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.river-cruise-allergen-modal-close {
    color: #999;
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.river-cruise-allergen-modal-close:hover {
    color: #333;
}

#allergen-modal-title {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    color: #333;
}

.allergen-modal-hint {
    margin: 0 0 16px 0;
    color: #666;
    font-size: 13px;
}

.allergen-modal-list {
    max-height: 50vh;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 8px;
}

.allergen-checkbox-label {
    display: block;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 14px;
}

.allergen-checkbox-label:last-child {
    border-bottom: none;
}

.allergen-checkbox-label input {
    margin-right: 10px;
    vertical-align: middle;
}

.allergen-modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.allergen-modal-actions .button {
    margin: 0;
}

/* HTML Deck Plan Styles */
.html-deck-plan-container {
    width: 100%;
    margin-bottom: 30px;
}

.deck-plan-canvas {
    position: relative;
    background: #f5f5f5;
    border: 2px solid #333;
    min-height: 400px;
    overflow: visible;
}

.deck-corridor {
    background: #ddd;
    border: 1px solid #999;
    z-index: 1;
}

.deck-public-area {
    background: #e8f4f8;
    border: 2px solid #0073aa;
    z-index: 2;
    padding: 5px;
    box-sizing: border-box;
    word-wrap: break-word;
    text-align: center;
}

.deck-stairs {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        #666 2px,
        #666 3px
    );
    border: 1px solid #666;
    z-index: 3;
}

.deck-elevator {
    background: #e74c3c;
    border: 2px solid #000;
    z-index: 3;
}

.html-cabin {
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.html-cabin:hover {
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .decks-layout-wrapper {
        flex-direction: column;
    }
    
    .deck-selector-panel {
        width: 100%;
    }
    
    .deck-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .deck-list li {
        margin: 0;
    }
    
    .river-cruise-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .river-cruise-deck-canvas {
        padding: 10px;
    }
    
    .river-cruise-cabin {
        width: 40px;
        height: 35px;
        font-size: 9px;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .deck-plan-canvas {
        min-height: 300px;
    }
}

/* Ships list gallery – shortcode [river_cruise_ships_list] */
.river-cruise-ships-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
}

.river-cruise-ships-gallery--empty {
    display: block;
    padding: 32px 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    color: #555;
}

.river-cruise-ship-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 120px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: #333;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.river-cruise-ship-card:hover {
    border-color: #0073aa;
    box-shadow: 0 4px 16px rgba(0, 115, 170, 0.15);
    transform: translateY(-2px);
}

.river-cruise-ship-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.river-cruise-ship-card__link:hover {
    color: #0073aa;
}

.river-cruise-ship-card__image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
    overflow: hidden;
}

.river-cruise-ship-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.river-cruise-ship-card .river-cruise-ship-card__name,
.river-cruise-ship-card .river-cruise-ship-card__meta {
    padding: 0 24px;
}

.river-cruise-ship-card .river-cruise-ship-card__name {
    padding-top: 16px;
}

.river-cruise-ship-card .river-cruise-ship-card__meta {
    padding-bottom: 16px;
}

.river-cruise-ship-card__reservations-btn {
    display: block;
    margin: 0 16px 16px;
    padding: 10px 16px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.river-cruise-ship-card__reservations-btn:hover {
    background: #005a87;
    color: #fff;
}

.river-cruise-ship-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.river-cruise-ship-card__meta {
    font-size: 0.9rem;
    color: #666;
}

.river-cruise-ship-card__link:hover .river-cruise-ship-card__meta {
    color: #555;
}

@media (max-width: 600px) {
    .river-cruise-ships-gallery {
        grid-template-columns: 1fr;
        padding: 16px 0;
    }

    .river-cruise-ship-card {
        min-height: 100px;
    }

    .river-cruise-ship-card .river-cruise-ship-card__name,
    .river-cruise-ship-card .river-cruise-ship-card__meta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .river-cruise-ship-card .river-cruise-ship-card__meta {
        padding-bottom: 20px;
    }
}
