@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #060b13;
    --bg-card: rgba(15, 27, 46, 0.7);
    --bg-card-hover: rgba(22, 40, 68, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(0, 221, 255, 0.3);
    
    --primary: #00ddff;
    --primary-glow: rgba(0, 221, 255, 0.4);
    --secondary: #10b981;
    --secondary-glow: rgba(16, 185, 129, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #111827;
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 221, 255, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(180deg, rgba(6, 11, 19, 0.9) 0%, rgba(6, 11, 19, 0.97) 100%),
        url('bg_vector.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Header & Navigation */
header {
    background: rgba(6, 11, 19, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    font-size: 1.8rem;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0099ff);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 221, 255, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Cruise Finder Card */
.finder-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 900px;
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.finder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.finder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.form-select, .form-input {
    background: rgba(10, 18, 32, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-select:focus, .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 221, 255, 0.1);
}

.form-select option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.finder-submit {
    display: flex;
    justify-content: flex-end;
}

.finder-submit .btn {
    width: 100%;
    max-width: 250px;
    font-size: 1.05rem;
    padding: 1rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Main Content Area */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Itinerary Container */
.itinerary-section {
    display: none; /* Shown dynamically via JS */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.itinerary-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.ship-info-banner {
    background: linear-gradient(90deg, rgba(15, 27, 46, 0.8), rgba(6, 11, 19, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ship-info-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ship-info-details .ship-icon {
    font-size: 2.5rem;
    background: rgba(0, 221, 255, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
    color: var(--primary);
}

.ship-info-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.ship-info-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ship-change-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Timeline Layout */
.itinerary-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 7px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 1.25rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--primary);
    z-index: 2;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition);
}

.timeline-item.sea-day .timeline-dot {
    border-color: var(--text-muted);
    box-shadow: none;
}

.timeline-item.active .timeline-dot {
    background-color: var(--primary);
    transform: scale(1.2);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.timeline-day-badge {
    background: rgba(0, 221, 255, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sea-day .timeline-day-badge {
    background: rgba(156, 163, 175, 0.1);
    color: var(--text-muted);
}

.timeline-title-wrap h4 {
    font-size: 1.35rem;
    font-weight: 700;
}

.timeline-title-wrap p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.timeline-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.timeline-meta span strong {
    color: var(--text-main);
}

.timeline-body {
    margin-top: 1rem;
}

.timeline-body p.sea-day-desc {
    color: var(--text-muted);
    font-style: italic;
}

/* Excursion Panel */
.excursion-toggle-btn {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 221, 255, 0.05);
    border: 1px dashed rgba(0, 221, 255, 0.2);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.excursion-toggle-btn:hover {
    background: rgba(0, 221, 255, 0.1);
    border-color: var(--primary);
}

.excursion-toggle-btn.disabled-style:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.excursion-toggle-btn i {
    transition: transform 0.3s ease;
}

.excursion-toggle-btn.expanded i {
    transform: rotate(180deg);
}

.excursions-panel {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Excursion Card */
.excursion-card {
    background: rgba(10, 18, 32, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.excursion-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow);
}

.excursion-img-container {
    height: 180px;
    position: relative;
    overflow: hidden;
    background-color: #0e1726;
}

.excursion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.excursion-card:hover .excursion-img {
    transform: scale(1.05);
}

.excursion-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(6, 11, 19, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(0, 221, 255, 0.2);
}

.savings-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.excursion-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.excursion-info h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.excursion-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--accent-yellow);
    margin-bottom: 0.75rem;
}

.excursion-rating span {
    color: var(--text-muted);
}

.excursion-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.excursion-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.excursion-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 1.25rem;
}

.price-ship {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-ship span {
    text-decoration: line-through;
    display: block;
    font-size: 0.95rem;
    color: var(--accent-red);
}

.price-our {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.price-our span {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
}

.price-our span em {
    color: var(--secondary);
    font-style: normal;
}

/* Guarantee Info Section */
.guarantee-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(0, 221, 255, 0.03));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
}

.guarantee-badge-big {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.guarantee-badge-big i {
    font-size: 4rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
}

.guarantee-badge-big h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.guarantee-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.guarantee-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.guarantee-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.guarantee-point {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.guarantee-point i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

/* Reviews Section */
.reviews-section {
    margin: 5rem 0;
}

.reviews-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.review-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
}

.review-cruise-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.reviews-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.reviews-nav-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

/* Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: #0d1624;
    border: 1px solid var(--border-color-hover);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    z-index: 5;
}

.modal-close:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.modal-header {
    padding: 2rem 2.5rem 1rem 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.modal-header p {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.modal-body {
    padding: 2rem 2.5rem;
}

.booking-summary-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.booking-summary-row:last-child {
    margin-bottom: 0;
}

.booking-summary-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.booking-summary-row.savings {
    color: var(--secondary);
    font-weight: 600;
}

.checkout-flow-step {
    display: none;
}

.checkout-flow-step.active {
    display: block;
}

/* Success Animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-checkmark i {
    font-size: 3rem;
    color: var(--secondary);
    animation: scaleUp 0.4s ease;
}

@keyframes scaleUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

/* Footer styling */
footer {
    background: #03060a;
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-side p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-links-side h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.footer-links-side ul {
    list-style: none;
}

.footer-links-side ul li {
    margin-bottom: 0.75rem;
}

.footer-links-side ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-side ul li a:hover {
    color: var(--text-main);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ====================================================
   Celebratory Ship Welcome Card (Ship Commercial Card)
   ==================================================== */
.ship-celebration-card {
    position: relative;
    background-color: #0b1524;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ship-celebration-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 40px rgba(0, 221, 255, 0.15);
}

.ship-celebration-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(6, 11, 19, 0.95) 0%, rgba(6, 11, 19, 0.75) 50%, rgba(6, 11, 19, 0.95) 100%);
    z-index: 1;
}

.ship-celebration-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
    text-align: left;
}

.celebration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.ship-celebration-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #88d3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.celebration-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.ship-features-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.ship-features-row span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ship-features-row span i {
    color: var(--primary);
}

.ship-deals-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    color: #ffd073;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.05);
}

.ship-deals-banner i {
    font-size: 1.1rem;
    color: var(--accent-yellow);
    animation: flameGlow 1.5s infinite alternate;
}

@keyframes flameGlow {
    from { filter: drop-shadow(0 0 2px rgba(245, 158, 11, 0.4)); transform: scale(1); }
    to { filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8)); transform: scale(1.1); }
}

.ship-celebration-action {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

/* ====================================================
   Two-Column Itinerary & Sidebar Layout
   ==================================================== */
.itinerary-grid-layout {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}

.itinerary-timeline-col {
    min-width: 0;
}

/* ====================================================
   Ship Companion Sidebar
   ==================================================== */
.itinerary-sidebar-col {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.ship-companion-sidebar {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.ship-companion-sidebar::-webkit-scrollbar {
    width: 6px;
}
.ship-companion-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
}
.ship-companion-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
}
.ship-companion-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.sidebar-close-btn {
    display: none;
}

.sidebar-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.sidebar-header h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-header h5 i {
    color: var(--primary);
}

.sidebar-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.15rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h6 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sidebar-overview-list {
    list-style: none;
}

.sidebar-overview-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.sidebar-overview-list li span {
    color: var(--text-muted);
}

.sidebar-overview-list li strong {
    color: var(--text-main);
}

.sidebar-widget-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Sidebar On-Ship Timeline */
.on-ship-timeline {
    position: relative;
    padding-left: 1.25rem;
}

.on-ship-timeline::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 4px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.on-ship-node {
    position: relative;
    margin-bottom: 1.25rem;
}

.on-ship-node:last-child {
    margin-bottom: 0;
}

.on-ship-dot {
    position: absolute;
    left: -1.25rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 2px solid var(--bg-dark);
}

.on-ship-node.active .on-ship-dot {
    background: var(--primary);
    box-shadow: 0 0 5px var(--primary-glow);
}

.on-ship-node.gala-night .on-ship-dot {
    background: var(--accent-yellow);
    box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
}

.on-ship-node.lobster-night .on-ship-dot {
    background: #ff7654;
    box-shadow: 0 0 5px rgba(255, 118, 84, 0.5);
}

.on-ship-day {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.on-ship-node.active .on-ship-day {
    color: var(--primary);
}

.on-ship-event {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.on-ship-details {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-top: 0.15rem;
}

.on-ship-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent-yellow);
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(245, 158, 11, 0.10);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.help-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 12px;
}

.help-widget h6 i {
    color: var(--secondary);
}

.help-widget p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Mobile Toggle */
.mobile-sidebar-toggle {
    display: none;
}

/* ====================================================
   Booking Modal Conflict Warning
   ==================================================== */
.booking-conflict-alert {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #ffd073;
}

.booking-conflict-alert i {
    margin-top: 0.15rem;
    color: var(--accent-yellow);
}

.booking-conflict-alert.no-conflict {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #a7f3d0;
}

.booking-conflict-alert.no-conflict i {
    color: var(--secondary);
}

/* ====================================================
   Responsive Overrides & Mobile Drawers
   ==================================================== */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    .guarantee-banner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .guarantee-badge-big {
        margin-bottom: 1rem;
    }
    .guarantee-points {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Change grid layout to vertical stack */
    .itinerary-grid-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Transform celebratory welcome card to vertical */
    .ship-celebration-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.25rem 1.5rem;
    }

    .ship-celebration-content {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .ship-celebration-content h3 {
        font-size: 1.75rem;
    }

    .ship-celebration-action {
        width: 100%;
        margin-bottom: 0;
    }

    .ship-celebration-action .ship-change-btn {
        width: 100%;
    }

    /* Mobile Sidebar Slide-in Drawer Style */
    .itinerary-sidebar-col {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1001;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .itinerary-sidebar-col.active {
        transform: translateY(0);
    }

    .ship-companion-sidebar {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        max-height: 75vh;
        border-top: 2px solid var(--primary);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .sidebar-close-btn {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1.25rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        color: var(--text-muted);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 5;
    }

    .sidebar-close-btn:hover {
        color: var(--text-main);
        border-color: var(--primary);
    }

    /* Backdrop backdrop overlay */
    .sidebar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(4, 7, 12, 0.65);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .sidebar-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile Floating Toggle Button */
    .mobile-sidebar-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 2rem;
        right: 1.5rem;
        background: linear-gradient(135deg, var(--primary), #00bcff);
        color: var(--bg-dark);
        border: none;
        padding: 0.85rem 1.5rem;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 0.9rem;
        box-shadow: 0 10px 25px rgba(0, 221, 255, 0.4);
        cursor: pointer;
        z-index: 900;
        animation: bounceGlow 2.5s infinite;
    }
}

@keyframes bounceGlow {
    0%, 100% { transform: translateY(0); box-shadow: 0 10px 25px rgba(0, 221, 255, 0.4); }
    50% { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 221, 255, 0.65); }
}

@media (max-width: 600px) {
    header {
        padding: 1rem;
    }
    nav {
        display: none;
    }
    .finder-card {
        padding: 1.5rem;
    }
    .finder-grid {
        grid-template-columns: 1fr;
    }
    .itinerary-timeline {
        padding-left: 1.5rem;
    }
    .itinerary-timeline::before {
        left: 4px;
    }
    .timeline-dot {
        left: -1.5rem;
        width: 12px;
        height: 12px;
        border-width: 2px;
        top: 1.4rem;
    }
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .timeline-meta {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ====================================================
   Phase 3: Signature Attractions, Dock Badges & Port FAQs
   ==================================================== */
.dock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tender-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-yellow);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signature-attraction-callout {
    background: rgba(0, 221, 255, 0.03);
    border: 1px solid rgba(0, 221, 255, 0.12);
    border-radius: 14px;
    padding: 1.25rem;
    margin: 1.25rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: inset 0 0 15px rgba(0, 221, 255, 0.02);
}

.signature-attraction-callout i.sig-star {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 0.15rem;
    filter: drop-shadow(0 0 4px var(--primary-glow));
}

.signature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.signature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.signature-desc strong {
    color: var(--primary);
}

/* Port FAQ Styling */
.port-faq-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    transition: var(--transition);
}

.port-faq-toggle-btn:hover {
    color: var(--primary);
}

.port-faq-toggle-btn i {
    transition: transform 0.3s ease;
}

.port-faq-toggle-btn.expanded i {
    transform: rotate(180deg);
}

.port-faq-panel {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 0.75rem;
    animation: fadeIn 0.3s ease forwards;
}

.port-faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 1rem;
}

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

.port-faq-q {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.port-faq-a {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ====================================================
   Stepped Cruise Finder Wizard Styles
   ==================================================== */
.wizard-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.step-indicator .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.step-indicator.active {
    color: var(--primary);
}

.step-indicator.active .step-num {
    border-color: var(--primary);
    background: rgba(0, 221, 255, 0.1);
    box-shadow: 0 0 10px var(--primary-glow);
}

.step-indicator.completed {
    color: var(--secondary);
}

.step-indicator.completed .step-num {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--bg-dark);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 1.5rem;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.wizard-step.active {
    display: block;
}

.wizard-step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.wizard-step-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Grids for Selection */
.cruise-lines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cruise-ships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cruise-dates-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.cruise-dates-grid .cruise-date-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1rem 1.5rem;
    gap: 1.25rem;
    justify-content: flex-start;
}

.cruise-line-card, .cruise-ship-card, .cruise-date-card {
    background: rgba(10, 18, 32, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

/* Specific styling for Cruise Line Cards on homepage (using fleet images) */
.cruise-line-card {
    min-height: 180px;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    background-clip: padding-box;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}

.cruise-line-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 11, 19, 0.45) 0%, rgba(6, 11, 19, 0.85) 100%);
    z-index: 1;
    border-radius: inherit;
    transition: var(--transition);
}

.cruise-line-card .card-icon, .cruise-line-card span {
    position: relative;
    z-index: 2;
}

.cruise-line-card.card-royal { background-image: url('royal_fleet.png'); background-repeat: no-repeat; }
.cruise-line-card.card-carnival { background-image: url('carnival_fleet.png'); background-repeat: no-repeat; }
.cruise-line-card.card-celebrity { background-image: url('celebrity_fleet.png'); background-repeat: no-repeat; }
.cruise-line-card.card-norwegian { background-image: url('ncl_fleet.png'); background-repeat: no-repeat; }
.cruise-line-card.card-princess { background-image: url('princess_fleet.png'); background-repeat: no-repeat; }
.cruise-line-card.card-msc { background-image: url('msc_fleet.png'); background-repeat: no-repeat; }

.cruise-line-card:hover::after {
    background: linear-gradient(180deg, rgba(6, 11, 19, 0.25) 0%, rgba(6, 11, 19, 0.65) 100%);
}

.cruise-line-card .card-icon {
    font-size: 2.25rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.cruise-ship-card .card-icon {
    font-size: 2rem;
    color: var(--text-muted);
}

.cruise-line-card span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.cruise-ship-card span, .cruise-date-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.cruise-line-card:hover, .cruise-ship-card:hover, .cruise-date-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 25px rgba(0, 221, 255, 0.15);
}

.cruise-ship-card:hover, .cruise-date-card:hover {
    background: rgba(22, 40, 68, 0.4);
}

.cruise-ship-card:hover .card-icon {
    color: var(--primary);
}

/* Selected Active States */
.cruise-line-card.selected, .cruise-ship-card.selected, .cruise-date-card.selected {
    border-color: var(--primary);
    background: rgba(0, 221, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 221, 255, 0.15);
}

.cruise-line-card.selected .card-icon, .cruise-ship-card.selected .card-icon {
    color: var(--primary);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.wizard-actions .btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .wizard-stepper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .step-line {
        display: none;
    }
    .cruise-lines-grid, .cruise-ships-grid, .cruise-dates-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   Stepped Wizard Directory & Text Link Styles
   ==================================================== */
.directory-intro {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-align: left;
}

.directory-intro p {
    margin-bottom: 0.75rem;
}

.cruise-ships-directory {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ship-class-section {
    background: rgba(15, 27, 46, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    transition: var(--transition);
}

.ship-class-section:hover {
    border-color: var(--border-color-hover);
    background: rgba(22, 40, 68, 0.3);
}

.ship-class-title {
    font-size: 1.25rem;
    font-weight: 750;
    color: var(--primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.2px;
}

.ship-class-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.ship-links-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ship-text-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ship-text-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 221, 255, 0.06);
    box-shadow: 0 0 12px rgba(0, 221, 255, 0.15);
    transform: translateY(-1px);
}

.ship-status-note {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
    font-style: italic;
    margin-left: 0.25rem;
}

/* ====================================================
   Icon of the Seas Customized Dates Layout Styles
   ==================================================== */
.wizard-schedule-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 1.5rem 0 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.wizard-schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.wizard-schedule-table th, .wizard-schedule-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.wizard-schedule-table th {
    background: rgba(10, 18, 32, 0.4);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.wizard-schedule-table tr:last-child td {
    border-bottom: none;
}

.date-select-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    background: rgba(0, 221, 255, 0.05);
    border: 1px solid rgba(0, 221, 255, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
}

.date-select-link:hover {
    color: var(--bg-dark);
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.rotation-details-block {
    text-align: left;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.rotation-details-block h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 800;
}

.rotation-route {
    margin-bottom: 1.5rem;
    background: rgba(15, 27, 46, 0.2);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
}

.rotation-route.route-eastern {
    border-left-color: var(--primary);
}

.rotation-route h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.rotation-route p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.rotation-route p strong {
    color: var(--text-main);
}

.rotation-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 2px solid var(--border-color);
}

/* ====================================================
   Icon of the Seas 2026/2027 Calendar Layout Styles
   ==================================================== */
.calendar-year-block {
    background: rgba(15, 27, 46, 0.35);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    text-align: left;
}

.calendar-year-title {
    font-size: 1.5rem;
    font-weight: 850;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.calendar-month-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.85rem 0;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.calendar-month-row:last-child {
    border-bottom: none;
}

.calendar-month-name {
    width: 130px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.calendar-dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.calendar-date-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.calendar-date-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 221, 255, 0.06);
    box-shadow: 0 0 10px rgba(0, 221, 255, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .calendar-month-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .calendar-month-name {
        width: 100%;
        margin-bottom: 0.25rem;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        padding-bottom: 0.25rem;
    }
}

/* ====================================================
   Shipmate Connect Widget Styles
   ==================================================== */
.shipmate-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.shipmate-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    transition: var(--transition);
}

.shipmate-item:hover {
    background: rgba(0, 221, 255, 0.03);
    border-color: rgba(0, 221, 255, 0.15);
}

.shipmate-avatar {
    width: 32px;
    height: 32px;
    background: rgba(0, 221, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.shipmate-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
    flex-grow: 1;
}

.shipmate-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.shipmate-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shipmate-meta span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.7rem;
}

.shipmate-form {
    background: rgba(15, 27, 46, 0.3);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeIn 0.3s ease;
}

.shipmate-form label {
    font-size: 0.75rem;
    font-weight: 650;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}

.shipmate-form .form-input {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
    border-radius: 6px;
    background: rgba(10, 18, 32, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 100%;
}

.shipmate-form .form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 221, 255, 0.25);
}

.shipmate-success-msg {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    text-align: left;
}

/* ====================================================
   Tour Drawer Item Styles
   ==================================================== */
.tour-drawer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.tour-drawer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.15rem 1.5rem;
    border-radius: 12px;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.tour-drawer-item:hover {
    background: rgba(0, 221, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 221, 255, 0.08);
}

.tour-drawer-item .tour-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition);
}

.tour-drawer-item:hover .tour-name {
    color: var(--primary);
}

.tour-drawer-item .tour-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary);
    margin-left: auto;
    margin-right: 1.25rem;
}

.tour-drawer-item i {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.tour-drawer-item:hover i {
    color: var(--primary);
    transform: translateX(3px);
}

/* ====================================================
   Comments & Reviews Styles
   ==================================================== */
.comment-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    animation: fadeIn 0.3s ease;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    background: rgba(0, 221, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.comment-author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.comment-author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.comment-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: left;
    margin-left: 2.5rem;
}

@media (max-width: 600px) {
    .comment-body {
        margin-left: 0;
    }
}

/* ====================================================
   Excursion Timeline Styles
   ==================================================== */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 2px dashed var(--border-color);
    margin-left: 0.75rem;
    padding-bottom: 0.75rem;
}

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

.timeline-marker {
    position: absolute;
    left: -7px;
    top: 3px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.timeline-item:last-child .timeline-marker {
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
    left: -5px;
}

.timeline-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
    display: block;
}

.timeline-item:last-child .timeline-time {
    color: var(--secondary);
}

.timeline-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .extended-details-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}

/* ====================================================
   Floating Shipmate Connect Chat Drawer Styles
   ==================================================== */
.floating-chat-launcher {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary), #0088ff);
    border: none;
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 221, 255, 0.4), inset 0 2px 4px rgba(255,255,255,0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.15);
}

