:root {
    --primary: #FF385C;
    --primary-dark: #D70466;
    --text-main: #222222;
    --text-light: #717171;
    --bg-light: #F7F7F7;
    --white: #FFFFFF;
    --border: #DDDDDD;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.12);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Circular Std', 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* Header Layout */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header {
    padding: 0 40px;
}

@media (max-width: 744px) {
    .header { padding: 0 24px; }
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    flex: 1;
}

.search-pill {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    padding: 8px 8px 8px 24px;
    transition: var(--transition);
    cursor: pointer;
}

.search-pill:hover {
    box-shadow: var(--shadow-md);
}

.search-pill-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
    color: var(--text-main);
}

.search-pill-guest {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 0;
}

.search-pill-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.search-pill-icon {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.host-link {
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
    border-radius: var(--radius-full);
}

.host-link:hover {
    background: var(--bg-light);
}

.lang-btn {
    background: none;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
}

.lang-btn:hover { background: var(--bg-light); }

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    padding: 8px 8px 8px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.user-menu:hover {
    box-shadow: var(--shadow-sm);
}

/* Categories Bar */
.categories-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.categories-container {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.categories-container::-webkit-scrollbar { display: none; }

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
    min-width: max-content;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.category-item:hover {
    color: var(--text-main);
    border-bottom: 2px solid var(--border);
    opacity: 1;
}

.category-item.active {
    color: var(--text-main);
    border-bottom: 2px solid var(--text-main);
    opacity: 1;
}

.category-icon { color: inherit; }

.category-name {
    font-size: 14px;
    font-weight: 500;
}

.filters-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Premium Map Section (50/50 Split) */
.premium-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #111111;
    color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 80px;
    min-height: 500px;
    box-shadow: var(--shadow-lg);
}

.premium-map-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-map-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Circular Std', sans-serif;
    line-height: 1.1;
}

.premium-map-subtitle {
    font-size: 18px;
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 450px;
}

.premium-map-btn {
    align-self: flex-start;
    background: var(--white);
    color: #111111;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    background-image: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.premium-map-btn:hover {
    background: #EBEBEB;
    transform: scale(1.02);
}

.premium-map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.inline-map {
    width: 100%;
    height: 100%;
}

/* Main Grid */
.main-content {
    padding: 24px 40px 10px;
}

.airbnb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px 24px;
}

@media (min-width: 1200px) {
    .airbnb-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.airbnb-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0; /* Prevents CSS Grid blowout from Swiper */
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 20/19;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #eee;
}

/* Card Swiper Styles */
.card-image-wrapper .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.card-image-wrapper .swiper-button-next,
.card-image-wrapper .swiper-button-prev {
    opacity: 0;
    transition: opacity 0.2s;
    color: white !important;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 50%;
    transform: scale(0.5);
    margin-top: -10px;
}
.card-image-wrapper:hover .swiper-button-next,
.card-image-wrapper:hover .swiper-button-prev {
    opacity: 1;
}
.card-image-wrapper .swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
}
.card-image-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-image-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-favorite-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
    z-index: 2;
}

.heart-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    width: 28px;
    height: 28px;
}

.heart-btn svg {
    transition: transform 0.2s;
}

