
.booking-ship {
    display: inline-flex;
    width: 64px;
    height: 64px;
    margin-right: 10px;
    flex-shrink: 0;
    animation: shipFloat 4s ease-in-out infinite;
}

.booking-ship svg {
    width: 100%;
    height: 100%;
    display: block;
    color: #111;
}

@keyframes shipFloat {
    0% {
        transform: translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateX(3px) rotate(2deg);
    }
    50% {
        transform: translateX(0px) rotate(0deg);
    }
    75% {
        transform: translateX(-3px) rotate(-2deg);
    }
    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

/* MOBILE FLOATING BOOKING BAR + SECTION MENU */
.mobile-bottom-bar {
    display: none;
}

.mobile-section-menu {
    display: none;
}

@media (max-width: 991px) {

    .mobile-bottom-bar {
        position: fixed;
        left: 15px;
        right: 15px;
        bottom: 15px;
        z-index: 9999;

        display: flex !important;
        align-items: center;
        gap: 12px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
        transition: all .25s ease;
    }

    .mobile-bottom-bar.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav-toggle {
        width: 58px;
        min-width: 58px;
        height: 58px;
        flex: 0 0 58px;

        border: none;
        border-radius: 16px;
        background: #111;
        color: white;
        font-size: 26px;
        font-weight: 700;
        cursor: pointer;
        padding: 0;

        box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }

    .mobile-booking-bar {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;

        display: flex !important;
        align-items: center;
        justify-content: center;

        height: 58px;
        padding: 0 20px;

        border-radius: 16px;
        background: linear-gradient(135deg, #d4af37, #f3d56a);

        color: #111 !important;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 18px;
        white-space: nowrap;

        box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }

    .mobile-section-menu {
        position: fixed;
        left: 15px;
        right: 15px;
        bottom: 85px;
        z-index: 9998;

        background: white;
        border-radius: 18px;
        padding: 15px;
        box-shadow: 0 20px 50px rgba(0,0,0,.2);

        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all .25s ease;

        display: block;
    }

    .mobile-section-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-section-menu a {
        display: block;
        padding: 14px 10px;
        color: #111 !important;
        text-decoration: none !important;
        font-weight: 600;
        font-size: 15px;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .mobile-section-menu a:last-child {
        border-bottom: none;
    }

    body.single-product {
        padding-bottom: 95px;
    }
}

.booking-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.booking-qty-wrapper input[type="number"] {
    width: 90px !important;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px;
    margin: 0 !important;
}

.booking-qty-btn {
    width: 46px!important;
    height: 46px;
	padding:unset!important;
    border: none;
    border-radius: 12px;
    background: #111;
    color: white;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    flex-shrink: 0;
}

.booking-qty-btn:hover {
    background: #d4af37;
    color: black;
}

html {
    scroll-behavior: smooth;
}


body.single-product {
    background: #f8f5ee;
    font-family: 'Inter', sans-serif;
}

.single-product .site-main,
.single-product .content-area {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

.cruise-page,
.cruise-main {
    overflow: visible !important;
}

.woocommerce-breadcrumb,
.product_meta,
.related.products,
.woocommerce-tabs,
.woocommerce-notices-wrapper {
    display: none !important;
}

.cruise-page {
    width: 100%;
}

.cruise-hero {
    position: relative;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.cruise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.58) 45%,
        rgba(0,0,0,.20) 100%
    );
}

.cruise-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 40px;
    color: white;
	min-height:800px;
}

.cruise-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    line-height: 1.05;
    margin-bottom: 30px;
    max-width: 760px;
    color: white;
    font-weight: 700;
}

.cruise-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.cruise-badges span {
    padding: 14px 22px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 15px;
    font-weight: 500;
}

.cruise-cta {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg,#d4af37,#f3d56a);
    color: black;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 10px 25px rgba(212,175,55,.35);
}

.cruise-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(212,175,55,.45);
}

.cruise-main {
    max-width: 1300px;
    margin: -180px auto 100px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.cruise-left,
.booking-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

/* SWIPEABLE MAIN GALLERY */
.cruise-main-image {
    position: relative;
    width: 100%;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.cruise-slider {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;            /* egységes, nagy méret minden képnek */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
}

.cruise-slider::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari */
}

.cruise-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
}

.cruise-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;             /* a kép kitölti az egységes területet, nincs ugrálás */
    display: block;
}

/* nyilak */
.cruise-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.cruise-arrow:hover {
    background: rgba(0,0,0,.7);
}

.cruise-arrow.prev { left: 14px; }
.cruise-arrow.next { right: 14px; }

/* pötty indikátor */
.cruise-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}

.cruise-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    transition: all .2s ease;
}

.cruise-dots span.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

.cruise-thumbs {
    display: flex;
    gap: 12px;
    padding: 20px;
    flex-wrap: wrap;
    background: white;
}

