
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        
        :root {
            --primary: #ff385c;
            --primary-hover: #e61e4d;
            --dark: #222222;
            --light-gray: #f7f7f7;
            --gray: #717171;
            --border: #dddddd;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.6;
            position: relative;
            min-height: 100vh;
        }
        
        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            background-color: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            padding: 12px 40px;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img{
            width: 50px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo i {
            margin-right: 5px;
        }
        
        .search-container {
            display: flex;
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: 8px 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            width: 350px;
        }
        
        .search-container input {
            border: none;
            outline: none;
            padding: 8px;
            flex: 1;
            font-size: 14px;
        }
        
        .search-container button {
            background: var(--primary);
            border: none;
            color: var(--white);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .search-container button:hover {
            background: var(--primary-hover);
        }
        
        .user-menu {
            display: flex;
            align-items: center;
        }
        
        .user-menu a {
            margin-left: 20px;
            text-decoration: none;
            color: var(--gray);
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .user-menu a:hover {
            color: var(--primary);
        }
        
        .currency-selector {
            position: relative;
            margin-left: 20px;
            cursor: pointer;
        }
        
        .currency-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--white);
            box-shadow: var(--shadow);
            border-radius: 8px;
            padding: 10px;
            min-width: 100px;
            z-index: 100;
        }
        
        .currency-selector:hover .currency-dropdown {
            display: block;
        }
        
        .currency-dropdown li {
            list-style: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .currency-dropdown li:hover {
            background-color: var(--light-gray);
        }
        
        .currency-dropdown li.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .currency-dropdown li i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }
        
        .current-currency {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: 14px;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .current-currency:hover {
            background-color: var(--light-gray);
            color: var(--primary);
        }
        
        .current-currency i {
            margin-right: 5px;
        }
        
        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            margin-left: 20px;
            cursor: pointer;
        }
        
        /* Categories */
        .categories {
            padding: 25px 20px;
            background-color: var(--white);
            
        }
        
        .section-title {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .categories-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }
        
        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            padding: 15px;
            border-radius: 12px;
            width: 120px;
        }
        
        .category-item:hover, .category-item.active {
            background-color: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .category-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        
        .category-item.active .category-icon {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .category-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray);
            text-align: center;
        }
        
        /* Property Listings */
        .listings {
            padding: 0 40px 50px;
        }
        
        .listings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .view-all {
            color: var(--dark);
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .view-all:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .property-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }
        
        .property-card:hover {
            transform: translateY(-5px);
        }
        
        /* Image slider container */
        .slider-container {
            border-radius: 8px;
            height: 180px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slider-nav {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            gap: 5px;
        }
        
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: var(--white);
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            opacity: 0;
        }
        
        .property-card:hover .slider-btn {
            opacity: 1;
        }
        
        .slider-btn:hover {
            background: var(--white);
        }
        
        .slider-prev {
            left: 10px;
        }
        
        .slider-next {
            right: 10px;
        }
        
        .property-details {
            padding: 10px;
        }
        
        .property-header {
            display: flex;
            justify-content: space-between;
        }
        
        .property-title {
            font-size: 18px;
            font-weight: 600;
        }
        
        .property-rating {
            display: flex;
            align-items: center;
        }
        
        .property-rating i {
            color: var(--primary);
            margin-right: 5px;
            font-size: 14px;
        }
        
        .property-location {
            color: var(--gray);
            font-size: 14px;
        }
        
        .property-dates {
            color: var(--gray);
            font-size: 12px;
            text-decoration: line-through;
            padding: 0;
        }
        
        .property-price {
            font-size: 16px;
            font-weight: 600;
        }
        
        .property-price span {
            font-weight: 400;
            color: var(--gray);
        }
        
        /* Featured Destinations */
        .destinations {
            padding: 50px 40px;
            background-color: var(--white);
        }
        
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .destination-card {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            height: 300px;
            cursor: pointer;
        }
        
        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .destination-card:hover .destination-image {
            transform: scale(1.05);
        }
        
        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: var(--white);
        }
        
        .destination-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .destination-distance {
            font-size: 16px;
        }
        
        /* Host Section */
        .host-section {
            padding: 80px 40px;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .host-content {
            flex: 1;
        }
        
        .host-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .host-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        .host-image {
            flex: 1;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .host-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Booking Section */
        .booking-section {
            padding: 80px 40px;
            background-color: var(--white);
            display: none;
        }
        
        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--light-gray);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .booking-header {
            background: var(--primary);
            color: var(--white);
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .booking-header h2 {
            font-size: 28px;
        }
        
        .close-booking {
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }
        
        .booking-content {
            display: flex;
            padding: 30px;
        }
        
        .booking-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 30px;
            max-height: 300px;
        }
        
        .booking-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .booking-details {
            flex: 1;
        }
        
        .booking-title {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .booking-location {
            color: var(--gray);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .booking-location i {
            margin-right: 8px;
        }
        
        .booking-price {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .booking-form {
            margin-top: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .booking-total {
            display: flex;
            justify-content: space-between;
            margin: 25px 0;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 18px;
            font-weight: 600;
        }
        
        .booking-actions {
            display: flex;
            gap: 15px;
        }
        
        /* Wishlist Section */
        .wishlist-section {
            padding: 60px 40px;
            background-color: var(--light-gray);
            display: none;
        }
        
        .wishlist-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .wishlist-empty {
            text-align: center;
            padding: 50px 0;
            color: var(--gray);
        }
        
        .wishlist-empty i {
            font-size: 60px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .wishlist-empty h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 40px 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #b0b0b0;
            font-size: 14px;
        }
        
        .social-icons a {
            color: var(--white);
            margin-left: 15px;
            font-size: 18px;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            color: var(--primary);
        }
        
        /* Property Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background: var(--white);
            border-radius: 16px;
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(50px);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .modal-close:hover {
            background-color: var(--light-gray);
        }
        
        .modal-content {
            display: flex;
            flex-direction: column;
        }
        
        .modal-slider {
            height: 400px;
            position: relative;
            overflow: hidden;
        }
        
        .modal-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .modal-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        
        .modal-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .modal-dot.active {
            background: var(--white);
        }
        
        .modal-details {
            padding: 30px;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .modal-title {
            font-size: 28px;
            font-weight: 600;
        }
        
        .modal-price {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .modal-location {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .modal-location i {
            margin-right: 8px;
        }
        
        .modal-description {
            margin-bottom: 30px;
            line-height: 1.7;
            color: var(--gray);
        }
        
        .amenities {
            margin-top: 30px;
        }
        
        .amenities h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .amenity-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .amenity-icon {
            width: 30px;
            height: 30px;
            background: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        /* MAP STYLES */
        .property-map {
            height: 300px;
            width: 100%;
            border-radius: 12px;
            margin-top: 20px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border: 1px solid var(--border);
        }
        
        .map-container {
            height: 100%;
            width: 100%;
        }
        
        .map-tab {
            display: flex;
            margin-top: 20px;
            border-bottom: 1px solid var(--border);
        }
        
        .map-tab-btn {
            padding: 10px 15px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 500;
            color: var(--gray);
            position: relative;
        }
        
        .map-tab-btn.active {
            color: var(--primary);
        }
        
        .map-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .modal-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .modal-btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--white);
            border: none;
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid var(--dark);
            color: var(--dark);
        }
        
        .btn-primary:hover {
            background: var(--primary-hover);
        }
        
        .btn-outline:hover {
            background: var(--light-gray);
        }
        
        /* Search results */
        .search-results {
            padding: 20px 40px;
            background-color: var(--white);
        }
        
        .results-header {
            margin-bottom: 20px;
        }
        
        .results-count {
            color: var(--gray);
            font-size: 16px;
            margin-top: 5px;
        }

        /* Favorite button */
        .favorite-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .favorite-btn:hover {
            background: var(--white);
            transform: scale(1.1);
        }
        
        .favorite-btn i {
            font-size: 18px;
            color: var(--gray);
            transition: all 0.3s ease;
        }
        
        .favorite-btn.active i {
            color: var(--primary);
        }
        
        .favorite-btn:hover i {
            color: var(--primary);
        }
        
        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--dark);
            color: var(--white);
            padding: 15px 25px;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 3000;
            transition: transform 0.3s ease;
        }
        
        .toast.show {
            transform: translateX(-50%) translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 12px 20px;
            }
            
            .search-container {
                width: 250px;
            }
            
            .host-section, .booking-section {
                flex-direction: column;
            }
            
            .categories, .listings, .destinations, .host-section, .booking-section {
                padding: 40px 20px;
            }
            
            .modal-slider {
                height: 250px;
            }
            
            .modal-details {
                padding: 20px;
            }
            
            .modal-title {
                font-size: 22px;
            }
            
            .modal-price {
                font-size: 20px;
            }
            
            .booking-content {
                flex-direction: column;
            }
            
            .booking-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .property-map {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar {
                flex-direction: column;
                gap: 15px;
            }
            
            .search-container {
                width: 100%;
            }
            
            .user-menu {
                width: 100%;
                justify-content: center;
            }
            
            .hero {
                height: 400px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .properties-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-overlay {
                padding: 10px;
            }
            
            .modal {
                width: 95%;
            }
            
            .modal-buttons, .booking-actions {
                flex-direction: column;
            }
            
            .categories-grid {
                justify-content: center;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
        .btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        .host-content a{
            text-decoration: none;
            color: var(--white);
        }


        #map-tab {
            display: none;
        }



        @media (max-width: 580px){
              .categories {
            padding: 12.5px 10px;
        }
        
        .section-title {
            font-size: 15px;
            margin-bottom: 10px;
        }
        
        .categories-grid {
            display: flex;
        }
        
        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            padding: 15px;
            border-radius: 12px;
            width: 10px;
        }
        
        .category-item:hover, .category-item.active {
            background-color: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .category-icon {
            width: 20px;
            height: 20px;
            border-radius: 0;
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .category-name {
            font-size: 10px;
            font-weight: 500;
        }
        /* Property Listings */
        .listings {
            padding: 0 20px 25px;
        }
        
        .listings-header {
            margin-bottom: 20px;
        }
        
        .properties-grid {
            grid-template-columns: repeat(auto-fill, minmax(110.5px, 1fr));
            gap: 10px;
        }
        
        .property-card {
            border-radius: 12px;
        }
        
        /* Image slider container */
        .slider-container {
            height: 130px;
            width: 100%;
        }
        
        .slider-dot {
            width: 5px;
            height: 5px;
        }
        
        .slider-btn {
            width: 20px;
            height: 20px;
        }
        
        .property-details {
            padding: 8px;
        }
        
        .property-header {
            margin-bottom: -8px;
        }
        
        .property-title {
            font-size: 12px;
        }
        
        .property-rating i {
            margin-right: 5px;
            font-size: 13px;
        }
        .property-rating span{
            font-size: 13px;
        }
        
        .property-location {
            margin-bottom: 1px;
            font-size: 13px;
        }
        
        .property-dates {
            margin-bottom: 1px;
        }
        
        .property-price {
            font-size: 12px;
            margin-top: -3px;
        }

        swiper-container {
            width: 300px;
        }

         .favorite-btn {
            width: 25px;
            height: 25px;
        }
        
        .favorite-btn i {
            font-size: 13px;
        }

        }

   