:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --deep: #061120;
    --navy: #0b1a2e;
    --teal: #1a6b82;
    --fog: rgba(201, 168, 76, 0.12);
    --white: #fff;
}
.cruise-card {
    position: relative;
    z-index: 2;
    /*width: 420px;*/
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #0f2540 0%, #0a1c33 60%, #061624 100%);
    /*box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.18),*/
    /*0 40px 80px rgba(0, 0, 0, 0.7),*/
    /*0 0 60px rgba(13, 58, 92, 0.4),*/
    /*inset 0 1px 0 rgba(201, 168, 76, 0.25);*/
    animation: cardIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── HERO IMAGE ZONE ── */
.card-hero {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 6s ease;
    filter: brightness(0.75) saturate(1.2);
}

.cruise-card:hover .hero-img {
    transform: scale(1);
}

/* gradient overlay */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(6, 17, 32, 0.1) 0%,
            rgba(6, 17, 32, 0.0) 40%,
            rgba(6, 17, 32, 0.85) 100%
    );
}

/* badge */
.badge-featured {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--gold);
    color: var(--deep);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
    animation: fadeSlideIn 0.8s 0.5s both;
}

/* rating */
.hero-rating {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(6, 17, 32, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    animation: fadeSlideIn 0.8s 0.6s both;
}

.star-icon {
    font-size: 12px;
}

/* hero title overlay */
.hero-title-wrap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    animation: fadeSlideIn 0.8s 0.4s both;
}

.hero-route {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
    margin-bottom: 4px;
    font-weight: 400;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.hero-name em {
    font-style: italic;
    color: var(--gold-light);
}

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

/* ── DIVIDER ── */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
    opacity: 0.5;
}

/* ── BODY ── */
.card-body-section {
    padding: 22px 24px;
}

/* highlights row */
.highlights {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    animation: fadeSlideIn 0.8s 0.7s both;
}

.highlight-item {
    text-align: center;
    flex: 1;
}

.highlight-item + .highlight-item {
    border-left: 1px solid rgba(201, 168, 76, 0.15);
}

.hi-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
}

.hi-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
    font-weight: 400;
}

/* description */
.card-desc {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 300;
    animation: fadeSlideIn 0.8s 0.8s both;
}

.card-desc strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* amenities */
.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    animation: fadeSlideIn 0.8s 0.85s both;
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.18);
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.25s;
    font-weight: 400;
}

.amenity-tag:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-1px);
}

.amenity-tag .icon {
    font-size: 12px;
}

/* price + CTA */
.card-footer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 22px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    animation: fadeSlideIn 0.8s 0.9s both;
}

.price-wrap {
}

.price-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2px;
    font-weight: 400;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.price-amount sup {
    font-size: 16px;
    vertical-align: super;
    color: var(--gold);
}

.price-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 2px;
    letter-spacing: 1px;
    font-weight: 400;
}

.btn-book {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #b8913a, var(--gold), #e8c97a, var(--gold));
    background-size: 300% 300%;
    color: var(--deep);
    border: none;
    padding: 13px 26px;
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: gradShift 4s ease infinite;
}

@keyframes gradShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-book:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(201, 168, 76, 0.5);
}

.btn-book:active {
    transform: translateY(0) scale(0.98);
}

.btn-book .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleAnim 0.55s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ── WAVE LINE ── */
.wave-svg {
    display: block;
    width: 100%;
    margin-top: -1px;
}


/** ── DATE PICKER SECTION ── *!*/
.date-section {
    margin-bottom: 20px;
    animation: fadeSlideIn 0.8s 0.72s both;
}

.date-section-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    font-weight: 400;
}

.date-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.date-box {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 14px;
    padding: 10px 14px 10px 38px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.date-box:hover, .date-box:focus-within {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.date-box .db-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.7;
}

.date-box .db-type {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 3px;
    font-weight: 400;
}

.date-box .db-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.date-box .db-weekday {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 2px;
    opacity: 0.7;
    font-weight: 400;
}

.date-box input[type="date"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* arrow between dates */
.date-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    padding: 0 2px;
    opacity: 0.7;
    flex-shrink: 0;
    align-self: center;
}

/* duration pill */
.duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 10px;
    transition: all 0.3s;
}

/* port stops */
.port-stops {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    animation: fadeSlideIn 0.8s 0.75s both;
}

.port-stops::-webkit-scrollbar {
    display: none;
}

.port {
    display: flex;
    align-items: center;
}

.port-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.port-dot.start, .port-dot.end {
    width: 10px;
    height: 10px;
    background: var(--gold-light);
}

.port-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.3));
    flex-shrink: 0;
}

.port-name {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    position: absolute;
    transform: translateX(-50%) translateY(14px);
    font-weight: 400;
}

.port {
    position: relative;
}
