/* -------------------------------------------------------------
 * Baranyai Otthonok - Fő stíluslap
 * ------------------------------------------------------------- */

/* Betűtípus importálása */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --primary-color: #cc0000;
    --primary-hover: #990000;
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #f8f8f8;
    --secondary-bg: #f8f8f8;
    --bg-dark: #212121;
    --bg-dark-accent: #1a1a1a;
    --border-color: #e7e7e7;
    --border-light: #f1f1f1;
    --font-main: 'Roboto', sans-serif;
    --font-condensed: 'Roboto Condensed', sans-serif;
    --max-width: 1170px;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Alapbeállítások */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Elrendezési segédosztályok */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.fluid-bg {
    width: 100%;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.gap-5  { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

.grid {
    display: grid;
    gap: 30px;
}

/* Grid children need min-width:0 to respect parent width */
.properties-page-layout > * {
    min-width: 0;
}

/* Gombok */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* --- 1. SOR: TOPBAR --- */
.topbar {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.topbar-right a:hover {
    color: var(--primary-color);
}

/* --- 2. SOR: HEADER & MENÜ --- */
.header-outer-wrap {
    width: 100% !important;
    background-color: #f8f8f8;
    height: 115px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.05);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    height: 100%;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--text-light);
    height: 115px;
    display: flex;
    align-items: center;
    padding: 0 5px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 5px;
    right: 5px;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.header-search-wrap {
    position: relative;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.search-trigger-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.search-trigger-btn:hover {
    transform: scale(1.1);
}

.header-search-form-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
    opacity: 0;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    width: 600px;
    max-width: calc(100vw - 40px);
    height: 40px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.header-search-form-wrapper.active {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}

.header-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 8px;
}

.header-search-input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: var(--text-color);
    background: transparent;
}

.header-search-submit,
.header-search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
    padding: 4px;
    transition: var(--transition);
}

.header-search-submit:hover,
.header-search-close:hover {
    color: var(--primary-color);
}

/* --- 3. SOR: SLIDER --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: #222;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* --- 4. SOR: VR360 KERESŐ --- */
.search-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
}

.search-container {
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-row-top,
.search-row-bottom {
    display: grid;
    gap: 15px;
    align-items: center;
}

@media (min-width: 768px) {
    .search-row-top {
        grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr 1fr;
    }
    
    .search-row-bottom {
        grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
    }
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Status selection buttons */
.status-btn-group {
    display: flex;
    width: 100%;
    height: 45px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    overflow: hidden;
}

.status-btn {
    flex: 1;
    height: 100%;
    background-color: #ffffff;
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.status-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
}

.search-select,
.search-input {
    width: 100%;
    height: 45px;
    padding: 10px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-color);
    outline: none;
    border-radius: 3px;
    transition: var(--transition);
}

.search-select:focus,
.search-input:focus {
    border-color: var(--primary-color);
}

/* Range input style */
.range-group {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 6px;
    height: 45px;
}

.range-group strong {
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-color);
    font-size: 13px;
}

.range-input {
    width: 60px;
    flex-grow: 1;
    height: 45px;
    padding: 5px 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    border-radius: 3px;
    outline: none;
    font-family: var(--font-main);
    font-size: 14px;
}

.range-input:focus {
    border-color: var(--primary-color);
}

.range-separator {
    color: var(--text-light);
}

.range-label {
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
    color: var(--text-color);
}

.search-submit-btn {
    height: 45px;
    width: 100%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: var(--primary-color);
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit-btn:hover {
    background-color: var(--primary-hover);
}

/* --- 5. SOR: KIEMELT INGATLANOK --- */
.section-title-wrap {
    margin: 40px 0 30px;
    position: relative;
}

.section-title {
    font-family: var(--font-condensed);
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--text-color);
}

.section-title strong {
    color: var(--primary-color);
    font-weight: 700;
}

.section-title-wrap::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
}


.property-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.property-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image-wrap img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.property-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-price {
    font-family: var(--font-condensed);
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.property-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--text-color);
}

