
/* ── VARIABLES ── */
:root {
  --navy:       #102C47;
  --navy-dark:  #0B2138;
  --navy-mid:   #163859;
  --gold:       #E89A2F;
  --gold-hover: #D4891F;
  --white:      #FFFFFF;
  --gray-light: #F5F7FA;
  --gray:       #E5E7EB;
  --text:       #1F2937;
  --text-muted: #6B7280;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --transition: .2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.adede-site { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: .9375rem; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── SECTION UTILITIES ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-inner--center { text-align: center; }
.section-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--navy); line-height: 1.25; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.link-more { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: .9375rem; white-space: nowrap; }
.link-more:hover { color: var(--gold-hover); }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy-dark); box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { color: var(--white); font-size: 1.125rem; font-weight: 400; }
.logo-text strong { color: var(--gold); font-weight: 800; }
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; flex-wrap: nowrap; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list li a { color: rgba(255,255,255,.8); font-size: .9375rem; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: all var(--transition); white-space: nowrap; }
.nav-list li a:hover, .nav-list li.current-menu-item > a, .nav-list li.current-menu-parent > a { color: var(--white); background: rgba(255,255,255,.1); }
/* Dropdown caret on parent items */
.nav-list .menu-item-has-children > a::after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-1px); opacity: .65; vertical-align: middle; }
/* Submenu: hidden by default, dropdown on hover/focus */
.nav-list .sub-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px; background: var(--white); border-radius: 10px; box-shadow: 0 14px 36px rgba(7,29,51,.18); padding: 8px; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 300; }
.nav-list .sub-menu::before { content: ""; position: absolute; top: -6px; left: 0; right: 0; height: 6px; }
.nav-list > li:hover > .sub-menu, .nav-list > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-list .sub-menu li a { color: var(--text); white-space: nowrap; padding: 9px 14px; border-radius: 7px; font-weight: 500; display: block; }
.nav-list .sub-menu li a:hover, .nav-list .sub-menu li.current-menu-item > a { background: var(--light); color: var(--navy); }
.nav-list .sub-menu .menu-item-has-children > a::after { display: none; }
/* Keep last dropdowns inside viewport */
.nav-list > li:nth-last-child(-n+2) .sub-menu { left: auto; right: 0; }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { color: rgba(255,255,255,.85); font-size: .9375rem; font-weight: 600; }
.header-phone:hover { color: var(--gold); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 99; }
.mobile-overlay.is-visible { display: block; }