.floating-chat-launcher:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 221, 255, 0.6);
}

.chat-badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 3px;
    box-shadow: 0 0 10px var(--secondary);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px var(--secondary); }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.chat-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: rgba(10, 25, 41, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-drawer.active {
    right: 0;
}

.chat-drawer-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-drawer-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chat-drawer-close:hover {
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

.chat-drawer-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    scroll-behavior: smooth;
}

.chat-drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 15, 25, 0.8);
}

/* Chat bubble styling */
.chat-msg-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.chat-msg-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

.chat-msg-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
}

.chat-msg-bubble {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 1rem;
    border-radius: 4px 14px 14px 14px;
    color: var(--text-main);
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 90%;
}

.chat-msg-row.outgoing {
    align-items: flex-end;
}

.chat-msg-row.outgoing .chat-msg-meta {
    flex-direction: row-reverse;
}

.chat-msg-row.outgoing .chat-msg-avatar {
    background: var(--secondary);
}

.chat-msg-row.outgoing .chat-msg-bubble {
    background: rgba(0, 221, 255, 0.08);
    border-color: rgba(0, 221, 255, 0.2);
    border-radius: 14px 4px 14px 14px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--secondary);
    animation: badgePulse 2.5s infinite;
}

@media (max-width: 500px) {
    .chat-drawer {
        width: 100vw;
        right: -100vw;
    }
    .floating-chat-launcher {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* ====================================================
   Interactive FAQ Board & Commenting Styles
   ==================================================== */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active {
    border-color: rgba(0, 221, 255, 0.25);
    background: rgba(10, 25, 41, 0.3);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 750;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-chevron {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-body {
    display: none;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.faq-item.active .faq-body {
    display: block;
}

.faq-answer {
    background: rgba(0, 221, 255, 0.03);
    border-left: 3px solid var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.faq-comments-section {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.faq-comments-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
}

.faq-comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.faq-comment-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
}

.faq-comment-author {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.faq-comment-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.faq-comment-form {
    display: flex;
    gap: 0.5rem;
}

.faq-comment-input {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
}

.faq-comment-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* ====================================================
   Recent Activity Social Proof Ticker Styles
   ==================================================== */
.social-proof-ticker {
    background: rgba(10, 25, 41, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 221, 255, 0.12);
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    width: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease-in-out;
}

.ticker-content.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.ticker-content.fade-in {
    opacity: 0;
    transform: translateY(8px);
}

.ticker-pulse-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    animation: badgePulse 2s infinite;
}

/* ====================================================
   All Aboard Alarm Switch Styles
   ==================================================== */
.switch input:checked + .slider {
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}
.switch input:checked + .slider:before {
    transform: translateX(14px);
    background-color: var(--text-main);
}
.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .4s;
    border-radius: 50%;
}

/* Calendar Scrollable Container Scrollbar Styling */
.calendar-scroll-container::-webkit-scrollbar {
    width: 8px !important;
}
.calendar-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 8px !important;
}
.calendar-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
}
.calendar-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* ====================================================
   Universal Passenger Comment Drawer Styles (Left Slide)
   ==================================================== */
.comment-drawer {
    position: fixed;
    top: 0;
    left: -420px;
    width: 400px;
    height: 100vh;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 1005; /* high priority overlay */
    display: flex;
    flex-direction: column;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.comment-drawer.active {
    left: 0;
}

.comment-drawer-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-drawer-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comment-drawer-close:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.comment-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    scroll-behavior: smooth;
}

.comment-drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 15, 25, 0.9);
}

/* Comment Item Style */
.comment-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    animation: slideInLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.comment-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
    padding-bottom: 0.35rem;
}

.comment-item-user {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.comment-item-user:hover {
    text-decoration: underline;
}

.comment-item-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.comment-item-text {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-main);
    text-align: left;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .comment-drawer {
        width: 100vw;
        left: -100vw;
    }
}





