        /* â”€â”€ VARIABLES â”€â”€ */
        :root {
            --gold: #b59a5d;
            --gold-lt: #d4bc87;
            --gold-dk: #8f7a42;
            --teal: #098792;
            --teal-dk: #086e76;
            --dark: #0d1117;
            --text: #2c3e50;
            --muted: #6c7a8a;
            --border: #e2e8f0;
            --white: #ffffff;
            --bg: #f8f9fa;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            /* font-family: 'Jost', sans-serif; */
            background: var(--bg);
            color: var(--text);
        }

        /* â”€â”€ HERO â”€â”€ */
        .hero-banner {
            position: relative;
            height: 550px;
            overflow: hidden;
        }

        .hero-banner video,
        .hero-banner .hero-fallback {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 100%);
            z-index: 1;
        }

        .hero-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 2;
            padding: 32px 40px;
        }

        .hero-title h1 {
            /* font-family: 'Playfair Display', serif; */
            font-size: clamp(22px, 3.5vw, 38px);
            font-weight: 700;
            color: #fff;
            letter-spacing: .02em;
        }

        /* â”€â”€ BREADCRUMB â”€â”€ */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
        }

        .breadcrumb-bar .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .bc-left {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--muted);
        }

        .bc-left a {
            color: var(--teal);
            text-decoration: none;
        }

        .bc-left a:hover {
            text-decoration: underline;
        }

        .bc-left i {
            font-size: 10px;
            color: var(--muted);
        }

        .bc-nav-btns {
            display: flex;
            gap: 10px;
        }

        .bc-btn {
            padding: 6px 16px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text);
            background: #fff;
            cursor: pointer;
            text-decoration: none;
            transition: all .2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .bc-btn:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

        /* â”€â”€ GALLERY SLIDER â”€â”€ */
        .gallery-section {
            padding: 48px 0;
            background: #fff;
        }

        .gallery-section h2 {
            text-align: center;
            /* font-family: 'Playfair Display', serif; */
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 28px;
            color: var(--text);
        }

        .gallery-slider-wrap {
            position: relative;
            overflow: hidden;
        }

        .gallery-track {
            display: flex;
            gap: 16px;
            animation: galleryScroll 30s linear infinite;
            width: max-content;
        }

        .gallery-track:hover {
            animation-play-state: paused;
        }

        .gallery-track.manual-control {
            animation: none;
            transition: transform 0.5s ease;
        }

        .gallery-item {
            width: 340px;
            height: 220px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        @keyframes galleryScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, .45);
            border: none;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 2;
            transition: background .2s;
        }

        .gallery-nav:hover {
            background: rgba(11, 139, 148, .8);
        }

        .gallery-nav.prev {
            left: 14px;
        }

        .gallery-nav.next {
            right: 14px;
        }

        .gallery-slider-wrap::before,
        .gallery-slider-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 60px;
            z-index: 1;
            pointer-events: none;
        }

        .gallery-slider-wrap::before {
            left: 0;
            background: linear-gradient(to right, #fff, transparent);
        }

        .gallery-slider-wrap::after {
            right: 0;
            background: linear-gradient(to left, #fff, transparent);
        }

        /* â”€â”€ PROPERTY TITLE â”€â”€ */
        .prop-title-row {
            max-width: 1200px;
            margin: 32px auto 0;
            padding: 0 24px;
            text-align: center;
        }

        .prop-title-row h2 {
            /* font-family: 'Playfair Display', serif; */
            font-size: clamp(22px, 3vw, 34px);
            color: var(--text);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .prop-meta-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            font-size: 14px;
            color: var(--muted);
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .meta-item i {
            color: var(--teal);
            font-size: 15px;
        }

        /* â”€â”€ CONTENT LAYOUT â”€â”€ */
        .content-wrap {
            max-width: 1200px;
            margin: 28px auto 6px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
            align-items: start;
        }

        /* â”€â”€ PROPERTY TABS â”€â”€ */
        .tabs-nav {
            display: flex;
            border-bottom: 2px solid var(--border);
            margin-bottom: 28px;
        }

        .prop-tab-btn {
            padding: 11px 22px;
            font-family: 'Jost', sans-serif;
            font-size: 13.5px;
            font-weight: 500;
            border: none;
            background: none;
            color: var(--muted);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all .2s;
            letter-spacing: .04em;
        }

        .prop-tab-btn:hover {
            color: var(--teal);
        }

        .prop-tab-btn.active {
            color: var(--white);
            background: var(--teal);
            border-radius: 4px 4px 0 0;
            border-bottom-color: var(--teal);
        }

        .prop-tab-pane {
            display: none;
        }

        .prop-tab-pane.active {
            display: block;
            animation: tabFadeIn .3s ease both;
        }

        @keyframes tabFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* â”€â”€ DESCRIPTION TAB â”€â”€ */
        .desc-section {
            margin-bottom: 32px;
        }

        .desc-section h4 {
            /* font-family: 'Playfair Display', serif; */
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
        }

        .desc-section p {
            font-size: 14.5px;
            line-height: 1.78;
            color: #4a5568;
            margin-bottom: 12px;
        }

        .desc-list {
            list-style: none;
            margin: 12px 0 16px;
        }

        .desc-list li {
            font-size: 14px;
            color: #4a5568;
            padding: 5px 0 5px 22px;
            position: relative;
        }

        .desc-list li::before {
            content: '›';
            position: absolute;
            left: 6px;
            color: var(--gold);
            font-size: 16px;
        }

        /* â”€â”€ AMENITIES TAB â”€â”€ */
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .amenity-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 18px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: box-shadow .2s, border-color .2s;
        }

        .amenity-card:hover {
            box-shadow: 0 4px 16px rgba(11, 139, 148, .12);
            border-color: var(--teal);
        }

        .amenity-card i {
            font-size: 20px;
            color: var(--teal);
            width: 28px;
            flex-shrink: 0;
        }

        .amenity-card span {
            font-size: 13.5px;
            color: var(--text);
        }

        /* â”€â”€ VIDEO TAB â”€â”€ */
        .video-container {
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 16/9;
            position: relative;
        }

        .video-container video,
        .video-container iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
        }

        /* â”€â”€ REVIEWS TAB â”€â”€ */
        .review-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 22px;
            margin-bottom: 16px;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .reviewer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--teal));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .reviewer-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text);
        }

        .reviewer-date {
            font-size: 12px;
            color: var(--muted);
        }

        .review-stars {
            color: var(--gold);
            font-size: 13px;
            margin-bottom: 8px;
        }

        .review-text {
            font-size: 13.5px;
            line-height: 1.7;
            color: #4a5568;
        }

        /* â”€â”€ CALENDAR TAB â”€â”€ */
        .calendar-wrap {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 28px;
        }

        .calendar-wrap h4 {
            /* font-family: 'Playfair Display', serif; */
            font-size: 18px;
            margin-bottom: 18px;
            color: var(--text);
        }

        .calendar-legend {
            display: flex;
            gap: 18px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            color: var(--muted);
        }

        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 2px;
        }

        /* â”€â”€ LOCATION TAB â”€â”€ */
        .location-map {
            width: 100%;
            height: 380px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* â”€â”€ BOOKING WIDGET â”€â”€ */
        .booking-widget {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 32px rgba(0, 0, 0, .1);
            position: sticky;
            top: 80px;
        }

        .widget-header {
            background: linear-gradient(135deg, var(--teal), var(--teal-dk));
            padding: 18px 22px;
            color: #fff;
            text-align: center;
        }

        .widget-header .price {
            /* font-family: 'Playfair Display', serif; */
            font-size: 28px;
            font-weight: 700;
            color: var(--gold-lt);
        }

        .widget-header .price small {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, .8);
        }

        .widget-header .stars {
            color: var(--gold-lt);
            font-size: 14px;
            letter-spacing: 2px;
        }

        .widget-body {
            padding: 22px;
        }

        .date-group {
            display: grid;
            gap: 20px;
        }

        .form-group-w {
            margin-top: 17px;
        }

        .form-group-w {
            margin-bottom: 14px;
        }

        .form-group-w label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
            display: block;
            margin-bottom: 5px;
        }

        .form-control-styled {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-family: 'Jost', sans-serif;
            font-size: 13.5px;
            color: var(--text);
            background: #fff;
            appearance: none;
            transition: border-color .2s, box-shadow .2s;
            cursor: pointer;
        }

        .form-control-styled:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(11, 139, 148, .1);
        }

        .form-control-styled::placeholder {
            color: #b0bec5;
        }

        .widget-divider {
            text-align: center;
            color: var(--muted);
            font-size: 12px;
            margin: 14px 0;
            position: relative;
        }

        .widget-divider::before,
        .widget-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 44%;
            height: 1px;
            background: var(--border);
        }

        .widget-divider::before {
            left: 0;
        }

        .widget-divider::after {
            right: 0;
        }

        .contact-info-widget {
            text-align: center;
        }

        .contact-info-widget a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            font-size: 13.5px;
            color: var(--teal);
            text-decoration: none;
            margin-bottom: 6px;
        }

        .contact-info-widget a:hover {
            color: var(--teal-dk);
        }

        .btn-book-now {
            width: 100%;
            padding: 14px;
            background: var(--gold);
            color: var(--dark);
            border: none;
            border-radius: 6px;
            font-family: 'Jost', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background .2s;
            margin-bottom: 14px;
        }

        .btn-book-now:hover {
            background: var(--gold-lt);
        }

        .widget-note {
            font-size: 11.5px;
            color: var(--muted);
            text-align: center;
            line-height: 1.6;
        }

        /* â”€â”€ BOOKING PLATFORM CARDS â”€â”€ */
        .booking-platforms {
            padding: 16px 22px 20px;
            border-top: 1px solid var(--border);
        }

        .booking-platforms p {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--muted);
            margin-bottom: 10px;
            text-align: center;
        }

        .platform-cards {
            display: flex;
            gap: 10px;
            flex-direction: column;
        }

        .platform-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            text-decoration: none;
            background: var(--bg);
            transition: all .2s;
            justify-content: center;
        }

        .platform-card img {
            height: 20px;
        }

        .platform-card span {
            font-size: 13px;
            font-weight: 500;
            color: var(--text);
        }

        .platform-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
        }

        .platform-card.airbnb:hover {
            border-color: #ff385c;
        }

        .platform-card.bookingcom:hover {
            border-color: #003580;
        }

        /* â”€â”€ NEARBY ATTRACTIONS â”€â”€ */
        #coconut-coast-section {
            padding: 60px 0;
            background: var(--bg);
        }

        @media screen and (max-width: 968px) {

            .content-wrap {
                max-width: 1200px;
                margin: 28px auto 6px;
                padding: 0 24px;
                display: contents;
                grid-template-columns: 1fr 320px;
                gap: 32px;
                align-items: start;
            }

            .prop-meta-row {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 28px;
                flex-wrap: wrap;
                font-size: 14px;
                color: var(--muted);
                margin-bottom: 20px;
            }

            .tabs-nav {

                padding: 0 20px;
            }

            .prop-tab-pane.active {

                padding: 0 20px;
            }

            .booking-widget {
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 6px 32px rgba(0, 0, 0, .1);
                position: sticky;
                top: 80px;
                margin: 0 20px;
            }

        }



        @media screen and (max-width: 767px) {

            .tabs-nav {
                display: flow;
                border-bottom: 2px solid var(--border);
                margin-bottom: 28px;
            }

            .date-group {
                display: grid;
                grid-template-columns: 2fr fr !important;
                gap: 19px;
                margin-bottom: 14px;
            }

            .section-title {
                font-size: 27px;
                font-weight: 700;
                color: #0b2e2f;
                margin-bottom: 34px;
            }

            .breadcrumb-bar .inner {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 24px;
                display: inline;
                align-items: stretch;
                justify-content: space-between;
                gap: 3px;
            }
        }