.cruise-thumbs img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
}

.cruise-thumbs img:hover,
.cruise-thumbs img.active {
    border-color: #d4af37;
    transform: translateY(-2px);
}

.cruise-description {
    padding: 45px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.cruise-description h2,
.cruise-description h3 {
    font-family: 'Playfair Display', serif;
}

.cruise-main {
    max-width: 1300px;
    margin: -120px auto 100px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 10;
    align-items: start;
}

.cruise-right {
    align-self: start;
    z-index: 5;
}

.cruise-ticket-includes,
.cruise-info-section,
.cruise-reviews,
.cruise-faq {
    clear: both;
    position: relative;
    z-index: 20;
}

.booking-card {
    padding: 40px;
}

.booking-price {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    line-height: 1;
}

.booking-trust {
    margin-bottom: 30px;
    line-height: 2;
    color: #444;
    font-size: 16px;
}

.booking-card form {
    margin: 0;
}

.booking-card input,
.booking-card select {
    border-radius: 12px !important;
    padding: 14px !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
}

.booking-card .wc-bookings-booking-form {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.booking-card .wc-bookings-date-picker {
    width: 100%;
}

.booking-card .ui-datepicker {
    border-radius: 18px !important;
    overflow: hidden;
    border: 1px solid #eee !important;
}

.booking-card .ui-datepicker-header {
    background: #3f854e !important
    color: white !important;
    border: none !important;
}

.booking-card .ui-datepicker-calendar .bookable a {
    background: #d4af37 !important;
    color: black !important;
    border-radius: 8px !important;
}

.booking-card button,
.booking-card .single_add_to_cart_button {
    width: 100%;
    border-radius: 14px !important;
    background: linear-gradient(135deg,#d4af37,#f3d56a) !important;
    color: black !important;
    font-weight: 700 !important;
    border: none !important;
    font-size: 17px !important;
    box-shadow: 0 10px 25px rgba(212,175,55,.35);
}

@media (max-width: 991px) {
    .cruise-main {
        grid-template-columns: 1fr;
        margin-top: -80px;
    }

    .cruise-right {
        position: static;
    }

    .cruise-hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .cruise-hero {
        min-height: 600px;
    }

    .cruise-hero-content {
        padding: 70px 20px;
		min-height:560px;
    }

    .cruise-hero h1 {
        font-size: 38px;
    }

    .cruise-description,
    .booking-card {
        padding: 25px;
    }

    .booking-price {
        font-size: 40px;
    }
}


/* =========================
   GLOBAL SECTION WRAPPER
========================= */

.cruise-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.cruise-ticket-includes,
.cruise-info-section,
.cruise-reviews,
.cruise-faq {
    margin: 90px 0;
}

.cruise-ticket-includes h2,
.cruise-info-section h2,
.cruise-reviews h2,
.cruise-faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #111;
    text-align: center;
}

/* =========================
   TICKET INCLUDES
========================= */

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.ticket-item {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all .25s ease;
}

.ticket-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(0,0,0,.12);
}

.ticket-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg,#d4af37,#f3d56a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: black;
}

.ticket-text {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/* =========================
   INFO SECTION
========================= */

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    background: white;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
	margin-bottom:30px;
}

.info-card h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 42px;
}

.info-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.boarding-address {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.6;
}

.boarding-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 18px;
    display: block;
}

.boarding-btn {
    display: inline-block;
    padding: 16px 28px;
    background: linear-gradient(135deg,#111,#2b2b2b);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    transition: all .25s ease;
	margin-top:20px;
}

.boarding-btn:hover {
    transform: translateY(-2px);
    color: white;
}

/* =========================
   REVIEWS PLACEHOLDER
========================= */

.reviews-placeholder {
    background: white;
    border-radius: 28px;
    padding: 70px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    text-align: center;
    font-size: 20px;
    color: #666;
    font-weight: 500;
}

/* =========================
   FAQ
========================= */

.faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.07);
    margin-bottom: 18px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 28px 32px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    color: #111;
}

.faq-toggle {
    font-size: 30px;
    line-height: 1;
    transition: transform .25s ease;
    color: #d4af37;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 32px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .cruise-ticket-includes h2,
    .cruise-info-section h2,
    .cruise-reviews h2,
    .cruise-faq h2 {
        font-size: 40px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 30px;
    }

    .info-card h2 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 18px;
        padding: 22px 24px;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
}

@media (max-width: 640px) {
    .cruise-container {
        padding: 0 15px;
    }

    .cruise-ticket-includes h2,
    .cruise-info-section h2,
    .cruise-reviews h2,
    .cruise-faq h2 {
        font-size: 32px;
    }

    .ticket-item {
        padding: 20px;
    }

    .ticket-text {
        font-size: 15px;
    }

}

.cruise-info-section .reviews-widget {
    width: 100%;
}