.heart-btn:hover svg {
    transform: scale(1.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 300;
}

.card-subtitle {
    font-size: 15px;
    color: var(--text-light);
}

.card-price {
    font-size: 15px;
    color: var(--text-main);
    margin-top: 4px;
}

.price-val {
    font-weight: 500;
}

/* Floating Map Toggle */
.map-toggle-wrapper {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.map-toggle-btn {
    background: var(--text-main);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.map-toggle-btn:hover {
    transform: scale(1.04);
}

/* Fullscreen Map Overlay */
.full-map-container {
    position: fixed;
    top: 154px; /* below header */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: var(--bg-light);
}

.map-full {
    width: 100%;
    height: 100%;
}

.close-map-btn {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: var(--text-main);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Form inputs styling for park detail */
.btn {
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    background-image: radial-gradient(circle at center, #FF385C 0%, #D70466 100%);
}

.btn-primary:hover {
    opacity: 0.95;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}
.form-control:focus {
    border-color: var(--text-main);
}

/* Base Container */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Detail Page specific */
.detail-header {
    padding: 24px 0;
}

.detail-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: underline;
}

/* Park Hero Section (2-Column) */
.park-hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    height: 480px;
    margin-bottom: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media (max-width: 768px) {
    .park-hero-section {
        grid-template-columns: 1fr;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .park-hero-slider { height: 350px; }
    .park-hero-map { height: 350px; }
}

.park-hero-slider {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.park-hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.park-hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.park-hero-slider img:hover {
    transform: scale(1.02);
}

.park-hero-map {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border);
}

.show-all-photos-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: white;
    color: #222;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    border: 1px solid #222;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.show-all-photos-btn:hover {
    transform: scale(1.05);
}

.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(0,0,0,0.3);
    padding: 24px;
    border-radius: 50%;
    transform: scale(0.6);
}

.detail-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.detail-main-info {
    padding-bottom: 48px;
}

.host-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 24px 0;
}

.host-text h3 {
    font-size: 22px;
    font-weight: 600;
}

.host-text p {
    color: var(--text-light);
    font-size: 16px;
}

.host-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--text-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-main);
}

.reservation-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
}

.widget-price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.widget-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-main);
}

.date-picker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.date-input-group {
    padding: 10px 12px;
}

.date-input-group:first-child {
    border-right: 1px solid var(--text-light);
}

.date-input-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.date-input-group input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 14px;
    font-family: inherit;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

.total-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    font-weight: 600;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: #F7F7F7;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    margin-top: 64px;
}
.footer-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--text-main);
    text-decoration: underline;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 14px;
    color: var(--text-light);
}
.footer-bottom-right {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-bottom-right a {
    color: var(--text-main);
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    overflow: hidden;
    color: var(--white);
    box-shadow: var(--shadow-md);
    margin-left: 24px;
    margin-right: 24px;
}
.cta-content {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}
.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 500px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
}
.cta-btn {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    font-weight: 600;
    border-radius: var(--radius-full);
}
.cta-btn:hover { background: #f0f0f0 !important; }
.cta-btn-outline {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
}
.cta-btn-outline:hover { background: rgba(255,255,255,0.1) !important; }
.cta-image {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1523987355523-c7b5b0dd90a7?auto=format&fit=crop&q=80&w=800') center/cover;
}
@media (max-width: 768px) {
    .cta-banner { flex-direction: column; }
    .cta-image { min-height: 250px; }
    .cta-content { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Hero Search Index - Premium Nature Theme */
.hero-index {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('../images/hero_bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-index::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(180deg, rgba(20,40,20,0.4) 0%, rgba(10,25,10,0.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    padding: 0 24px;
    text-align: center;
}
.hero-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.search-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.search-tab {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 24px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.08);
}
.search-tab:hover {
    color: white;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
}
.search-tab.active {
    background: rgba(45,80,45,0.85);
    border-color: rgba(100,160,100,0.6);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.search-widget {
    background: rgba(30,40,30,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.search-bar-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #FAF8F2; /* Light beige/cream background */
    border-radius: 12px;
}
.search-input-group {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-align: left;
    position: relative;
}
.search-input-group.with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}
.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}
.input-icon svg {
    stroke-width: 1.5;
}
.input-content {
    flex: 1;
}
.search-input-group:last-of-type { border-bottom: none; }
.search-input-group::after { display: none !important; }
.search-input-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.search-input-group input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    color: #1a1a1a;
    background: transparent;
    font-family: inherit;
    font-weight: 500;
}
.search-input-group input::placeholder { color: #717171; }
.search-input-group input:focus { color: #000; }
.search-date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.search-date-grid .search-input-group { border-bottom: none; }
.search-date-grid .search-input-group:first-child { border-right: 1px solid rgba(0,0,0,0.1); }
.search-submit-wrapper {
    padding: 12px 18px 18px;
}
.search-submit {
    background: #1f3a22; /* Solid dark green */
    color: white;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(30,60,30,0.4);
}
.search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30,60,30,0.5);
}

/* Split View Search Page */
.split-layout {
    display: flex;
    height: calc(100vh - 160px); /* Adjust for header + categories */
    overflow: hidden;
}
.split-list {
    width: 60%;
    height: 100%;
    overflow-y: auto;
    padding: 24px 24px 80px;
}
.split-map {
    width: 40%;
    height: 100%;
    position: sticky;
    top: 0;
}
#split-map-container {
    width: 100%;
    height: 100%;
}
.split-header {
    margin-bottom: 24px;
    padding: 0 16px;
}
.split-header h1 {
    font-size: 24px;
    font-weight: 600;
}
.split-header p {
    color: #717171;
    font-size: 14px;
    margin-top: 4px;
}

/* Search Results Grid overrides */
.split-list .airbnb-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px 24px;
}

