 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif!important;
            font-weight: 300;
            color: #333;
            line-height: 1.6;
            background-color: #ffffff;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif!important;
            font-weight: 300;
            letter-spacing: 0.5px;
            color: #111111;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
        }

        /* ---------- BRAND NEW DESIGN – DIFFERENT LAYOUT, SAME COLORS ---------- */
        .rental-hero {
            position: relative;
            height: 80vh;
            min-height: 600px;
            background: #000;
            display: flex;
            align-items: center;
        }
        .hero-bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            gap: 6px;
            background: #000;
        }
        .hero-bg-col {
            flex: 1;
            overflow: hidden;
            opacity: 0.75;
        }
        .hero-bg-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-contentrent {
            position: relative;
            z-index: 10;
            max-width: 700px;
            margin-left: 10%;
            color: #fff;
        }
        .hero-sup {
            font-size: 0.75rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.2rem;
            display: block;
            font-weight: 400;
        }
        .hero-title {
            font-size: 4.2rem;
            font-weight: 300;
            line-height: 1.0;
            margin-bottom: 1.8rem;
            color: #fff;
            font-family: 'Playfair Display', serif!important;
        }
        .hero-desc {
            font-size: 1.15rem;
            font-weight: 300;
            color: rgba(255,255,255,0.85);
            max-width: 560px;
            margin-bottom: 2.8rem;
        }

        /* ---------- NEW FILTER – CARD STYLE, SAME COLORS ---------- */
        .filter-bar {
            background: #fff;
            padding: 40px 48px;
            margin: -60px 48px 0;
            position: relative;
            z-index: 20;
            border: 1px solid #f0f0f0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.02);
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            gap: 30px;
            border-radius: 0;  
        }
        .filter-item {
            flex: 1 0 160px;
        }
        .filter-item label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 10px;
            font-weight: 400;
        }
        .filter-select {
            width: 100%;
            padding: 12px 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif!important;
            font-weight: 300;
            color: #111;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right center;
            background-size: 14px;
        }
        .filter-btn {
            background: #111;
            color: #fff;
            border: none;
            padding: 14px 42px;
            font-size: 0.8rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 400;
            border: 1px solid #111;
            transition: 0.2s;
            cursor: pointer;
        }
        .filter-btn:hover {
            background: #fff;
            color: #111;
        }

        /* ---------- NEW SECTION HEADER – MINIMAL, SAME FONTS/COLORS ---------- */
        .section-marker {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin: 100px 0 60px;
        }
        .marker-left {
            display: flex;
            align-items: baseline;
            gap: 25px;
        }
        .marker-tag {
            font-size: 0.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #888;
            font-weight: 400;
        }
        .marker-title {
            font-size: 2.2rem;
            font-weight: 300;
            color: #111;
            margin: 0;
            font-family: 'Playfair Display', serif!important;
        }
        .marker-count {
            font-size: 0.95rem;
            color: #666;
            font-weight: 300;
        }
        .sort-new {
            padding: 10px 35px 10px 20px;
            border: 1px solid #e0e0e0;
            background: #fff;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif!important;
            color: #666;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
        }

        /* ---------- NEW CARD DESIGN – DIFFERENT, FRESH, 3-COLUMN GRID ---------- */
        .rental-grid-new {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px 35px;
            margin: 50px 0 90px;
        }
        .card-new {
            background: #fff;
            display: flex;
            flex-direction: column;
            transition: all 0.25s ease;
        }
        .card-new:hover .card-visual img {
            transform: scale(1.02);
        }
        .card-visual {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            margin-bottom: 25px;
            border: none;  /* new: no border, clean edge */
            background: #fafafa;
        }
        .card-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-badge-new {
            position: absolute;
            bottom: 18px;
            left: 18px;
            background: rgba(255,255,255,0.92);
            padding: 8px 20px;
            font-size: 0.7rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #111;
            font-weight: 400;
            backdrop-filter: blur(3px);
            border: 1px solid rgba(0,0,0,0.02);
        }
        .card-price-new {
            font-size: 1.4rem;
            font-weight: 400;
            color: #111;
            margin-bottom: 8px;
            display: flex;
            align-items: baseline;
            gap: 6px;
        }
        .card-price-new span {
            font-size: 0.85rem;
            font-weight: 300;
            color: #777;
        }
        .card-title-new {
            font-family: 'Playfair Display', serif!important;
            font-size: 1.5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #111;
        }
        .card-location-new {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #666;
            font-weight: 300;
            margin-bottom: 20px;
        }
        .card-location-new i {
            color: #aaa;
            font-size: 0.8rem;
        }
        .card-features-new {
            display: flex;
            gap: 25px;
            padding-top: 18px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.85rem;
            color: #888;
        }
        .card-features-new i {
            margin-right: 6px;
            color: #aaa;
        }
        .card-season-new {
            margin-top: 16px;
            font-size: 0.8rem;
            color: #888;
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f9f9f9;
            padding: 8px 18px;
            width: fit-content;
        }

        /* ---------- NEW DESTINATIONS – SPLIT LAYOUT, SAME COLORS ---------- */
        .dest-new {
            background: #f9f9f9;
            padding: 100px 0;
            margin-top: 20px;
        }
        .dest-flex {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        .dest-left {
            flex: 1;
        }
        .dest-left h2 {
            font-size: 2.8rem;
            font-weight: 300;
            margin-bottom: 25px;
            color: #111;
        }
        .dest-left p {
            font-size: 1.1rem;
            color: #666;
            max-width: 450px;
            font-weight: 300;
        }
        .dest-right {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .dest-item {
            background: #fff;
            padding: 40px 35px;
            border: 1px solid #f0f0f0;
            transition: 0.2s;
        }
        .dest-item:hover {
            background: #111;
            border-color: #111;
        }
        .dest-item:hover h3,
        .dest-item:hover .dest-meta,
        .dest-item:hover p {
            color: #fff;
        }
        .dest-item h3 {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 12px;
            color: #111;
        }
        .dest-meta {
            font-size: 0.75rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 18px;
            font-weight: 400;
        }
        .dest-item p {
            color: #666;
            font-size: 0.9rem;
            font-weight: 300;
        }

        /* ---------- CTA – DIFFERENT, SAME COLORS ---------- */
        .cta-new {
            padding: 120px 0;
            text-align: center;
            background: #fff;
            border-top: 1px solid #f0f0f0;
        }
        .cta-new h2 {
            font-size: 2.8rem;
            font-weight: 300;
            margin-bottom: 25px;
            color: #111;
        }
        .cta-new p {
            font-size: 1.1rem;
            color: #666;
            max-width: 550px;
            margin: 0 auto 45px;
            font-weight: 300;
        }
        .cta-btn-new {
            display: inline-block;
            border: 1px solid #111;
            color: #111;
            padding: 16px 58px;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
            background: transparent;
        }
        .cta-btn-new:hover {
            background: #111;
            color: #fff;
        }
        
        /*wishlist style css start*/
        .card-visual {
    position: relative;
}

.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

.wishlist-icon i {
    font-size: 18px;
    color: #999;
    transition: 0.3s;
}


.wishlist-icon.active i {
    color: red;
}
/*wishlist style css end*/
      

        /* ---------- RESPONSIVE – 3 CARDS THEN 2 THEN 1 ---------- */
        @media (max-width: 1200px) {
            .rental-grid-new { grid-template-columns: repeat(3, 1fr); gap: 30px; }
        }
        @media (max-width: 1000px) {
            .rental-grid-new { grid-template-columns: repeat(2, 1fr); }
            .dest-flex { flex-direction: column; }
            .dest-right { width: 100%; }
        }
        @media (max-width: 750px) {
            .rental-grid-new { grid-template-columns: 1fr; }
            .filter-bar { margin: -40px 20px 0; flex-direction: column; }
            .hero-title { font-size: 3rem; }
            .dest-right { grid-template-columns: 1fr; }
        }
  