* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Buttons & primary actions - UNCHANGED (kept as-is per brand) */
    --primary-color: #2563eb;
    --secondary-color: #059669;
    --green-600: #059669;
    --green-500: #10b981;
    --white: #ffffff;

    /* Soft Lavender palette - twilight elegance */
    --pc-space-indigo: #22223b;  /* headings / dark text */
    --pc-dusty-grape:  #4a4e69;  /* secondary text / accents */
    --pc-lilac-ash:    #9a8c98;  /* muted text / subtitles */
    --pc-almond-silk:  #c9ada7;  /* soft borders / dividers */
    --pc-seashell:     #f2e9e4;  /* soft section backgrounds */

    /* Theme text & surfaces mapped to the palette */
    --text-dark: #22223b;        /* Space Indigo */
    --text-light: #4a4e69;       /* Dusty Grape */
    --text-lighter: #9a8c98;     /* Lilac Ash */
    --gray-50: #f2e9e4;          /* Seashell */
    --gray-100: #f7f1ee;         /* Seashell tint */
    --gray-200: #e8ddd8;         /* Almond Silk tint */
    --border-color: #c9ada7;     /* Almond Silk */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* About Section */
.about-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    position: relative;
    min-height: 60vh;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    min-height: 50vh;
}

.about-content {
    max-width: 800px;
    text-align: left;
    color: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
        min-height: 50vh;
    }
    .about-container {
        padding: 0 1rem;
        min-height: 40vh;
    }
    .about-content h2 {
        font-size: 2rem;
    }
    .about-content p {
        font-size: 1rem;
    }
}


/* Hero Section */
.hero {
    min-height: 52vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
    url('/images/cottage-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 1rem;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    width: 100%;
    padding: 0 2rem;
}

/* Hero search box */
.hero-search-wrap {
    margin-top: 1.5rem;
    color: #333;
}

.hero-search-wrap .nav-search-avail-label,
.hero-search-wrap .nav-search-input,
.hero-search-wrap .nav-search-input::placeholder,
.hero-search-wrap .nav-search-field i {
    color: #555;
}

.hero-search-wrap .nav-search-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-search-wrap .nav-search-form {

    height: 60px;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    border: none;

}

.hero h1 {

    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 
                 0 4px 16px rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(0, 0, 0, 0.2);

}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 
                 0 2px 8px rgba(0, 0, 0, 0.6),
                 0 0 12px rgba(0, 0, 0, 0.4);
}

/* Main Content */
.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Styles */
.section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: stretch;
}

/* Property Cards */
.property-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.save-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.save-btn i {
    font-size: 15pt;
    margin: auto;
}

.save-btn:hover {
    background: var(--white);
}