/* ── HERO ── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: var(--navy-dark) url('https://agenturadede.lt/wp-content/uploads/2026/04/Varena-Centras-Copy.jpg') center center/cover no-repeat; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(7,29,51,.85) 0%, rgba(7,29,51,.62) 42%, rgba(7,29,51,.42) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 24px; width: 100%; display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.hero-content { color: var(--white); }
.hero-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.text-gold { color: var(--gold); }
.hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.trust-item span { font-size: .8125rem; color: rgba(255,255,255,.7); margin-top: 2px; }

/* Hero search card */
.hero-search-card { background: var(--white); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-lg); }
.search-card-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.prop-search-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 4px; }
.form-row--split { flex-direction: row; gap: 10px; }
.form-row--split > div { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.form-label { font-size: .8125rem; font-weight: 600; color: var(--text); }
.form-select, .form-input { width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray); border-radius: 8px; font-size: .9375rem; color: var(--text); background: var(--white); transition: border-color var(--transition); appearance: none; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-select:focus, .form-input:focus { outline: none; border-color: var(--gold); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); padding: 28px 0; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ts-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.ts-label { font-size: .875rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ── PROPERTY CARDS ── */
.props-grid { display: grid; gap: 24px; }
.props-grid--4 { grid-template-columns: repeat(4, 1fr); }
.props-grid--3 { grid-template-columns: repeat(3, 1fr); }

.prop-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prop-card__img-wrap { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.prop-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.prop-card:hover .prop-card__img { transform: scale(1.04); }
.prop-card__img--empty { width: 100%; height: 100%; background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray) 100%); }
.prop-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge-sell     { background: var(--gold); color: var(--white); }
.badge-rent     { background: #2563EB; color: var(--white); }
.badge-reserved { background: #7C3AED; color: var(--white); }
.badge-sold     { background: #6B7280; color: var(--white); }
.badge-new      { background: #16A34A; color: var(--white); }
.badge-default  { background: var(--navy); color: var(--white); }
.type-badge     { background: rgba(16,44,71,.1); color: var(--navy); padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; }

.prop-card__body { padding: 16px; }
.prop-card__price { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.prop-card__price .price-ask { font-size: .9375rem; color: var(--text-muted); font-weight: 500; }
.prop-card__price small { font-size: .8125rem; font-weight: 500; color: var(--text-muted); }
.prop-card__title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.prop-card__title a:hover { color: var(--navy); }
.prop-card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.prop-meta-loc { display: flex; align-items: center; gap: 4px; font-size: .8125rem; color: var(--text-muted); }
.prop-meta-type { font-size: .8125rem; color: var(--text-muted); }
.prop-card__specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.prop-card__specs span { display: flex; align-items: center; gap: 4px; font-size: .8125rem; color: var(--text-muted); }
.prop-card__cta { display: inline-flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 600; color: var(--gold); }
.prop-card__cta:hover { color: var(--gold-hover); }

/* ── SECTIONS ── */
.section-props, .section-services, .section-testimonials, .similar-props { padding: 80px 0; }
.section-about { padding: 80px 0; background: var(--navy-dark); color: var(--white); }
.section-cta { padding: 80px 0; background: var(--navy); color: var(--white); }

.props-cta-wrap { text-align: center; margin-top: 40px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); border-top: 3px solid rgba(232,154,47,.35); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.service-icon { width: 56px; height: 56px; background: rgba(232,154,47,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-link { font-size: .875rem; font-weight: 600; color: var(--gold); }
.service-link:hover { color: var(--gold-hover); }

/* About */
.section-inner--about { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 280px; height: 280px; border-radius: 50%; object-fit: cover; border: 4px solid var(--gold); box-shadow: 0 0 0 8px rgba(232,154,47,.15), 0 8px 40px rgba(0,0,0,.25); margin: 0 auto; display: block; }
.about-img--placeholder { width: 280px; height: 280px; background: linear-gradient(135deg, rgba(232,154,47,.18) 0%, rgba(255,255,255,.06) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 4px solid var(--gold); box-shadow: 0 0 0 8px rgba(232,154,47,.15), 0 8px 40px rgba(0,0,0,.25); margin: 0 auto; }
.about-img--placeholder span { font-size: 5rem; font-weight: 800; color: var(--gold); letter-spacing: -.04em; }
.about-content .section-eyebrow { color: var(--gold); }
.about-content .section-title { color: var(--white); margin-bottom: 20px; }
.about-content p { color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin: 28px 0 32px; flex-wrap: wrap; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-size: 2rem; font-weight: 800; color: var(--gold); }
.about-stats span { font-size: .875rem; color: rgba(255,255,255,.7); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--gold); }
.t-stars { color: var(--gold); font-size: 1.125rem; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; flex-shrink: 0; }
.t-author strong { display: block; font-size: .9375rem; color: var(--navy); }
.t-author span { font-size: .8125rem; color: var(--text-muted); }

/* CTA section */
.section-cta .section-title { display: none; }
.cta-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-sub { color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ARCHIVE ── */
.archive-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%); padding: 64px 0; }
.archive-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.archive-hero-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.archive-hero-sub { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 600px; }

.archive-body { max-width: 1200px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

/* Filters sidebar */
.filters-sidebar { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 88px; }
.filters-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.filters-title { font-size: 1.0625rem; font-weight: 700; color: var(--navy); }
.filters-close { display: none; background: none; border: none; font-size: 1.25rem; cursor: pointer; color: var(--text-muted); }
.filter-group { margin-bottom: 16px; }
.filter-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.filter-select, .filter-input { width: 100%; padding: 9px 12px; border: 1.5px solid var(--gray); border-radius: 8px; font-size: .9375rem; color: var(--text); appearance: none; background: var(--white); transition: border-color var(--transition); }
.filter-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.filter-select:focus, .filter-input:focus { outline: none; border-color: var(--gold); }
.filter-split { display: flex; gap: 8px; }
.filter-split .filter-input { width: 50%; }
.btn-clear-filters { display: block; text-align: center; margin-top: 10px; font-size: .875rem; color: var(--text-muted); text-decoration: underline; }
.btn-clear-filters:hover { color: var(--text); }

/* Results */
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.results-count { font-size: .9375rem; color: var(--text-muted); font-weight: 500; }
.btn-show-filters { display: none; align-items: center; gap: 6px; background: var(--white); border: 1.5px solid var(--gray); padding: 8px 14px; border-radius: 8px; font-size: .875rem; font-weight: 600; cursor: pointer; color: var(--text); }

.no-results { text-align: center; padding: 64px 24px; }
.no-results p { color: var(--text-muted); margin: 16px 0 24px; }

/* Pagination */
.archive-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; }
.archive-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; font-weight: 600; font-size: .9375rem; color: var(--text); background: var(--white); border: 1.5px solid var(--gray); transition: all var(--transition); }
.archive-pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.archive-pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── SINGLE PROPERTY ── */
.single-main { max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 20px 0; font-size: .875rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold); }

.single-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.single-layout > * { min-width: 0; }

/* Gallery */
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 8px; aspect-ratio: 16/10; background: var(--gray-light); }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: var(--white); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.25rem; cursor: pointer; z-index: 2; transition: background var(--transition); }
.gallery-nav:hover { background: rgba(0,0,0,.7); }
.gallery-nav--prev { left: 12px; }
.gallery-nav--next { right: 12px; }
.gallery-counter { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,.55); color: var(--white); padding: 4px 10px; border-radius: 20px; font-size: .8125rem; font-weight: 600; }
.gallery-thumbs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { flex-shrink: 0; width: 80px; height: 56px; border: 2px solid transparent; border-radius: 6px; overflow: hidden; cursor: pointer; background: none; padding: 0; transition: border-color var(--transition); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { border-color: var(--gold); }
/* Lightbox */
.adede-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(7,29,51,.94); display: none; align-items: center; justify-content: center; }
.adede-lightbox.is-open { display: flex; }
.adede-lightbox .lb-img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 50px rgba(0,0,0,.5); }
.adede-lightbox .lb-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .2s; }
.adede-lightbox .lb-close:hover { opacity: 1; }
.adede-lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.adede-lightbox .lb-nav:hover { background: var(--gold); }
.adede-lightbox .lb-prev { left: 24px; }
.adede-lightbox .lb-next { right: 24px; }
.adede-lightbox .lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-size: .95rem; letter-spacing: .05em; }
@media (max-width: 600px) { .adede-lightbox .lb-nav { width: 42px; height: 42px; } .adede-lightbox .lb-prev { left: 10px; } .adede-lightbox .lb-next { right: 10px; } }

