/* ============================================
   PAGE CRUISE - Styles spécifiques
   ============================================ */

.cruise-page {
    background: #f8f9fa;
}

/* Breadcrumb */
.cruise-breadcrumb {
    padding-top: 0.5rem;
    padding-bottom: 0;
}

.cruise-breadcrumb .breadcrumb {
    margin-bottom: 0;
    padding: 0.25rem 0;
}

body:has(.cruise-page) .user-account-bar {
    top: 205px;
}

body:has(.cruise-page) .user-account-bar.sticky-scrolled {
    top: 20px;
}

body:has(.cruise-page) .share-bar {
    top: 35px;
}

body:has(.cruise-page) .share-bar.sticky-scrolled {
    top: -145px;
}

.cruise-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: url('/img/bois.png') center center;
    background-size: cover;
    margin-bottom: 32px;
}

/* Patchwork - effet photos éparpillées */
.cruise-hero-patchwork {
    position: absolute;
    inset: 0;
}

.patchwork-tile {
    position: absolute;
    width: 280px;
    height: 200px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
    border: 8px solid rgba(255,255,255,0.9);
    transition: all 0.5s ease;
}

/* Fond blanc pour les logos de compagnies */
.patchwork-tile.patchwork-logo {
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Positionnement éparpillé des photos */
.patchwork-tile:nth-child(1) {
    top: 5%; left: 8%;
    transform: rotate(-8deg) scale(1.1);
    z-index: 5;
}
.patchwork-tile:nth-child(2) {
    top: 10%; left: 25%;
    transform: rotate(5deg) scale(1.05);
    z-index: 3;
}
.patchwork-tile:nth-child(3) {
    top: 8%; right: 15%;
    transform: rotate(-3deg) scale(1.15);
    z-index: 7;
}
.patchwork-tile:nth-child(4) {
    top: 22%; left: 50%;
    transform: rotate(12deg) scale(1.0);
    z-index: 4;
}
.patchwork-tile:nth-child(5) {
    top: 35%; left: 5%;
    transform: rotate(-12deg) scale(1.08);
    z-index: 6;
}
.patchwork-tile:nth-child(6) {
    top: 40%; left: 30%;
    transform: rotate(4deg) scale(1.12);
    z-index: 2;
}
.patchwork-tile:nth-child(7) {
    top: 35%; right: 8%;
    transform: rotate(-6deg) scale(1.0);
    z-index: 8;
}
.patchwork-tile:nth-child(8) {
    top: 48%; left: 62%;
    transform: rotate(9deg) scale(1.06);
    z-index: 3;
}
.patchwork-tile:nth-child(9) {
    bottom: 15%; left: 12%;
    transform: rotate(-15deg) scale(1.1);
    z-index: 4;
}
.patchwork-tile:nth-child(10) {
    bottom: 12%; left: 42%;
    transform: rotate(7deg) scale(1.05);
    z-index: 5;
}
.patchwork-tile:nth-child(11) {
    bottom: 18%; right: 12%;
    transform: rotate(-4deg) scale(1.08);
    z-index: 6;
}
.patchwork-tile:nth-child(12) {
    bottom: 5%; right: 35%;
    transform: rotate(11deg) scale(1.0);
    z-index: 2;
}

/* Effet hover sur les photos */
.patchwork-tile:hover {
    transform: rotate(0deg) scale(1.3) !important;
    z-index: 20 !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
}

/* Overlay opacifiant pour le contraste */
.cruise-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.75) 100%
    );
    backdrop-filter: blur(0.5px);
    display: flex;
    align-items: flex-end;
    padding: 3rem 0;
    z-index: 10;
}

.cruise-hero-content {
    color: white;
    position: relative;
    z-index: 15;
}