.cruise-info-section .reviews-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.cruise-info-section .reviews-stars {
    font-size: 30px;
    color: #d4af37;
    letter-spacing: 4px;
    margin-bottom: 10px;
    line-height: 1;
}

.cruise-info-section .reviews-rating {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.cruise-info-section .reviews-count {
    font-size: 15px;
    color: #777;
    font-weight: 500;
}

.cruise-info-section .reviews-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;
    margin-top: 30px;
    width: 100%;
}

.cruise-info-section .review-card {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    background: #fafafa !important;
    border-radius: 20px !important;
    padding: 26px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.06) !important;
    border: 1px solid rgba(0,0,0,.04);
    min-height: 230px;
    transition: all .25s ease;
    margin: 0 !important;
    width: 100%;
}

.cruise-info-section .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.1);
}

.cruise-info-section .review-text {
    display: block !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #444 !important;
    margin-bottom: 24px !important;
    font-style: italic;
}

.cruise-info-section .review-author {
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 18px;
}

.cruise-info-section .review-author strong {
    display: block;
    font-size: 16px;
    color: #111;
    font-weight: 700;
    margin-bottom: 4px;
}

@media (max-width: 991px) {
    .cruise-info-section .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .cruise-info-section .review-card {
        min-height: auto;
    }
}

.cruise-menu-section {
    padding: 0 0 10px;
}

.cruise-menu-section .cruise-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-card .menu-content,
.drinks-card .menu-content {
    line-height: 1.6;
}

/* A beadott menü-HTML alapformázása, ha nem adsz meg saját stílust.
   (A saját <style> blokkod ezeket felülírja, ha akarod.) */
.menu-content table {
    width: 100%;
    border-collapse: collapse;
}

.menu-content table td {
    padding: 8px 6px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.menu-content h3,
.menu-content h4 {
    margin: 18px 0 8px;
}

.menu-content ul {
    margin: 0;
    padding-left: 18px;
}




/* =========================================================
   BOOKING TIME SLOTS
========================================================= */

.wc-bookings-booking-form ul.block-picker{
    display:grid !important;

    grid-template-columns:repeat(3,1fr);

    gap:12px;

    margin-top:20px !important;
}


/* =========================================================
   SLOT ITEM
========================================================= */

.wc-bookings-booking-form ul.block-picker li{
    margin:0 !important;

    min-height:auto !important;
}


/* =========================================================
   SLOT BUTTON
========================================================= */

.wc-bookings-booking-form ul.block-picker li a{
    display:flex !important;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    min-height:78px;

    border-radius:18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.03)
        );

    border:1px solid rgba(212,175,55,0.14);

    color:#fff !important;

    text-decoration:none !important;

    font-size:22px;
    font-weight:700;

    transition:0.3s ease;

    backdrop-filter:blur(10px);
}


/* =========================================================
   REMAINING TEXT
========================================================= */

.wc-bookings-booking-form ul.block-picker li small{
    display:block;

    margin-top:6px;

    color:rgba(255,255,255,0.55);

    font-size:12px;

    font-weight:500;
}


/* =========================================================
   HOVER
========================================================= */

.wc-bookings-booking-form ul.block-picker li a:hover{
    transform:translateY(-3px);

    border-color:rgba(212,175,55,0.45);

    background:
        linear-gradient(
            180deg,
            rgba(212,175,55,0.18),
            rgba(212,175,55,0.08)
        );

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        0 0 20px rgba(212,175,55,0.12);
}


/* =========================================================
   ACTIVE / SELECTED
========================================================= */

.wc-bookings-booking-form ul.block-picker li.selected a,
.wc-bookings-booking-form ul.block-picker li a.selected{
    background:
        linear-gradient(
            180deg,
            #d4af37,
            #b89522
        ) !important;

    color:#000 !important;

    border-color:#f1d57a !important;

    box-shadow:
        0 12px 30px rgba(212,175,55,0.35);
}


/* =========================================================
   UNAVAILABLE
========================================================= */

.wc-bookings-booking-form ul.block-picker li.fully_booked a{
    opacity:0.35;

    cursor:not-allowed;

    background:rgba(255,255,255,0.03);
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:640px){

    .wc-bookings-booking-form ul.block-picker{
        grid-template-columns:repeat(2,1fr);
    }

    .wc-bookings-booking-form ul.block-picker li a{
        min-height:70px;

        font-size:18px;
    }
}


.wc-bookings-booking-form .block-picker li:nth-child(odd) a{
	    background: #4d67bb;
}


.wc-bookings-booking-form .block-picker li:nth-child(even) a{
	    background: #3e4d9e;
}

.booking-spaces-left{display:none!important;}


.wc-bookings-booking-form .wc-bookings-booking-cost{
	    display: block;
		margin: 40px 0px;
		background: #3f854e;
    border-top: 1px solid #3f854e;
	color:white;
}