/* Header transparency for index */
.header-transparent {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: transparent !important;
    border-bottom: none !important;
    z-index: 1000;
}
.header-transparent .logo,
.header-transparent .host-link {
    color: white !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.header-transparent .search-pill {
    display: none;
}
.header-transparent .lang-btn {
    color: white;
}

/* Mobile Responsiveness for Search (Split Layout) */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }
    .split-map {
        width: 100%;
        height: 350px;
        position: relative;
        order: -1; /* Harita üstte */
        z-index: 10;
    }
    .split-list {
        width: 100%;
        height: auto;
        overflow-y: visible;
        padding: 24px 16px;
    }
    .split-list .airbnb-grid {
        grid-template-columns: 1fr 1fr; /* 2'li listeleme */
        gap: 16px 12px;
    }
    .split-header h1 {
        font-size: 20px;
    }
    .card-title {
        font-size: 13px;
    }
    .card-subtitle {
        font-size: 12px;
    }
    .card-price {
        font-size: 13px;
    }
    .btn {
        padding: 8px !important;
        font-size: 12px !important;
    }
    .card-image-wrapper {
        aspect-ratio: 1 / 1;
    }
}

/* Mobile Responsiveness for Header & Index Hero */
@media (max-width: 768px) {
    .header-top { flex-wrap: wrap; height: auto; padding: 16px 0; gap: 12px; }
    .logo { width: 100%; justify-content: center; margin-bottom: 8px; }
    .search-pill { width: 100%; justify-content: space-between; }
    .header-right { width: 100%; justify-content: center; margin-top: 8px; }
    .host-link { display: none; }
    
    .hero-title { font-size: 32px; margin-bottom: 24px; }
    .search-bar-inner { flex-direction: column; border-radius: 16px; }
    .search-input-group:not(:last-child)::after { display: none; }
    .search-input-group { width: 100%; padding: 12px 16px; }
    .search-submit { border-radius: 12px; }
    .search-tabs { gap: 6px; }
    .search-tab { font-size: 11px; padding: 7px 12px; }
    
    /* Park Detail Mobile Layout */
    .detail-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .detail-sidebar {
        margin: 24px 0 0;
    }
    .amenities-section {
        max-width: 100% !important;
        border-top: none !important;
    }
    .reservation-widget {
        position: relative;
        top: 0;
    }
}

/* Hide Leaflet map attribution globally */
.leaflet-control-attribution {
    display: none !important;
}

/* Global Price Pin (Speech Bubble) Map Marker */
.price-pin {
    background-color: #1565C0;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 0 1.5px white, 0 3px 6px rgba(0,0,0,0.4);
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, transform 0.1s, z-index 0s;
}
.price-pin::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    margin-left: -4px;
    width: 8px;
    height: 8px;
    background-color: inherit;
    box-shadow: 1.5px 1.5px 0 0 white, 3px 3px 4px rgba(0,0,0,0.3);
    transform: rotate(45deg);
}
.price-pin:hover, .price-pin.active-pin {
    background-color: #E53935;
    transform: scale(1.1);
    z-index: 1000 !important;
}