.cruise-theme-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cruise-hero h1 {
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.cruise-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.meta-item i {
    font-size: 1.3rem;
}

.cruise-line-logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cruise-hero-price {
    display: inline-flex;
    flex-direction: column;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cruise-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin: 3rem 0;
}

.cruise-main {
    min-width: 0;
}

.cruise-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cruise-section h2 {
    margin: 0 0 1.5rem 0;
    color: #2d3748;
}

.section-subtitle {
    color: #718096;
    margin-bottom: 2rem;
}

.cruise-description {
    line-height: 1.8;
    color: #4a5568;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 180px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 60px;
    bottom: -30px;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #e2e8f0);
}

.timeline-marker {
    text-align: center;
}

.timeline-day {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.timeline-day small {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.15rem;
}

.timeline-image {
    display: flex;
    align-items: center;
}

.port-image {
    width: 180px;
    height: 120px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 3px solid #fff;
}

.port-image-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 2rem;
}

.port-image-sea {
    background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
    color: #0369a1;
}

.timeline-content {
    padding: 1rem 0;
}

.timeline-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-content h3 i {
    color: #667eea;
}

.port-country {
    color: #718096;
    margin: 0 0 1rem 0;
}

.port-times {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.time-info i {
    color: #667eea;
}

.port-description {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Port tips (conseils horaires) */
.port-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.port-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.port-tip i {
    font-size: 0.9rem;
}

.tip-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.tip-warning i {
    color: #f39c12;
}

.tip-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tip-success i {
    color: #28a745;
}

.tip-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.tip-info i {
    color: #17a2b8;
}

/* Journée en mer styling */
.timeline-item-sea .timeline-day {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.timeline-item-sea .timeline-content {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px dashed #bae6fd;
}

.timeline-item-sea .timeline-content h3 {
    color: #0c4a6e;
}

.timeline-item-sea .timeline-content h3 i {
    color: #3b82f6;
}

.timeline-item-sea .port-description {
    color: #0c4a6e;
    font-style: italic;
}

/* Info journées en mer */
.sea-days-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.sea-days-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.sea-days-content h4 {
    margin: 0 0 0.75rem 0;
    color: #0c4a6e;
    font-size: 1.2rem;
}

.sea-days-content p {
    margin: 0;
    color: #0c4a6e;
    line-height: 1.6;
}

/* Cabins Grid */
.cabins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cabin-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.cabin-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.cabin-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cabin-card h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    color: #2d3748;
}

.cabin-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cabin-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.amenity-badge {
    background: #f0f4ff;
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cabin-size {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

/* Ship Info Card */
.ship-info-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
}

.ship-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ship-info-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #2d3748;
}

.ship-cruise-line {
    color: #718096;
    margin: 0.25rem 0 0 0;
}

.ship-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ship-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.quick-spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
}

.quick-spec i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Sidebar */
.cruise-sidebar {
    position: relative;
}

.sticky-card {
    position: sticky;
    top: 2rem;
}

.booking-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
}

.booking-header {
    margin-bottom: 2rem;
}

.booking-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-from {
    font-size: 0.9rem;
    color: #718096;
}

.price-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.price-per {
    font-size: 0.9rem;
    color: #718096;
}

.departure-dates {
    margin-bottom: 1.5rem;
}

.departure-dates h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    color: #2d3748;
}

.dates-dropdown {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.dates-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
    list-style: none;
}

.dates-dropdown-toggle:hover {
    background: #edf2f7;
}

.dates-dropdown-toggle i {
    transition: transform 0.3s ease;
    color: #667eea;
}

.dates-dropdown[open] .dates-dropdown-toggle i {
    transform: rotate(180deg);
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
    gap: 0.5rem;
}

.date-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.date-info i {
    color: #667eea;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.date-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.date-info strong {
    color: #2d3748;
    font-size: 0.95rem;
}

.date-return {
    color: #718096;
    font-size: 0.85rem;
}

.date-price {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 0.25rem;
    padding-top: 0.25rem;
    border-top: 1px solid #e2e8f0;
}

.date-price .price-amount {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 700;
}