.single-title-block { margin: 24px 0 32px; }
.single-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.single-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); }
.single-location { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--text-muted); font-size: .9375rem; }
.single-section-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray); }
.single-description, .single-features, .single-add-details, .single-video { margin-bottom: 36px; }
.single-desc-content { font-size: 1rem; color: var(--text); line-height: 1.75; }
.single-desc-content p { margin-bottom: 12px; }

.features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.features-list li { font-size: .9375rem; color: var(--text); padding: 8px 12px; background: var(--gray-light); border-radius: 6px; display: flex; align-items: center; gap: 8px; }
.features-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.add-details-grid { display: grid; gap: 0; border: 1.5px solid var(--gray); border-radius: 10px; overflow: hidden; }
.add-detail-row { display: grid; grid-template-columns: 1fr 1fr; padding: 10px 16px; border-bottom: 1px solid var(--gray); }
.add-detail-row:last-child { border-bottom: none; }
.add-detail-row dt { font-size: .9375rem; color: var(--text-muted); }
.add-detail-row dd { font-size: .9375rem; color: var(--text); font-weight: 600; }

.video-wrap { border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; }
.video-wrap iframe { width: 100%; height: 100%; }

/* Sidebar */
.single-sidebar { position: sticky; top: 88px; }
.sidebar-price-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); margin-bottom: 20px; }
.sp-price { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.sp-sku { font-size: .8125rem; color: var(--text-muted); margin-bottom: 16px; }
.sp-specs { border: 1.5px solid var(--gray); border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.sp-specs li { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--gray); font-size: .9375rem; }
.sp-specs li:last-child { border-bottom: none; }
.sp-specs li span { color: var(--text-muted); }
.sp-specs li strong { color: var(--text); font-weight: 600; }

.sidebar-contact-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.sidebar-contact-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sidebar-form .sf-row { margin-bottom: 10px; }
.sf-input { width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray); border-radius: 8px; font-size: .9375rem; color: var(--text); font-family: inherit; transition: border-color var(--transition); resize: vertical; }
.sf-input:focus { outline: none; border-color: var(--gold); }