.property-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.property-location {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.property-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.feature-tag {
    background: var(--gray-100);
    color: var(--text-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.property-price {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: auto;
}

/* Destination Cards */
.destination-card {
    background-size: cover;
    background-position: center;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: end;
    padding: 1rem;
    color: var(--white);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    transition: background 0.3s ease;
}

.destination-card span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    color: var(--white);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.destination-card:hover::before {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.destination-card:hover span {
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Group Size Cards */
.group-size-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.group-size-card .btn {
    margin-top: auto;
}

.group-size-card:hover {
    transform: translateY(-2px);
}

.group-icon {
    width: 60px;
    height: 60px;
    background: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.group-size-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.group-size-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.group-size-card .btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background 0.2s ease;
    margin-top: auto;
}

.group-size-card .btn:hover {
    background: #1d4ed8;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.feature-card .btn {
    background: var(--green-600);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background 0.2s ease;
}

.feature-card .btn:hover {
    background: var(--green-500);
}

/* Featured Cottages Carousel */
.featured-cottages-wrapper {
    position: relative;
    overflow: hidden;
}

.featured-cottages {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
}

.featured-cottages .property-card {
    flex: 0 0 calc((100vw - 8rem) / 3 - 1rem);
    max-width: 350px;
    min-width: 280px;
}

@media (min-width: 1300px) {
    .featured-cottages .property-card {
        flex: 0 0 calc((1300px - 6rem) / 3 - 1rem);
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.carousel-nav-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn i {
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.carousel-nav-btn:hover i {
    color: var(--primary-color);
}

.carousel-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.carousel-nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:disabled i {
    color: var(--text-lighter);
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 600px) {

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .main-content {

        padding: 10px;
	
	}

    .grid-2,
    .grid-4:not(.featured-cottages),
    .grid-6 {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    /* Featured cottages wrapper on mobile */
    .featured-cottages-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
        position: relative;
    }

    /* Featured cottages carousel on mobile */
    .featured-cottages {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 0.5rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        width: 100%;
        transform: none;
    }

    .featured-cottages::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

    .featured-cottages .property-card {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 320px;
        scroll-snap-align: start;
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        background: var(--white);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .featured-cottages .property-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    }

    .featured-cottages .property-card .property-image {
        height: 240px;
        border-radius: 16px 16px 0 0;
        background-size: cover;
        background-position: center;
    }

    .featured-cottages .property-card .property-info {
        padding: 1.5rem;
    }

    .featured-cottages .property-card .property-name {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .featured-cottages .property-card .property-location {
        font-size: 0.875rem;
        color: var(--text-light);
        margin-bottom: 1rem;
    }

    .featured-cottages .property-card .property-features {
        margin-bottom: 1rem;
    }

    .featured-cottages .property-card .property-price {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--green-600);
    }

    /* Hide desktop carousel navigation on mobile */
    .carousel-nav {
        display: none;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .property-image {
        height: 180px;
    }

    .destination-card {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .hero {
        height: 50vh;
    }
}

/* ===== NEW DESTINATIONS SECTION ===== */

.destinationsLink {

    display: block;
    text-align: right;
    margin-top: 20px;
    width: 100%;

}


.destinationsHeader {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.destinationsPanel {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.destinationsUL {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.destinationsUL li {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8ecef;
}

.destinationsUL li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destinationsUL li a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.destination-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destinationsUL li:hover .destination-thumbnail {
    transform: scale(1.05);
}

.destination-info {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.5rem;
}

.destination-name {
    font-size: 12pt;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;

}

.cottageCount {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    white-space: nowrap;
}

/* Responsive Design for New Destinations */
@media (max-width: 768px) {
    .destinationsHeader {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .destinationsHeader::after {
        width: 60px;
        height: 3px;
    }
    
    .destinationsUL {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .destination-thumbnail {
        height: 180px;
    }
    
    .destination-info {
        padding: 1rem;
    }
    
    .destination-name {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cottageCount {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .destinationsPanel {
        padding: 0 0.5rem;
    }
    
    .destinationsHeader {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
    }
    
    .destinationsUL {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .destination-thumbnail {
        height: 160px;
    }
    
    .destination-info {
        padding: 0.875rem;
    }
    
    .destination-name {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .cottageCount {
        font-size: 0.85rem;
        align-self: flex-start;
    }
}

/* Large screens - limit max columns */
@media (min-width: 1300px) {
    .destinationsUL {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Very large screens */
@media (min-width: 1800px) {
    .destinationsUL {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Accessibility improvements */
.destinationsUL li a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.destinationsUL li a:focus .destination-thumbnail {
    transform: scale(1.02);
}

/* Loading state placeholder */
.destination-thumbnail[src=""], 
.destination-thumbnail:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Recently Added Grid */
.recently-added-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
    padding: 20px;
    background: #fff;
}

.grid-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.grid-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.grid-card-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f5f5f5;
}

.grid-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-card-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.grid-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    backdrop-filter: blur(4px);
}

.grid-badge-new {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
}

.grid-hot-tub {
    background: linear-gradient(135deg, #ff9a56, #ff8c42);
}

.grid-wifi {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.grid-beach {
    background: linear-gradient(135deg, #ffd89b, #ffd89b);
    color: #333;
}

.grid-pool {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
}

.grid-card-pet-friendly {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.grid-card-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.grid-card-content .btn {
    width: 100%;
    text-align: center;
    background: #5A9E2F !important;
    color: white !important;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 14px;
}

.grid-card-content .btn:hover {
    background: #4d8f24 !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(90, 158, 47, 0.3);
}

.grid-card-title {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.grid-card-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.grid-card-title a:hover {
    color: #0066cc;
}

.grid-card-location {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #666;
}

.grid-card-features {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.grid-feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #555;
}

.grid-feature i {
    color: #0066cc;
}

.grid-card-description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 10px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .recently-added-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 16px;
    }
}

@media (max-width: 1024px) {
    .recently-added-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .recently-added-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .grid-card-title {
        font-size: 14px;
    }

    .grid-card-content {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .recently-added-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }
}

.section {
    margin: 30px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.section-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.view-all-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.view-all-link:hover {
    text-decoration: underline;
}

.newWhiteBG {
    background: #fff;
    border-radius: 8px;
}

/* Grid Wrapper and Show More */
.grid-wrapper {
    position: relative;
}

.grid-collapsible {
    position: relative;
    overflow: hidden;
}

.grid-collapsible::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.grid-collapsible.show::after {
    opacity: 0;
    pointer-events: none;
}

.grid-card {
    animation: fadeInCard 0.3s ease-out;
}

.grid-card.show {
    animation: fadeInCard 0.3s ease-out;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-show-more-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.grid-show-more-btn {
    background: #5A9E2F;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.grid-show-more-btn:hover {
    background: #4d8f24;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(90, 158, 47, 0.3);
}

.grid-show-more-btn i {
    transition: transform 0.3s ease;
}

.grid-show-more-btn.expanded i {
    transform: rotate(180deg);
}

.grid-show-more-btn:active {
    transform: translateY(0);
}

/* ===== Search bar (hero + lodge) ===== */
.pc-searchbar{display:flex;flex-wrap:nowrap;align-items:stretch;gap:0;background:#fff;border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,.15);padding:0;max-width:1050px;margin:0 auto;overflow:visible;height:auto !important;}
.pc-searchbar .pc-field{display:flex;align-items:center;gap:8px;padding:14px 12px;flex:1 1 0;min-width:0;position:relative;}
.pc-searchbar .pc-field:not(:last-of-type)::after{content:'';position:absolute;right:0;top:20%;height:60%;width:1px;background:#e2e8f0;}
.pc-searchbar .pc-field i{color:#4a4e69;font-size:15px;flex:0 0 auto;}
.pc-searchbar .pc-input{border:none;outline:none;background:transparent;font-size:15px;color:#333;width:100%;min-width:0;padding:0;font-family:inherit;}
.pc-searchbar .pc-select{cursor:pointer;-webkit-appearance:none;appearance:none;}
.pc-searchbar .pc-toggle-field{justify-content:space-between;gap:10px;flex:0 0 auto;}
.pc-searchbar .pc-toggle-label{white-space:nowrap;color:#333;font-size:14px;display:flex;align-items:center;gap:8px;}
.pc-switch{position:relative;display:inline-block;width:44px;height:24px;flex:0 0 auto;}
.pc-switch input{opacity:0;width:0;height:0;}
.pc-slider{position:absolute;cursor:pointer;inset:0;background:#cbd5e0;transition:.2s;border-radius:24px;}
.pc-slider:before{content:'';position:absolute;height:18px;width:18px;left:3px;bottom:3px;background:#fff;transition:.2s;border-radius:50%;}
.pc-switch input:checked + .pc-slider{background:#4a9d4a;}
.pc-switch input:checked + .pc-slider:before{transform:translateX(20px);}
.pc-searchbar .nav-search-btn{flex:0 0 auto;align-self:stretch;display:flex;align-items:center;justify-content:center;border:none;background:#4a9d4a;color:#fff;font-weight:600;font-size:15px;padding:0 40px;margin:0;height:auto;border-radius:0 12px 12px 0;cursor:pointer;transition:background .2s;font-family:inherit;}
.pc-searchbar .nav-search-btn:hover{background:#3d8540;}
@media(max-width:820px){
    /* Stacked full-width card layout (Hoseasons-style) */
    .pc-searchbar{flex-wrap:wrap;flex-direction:column;padding:10px;gap:8px;background:#fff;border-radius:14px;}
    .pc-searchbar .pc-field{width:100%;flex:0 0 auto;padding:11px 14px;border:1px solid #d9dce1;border-radius:10px;gap:10px;}
    /* Remove the desktop vertical dividers and the doubled bottom borders */
    .pc-searchbar .pc-field:not(:last-of-type)::after{display:none;}
    .pc-searchbar .pc-field:not(:last-child){border-bottom:1px solid #d9dce1;}
    .pc-searchbar .pc-field i{font-size:15px;}
    .pc-searchbar .pc-input{font-size:15px;}
    .pc-guests-toggle{width:100%;}
    /* Pet friendly: label left / switch right */
    .pc-searchbar .pc-toggle-field{justify-content:space-between;}
    /* Hide the Search button only on the lodge bar (mobile); keep it on the top hero bar */
    #lodgeSearchForm .nav-search-btn{display:none;}
    .pc-searchbar .nav-search-btn{width:100%;padding:16px;margin:2px 0 0;border-radius:12px;font-size:16px;}
    /* Lodge bar: no button, so make its input taller */
    #lodgeSearchForm .pc-lodge-field{padding:16px 16px;}
    #lodgeSearchForm .pc-input{font-size:16px;}
    /* Shrink hero title so it fits, and give the hero more height */
    .hero{min-height:78vh;padding-top:1.5rem;}
    .hero h1{font-size:1.6rem !important;line-height:1.2;margin-bottom:.5rem;}
    .hero p{font-size:.95rem !important;margin-bottom:0;}
}

/* Guests popover */
.pc-guests-field{position:relative;}
.pc-guests-toggle{display:flex;align-items:center;justify-content:space-between;gap:8px;cursor:pointer;text-align:left;color:#333;}
.pc-guests-toggle span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.pc-guests-caret{color:#4a4e69 !important;font-size:12px !important;transition:transform .2s;}
.pc-guests-toggle[aria-expanded='true'] .pc-guests-caret{transform:rotate(180deg);}
.pc-guests-pop{position:absolute;top:calc(100% + 12px);left:0;z-index:60;width:340px;max-width:90vw;background:#fff;border-radius:14px;box-shadow:0 12px 40px rgba(0,0,0,.18);padding:8px 20px 16px;display:none;}
.pc-guests-pop.open{display:block;}
.pc-guests-row{display:flex;align-items:center;justify-content:space-between;padding:16px 0;border-bottom:1px solid #f0f0f0;}
.pc-guests-row:last-of-type{border-bottom:none;}
.pc-guests-meta strong{display:block;font-size:15px;color:#1a1a1a;font-weight:700;}
.pc-guests-meta small{color:#8a8a8a;font-size:13px;}
.pc-stepper{display:flex;align-items:center;gap:14px;}
.pc-step{width:38px;height:38px;border:1px solid #d9dce1;background:#fff;border-radius:10px;font-size:20px;line-height:1;color:#4a9d4a;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:.15s;}
.pc-step:hover:not(:disabled){border-color:#4a9d4a;}
.pc-step:disabled{color:#c4c4c4;background:#f4f5f7;border-color:#ececec;cursor:not-allowed;}
.pc-count{min-width:20px;text-align:center;font-size:16px;color:#1a1a1a;}
.pc-guests-actions{display:flex;justify-content:space-between;gap:12px;padding-top:18px;margin-top:6px;border-top:1px solid #f0f0f0;}
.pc-guests-clear,.pc-guests-apply{flex:1;padding:12px;border-radius:10px;font-size:15px;font-weight:600;cursor:pointer;transition:.15s;font-family:inherit;}
.pc-guests-clear{background:#fff;border:1px solid #d9dce1;color:#4a9d4a;}
.pc-guests-clear:hover{border-color:#4a9d4a;}
.pc-guests-apply{background:#4a9d4a;border:1px solid #4a9d4a;color:#fff;}
.pc-guests-apply:hover{background:#3d8540;}
@media(max-width:820px){
    .pc-guests-pop{width:100%;left:0;right:0;}
}

/* ---- Destination mega-menu (desktop) ---- */
.pc-dest-field input#countyInput{cursor:pointer;}
.pc-dest-panel{position:absolute;top:calc(100% + 12px);left:0;z-index:70;width:min(1000px,92vw);background:#fff;border-radius:14px;box-shadow:0 18px 50px rgba(0,0,0,.22);padding:22px 26px;display:none;max-height:70vh;overflow:auto;}
.pc-dest-panel.open{display:block;}
.pc-dest-mega{column-count:4;column-gap:28px;}
@media(max-width:1100px){.pc-dest-mega{column-count:3;}}
@media(max-width:900px){.pc-dest-mega{column-count:2;}}
.pc-dest-col{break-inside:avoid;text-align:left;}
.pc-dest-mega{text-align:left;}
.pc-dest-region{font-weight:700;font-size:16px;color:#1a1a1a;margin:14px 0 8px;text-align:left;}
.pc-dest-item{display:block;padding:5px 0;font-size:14px;color:#3a6b52;text-decoration:none;line-height:1.35;}
.pc-dest-item:hover{color:#1a1a1a;text-decoration:underline;}
.pc-dest-county{color:#1f4d38;font-weight:600;}
.pc-dest-loc{color:#5a7d6b;padding-left:2px;}
.pc-dest-auto{display:none;}
.pc-dest-panel.searching .pc-dest-mega{display:none;}
.pc-dest-panel.searching .pc-dest-auto{display:block;}
.pc-dest-auto .pc-dest-item{padding:9px 6px;border-radius:8px;}
.pc-dest-auto .pc-dest-item:hover{background:#f4f7f5;text-decoration:none;}
.pc-dest-auto .pc-dest-sub{color:#9aa;font-size:12px;margin-left:6px;}
.pc-dest-none{padding:14px 6px;color:#888;font-size:14px;}

/* ---- Mobile destination panel ---- */
.pc-mdest{position:fixed;inset:0;z-index:9999;background:#fff;display:none;flex-direction:column;}
.pc-mdest.open{display:flex;}
.pc-mdest-head{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;border-bottom:1px solid #eee;}
.pc-mdest-head strong{font-size:22px;color:#1a1a1a;}
.pc-mdest-close{background:none;border:none;font-size:30px;line-height:1;color:#333;cursor:pointer;padding:0 4px;}
.pc-mdest-searchwrap{padding:16px 20px 4px;}
.pc-mdest-label{display:block;font-size:15px;color:#333;margin-bottom:8px;}
.pc-mdest-inputbox{display:flex;align-items:center;gap:10px;border:1px solid #cfd4da;border-radius:10px;padding:12px 14px;}
.pc-mdest-inputbox i{color:#4a4e69;}
.pc-mdest-inputbox input{border:none;outline:none;font-size:16px;width:100%;font-family:inherit;color:#333;}
.pc-mdest-sub{padding:14px 20px 6px;font-size:16px;color:#1a1a1a;font-weight:600;}
.pc-mdest-list{flex:1;overflow-y:auto;padding:0 20px 30px;-webkit-overflow-scrolling:touch;}
.pc-mdest-region{font-weight:700;font-size:16px;color:#1f4d38;padding:16px 0 6px;}
.pc-mdest-item{display:block;padding:13px 4px;font-size:16px;color:#3a6b52;text-decoration:none;border-bottom:1px solid #f0f0f0;}
.pc-mdest-loc{color:#5a7d6b;padding-left:14px;}
.pc-mdest-item:active{background:#f4f7f5;}
.pc-mdest-none{padding:18px 4px;color:#888;}
body.pc-mdest-open{overflow:hidden;}

/* ===== Counties section ===== */
.counties-section {
    max-width: 1300px;
    margin: 0 auto 50px;
    padding: 0 20px;
}
.counties-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}
.counties-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.counties-section .section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin: 0;
}
.counties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.county-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.county-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.county-card-img {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
}
.county-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.65) 100%);
}
.county-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.county-name {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.county-cta {
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
@media (max-width: 1100px) {
    .counties-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 800px) {
    .counties-grid { grid-template-columns: repeat(3, 1fr); }
    .county-card-img { height: 150px; }
}
@media (max-width: 550px) {
    .counties-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .county-card-img { height: 130px; }
    .county-name { font-size: 0.95rem; }
}