.price-partner {
    color: #718096;
    font-size: 0.75rem;
    font-style: italic;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-available {
    background: #d5f4e6;
    color: #047857;
}

.status-limited {
    background: #fed7d7;
    color: #c53030;
}

.status-sold_out {
    background: #e2e8f0;
    color: #718096;
}

.more-dates {
    text-align: center;
    color: #667eea;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #d5f4e6;
    color: #047857;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Partner Prices */
.partner-prices {
    margin-bottom: 1.5rem;
}

.partner-prices h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    color: #2d3748;
    font-size: 1.1rem;
}

.partner-prices h4 i {
    color: #667eea;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    gap: 1rem;
}

.partner-item:hover {
    background: #fff;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.partner-info {
    flex: 1;
    min-width: 0;
}

.partner-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.partner-name i {
    color: #667eea;
    font-size: 0.9rem;
}

.partner-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-with-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.price-label-small {
    font-size: 0.7rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.price-value-na {
    font-size: 0.9rem;
    color: #a0aec0;
    font-style: italic;
}

.partner-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.partner-cta i {
    transition: transform 0.3s ease;
}

.partner-item:hover .partner-cta i {
    transform: translateX(4px);
}

/* Highlights Card */
.highlights-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.highlights-top {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
}

.highlights-top h4 {
    color: #0c4a6e;
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlights-top h4::before {
    content: '✨';
    font-size: 1.5rem;
}

.highlights-list-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.highlights-card h4 {
    margin: 0 0 1.5rem 0;
    color: #2d3748;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
    line-height: 1.5;
}

.highlights-list i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlights-list-horizontal li {
    color: #0c4a6e;
    font-weight: 500;
}

.highlights-list-horizontal i {
    color: #0369a1;
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .cruise-content {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .cruise-page {
        overflow-x: clip;
    }

    body:has(.cruise-page) {
        overflow-x: clip;
    }

    .cruise-page .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .cruise-content {
        margin: 0 !important;
        gap: 0.5rem;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .cruise-main,
    .cruise-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .cruise-content > * {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .highlights-card,
    .highlights-top {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .highlights-card.highlights-top {
        margin-top: 1.5rem;
    }

    body:has(.cruise-page) .user-account-bar {
        top: 155px;
    }

    body:has(.cruise-page) .share-bar {
        top: 0;
    }

    body:has(.cruise-page) .share-bar.sticky-scrolled {
        top: -138px;
    }

    .cruise-breadcrumb .breadcrumb {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }

    .cruise-breadcrumb .breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .cruise-breadcrumb .breadcrumb-text {
        flex-wrap: nowrap;
        white-space: nowrap;
        font-size: 0.75rem;
    }

    .cruise-breadcrumb .breadcrumb-text a,
    .cruise-breadcrumb .breadcrumb-current {
        white-space: nowrap;
        flex-shrink: 0;
        max-width: none;
        overflow: visible;
        text-overflow: unset;
    }

    .cruise-hero {
        height: 380px;
        margin-top: -10px;
    }

    .cruise-hero-overlay {
        padding: 2rem 0 1rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cruise-hero-content {
        margin-top: 0;
        text-align: center;
    }

    .cruise-hero h1 {
        font-size: 2rem;
    }

    .cruise-hero h1.title-long {
        font-size: 1.4rem;
    }

    .cruise-hero-meta {
        gap: 1rem;
        margin-bottom: 0;
    }

    .highlights-list-horizontal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Itinerary Timeline Mobile */
    .cruise-section {
        padding: 1rem;
        margin: 0 0 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }

    .sticky-card,
    .booking-card {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }

    .cruise-sidebar {
        margin-bottom: 4rem !important;
    }

    .cruise-section:last-child {
        margin-bottom: 0;
    }

    /* Cacher le h3 "programme détaillé" et son ul */
    .cruise-section h3:not(.timeline-content h3),
    .cruise-section ul:not(.itinerary-timeline ul) {
        display: none;
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .timeline-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .timeline-item:not(:last-child)::before {
        display: none;
    }

    .timeline-marker {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .timeline-day {
        width: auto;
        height: auto;
        padding: 0.4rem 0.75rem;
        border-radius: 6px;
        font-size: 0.8rem;
        flex-shrink: 0;
        flex-direction: row;
        gap: 0.25rem;
        box-shadow: none;
    }

    .timeline-day small {
        font-size: 0.75rem;
        margin-top: 0;
    }

    .timeline-image {
        display: none;
    }

    .timeline-content {
        padding: 0;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .port-country {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .port-times {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .time-info {
        font-size: 0.85rem;
    }

    .port-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .port-tips {
        margin-top: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .port-tip {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        white-space: normal;
        word-break: break-word;
    }

    /* Sea days mobile */
    .timeline-item-sea .timeline-content {
        padding: 1rem;
        margin-top: 0;
    }

    .sea-days-info {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .sea-days-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .sea-days-content h4 {
        font-size: 1rem;
    }

    .cabins-grid {
        grid-template-columns: 1fr;
    }

    /* Ship section mobile */
    .ship-info-card {
        padding: 1.25rem;
        margin-bottom: 0;
    }

    .ship-info-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .ship-info-header h3 {
        font-size: 1.2rem;
    }

    .ship-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .ship-quick-specs {
        flex-direction: column;
        gap: 0.75rem;
    }

    .quick-spec {
        font-size: 0.9rem;
    }

    .ship-info-card .btn {
        background: white;
        color: #667eea;
        border: 0.5px solid rgba(102, 126, 234, 0.4);
        border-radius: 8px;
        padding: 0.5rem 1rem;
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: 0 2px 4px rgba(102, 126, 234, 0.15);
        transition: all 0.3s ease;
    }

    .ship-info-card .btn:hover {
        background: #667eea;
        color: white;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .cruise-sidebar {
        margin-top: -1rem;
    }
}