.similar-props { padding: 64px 0 80px; background: var(--gray-light); }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo span { color: var(--white); font-size: 1.0625rem; font-weight: 400; }
.footer-logo strong { color: var(--gold); font-weight: 800; }
.footer-desc { font-size: .9375rem; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-title { font-size: .9375rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .9375rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts li { display: flex; align-items: flex-start; gap: 10px; font-size: .9375rem; }
.footer-contacts a { color: rgba(255,255,255,.65); }
.footer-contacts a:hover { color: var(--gold); }
.footer-bottom { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .875rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .props-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-search-card { max-width: 480px; }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .archive-body { grid-template-columns: 1fr; }
  .filters-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 90vw; z-index: 200; border-radius: 0; box-shadow: var(--shadow-lg); transform: translateX(-100%); transition: transform .3s ease; overflow-y: auto; }
  .filters-sidebar.is-open { transform: translateX(0); }
  .filters-close { display: block; }
  .btn-show-filters { display: inline-flex; }
  .section-inner--about { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 360px; display: flex; justify-content: center; }
  .about-img--placeholder { width: 220px; height: 220px; }
  .about-img { width: 220px; height: 220px; }
  .props-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .burger { display: flex; }
  .header-cta { display: none; }
  .site-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--navy-dark); padding: 16px; max-height: calc(100vh - 68px); overflow-y: auto; transform: translateY(-100%) scaleY(0); transform-origin: top; transition: transform .3s ease, opacity .3s; opacity: 0; pointer-events: none; z-index: 99; }
  .site-nav.is-open { transform: translateY(0) scaleY(1); opacity: 1; pointer-events: all; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; white-space: normal; }
  .nav-list li a { display: block; padding: 12px 16px; border-radius: 8px; }
  .nav-list .menu-item-has-children > a::after { display: none; }
  .nav-list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.05); padding: 2px 0 6px 14px; min-width: 0; border-radius: 0; }
  .nav-list .sub-menu::before { display: none; }
  .nav-list .sub-menu li a { color: rgba(255,255,255,.7); padding: 9px 16px; }
  .nav-list .sub-menu li a:hover { background: rgba(255,255,255,.1); color: var(--white); }
}

@media (max-width: 680px) {
  .hero-inner { padding: 60px 24px 40px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .hero-trust { gap: 20px; }
  .props-grid--4, .props-grid--3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-search-card { padding: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-col:nth-child(2), .footer-col:nth-child(3) { display: none; }
  .features-list { grid-template-columns: 1fr; }
  .header-inner { padding: 0 16px; }
  .section-props, .section-services, .section-testimonials, .similar-props { padding: 56px 0; }
  .section-about, .section-cta { padding: 56px 0; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; width: 100%; }
}

@media (max-width: 430px) {
  .hero-inner { padding: 52px 20px 36px; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .trust-item strong { font-size: 1.25rem; }
  .trust-bar-inner { gap: 16px; }
  .ts-num { font-size: 1.625rem; }
  .prop-card__price { font-size: 1.125rem; }
  .section-props, .section-services, .section-testimonials, .similar-props { padding: 48px 0; }
  .section-about, .section-cta { padding: 48px 0; }
  .services-grid { gap: 16px; }
  .testimonials-grid { gap: 16px; }
  .about-img--placeholder { width: 180px; height: 180px; }
  .about-img--placeholder span { font-size: 4rem; }
  .about-img { width: 180px; height: 180px; }
}

@media (max-width: 390px) {
  .section-inner { padding: 0 16px; }
  .archive-body { padding: 32px 16px; }
  .hero-inner { padding: 48px 16px 32px; }
  .single-main { padding: 0 16px 64px; }
  .hero-trust { gap: 16px; }
  .section-props, .section-services, .section-testimonials, .similar-props { padding: 40px 0; }
  .section-about, .section-cta { padding: 40px 0; }
}