.property-short-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 12px;
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.property-meta-list {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: auto;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-meta-item i {
    color: var(--primary-color);
}

/* --- 6. SOR: VIRTUÁLIS SÉTA BANNER --- */
.parallax-section {
    background-image: url('../images/welcome-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    text-align: center;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.parallax-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.parallax-container h2 {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.parallax-container label {
    color: #FFFFFF;
    display: block;
    font-size: 24px;
    font-weight: 300;
    line-height: 38px;
    margin-bottom: 40px;
}

a.view-property:link, 
a.view-property:visited {
    background-color: rgba(255, 255, 255, 0.2);
    border: 4px solid #FFFFFF;
    border-radius: 2px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 40px;
    text-transform: uppercase;
    transition: var(--transition);
}

a.view-property:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
}

/* --- 7. SOR: SZOLGÁLTATÁSOK GRID --- */
.services-section {
    padding: 60px 15px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    transition: var(--transition);
    border-radius: 4px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- 8. LÁBLÉC: FOOTER --- */
.footer-main {
    background-color: var(--bg-dark);
    color: #a7a7a7;
    padding: 30px 0 15px;
    font-size: 13px;
    border-top: 1px solid var(--bg-dark-accent);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}

.footer-col-title {
    font-family: var(--font-condensed);
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: #a7a7a7;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    background-color: var(--bg-dark-accent);
    padding: 20px 0;
    font-size: 12px;
    color: #777777;
}

/* Település listák a lábléc alján */
.footer-bottom-layout {
    width: 100%;
}

.footer-towns-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-towns-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.town-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: #2b2b2b; /* Kicsit világosabb szürke háttér */
    padding: 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.town-row:hover {
    background-color: #333333; /* Lebegéskor még egy kicsit világosabb */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.town-img-wrap {
    flex-shrink: 0;
}

.town-img-wrap img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.town-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.town-text-wrap h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.town-text-wrap p {
    font-size: 12px;
    color: #a7a7a7;
    line-height: 1.5;
    margin: 0;
}

.town-text-wrap a {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
    align-self: flex-start;
}

.town-text-wrap a:hover {
    color: #ffffff;
    text-decoration: underline;
}



/* Sötét linkek a világos sávban */
.dark-text-links a {
    color: #555555 !important;
}

.dark-text-links a:hover {
    color: var(--primary-color) !important;
}

/* Responsive beállítások */
@media (max-width: 991px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .d-flex {
        flex-direction: column;
    }
    
    .topbar-right {
        margin-top: 5px;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        gap: 10px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .search-section {
        margin-top: -15px;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    
    .parallax-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-towns-section {
        grid-template-columns: 1fr;
    }
    
    .grid.col-2 {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* --- SUBPAGE STYLING --- */
.subpage-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.subpage-banner-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.subpage-banner-content {
    position: relative;
    z-index: 2;
}

.subpage-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subpage-banner-content p {
    font-size: 16px;
    font-weight: 300;
}

.grid.col-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
    color: var(--text-color);
}

.styled-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 16px;
}

.content-image img {
    border: 4px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: var(--box-shadow-hover);
    transition: var(--transition);
}

.content-image img:hover {
    transform: scale(1.02);
}

/* --- ÉRTÉKESÍTŐK KÁRTYÁK --- */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.agent-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.agent-avatar {
    width: 180px;
    height: 180px;
    border-radius: 0;
    object-fit: cover;
    object-position: top; /* Az álló képeknél az alját vágja le, a fej/váll megmarad */
    border: 3px solid var(--primary-color);
    margin-bottom: 20px;
}

.agent-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.agent-title {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-contact-info {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agent-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.agent-contact-item:hover {
    color: var(--primary-color);
}

.agent-contact-item i {
    color: var(--primary-color);
    width: 16px;
}

/* --- HÍREK / BLOG STYLING --- */
.blog-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.blog-card-header {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.blog-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
}

.blog-card-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-card-body p {
    margin-bottom: 20px;
}

.blog-card-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
}

/* Külön kezeljük az inline emoji képeket, hogy ne essenek szét a bejegyzések */
.blog-card-body img[src*="fbcdn.net"],
.blog-card-body img[src*="emoji"],
.blog-card-body img.emoji {
    display: inline-block !important;
    margin: 0 4px !important;
    vertical-align: -3px !important;
    box-shadow: none !important;
    border: none !important;
    width: 18px !important;
    height: 18px !important;
}

.blog-card-body a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.blog-card-body a:hover {
    color: #990000;
}

.blog-card-body ul, 
.blog-card-body ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-card-body li {
    margin-bottom: 10px;
}

/* --- INGATLANOK LISTA KÉTOSZLOPOS ELRENDEZÉS --- */
.properties-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 35px;
    align-items: start;
}

@media (max-width: 991px) {
    .properties-page-layout {
        grid-template-columns: 1fr;
    }
    .properties-sidebar {
        order: -1; /* Szűrő felülre kerül mobilon */
        margin-bottom: 30px;
    }
}

/* --- 9. COOKIE CONSENT BANNER (CMP MOD) --- */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 330px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 20px;
    z-index: 999999;
    box-sizing: border-box;
    font-family: var(--font-primary);
    animation: fadeInUp 0.4s ease;
}

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

.cookie-banner-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 15px 0;
    text-align: left;
}

.cookie-banner-content p a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    outline: none;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: var(--primary-hover);
}

.cookie-btn.reject {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.cookie-btn.reject:hover {
    background-color: #e2e8f0;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
    }
}


