﻿:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-light: #e5e7eb;
    --bg-soft: #f8fafc;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.booking-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* Field wrapper */
.booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    /* Guests width */
    .booking-field.guests {
        width: 90px;
    }

    /* Date takes remaining space */
    .booking-field.datetime {
        flex: 1;
    }

    /* Labels */
    .booking-field label {
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
    }

    /* INPUT STYLING (border moved here) */
    .booking-field input {
        height: 44px;
        padding: 0 14px;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
        font-size: 15px;
        font-weight: 500;
        background-color: #fff;
        transition: all 0.25s ease;
    }

        /* Hover */
        .booking-field input:hover {
            border-color: #0ea5e9;
        }

        /* Focus */
        .booking-field input:focus {
            outline: none;
            border-color: #0ea5e9;
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
        }

        /* Cursor for datetime */
        .booking-field input[type="datetime-local"] {
            cursor: pointer;
        }
/* =========================
       LIST VIEW LAYOUT
    ========================= */

.list-view .col-lg-4,
.list-view .col-md-6,
.list-view .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Card becomes horizontal */
.list-view .product-card {
    display: flex;
    gap: 20px;
    padding: 16px;
}

    /* Image on left */
    .list-view .product-card .image {
        flex: 0 0 280px;
        max-width: 280px;
        border-radius: 14px;
        overflow: hidden;
    }

        /* Image fit */
        .list-view .product-card .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /* Content on right */
    .list-view .product-card .content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

/* Title spacing */
.list-view .product-title h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

/* Price + button alignment */
.list-view .price-booking-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

/* Booking inputs stay in one row */
.list-view .booking-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

/* Guests small */
.list-view .booking-field.guests {
    width: 90px;
}

/* Date wide */
.list-view .booking-field.datetime {
    flex: 1;
}

/* Inputs */
.list-view .booking-field input {
    height: 42px;
    border-radius: 10px;
}

/* =========================
       MOBILE STACKING
    ========================= */
@media (max-width: 768px) {
    .list-view .product-card {
        flex-direction: column;
    }

        .list-view .product-card .image {
            max-width: 100%;
        }

    .list-view .booking-row {
        flex-direction: column;
    }

    .list-view .booking-field.guests {
        width: 100%;
    }

    .list-card {
        flex-direction: column;
    }

    .list-card-image {
        width: 100%;
        height: 220px;
    }

    .booking-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-inputs {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .booking-row {
        flex-direction: column;
    }

    .booking-field.guests {
        width: 100%;
    }
    #loginTypeRadioWrapper {
        flex-direction: column;
        gap: 15px;
    }
}

.hero-section {
    padding: 72px 0;
    background: linear-gradient( to right, rgba(240, 249, 255, 0.95), rgba(240, 249, 255, 0.85) );
}

    .hero-section h1 {
        font-size: 44px;
        line-height: 1.2;
        color: var(--text-dark);
        margin-bottom: 16px;
    }

    .hero-section p {
        font-size: 17px;
        color: var(--text-muted);
        max-width: 520px;
    }

.section-title {
    margin-bottom: 28px;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .section-title p {
        color: var(--text-muted);
        font-size: 15px;
    }

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    }

.list-view .product-card .image {
    width: 400px;
    min-width: 400px;
    border-radius: 14px;
    overflow: hidden;
}

    .list-view .product-card .image img {
        object-fit: cover;
    }

.product-card .content {
    padding: 8px 4px;
}

.product-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.card-person-time {
    margin: 8px 0 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.card-price .heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-price span {
    font-size: 14px;
    color: var(--text-muted);
}

.button--primary {
    background: var(--primary);
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
}

    .button--primary:hover {
        background: var(--primary-dark);
    }

.booking-row {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.booking-field label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.booking-field input {
    height: 42px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-light);
    padding: 0 12px;
    font-size: 14px;
}

    .booking-field input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
    }

.badge {
    background: #fff;
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.review {
    background: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

footer {
    background: var(--bg-soft);
    padding: 48px 0;
}

    footer h6 {
        font-weight: 600;
        margin-bottom: 12px;
    }

    footer a {
        color: var(--text-muted);
        font-size: 14px;
    }

        footer a:hover {
            color: var(--primary);
        }

/* Tour includes list */
.tour-includes {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

    /* Each list item */
    .tour-includes li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 14.5px;
        line-height: 1.6;
        color: #475569; /* slate gray */
    }

        /* Custom bullet (check icon style) */
        .tour-includes li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 14px;
            color: #0ea5e9; /* primary blue */
            font-weight: 600;
        }

        /* Long text readability */
        .tour-includes li:last-child {
            margin-bottom: 0;
        }
/* Card container */
.list-card {
    display: flex;
    gap: 24px;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

/* Image */
.list-card-image {
    position: relative;
    width: 400px;
    min-width: 400px;
    height: 375px;
    border-radius: 16px;
    overflow: hidden;
}

    .list-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Badge */
    .list-card-image .badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #fff;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
    }

    /* Rating */
    .list-card-image .rating {
        position: absolute;
        bottom: 12px;
        left: 12px;
        background: #fff;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 13px;
    }

/* Content */
.list-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    /* Title */
    .list-card-content .title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

/* Includes */
.tour-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

    .tour-includes li {
        padding-left: 24px;
        position: relative;
        margin-bottom: 8px;
        font-size: 14.5px;
        color: #475569;
    }

        .tour-includes li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #6366f1;
            font-weight: 600;
        }

/* Booking bar */
.booking-bar {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

    /* Price */
    .booking-bar .price {
        font-size: 22px;
        font-weight: 700;
    }

        .booking-bar .price span {
            font-size: 14px;
            color: #64748b;
        }

/* Inputs */
.booking-inputs {
    display: flex;
    gap: 12px;
}

    .booking-inputs input {
        height: 42px;
        width: 140px;
        padding: 0 12px;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
    }

/* Button */
.btn-primary {
    margin-left: auto;
    background: #0ea5e9;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

    .btn-primary:hover {
        background: #0284c7;
    }


@media (max-width: 991px) {
    .form-search {
        max-width: 700px;
    }

    .drawer-block {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .drawer-additional-menu .menu-link {
        font-size: 16px;
    }
}
.section-headings-horizontal {
    display: flex;
    justify-content: center; /* center horizontally */
}

    .section-headings-horizontal .btn-primary {
        display: flex;
        align-items: center; /* center vertically */
        justify-content: center; /* center text horizontally */
        width: 100%; /* full-width button */
        max-width: 100%;
    }