/* Cruise Maps Pro - Main Styles */

.cruise-map-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cruise-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Sidebar Styles */
.cruise-map-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.cruise-map-sidebar.active {
    transform: translateX(0);
}

.cruise-map-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #6ec2e2 0%, #764ba2 100%);
    color: white;
}

.cruise-map-sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cruise-map-sidebar-content {
    padding: 20px;
}

/* Cruise List Styles */
.cruise-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cruise-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.cruise-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: #6ec2e2;
}

.cruise-item-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.cruise-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cruise-item-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.cruise-item-meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.cruise-item-meta .duration {
    background: #e3f2fd;
    color: #1976d2;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.cruise-item-meta .price {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Info Window Styles */
.cruise-info-window {
    padding: 15px;
    min-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cruise-info-window h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.cruise-info-window p {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-family: Poppins;
    color: #666;
    line-height: 1.4;
}

.cruise-info-image {
    margin-bottom: 10px;
}

.cruise-info-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.cruise-find-more {
    background: #a64223;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 1;
}

.cruise-find-more:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    background: #a64223a2;
}

.cruise-find-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Modal Styles */
.cruise-detail-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cruise-detail-modal.active {
    display: block;
}

.cruise-detail-content {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(100%);
    width: 400px;
    height: 80vh;
    background: white;
    border-radius: 12px 0 0 12px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cruise-detail-modal.active .cruise-detail-content {
    transform: translateY(-50%) translateX(0);
}

.cruise-detail-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.cruise-detail-close:hover {
    background: #f44336;
    color: white;
}

.cruise-detail-body {
    height: 100%;
    overflow-y: auto;
}

.cruise-detail-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.cruise-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cruise-detail-info {
    padding: 25px;
}

.cruise-detail-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.cruise-detail-description {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.cruise-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.cruise-detail-duration,
.cruise-detail-price,
.cruise-detail-capacity,
.cruise-detail-address,
.cruise-detail-coordinates {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.cruise-detail-duration::before {
    content: "\f017";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-price::before {
    content: "\f0d6";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-capacity::before {
    content: "\f0c0";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-address::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-coordinates::before {
    content: "\f124";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

/* Cruise Locations List Styles */
.cruise-locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.cruise-location-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cruise-location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cruise-location-item:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.location-address {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.location-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cruise-map-sidebar {
        width: 100%;
        transform: translateY(100%);
    }
    
    .cruise-map-sidebar.active {
        transform: translateY(0);
    }
    
    .cruise-detail-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .cruise-locations-list {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

/* Loading States */
.cruise-map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cruise-map-loading::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #6ec2e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Google Maps Info Window */
.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    max-width: 350px !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 51%, rgba(255,255,255,0) 100%) !important;
}

/* Ensure images in Google Maps info windows display properly */
.gm-style .cruise-info-window img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

.gm-style .cruise-info-image {
    margin-bottom: 10px !important;
}

.gm-style .cruise-info-image img {
    width: 100% !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    display: block !important;
}

/* Override Google Maps default styling for better image display */
.gm-style .gm-style-iw-c .gm-style-iw-d {
    overflow: visible !important;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .cruise-info-window {
    overflow: hidden !important;
}

/* Cruise Detail Slide-out Sidebar Styles */
.cruise-detail-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 800px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-radius: 0;
    display: block;
}

.cruise-detail-sidebar.active {
    transform: translateX(0);
}

.cruise-detail-sidebar-content {
    position: relative;
    height: 100%;
    padding: 20px;
    font-family: Poppins;
    font-size: 13px;
}

.cruise-detail-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.cruise-detail-close:hover {
    background: #293894;
    color: white;
}

.cruise-detail-body {
    height: 100%;
    overflow-y: auto;
    padding: 40px 25px 25px 25px;
}

.cruise-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.cruise-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cruise-detail-info {
    padding: 0;
}

.cruise-detail-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.cruise-detail-description {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.cruise-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.cruise-detail-duration,
.cruise-detail-price,
.cruise-detail-capacity,
.cruise-detail-address,
.cruise-detail-coordinates {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.cruise-detail-duration::before {
    content: "\f017";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-price::before {
    content: "\f0d6";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-capacity::before {
    content: "\f0c0";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-address::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

.cruise-detail-coordinates::before {
    content: "\f124";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 600px) {
    .cruise-detail-sidebar {
        width: 100vw;
        max-width: 100vw;
    }
    .cruise-detail-body {
        padding: 40px 10px 10px 10px;
    }
}

/* Loading States */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.loading-spinner::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #6ec2e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #666;
    font-style: italic;
}

.loading-placeholder::before {
    content: '🖼️';
    font-size: 24px;
    margin-right: 10px;
}

/* Gallery Carousel Styles */
.cruise-gallery-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Single Image Fallback */
.cruise-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.no-image {
    width: 100%;
    height: 450px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .cruise-gallery-carousel {
        height: 300px;
    }

    .cruise-detail-image {
        width: 100%;
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cruise-gallery-carousel,
    .cruise-detail-image img,
    .no-image {
        height: 300px;
    }
    
    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }

    .cruise-detail-image {
        width: 100%;
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 20px;
    }
}

.sku-bubbles {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
    position: relative;
}
.sku-bubble {
    background: #f6c599;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(102,126,234,0.15);
    cursor: pointer;
    transition: background 0.2s;
}
.sku-bubble:hover {
    background: #ebb484;
}
.sku-tooltip {
    position: absolute;
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 12px 16px;
    min-width: 180px;
    z-index: 100;
    top: 48px;
    left: 0;
    font-size: 14px;
}
.sku-tooltip ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sku-tooltip li {
    margin-bottom: 6px;
}
.sku-tooltip li:last-child {
    margin-bottom: 0;
}
.sku-tooltip a {
    color: #6ec2e2;
    text-decoration: none;
}
.sku-tooltip a:hover {
    text-decoration: underline;
}

.cruise-detail-sidebar, .cruise-detail-sidebar-content {
    scrollbar-width: thin;
    scrollbar-color: #f6c599;
}

.cruise-detail-sidebar::-webkit-scrollbar, .cruise-detail-sidebar-content::-webkit-scrollbar {
    width: 10px;
    background: #A64224;
}

.cruise-detail-sidebar::-webkit-scrollbar-thumb, .cruise-detail-sidebar-content::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: linear-gradient(135deg, #5ea2d0 0%, #293894 100%);
}

.cruise-detail-sidebar::-webkit-scrollbar-track, .cruise-detail-sidebar-content::-webkit-scrollbar-track {
    background: #A64224;
    border-radius: 8px;
}

/* Activity styling for cruise detail sidebar */
.cruise-detail-activity {
    color: 000;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Weather display styling */
.cruise-detail-weather {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cruise-detail-weather::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.cruise-detail-weather:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(116, 185, 255, 0.35);
}

.weather-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.weather-icon {
    position: relative;
}

.weather-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.weather-icon:hover img {
    transform: scale(1.1);
}

.weather-main {
    flex: 1;
}

.weather-temp {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.weather-desc {
    font-size: 16px;
    margin: 6px 0;
    opacity: 0.95;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.weather-location {
    font-size: 13px;
    margin: 6px 0 0 0;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

.weather-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 4px 0;
    transition: all 0.2s ease;
}

.weather-detail-item:hover {
    transform: translateX(2px);
}

.weather-label {
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.weather-value {
    font-weight: 700;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.weather-loading {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin: 15px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.weather-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading-shimmer 2s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.weather-error {
    background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin: 15px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(255, 118, 117, 0.25);
    position: relative;
    overflow: hidden;
}

.weather-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* Responsive weather styling */
@media (max-width: 768px) {
    .cruise-detail-weather {
        padding: 16px;
        margin: 12px 0;
    }
    
    .weather-header {
        gap: 14px;
        margin-bottom: 14px;
    }
    
    .weather-icon img {
        width: 50px;
        height: 50px;
    }
    
    .weather-temp {
        font-size: 28px;
    }
    
    .weather-desc {
        font-size: 14px;
    }
    
    .weather-details {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
        padding-top: 14px;
    }
    
    .weather-detail-item {
        font-size: 13px;
    }
}

/* Cruise Locations List Styles - Matching Design */
.cruise-locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.cruise-location-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
}

.cruise-location-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.location-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cruise-location-item:hover .location-image img {
    transform: scale(1.02);
}

.location-cruise-count {
    position: absolute;
    top: 12px;
    right: 12px;
}

.cruise-count-badge {
    background: #8B4513;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cruise-count-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Alternative badge colors for variety */
.cruise-count-badge.badge-brown { background: #8B4513; }
.cruise-count-badge.badge-gold { background: #DAA520; }
.cruise-count-badge.badge-green { background: #228B22; }
.cruise-count-badge.badge-blue { background: #4169E1; }
.cruise-count-badge.badge-grey { background: #696969; }

/* Cruise tooltip styling */
.cruise-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 250px;
    max-width: 300px;
    margin-top: 5px;
}

.cruise-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.cruise-tooltip::after {
    content: '';
    position: absolute;
    top: -9px;
    right: 14px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #ddd;
}

.tooltip-content {
    padding: 15px;
}

.tooltip-content h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

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

.cruise-links-list li {
    margin-bottom: 8px;
}

.cruise-links-list li:last-child {
    margin-bottom: 0;
}

.cruise-links-list a {
    color: #6ec2e2;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    display: block;
    padding: 8px 0;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.cruise-links-list a:hover {
    color: #5ba8d1;
    background: #f8f9fa;
    padding-left: 8px;
    text-decoration: none;
}

.cruise-link-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

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

.cruise-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cruise-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.cruise-sku {
    font-size: 11px;
    color: #666;
    font-family: monospace;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

.cruise-price {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.location-info {
    padding: 15px;
    text-align: center;
}

.location-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

/* Hide activity, description, meta, and actions for cleaner design */
.location-activity,
.location-description,
.location-meta,
.location-actions {
    display: none;
}

.cruise-locations-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cruise-locations-empty .button {
    background: #6ec2e2;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.cruise-locations-empty .button:hover {
    background: #5ba8d1;
    color: white;
    text-decoration: none;
}

/* Responsive design for locations list */
@media (max-width: 768px) {
    .cruise-locations-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .cruise-locations-list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px 0;
    }
    
    .location-image {
        height: 160px;
    }
    
    .location-info {
        padding: 12px;
    }
    
    .location-title {
        font-size: 15px;
    }
    
    .cruise-count-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
