
:root {
  --bee-yellow: #f7d84a;
  --bee-yellow-soft: #fff3aa;
  --bee-ink: #101214;
  --bee-graphite: #2d3339;
  --bee-muted: #66717a;
  --bee-line: #e7e7e7;
  --bee-bg: #f6f7f5;
  --bee-card: #ffffff;
  --bee-shadow: 0 24px 70px rgba(16, 18, 20, .12);
  --bee-radius-lg: 28px;
  --bee-radius-md: 18px;
  --bee-radius-sm: 12px;
  --bee-container: 1180px;
  --bee-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bee-font);
  color: var(--bee-ink);
  background: var(--bee-bg);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.bee-app {
  min-height: 100vh;
  overflow-x: hidden;
}

.bee-container {
  width: min(var(--bee-container), calc(100% - 32px));
  margin: 0 auto;
}

.bee-section {
  position: relative;
}

.bee-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 245, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 18, 20, .08);
}

.bee-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bee-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.bee-brand__logo {
  width: 220px;
  max-width: 48vw;
  height: auto;
  display: block;
}

.bee-nav {
  display: none;
}

.bee-nav__link {
  border: 0;
  background: transparent;
  color: var(--bee-graphite);
  padding: 10px 14px;
  border-radius: 999px;
}

.bee-nav__link:hover {
  background: var(--bee-yellow);
}

/* Header actions: call icon + menu icon */
.bee-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bee-header-call {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--bee-ink);
  font-size: 14px;
  font-weight: 700;
  background: var(--bee-yellow);
  border-radius: 999px;
  padding: 9px 16px 9px 12px;
  transition: opacity .15s;
  line-height: 1;
}

.bee-header-call:hover {
  opacity: .85;
}

.bee-header-call__label {
  display: inline;
}
@media (max-width: 600px) {
  .bee-header-call__label {
    display: none;
  }
  .bee-header-call {
    padding: 9px 11px;
  }
}


.bee-hero-search {
  min-height: 680px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #f4f4ef 0%, #e8edf0 100%);
}

.bee-hero-search__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(246,247,245,.96) 0%, rgba(246,247,245,.86) 42%, rgba(246,247,245,.58) 68%, rgba(246,247,245,.36) 100%),
    radial-gradient(circle at 76% 28%, rgba(255,214,70,.32), rgba(255,214,70,0) 54%),
    url("../../images/hero-real-estate-bg.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

/* Keyframes — slow float for primary orb */
@keyframes beeOrbFloat {
  0%   { transform: translate(0, 0) scale(1);      opacity: .78; }
  33%  { transform: translate(-18px, -22px) scale(1.04); opacity: .68; }
  66%  { transform: translate(10px, -12px) scale(.97);  opacity: .74; }
  100% { transform: translate(0, 0) scale(1);      opacity: .78; }
}

/* Keyframes — counter-float for secondary orb */
@keyframes beeOrbFloat2 {
  0%   { transform: translate(0, 0) scale(1);      opacity: .32; }
  40%  { transform: translate(14px, 18px) scale(1.06);  opacity: .22; }
  70%  { transform: translate(-8px, 10px) scale(.95);   opacity: .28; }
  100% { transform: translate(0, 0) scale(1);      opacity: .32; }
}

.bee-hero-search::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(247,216,74,.42) 0%, rgba(247,216,74,.08) 65%, transparent 85%);
  opacity: 1;
  z-index: -1;
  will-change: transform, opacity;
  animation: beeOrbFloat2 22s ease-in-out infinite;
}

.bee-hero-search::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--bee-yellow) 0%, rgba(247,216,74,.18) 60%, transparent 80%);
  opacity: 1;
  z-index: -1;
  will-change: transform, opacity;
  animation: beeOrbFloat 18s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .bee-hero-search::before,
  .bee-hero-search::after {
    animation: none;
  }
}

.bee-hero-search__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
  padding-top: 16px;
  padding-bottom: 16px;
}

.bee-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--bee-muted);
}

.bee-hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 580px;
}

.bee-h1-br--desktop {
  display: block;
}

@media (max-width: 720px) {
  .bee-h1-br--desktop {
    display: none;
  }
}

.bee-hero-copy__lead {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--bee-graphite);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.bee-hero-support {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--bee-graphite);
  line-height: 1.55;
  max-width: 540px;
}

.bee-hero-segments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 0;
}

.bee-hero-segment {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bee-graphite);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 18, 20, .10);
  border-radius: 999px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  letter-spacing: .01em;
  cursor: default;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  user-select: none;
}

.bee-hero-segment:hover {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(16, 18, 20, .22);
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 18, 20, .08);
}

.bee-hero-segment:active {
  transform: scale(.97);
  transition-duration: .08s;
}

.bee-search-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(16, 18, 20, .08);
  border-radius: var(--bee-radius-lg);
  box-shadow: var(--bee-shadow);
  backdrop-filter: blur(22px);
}

.bee-field {
  display: grid;
  gap: 7px;
}

.bee-field span {
  font-size: 12px;
  font-weight: 800;
  color: var(--bee-muted);
}

.bee-field input,
.bee-field select,
.bee-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 18, 20, .12);
  background: #fff;
  color: var(--bee-ink);
  border-radius: 14px;
  padding: 13px 14px;
  outline: 0;
}

.bee-field textarea {
  resize: vertical;
}

.bee-field input:focus,
.bee-field select:focus,
.bee-field textarea:focus {
  border-color: var(--bee-ink);
  box-shadow: 0 0 0 4px rgba(247, 216, 74, .35);
}

.bee-field--wide {
  grid-column: 1 / -1;
}

.bee-search-panel__actions,
.bee-contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.bee-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bee-btn--dark {
  background: var(--bee-ink);
  color: #fff;
}

.bee-btn--dark:hover {
  background: #000;
}

.bee-btn--light {
  background: var(--bee-yellow);
  color: var(--bee-ink);
}

.bee-btn--outline {
  background: transparent;
  color: var(--bee-ink);
  border: 1px solid rgba(16, 18, 20, .20);
}

.bee-quick-filters,
.bee-results-toolbar,
.bee-properties-results,
.bee-empty-state {
  padding: 38px 0 0;
}

.bee-section-title h2,
.bee-results-toolbar h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.04em;
}

.bee-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.bee-chip {
  border: 1px solid rgba(16, 18, 20, .12);
  background: #fff;
  color: var(--bee-graphite);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 850;
}

.bee-chip:hover,
.bee-chip.is-active {
  background: var(--bee-yellow);
  border-color: var(--bee-yellow);
  color: var(--bee-ink);
}

.bee-results-toolbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(16,18,20,.10);
}

.bee-field--sort {
  min-width: 230px;
}

.bee-properties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bee-property-card {
  background: var(--bee-card);
  border: 1px solid rgba(16, 18, 20, .08);
  border-radius: var(--bee-radius-md);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(16, 18, 20, .08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bee-property-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #dde2e3;
  overflow: hidden;
}

.bee-property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.bee-property-card:hover .bee-property-card__media img {
  transform: scale(1.04);
}

.bee-property-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--bee-yellow);
  color: var(--bee-ink);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.bee-property-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.bee-property-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.bee-property-card__area {
  color: var(--bee-muted);
  font-weight: 700;
}

.bee-property-card__price {
  font-size: 24px;
  font-weight: 950;
}

.bee-property-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bee-fact {
  background: #f2f3f0;
  color: var(--bee-graphite);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.bee-property-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.bee-property-card__actions .bee-btn {
  flex: 1;
  padding: 11px 12px;
}

.bee-load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 0 54px;
}


/* JSON driven visibility lock: hidden elements must stay hidden even when component classes set display. */
.bee-load-more-wrap[hidden],
.bee-btn[hidden] {
  display: none !important;
}

.bee-empty-card {
  background: #fff;
  border-radius: var(--bee-radius-lg);
  padding: 32px;
  box-shadow: var(--bee-shadow);
  text-align: center;
}

.bee-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.bee-modal.is-open {
  display: block;
}

.bee-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,18,20,.66);
  backdrop-filter: blur(6px);
}

.bee-modal__panel {
  position: absolute;
  inset: 24px;
  margin: auto;
  max-width: 1100px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: var(--bee-radius-lg);
  box-shadow: 0 30px 100px rgba(0,0,0,.30);
}

.bee-contact-panel {
  max-width: 760px;
  padding: 28px;
}

.bee-modal__close {
  position: sticky;
  top: 14px;
  margin-left: auto;
  margin-right: 14px;
  margin-top: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bee-ink);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.bee-detail {
  padding: 0 28px 30px;
}

.bee-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 22px;
  align-items: start;
}

.bee-gallery-main {
  aspect-ratio: 16 / 10;
  background: #dde2e3;
  border-radius: var(--bee-radius-md);
  overflow: hidden;
}

.bee-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bee-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 10px;
  padding-bottom: 5px;
}

.bee-gallery-thumb {
  flex: 0 0 82px;
  height: 64px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #eef0ee;
  padding: 0;
}

.bee-gallery-thumb.is-active {
  border-color: var(--bee-yellow);
}

.bee-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bee-detail__side {
  background: #f7f7f3;
  border-radius: var(--bee-radius-md);
  padding: 22px;
}

.bee-detail__side h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -.05em;
}

.bee-detail__price {
  font-size: 30px;
  font-weight: 950;
  margin: 12px 0;
}

.bee-detail__meta {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.bee-detail__meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(16,18,20,.10);
  padding-bottom: 8px;
}

.bee-detail__meta span:first-child {
  color: var(--bee-muted);
  font-weight: 800;
}

.bee-detail__section {
  margin-top: 26px;
  background: #fff;
  border: 1px solid rgba(16,18,20,.08);
  border-radius: var(--bee-radius-md);
  padding: 22px;
}

.bee-detail__section h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.bee-detail__description {
  white-space: pre-line;
  color: var(--bee-graphite);
  line-height: 1.7;
}

.bee-features-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bee-features-list li {
  background: #f3f4f1;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--bee-graphite);
  font-weight: 750;
}

.bee-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bee-contact-panel__head {
  margin-bottom: 20px;
}

.bee-contact-panel__head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.05em;
}

.bee-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--bee-muted);
  font-size: 13px;
}

.bee-footer {
  background: #eceee8;
  border-top: 1px solid rgba(16,18,20,.10);
  padding: 42px 0;
}

.bee-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.bee-footer__logo {
  width: 190px;
  max-width: 60vw;
}

.bee-footer p {
  max-width: 520px;
  color: var(--bee-muted);
}

.bee-footer__contact {
  display: grid;
  gap: 8px;
  color: var(--bee-graphite);
}

.bee-footer__contact a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 860px) {
  .bee-hero-search__inner,
  .bee-detail__hero {
    grid-template-columns: 1fr;
  }

  .bee-properties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bee-features-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bee-header__inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .bee-nav {
    display: none;
  }

  .bee-brand__logo {
    width: 180px;
  }

  .bee-hero-search {
    padding: 42px 0;
  }

  .bee-search-panel,
  .bee-contact-form {
    grid-template-columns: 1fr;
  }

  .bee-results-toolbar__inner,
  .bee-footer__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .bee-properties-grid {
    grid-template-columns: 1fr;
  }

  .bee-modal__panel {
    inset: 10px;
    max-height: calc(100vh - 20px);
  }

  .bee-detail {
    padding: 0 16px 24px;
  }

  .bee-features-list {
    grid-template-columns: 1fr;
  }
}

/* Upgrade 2026-04-30 Europe/Athens: contact flow, premium modal, no results lead, mobile sticky CTA */
.bee-empty-card {
  text-align: left;
  border: 1px solid rgba(16,18,20,.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(247,216,74,.34), transparent 34%),
    #fff;
}

.bee-empty-card h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.05em;
}

.bee-empty-card p {
  max-width: 760px;
  color: var(--bee-graphite);
  line-height: 1.65;
}

.bee-empty-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.bee-contact-locked-box {
  margin: 0 0 18px;
  padding: 16px;
  border-radius: 18px;
  background: #f7f7f3;
  border: 1px solid rgba(16,18,20,.10);
}

.bee-contact-locked-box strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.bee-contact-locked-box span {
  display: block;
  color: var(--bee-graphite);
  line-height: 1.55;
}

.bee-detail__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.bee-detail-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  background: #fff;
  border: 1px solid rgba(16,18,20,.12);
  font-size: 12px;
  font-weight: 900;
  color: var(--bee-graphite);
}

.bee-detail-pill--accent {
  background: var(--bee-yellow);
  border-color: var(--bee-yellow);
  color: var(--bee-ink);
}

.bee-detail__side {
  position: sticky;
  top: 16px;
  border: 1px solid rgba(16,18,20,.08);
}

.bee-detail__cta-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.bee-detail__agent-card {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(16,18,20,.08);
}

.bee-detail__agent-card span {
  display: block;
  color: var(--bee-muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 5px;
}

.bee-detail__agent-card strong {
  display: block;
  font-size: 18px;
}

.bee-mobile-sticky-cta {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .bee-mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(16,18,20,.10);
    box-shadow: 0 16px 42px rgba(16,18,20,.18);
    backdrop-filter: blur(14px);
  }

  .bee-mobile-sticky-cta__btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 10px;
    background: var(--bee-yellow);
    color: var(--bee-ink);
    text-decoration: none;
    font-weight: 950;
    text-align: center;
  }

  .bee-mobile-sticky-cta__btn--dark {
    background: var(--bee-ink);
    color: #fff;
  }

  .bee-detail__side {
    position: static;
  }

  .bee-empty-card__actions .bee-btn,
  .bee-detail__cta-stack .bee-btn {
    width: 100%;
  }
}


/* Upgrade 2026-04-30 Europe/Athens: mobile filter drawer, sticky property actions, swipe gallery, compact cards */

.bee-results-toolbar__actions {
  display: flex;
  align-items: end;
  gap: 12px;
}

.bee-mobile-filter-trigger {
  display: none;
}

.bee-property-card__media {
  border: 0;
  cursor: pointer;
  text-align: left;
}

.bee-property-card__mobile-head {
  display: grid;
  gap: 10px;
}

.bee-property-card__agent {
  color: var(--bee-muted);
  font-size: 13px;
  font-weight: 850;
}

.bee-fact--code {
  background: var(--bee-yellow-soft);
  color: var(--bee-ink);
}

.bee-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
}

.bee-filter-drawer.is-open {
  display: block;
}

.bee-filter-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,18,20,.48);
  backdrop-filter: blur(4px);
}

.bee-filter-drawer__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 84vh;
  padding: 10px 18px 22px;
  border-radius: 28px 28px 0 0;
  background: #fff;
  box-shadow: 0 -24px 70px rgba(16,18,20,.24);
  transform: translateY(0);
}

.bee-filter-drawer__handle {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(16,18,20,.18);
  margin: 0 auto 14px;
}

.bee-filter-drawer__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.bee-filter-drawer__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
}

.bee-filter-drawer__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bee-ink);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.bee-filter-drawer__content {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bee-filter-drawer__content p {
  margin: 0;
  color: var(--bee-graphite);
  line-height: 1.55;
}

.bee-drawer-open {
  overflow: hidden;
}

.bee-gallery-main--swipe {
  position: relative;
  touch-action: pan-y;
}

.bee-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(16,18,20,.72);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.bee-gallery-nav--prev {
  left: 12px;
}

.bee-gallery-nav--next {
  right: 12px;
}

.bee-gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16,18,20,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.bee-detail-sticky-bar {
  display: none;
}

@media (max-width: 720px) {
  .bee-container {
    width: min(var(--bee-container), calc(100% - 22px));
  }

  .bee-hero-search {
    min-height: auto;
    padding: 30px 0 26px;
  }

  .bee-hero-copy h1 {
    font-size: clamp(34px, 13vw, 52px);
  }

  .bee-hero-copy__lead {
    font-size: 16px;
    line-height: 1.45;
  }

  .bee-search-panel {
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
  }

  .bee-field span {
    font-size: 11px;
  }

  .bee-field input,
  .bee-field select,
  .bee-field textarea {
    padding: 12px;
    border-radius: 12px;
  }

  .bee-results-toolbar__actions {
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: end;
    gap: 10px;
  }

  .bee-mobile-filter-trigger {
    display: inline-flex;
    min-height: 48px;
  }

  .bee-field--sort {
    min-width: 0;
  }

  .bee-property-card {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    min-height: 0;
    border-radius: 20px;
  }

  .bee-property-card__media {
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
    border-radius: 0;
  }

  .bee-property-card__badge {
    left: 8px;
    top: 8px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .bee-property-card__body {
    padding: 12px;
    gap: 9px;
  }

  .bee-property-card__title {
    font-size: 16px;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .bee-property-card__area {
    font-size: 12px;
    line-height: 1.25;
  }

  .bee-property-card__price {
    font-size: 20px;
  }

  .bee-property-card__facts {
    gap: 6px;
  }

  .bee-fact {
    padding: 6px 8px;
    font-size: 11px;
  }

  .bee-property-card__agent {
    display: none;
  }

  .bee-property-card__actions {
    gap: 6px;
  }

  .bee-property-card__actions .bee-btn {
    padding: 9px 8px;
    font-size: 12px;
  }

  .bee-modal__panel {
    inset: 0;
    max-height: 100vh;
    border-radius: 0;
  }

  .bee-detail {
    padding: 0 12px 94px;
  }

  .bee-gallery-main {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
  }

  .bee-gallery-thumbs {
    gap: 7px;
  }

  .bee-gallery-thumb {
    flex-basis: 68px;
    height: 52px;
  }

  .bee-gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .bee-detail__side {
    padding: 16px;
    border-radius: 18px;
  }

  .bee-detail__meta {
    grid-template-columns: 1fr;
  }

  .bee-detail__section {
    padding: 16px;
    border-radius: 18px;
  }

  .bee-detail-sticky-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 125;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(16,18,20,.10);
    box-shadow: 0 16px 42px rgba(16,18,20,.22);
    backdrop-filter: blur(16px);
  }

  .bee-detail-sticky-bar__code {
    padding-left: 8px;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bee-detail-sticky-bar__btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 10px;
    background: var(--bee-yellow);
    color: var(--bee-ink);
    text-decoration: none;
    font-weight: 950;
    font-size: 12px;
  }

  .bee-detail-sticky-bar__btn--dark {
    background: var(--bee-ink);
    color: #fff;
  }

  .bee-modal.is-open ~ .bee-mobile-sticky-cta {
    display: none;
  }
}

/* --------------------------------------------------------
   UX Patch: instant feedback, skeletons, favorites, compact mobile cards
   Date: 2026-04-30 Europe/Athens
-------------------------------------------------------- */
.bee-favorites-toggle {
  min-width: 120px;
}

.bee-favorites-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--bee-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.bee-favorites-toggle.is-active {
  background: var(--bee-yellow);
  color: var(--bee-ink);
  border-color: var(--bee-yellow);
}

.bee-favorite-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--bee-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(16, 18, 20, .18);
}

.bee-favorite-btn.is-active {
  background: var(--bee-yellow);
  color: var(--bee-ink);
}

.bee-detail-favorite {
  top: 14px;
  right: 14px;
}

.bee-property-card__snippet {
  margin: 10px 0 0;
  color: var(--bee-muted);
  font-size: 14px;
  line-height: 1.45;
}

.bee-inline-detail {
  margin: 0 16px 16px;
  padding: 14px;
  border-radius: 18px;
  background: #f7f7f3;
  border: 1px solid rgba(16, 18, 20, .08);
}

.bee-inline-detail p {
  margin: 0;
  color: var(--bee-graphite);
  line-height: 1.55;
}

.bee-inline-detail__actions {
  margin-top: 12px;
}

.bee-skeleton-card {
  pointer-events: none;
}

.bee-skeleton {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  background: #ecefea;
}

.bee-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  animation: beeSkeleton 1.2s infinite;
}

.bee-skeleton--image {
  height: 230px;
  border-radius: 0;
}

.bee-skeleton--title {
  height: 28px;
  width: 82%;
  margin-bottom: 14px;
}

.bee-skeleton--line {
  height: 16px;
  width: 100%;
  margin-bottom: 10px;
}

.bee-skeleton--short {
  width: 58%;
}

@keyframes beeSkeleton {
  100% { transform: translateX(100%); }
}

@media (max-width: 760px) {
  .bee-results-toolbar__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bee-results-toolbar__actions .bee-field--sort {
    grid-column: 1 / -1;
  }

  .bee-favorites-toggle,
  .bee-mobile-filter-trigger {
    width: 100%;
    min-height: 46px;
  }

  .bee-property-card__snippet {
    display: none;
  }

  .bee-property-card__actions {
    grid-template-columns: 1fr 1fr;
  }

  .bee-property-card__actions .bee-btn--outline {
    grid-column: 1 / -1;
  }

  .bee-inline-detail-trigger {
    display: inline-flex;
  }

  .bee-skeleton--image {
    height: 190px;
  }
}

/* Smart conversion patch 2026-04-30 Europe/Athens */
.bee-conversion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 2px 0 10px;
}

.bee-conversion-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(247, 216, 74, .26);
  border: 1px solid rgba(16, 18, 20, .08);
  color: var(--bee-ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.bee-conversion-tags--detail {
  margin: 12px 0 12px;
}

.bee-price-signal {
  margin: 4px 0 12px;
  color: #395044;
  font-size: 13px;
  font-weight: 900;
}

.bee-price-signal--detail {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(69, 119, 84, .11);
  border: 1px solid rgba(69, 119, 84, .18);
}

.bee-property-card__actions--conversion {
  grid-template-columns: 1fr 1fr;
}

.bee-property-card__actions--conversion .bee-btn:first-child,
.bee-property-card__actions--conversion .bee-btn:last-child {
  grid-column: 1 / -1;
}

.bee-one-tap-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.bee-one-tap-contact .bee-btn:first-child {
  grid-column: 1 / -1;
}

.bee-smart-suggestions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bee-suggestion-card {
  appearance: none;
  border: 1px solid rgba(16, 18, 20, .08);
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  text-align: left;
  display: grid;
  gap: 7px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bee-suggestion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16, 18, 20, .10);
  border-color: rgba(16, 18, 20, .22);
}

.bee-suggestion-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 13px;
  background: #f1f1f1;
}

.bee-suggestion-card span {
  color: var(--bee-ink);
  font-weight: 900;
  line-height: 1.2;
}

.bee-suggestion-card strong {
  color: var(--bee-ink);
  font-size: 15px;
}

.bee-suggestion-card small {
  color: var(--bee-muted);
  line-height: 1.25;
}

@media (max-width: 720px) {
  .bee-property-card__actions--conversion {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bee-property-card__actions--conversion .bee-btn {
    min-height: 42px;
    padding: 11px 12px;
    font-size: 13px;
  }

  .bee-one-tap-contact {
    grid-template-columns: 1fr 1fr;
    position: sticky;
    bottom: 78px;
    z-index: 4;
    padding: 10px;
    margin: 14px -10px 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(16, 18, 20, .13);
  }

  .bee-smart-suggestions__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .bee-suggestion-card {
    min-width: 72vw;
    scroll-snap-align: start;
  }

  .bee-conversion-tags {
    gap: 5px;
  }

  .bee-conversion-tags span {
    font-size: 10px;
    padding: 6px 8px;
  }
}


/* UX Flow Patch 2026 04 30 Europe Athens
   Mobile first search flow, collapsed filters, instant results visibility, stronger empty state.
*/

.bee-hero-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.bee-hero-trust span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 24, 31, 0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  color: var(--bee-muted);
  font-size: 13px;
  line-height: 1.2;
}

.bee-hero-trust strong {
  color: var(--bee-ink);
  font-weight: 850;
}

.bee-intent-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 2px;
}

.bee-intent-btn {
  min-height: 46px;
  border: 1px solid rgba(20, 24, 31, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--bee-ink);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.bee-intent-btn.is-active {
  background: var(--bee-ink);
  color: #fff;
  border-color: var(--bee-ink);
}

.bee-search-panel--flow .bee-advanced-filter {
  display: none;
}

.bee-search-panel--flow.is-expanded .bee-advanced-filter {
  display: flex;
}

.bee-filter-toggle-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.bee-filter-toggle {
  border: 0;
  background: transparent;
  color: var(--bee-ink);
  font-weight: 850;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  min-height: 42px;
}

.bee-search-panel--flow .bee-search-panel__actions {
  margin-top: 2px;
}

.bee-results-toolbar {
  padding-top: 22px;
}

.bee-results-toolbar__inner {
  align-items: end;
}

.bee-mobile-filter-trigger {
  min-width: 104px;
}

.bee-filter-drawer__content {
  display: grid;
  gap: 14px;
}

.bee-filter-drawer__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 4px;
}

.bee-empty-card {
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: 0 18px 46px rgba(0,0,0,0.08);
}

.bee-empty-card h2 {
  font-size: clamp(24px, 7vw, 40px);
}

.bee-empty-card__actions .bee-btn {
  min-height: 48px;
}

.bee-property-card {
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.bee-property-card__actions--conversion .bee-btn {
  min-height: 44px;
}

.bee-mobile-sticky-cta {
  box-shadow: 0 -14px 36px rgba(0,0,0,0.16);
}

.bee-mobile-sticky-cta__btn {
  min-height: 48px;
}

@media (max-width: 760px) {
  .bee-hero-search {
    padding-top: 18px;
  }

  .bee-hero-copy h1 {
    font-size: clamp(30px, 10vw, 46px);
    letter-spacing: -0.055em;
  }

  .bee-hero-copy__lead {
    font-size: 15px;
  }

  .bee-search-panel {
    margin-top: 20px;
  }

  .bee-search-panel--flow {
    gap: 12px;
    padding: 14px;
  }

  .bee-search-panel--flow .bee-field--wide {
    grid-column: 1 / -1;
  }

  .bee-search-panel--flow .bee-search-panel__actions {
    grid-template-columns: 1fr 1fr;
    position: sticky;
    bottom: 70px;
    z-index: 6;
    padding-top: 10px;
    background: linear-gradient(to top, rgba(255,255,255,0.96), rgba(255,255,255,0.78));
    border-radius: 18px;
  }

  .bee-quick-filters {
    padding-top: 8px;
  }

  .bee-chip-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .bee-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .bee-results-toolbar__inner {
    gap: 12px;
  }

  .bee-results-toolbar__actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    width: 100%;
  }

  .bee-field--sort {
    min-width: 0;
  }

  .bee-properties-grid {
    gap: 14px;
  }

  .bee-property-card__snippet {
    display: none;
  }

  .bee-filter-drawer__panel {
    max-height: min(78vh, 620px);
    overflow: auto;
  }
}

@media (min-width: 761px) {
  .bee-hero-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .bee-search-panel--flow .bee-advanced-filter {
    display: flex;
  }

  .bee-filter-toggle-row {
    display: none;
  }

  .bee-intent-row {
    max-width: 520px;
  }
}


/* Icon CTA Patch 2026-04-30 Europe/Athens
   Στόχος: πιο ελαφριά, app-like CTA κουμπιά με inline SVG icons. */
.bee-btn--icon,
.bee-detail-sticky-bar__btn--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

.bee-btn-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.bee-btn--ghost {
  background: rgba(16, 18, 20, .035);
  color: var(--bee-ink);
  border: 1px solid rgba(16, 18, 20, .08);
  box-shadow: none;
}

.bee-btn--call {
  box-shadow: 0 10px 24px rgba(247, 216, 74, .24);
}

.bee-property-card__actions--conversion {
  display: grid;
  grid-template-columns: .92fr .78fr .92fr;
  gap: 8px;
  align-items: center;
}

.bee-property-card__actions--conversion .bee-btn:first-child,
.bee-property-card__actions--conversion .bee-btn:last-child {
  grid-column: auto;
}

.bee-property-card__actions--conversion .bee-btn {
  border-radius: 999px;
  min-height: 42px;
  padding: 9px 11px;
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.bee-property-card__actions--conversion .bee-btn--light {
  min-width: 66px;
  padding-inline: 10px;
}

.bee-one-tap-contact .bee-btn {
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
}

.bee-detail-sticky-bar__btn--icon .bee-btn-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 720px) {
  .bee-property-card__actions--conversion {
    grid-template-columns: 1fr 72px 1fr;
    gap: 7px;
  }

  .bee-property-card__actions--conversion .bee-btn {
    min-height: 40px;
    padding: 8px 8px;
    font-size: 11.5px;
  }

  .bee-property-card__actions--conversion .bee-btn--light {
    width: 64px;
    height: 64px;
    min-height: 64px;
    padding: 0;
    flex-direction: column;
    gap: 3px;
    font-size: 11px;
    font-weight: 950;
  }

  .bee-property-card__actions--conversion .bee-btn--light .bee-btn-icon {
    width: 19px;
    height: 19px;
  }

  .bee-property-card__actions--conversion .bee-btn--outline,
  .bee-property-card__actions--conversion .bee-btn--ghost {
    min-height: 48px;
  }

  .bee-one-tap-contact {
    grid-template-columns: 1fr 1fr;
  }

  .bee-one-tap-contact .bee-btn:first-child {
    grid-column: 1 / -1;
  }

  .bee-one-tap-contact .bee-btn--icon {
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .bee-property-card__actions--conversion {
    grid-template-columns: 1fr 60px 1fr;
  }

  .bee-property-card__actions--conversion .bee-btn {
    font-size: 10.5px;
  }

  .bee-property-card__actions--conversion .bee-btn--light {
    width: 58px;
    height: 58px;
    min-height: 58px;
  }
}

/* Premium recovery refinement 2026 04 30 Europe Athens
   Restores the full working UI and applies only additive, mobile first premium refinements.
*/
:root {
  --bee-premium-shadow: 0 18px 46px rgba(16, 18, 20, .085);
  --bee-premium-soft: rgba(255, 255, 255, .84);
}

.bee-property-card {
  border: 1px solid rgba(16, 18, 20, .075);
  box-shadow: var(--bee-premium-shadow);
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bee-property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(16, 18, 20, .12);
  border-color: rgba(16, 18, 20, .14);
}

.bee-property-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.16) 100%);
  pointer-events: none;
}

.bee-property-card__mobile-head {
  color: rgba(16, 18, 20, .72);
  letter-spacing: .01em;
}

.bee-property-card__mobile-head strong {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(16, 18, 20, .06);
  padding: 4px 8px;
  color: var(--bee-ink);
}

.bee-conversion-tags span {
  border-color: rgba(16, 18, 20, .10);
  background: rgba(247, 216, 74, .24);
  box-shadow: none;
}

.bee-property-card__title {
  letter-spacing: -.035em;
  font-weight: 850;
}

.bee-property-card__price {
  letter-spacing: -.045em;
}

.bee-price-signal {
  color: #385f43;
  background: rgba(69, 119, 84, .10);
  border: 1px solid rgba(69, 119, 84, .15);
  border-radius: 999px;
  width: fit-content;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
}

.bee-property-card__facts span {
  line-height: 1.25;
}

.bee-property-card__actions--conversion {
  align-items: center;
}

.bee-btn--icon {
  gap: 6px;
  letter-spacing: -.01em;
}

.bee-btn--call {
  box-shadow: 0 12px 28px rgba(247, 216, 74, .38);
}

.bee-modal__panel {
  box-shadow: 0 24px 80px rgba(16, 18, 20, .22);
}

.bee-gallery-main img,
.bee-property-card__media img {
  image-rendering: auto;
}

@media (max-width: 720px) {
  .bee-properties-grid {
    gap: 14px;
  }

  .bee-property-card {
    grid-template-columns: 106px minmax(0, 1fr);
    border-radius: 22px;
    overflow: hidden;
  }

  .bee-property-card__body {
    padding: 13px 12px 12px;
    gap: 8px;
  }

  .bee-property-card__media {
    border-radius: 0;
  }

  .bee-property-card__badge {
    font-size: 10px;
    padding: 6px 8px;
    max-width: 82px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bee-favorite-btn {
    width: 36px;
    height: 36px;
    right: 8px;
    top: 8px;
    box-shadow: 0 10px 24px rgba(16, 18, 20, .14);
  }

  .bee-property-card__mobile-head {
    gap: 6px;
    font-size: 12px;
  }

  .bee-property-card__mobile-head strong {
    padding: 4px 7px;
    font-size: 11px;
  }

  .bee-conversion-tags {
    gap: 5px;
  }

  .bee-conversion-tags span:nth-child(n+3) {
    display: none;
  }

  .bee-property-card__title {
    font-size: 17px;
    line-height: 1.16;
  }

  .bee-property-card__area {
    font-size: 12px;
  }

  .bee-property-card__price {
    font-size: 22px;
    margin-top: 2px;
  }

  .bee-price-signal {
    font-size: 11px;
    padding: 5px 8px;
  }

  .bee-property-card__facts {
    gap: 6px 8px;
  }

  .bee-property-card__facts span {
    font-size: 12px;
  }

  .bee-property-card__snippet {
    display: none;
  }

  .bee-property-card__actions--conversion {
    display: grid;
    grid-template-columns: .95fr 54px 1fr;
    gap: 7px;
    margin-top: 4px;
  }

  .bee-property-card__actions--conversion .bee-btn,
  .bee-property-card__actions--conversion .bee-btn:first-child,
  .bee-property-card__actions--conversion .bee-btn:last-child {
    grid-column: auto;
    min-height: 44px;
    padding: 8px 8px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.05;
  }

  .bee-property-card__actions--conversion .bee-btn svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .bee-property-card__actions--conversion .bee-btn--call {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }

  .bee-property-card__actions--conversion .bee-btn--call span {
    display: none;
  }

  .bee-detail__sticky-actions,
  .bee-mobile-sticky-cta {
    box-shadow: 0 -12px 34px rgba(16, 18, 20, .12);
  }
}

/* --------------------------------------------------------
   BEE CALL-FIRST HERO CTA  (decision_01 — 2026-04, patch 2026-04-30)
   -------------------------------------------------------- */
.bee-hero-call-first {
  background: #fff;
  border: 1px solid rgba(20, 24, 31, 0.10);
  border-radius: 18px;
  padding: 18px 18px 14px;
  margin: 10px 0 0;
}

.bee-hero-call-first__broker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bee-hero-call-first__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--bee-yellow, #f7d84a);
  flex-shrink: 0;
}

.bee-hero-call-first__name {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--bee-ink, #14181f);
  line-height: 1.15;
}

.bee-hero-call-first__role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--bee-muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-top: 3px;
}

.bee-hero-call-first__online {
  display: inline-block;
  margin-top: 5px;
  background: #22c55e;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .06em;
}

.bee-hero-call-first__bio {
  font-size: 12px;
  color: #3a4048;
  line-height: 1.55;
  border-top: 1px solid rgba(16, 18, 20, .06);
  border-bottom: 1px solid rgba(16, 18, 20, .06);
  padding: 12px 0;
  margin-bottom: 12px;
}

.bee-hero-call-first__bio p {
  margin: 0 0 5px;
}

.bee-hero-call-first__bio p:last-child {
  margin-bottom: 0;
}

.bee-hero-call-first__certs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.bee-cert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8f9f7;
  border-radius: 12px;
  padding: 10px 12px;
}

.bee-cert__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bee-ink, #14181f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.bee-cert__title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--bee-ink, #14181f);
  margin-bottom: 2px;
}

.bee-cert__desc {
  display: block;
  font-size: 11px;
  color: var(--bee-muted, #6b7280);
  line-height: 1.45;
}

.bee-hero-call-first__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 60px;
  background: var(--bee-ink, #14181f);
  color: var(--bee-yellow, #f7d84a);
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 12px;
  padding: 14px 20px;
  transition: opacity .15s;
}

.bee-hero-call-first__cta:hover,
.bee-hero-call-first__cta:focus {
  opacity: 0.88;
}

.bee-hero-call-first__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--bee-muted, #6b7280);
}

.bee-hero-call-first__number {
  font-weight: 700;
  color: var(--bee-ink, #14181f);
}

.bee-hero-call-first__response::before {
  content: '·';
  margin-right: 14px;
  opacity: .4;
}

/* Sticky CTA phone number */
.bee-mobile-sticky-cta__btn {
  flex-direction: column;
  gap: 1px;
}

.bee-mobile-sticky-cta__phone {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: .75;
  letter-spacing: .02em;
}


/* --------------------------------------------------------
   BEE MOBILE MENU  (2026-04-30)
   -------------------------------------------------------- */

/* Hamburger — hidden on desktop, visible on mobile */
.bee-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(16,18,20,.12);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.bee-hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bee-ink);
  border-radius: 2px;
  transition: opacity .2s;
}

/* Menu overlay */
.bee-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.bee-mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

/* Backdrop */
.bee-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0);
  transition: background .28s ease;
}

.bee-mobile-menu.is-open .bee-mobile-menu__backdrop {
  background: rgba(10, 12, 14, .52);
}

/* Panel — slides in from right */
.bee-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.bee-mobile-menu.is-open .bee-mobile-menu__panel {
  transform: translateX(0);
}

/* Head */
.bee-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(16,18,20,.07);
  flex-shrink: 0;
}

.bee-mobile-menu__brand {
  font-size: 17px;
  font-weight: 800;
  color: var(--bee-ink);
  letter-spacing: -.02em;
}

.bee-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bee-bg);
  border: 1px solid rgba(16,18,20,.10);
  border-radius: 10px;
  cursor: pointer;
  color: var(--bee-ink);
}

/* Body */
.bee-mobile-menu__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 32px;
  gap: 8px;
}

/* CALL CTA — first, full width, prominent */
.bee-mobile-menu__call {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bee-ink);
  color: var(--bee-yellow);
  text-decoration: none;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 10px;
}

.bee-mobile-menu__call-icon {
  width: 44px;
  height: 44px;
  background: rgba(247,216,74,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bee-yellow);
}

.bee-mobile-menu__call-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bee-mobile-menu__call-text strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--bee-yellow);
  line-height: 1;
}

.bee-mobile-menu__call-text span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(247,216,74,.75);
}

/* Nav items */
.bee-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.bee-mobile-menu__nav-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  background: transparent;
  border: 1px solid rgba(16,18,20,.08);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--bee-ink);
  text-align: left;
  cursor: pointer;
  transition: background .15s;
}

.bee-mobile-menu__nav-item:active {
  background: var(--bee-yellow-soft);
}

/* Trust footer */
.bee-mobile-menu__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bee-bg);
  border-radius: 14px;
  margin-top: auto;
}

.bee-mobile-menu__trust-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--bee-yellow);
  flex-shrink: 0;
}

.bee-mobile-menu__trust-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--bee-ink);
  line-height: 1.2;
}

.bee-mobile-menu__trust-role {
  display: block;
  font-size: 12px;
  color: var(--bee-muted);
  margin-top: 2px;
}

.bee-mobile-menu__trust-online {
  color: #22c55e;
  font-weight: 700;
}

/* Prevent body scroll when menu open */
body.bee-menu-open {
  overflow: hidden;
}

/* Hero copy patch — mobile responsive */
@media (max-width: 720px) {
  .bee-hero-support__br {
    display: none;
  }
  .bee-hero-support {
    font-size: 15px;
  }
  .bee-hero-segment {
    font-size: 12px;
    padding: 5px 11px;
  }
  .bee-hero-segments {
    gap: 6px;
    margin: 12px 0 0;
  }
}

/* --------------------------------------------------------
   HERO BACKGROUND ICONS  (semantic outlines — 2026-04-30)
   -------------------------------------------------------- */

/* --------------------------------------------------------
   HERO TEXT REVEAL  (fade-up, staggered — 2026-04-30)
   -------------------------------------------------------- */
@keyframes beeRevealUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bee-reveal {
  opacity: 0;
  animation: beeRevealUp 700ms cubic-bezier(.22,.68,0,1.2) forwards;
}
.bee-reveal--1 { animation-delay: 80ms; }
.bee-reveal--2 { animation-delay: 240ms; }
.bee-reveal--3 { animation-delay: 400ms; }
.bee-reveal--4 { animation-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .bee-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------
   HERO BACKGROUND ICONS — 6 property types (2026-04-30)
   -------------------------------------------------------- */

/* Float keyframes — 6 variants, different axes & timing */
@keyframes beeBgF1 {
  0%,100% { transform: translateY(0)              ; }
  50%      { transform: translateY(-10px)          ; }
}
@keyframes beeBgF2 {
  0%,100% { transform: translate(0, 0)             ; }
  50%      { transform: translate(-8px, 7px)        ; }
}
@keyframes beeBgF3 {
  0%,100% { transform: translate(0, 0)             ; }
  50%      { transform: translate(9px, -6px)        ; }
}
@keyframes beeBgF4 {
  0%,100% { transform: translateY(0)               ; }
  50%      { transform: translateY(8px)             ; }
}
@keyframes beeBgF5 {
  0%,100% { transform: translate(0, 0)             ; }
  50%      { transform: translate(-7px, -9px)       ; }
}
@keyframes beeBgF6 {
  0%,100% { transform: translate(0, 0)             ; }
  50%      { transform: translate(6px, 8px)         ; }
}

/* Breathing opacity */
@keyframes beeBgBreath {
  0%,100% { opacity: .09; }
  50%      { opacity: .14; }
}

.bee-hero-bg-icons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bee-bg-icon {
  position: absolute;
  color: #a8870e;
  will-change: transform;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Breath: more visible range */
@keyframes beeBgBreathV2 {
  0%,100% { opacity: .13; }
  50%      { opacity: .20; }
}

/* 1. House — top right, primary symbol */
.bee-bg-icon--house {
  width: 130px; height: 116px;
  right: 148px; top: 44px;
  opacity: .13;
  animation: beeBgF1 13s ease-in-out infinite, beeBgBreathV2 13s ease-in-out infinite;
  animation-delay: 0s, 0s;
}
/* 2. Apartment — far right, middle height */
.bee-bg-icon--apartment {
  width: 88px; height: 126px;
  right: 36px; top: 110px;
  opacity: .13;
  animation: beeBgF2 16s ease-in-out infinite, beeBgBreathV2 16s ease-in-out infinite;
  animation-delay: 1.8s, 1.8s;
}
/* 3. Office — right area, below center */
.bee-bg-icon--office {
  width: 96px; height: 122px;
  right: 272px; bottom: 64px;
  opacity: .13;
  animation: beeBgF3 11s ease-in-out infinite, beeBgBreathV2 11s ease-in-out infinite;
  animation-delay: 0.6s, 0.6s;
}
/* 4. Chart — bottom right */
.bee-bg-icon--chart {
  width: 160px; height: 108px;
  right: 64px; bottom: 52px;
  opacity: .13;
  animation: beeBgF4 14s ease-in-out infinite, beeBgBreathV2 14s ease-in-out infinite;
  animation-delay: 2.4s, 2.4s;
}
/* 5. Land — mid right, vertical center */
.bee-bg-icon--land {
  width: 140px; height: 72px;
  right: 170px; top: 50%;
  margin-top: -36px;
  opacity: .11;
  animation: beeBgF5 18s ease-in-out infinite, beeBgBreathV2 18s ease-in-out infinite;
  animation-delay: 1.2s, 1.2s;
}
/* 6. Villa — top far right */
.bee-bg-icon--villa {
  width: 120px; height: 98px;
  right: 28px; top: 20px;
  opacity: .11;
  animation: beeBgF6 15s ease-in-out infinite, beeBgBreathV2 15s ease-in-out infinite;
  animation-delay: 3s, 3s;
}

/* Mobile: house (primary) + office (business) + chart (investment) only */
@media (max-width: 720px) {
  .bee-bg-icon--apartment,
  .bee-bg-icon--land,
  .bee-bg-icon--villa {
    display: none;
  }
  .bee-bg-icon--house {
    width: 88px; height: 78px;
    right: 10px; top: 18px;
    opacity: .08;
  }
  .bee-bg-icon--office {
    width: 64px; height: 82px;
    right: 104px; bottom: 40px;
    opacity: .07;
  }
  .bee-bg-icon--chart {
    width: 108px; height: 72px;
    right: 8px; bottom: 36px;
    opacity: .07;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-bg-icon,
  .bee-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------
   MICRO CALL TRIGGER  (2026-04-30)
   -------------------------------------------------------- */
.bee-micro-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 0;
  text-decoration: none;
  color: var(--bee-graphite);
  font-size: 13px;
  font-weight: 700;
  background: rgba(247, 216, 74, .18);
  border: 1px solid rgba(247, 216, 74, .5);
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  letter-spacing: .01em;
}

.bee-micro-call:hover {
  background: rgba(247, 216, 74, .38);
  border-color: rgba(247, 216, 74, .8);
  transform: translateY(-1px);
}

.bee-micro-call:active {
  transform: scale(.97);
  transition-duration: .08s;
}

@media (max-width: 720px) {
  .bee-micro-call {
    font-size: 12px;
    padding: 6px 14px 6px 11px;
  }
}

.bee-reveal--5 { animation-delay: 680ms; }

/* --------------------------------------------------------
   DESKTOP TRUST CHIPS  (2026-04-30)
   -------------------------------------------------------- */
.bee-hero-trust-chips {
  display: none;
}

@media (min-width: 861px) {
  .bee-hero-trust-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0 0;
  }
}

.bee-trust-chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--bee-graphite);
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(16, 18, 20, .09);
  border-radius: 999px;
  padding: 5px 12px;
  letter-spacing: .01em;
  gap: 4px;
}

.bee-trust-chip strong {
  color: var(--bee-ink);
  font-weight: 800;
}

/* --------------------------------------------------------
   AVAILABILITY BADGE  (2026-04-30)
   -------------------------------------------------------- */
.bee-avail-badge {
  display: inline-block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .06em;
}

.bee-avail-badge--online {
  background: #22c55e;
  color: #fff;
}

.bee-avail-badge--offline {
  background: rgba(16, 18, 20, .10);
  color: var(--bee-muted);
}

/* --------------------------------------------------------
   HEADER CALL ICON FIX  (2026-04-30)
   -------------------------------------------------------- */
.bee-header-call__icon {
  flex-shrink: 0;
  display: block;
  position: relative;
  top: .5px;          /* optical vertical centering */
}

/* --------------------------------------------------------
   CTA ICON BLOCK FIX  (2026-04-30)
   -------------------------------------------------------- */
.bee-cta-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(247, 216, 74, .18);
  border-radius: 9px;
  flex-shrink: 0;
  margin-right: 2px;
}

.bee-hero-call-first__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  background: var(--bee-ink, #14181f);
  color: var(--bee-yellow, #f7d84a);
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 12px;
  padding: 14px 20px;
  transition: opacity .15s;
  gap: 10px;
}

/* 2026-04-30 03:40 Europe/Athens
   Call first mobile UX patch
   Scope: reduce call friction, improve uncertainty messaging, keep existing project architecture.
*/
.bee-hero-copy h1 {
  max-width: 700px;
}

.bee-hero-support {
  max-width: 560px;
}

.bee-search-panel__microcopy {
  margin: 10px 0 0;
  color: var(--bee-muted);
  font-size: 13px;
  line-height: 1.45;
}

.bee-search-call-link {
  text-decoration: none;
  text-align: center;
}

.bee-pre-call,
.bee-call-proof {
  padding: 64px 0;
  background: var(--bee-bg);
}

.bee-pre-call__inner,
.bee-call-proof__inner {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(16,18,20,.08);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 18px 60px rgba(16,18,20,.08);
}

.bee-pre-call h2,
.bee-call-proof h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

.bee-call-proof p {
  max-width: 640px;
  color: var(--bee-graphite);
  font-size: 17px;
  line-height: 1.55;
}

.bee-pre-call__steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.bee-pre-call-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(16,18,20,.08);
  border-radius: 18px;
  padding: 14px;
}

.bee-pre-call-step strong {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--bee-yellow);
}

.bee-pre-call-step span {
  color: var(--bee-graphite);
  font-weight: 700;
}

.bee-call-proof__broker {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
}

.bee-call-proof__photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(16,18,20,.16);
}

.bee-call-proof__quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.bee-call-proof__quotes blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(16,18,20,.08);
  border-radius: 20px;
  padding: 18px;
  color: var(--bee-graphite);
  line-height: 1.5;
}

.bee-mobile-sticky-cta__main {
  display: block;
  font-weight: 900;
}

.bee-mobile-sticky-cta__btn--call {
  flex-direction: column;
  gap: 2px;
  min-height: 60px;
}

@media (max-width: 980px) {
  .bee-hero-search__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bee-search-panel {
    order: 2;
  }  .bee-call-proof__quotes {
    grid-template-columns: 1fr;
  }

  .bee-call-proof__broker {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .bee-call-proof__photo {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }
}

@media (max-width: 720px) {
  .bee-header__inner {
    min-height: 66px;
  }

  .bee-brand__logo {
    width: 166px;
  }

  .bee-hero-search {
    min-height: auto;
    padding: 34px 0 44px;
  }

  .bee-hero-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: .96;
    letter-spacing: -.052em;
  }

  .bee-hero-support {
    font-size: 16px;
    line-height: 1.45;
  }

  .bee-hero-segments {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .bee-hero-segment {
    font-size: 12px;
    justify-content: center;
    padding: 9px 7px;
  }

  .bee-hero-call-first {
    margin-top: 18px;
  }

  .bee-hero-call-first__bio,
  .bee-hero-call-first__certs,
  .bee-hero-trust,
  .bee-hero-trust-chips {
    display: none;
  }

  .bee-hero-call-first__cta,  .bee-pre-call__cta {
    min-height: 62px;
    font-size: 16px;
  }

  .bee-search-panel {
    margin-top: 8px;
  }

  .bee-search-panel__actions {
    display: grid;
    gap: 10px;
  }  .bee-pre-call,
  .bee-call-proof {
    padding: 18px 0;
  }  .bee-pre-call__inner,
  .bee-call-proof__inner {
    border-radius: 24px;
    padding: 22px;
  }  .bee-pre-call h2,
  .bee-call-proof h2 {
    font-size: 28px;
  }  .bee-call-proof p {
    font-size: 15px;
  }

  .bee-mobile-sticky-cta {
    grid-template-columns: 1fr !important;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  .bee-mobile-sticky-cta__btn {
    width: 100%;
  }
}

/* 2026-04-30 06:55 Europe/Athens
   Search form premium UX patch
   Scope: visual hierarchy only, preserves existing search field ids and runtime behavior.
*/
.bee-search-panel--flow {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  align-items: end;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
  border: 1px solid rgba(16,18,20,.08);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(12,18,28,.12);
}

.bee-search-panel--flow .bee-intent-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 3px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(16,18,20,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 10px 26px rgba(16,18,20,.06);
}

.bee-search-panel--flow .bee-intent-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(16,18,20,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: rgba(16,18,20,.74);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(16,18,20,.06);
  cursor: pointer;
}

.bee-search-panel--flow .bee-intent-btn:hover,
.bee-search-panel--flow .bee-intent-btn:focus-visible {
  color: var(--bee-ink);
  transform: translateY(-1px);
}

.bee-search-panel--flow .bee-intent-btn.is-active,
.bee-search-panel--flow .bee-intent-btn:active {
  background: var(--bee-ink);
  color: #fff;
  border-color: var(--bee-ink);
  box-shadow: 0 12px 26px rgba(16,18,20,.18);
}

.bee-search-panel--flow .bee-field {
  gap: 6px;
  min-width: 0;
}

.bee-search-panel--flow .bee-field--wide {
  grid-column: 1 / -1;
}

.bee-search-panel--flow .bee-advanced-filter {
  display: grid;
}

.bee-search-panel--flow .bee-field span {
  font-size: 11px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(16,18,20,.58);
}

.bee-search-panel--flow .bee-field input,
.bee-search-panel--flow .bee-field select {
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 15px;
  border-color: rgba(16,18,20,.1);
  background-color: rgba(255,255,255,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 14px;
}

.bee-search-panel--flow .bee-field input:focus,
.bee-search-panel--flow .bee-field select:focus {
  border-color: rgba(16,18,20,.72);
  box-shadow: 0 0 0 4px rgba(16,18,20,.07);
}

.bee-search-panel--flow .bee-filter-toggle-row {
  display: none;
}

.bee-search-panel--flow .bee-search-panel__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(170px, .9fr) minmax(220px, 1.1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 0;
  padding-top: 4px;
}

.bee-btn--search-primary {
  min-height: 48px;
  background: #fff;
  color: var(--bee-ink);
  border: 1px solid rgba(16,18,20,.12);
  box-shadow: 0 12px 28px rgba(16,18,20,.08);
}

.bee-search-call-link {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--bee-ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(16,18,20,.18);
}

.bee-search-call-link__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  flex: 0 0 auto;
}

.bee-search-panel__microcopy {
  grid-column: 2 / 3;
  grid-row: 2;
  margin: -2px 10px 0;
  max-width: 410px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(16,18,20,.58);
}

.bee-search-clear {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(16,18,20,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: rgba(16,18,20,.58);
  font-weight: 800;
  cursor: pointer;
}

.bee-search-clear:hover,
.bee-search-clear:focus-visible {
  color: var(--bee-ink);
  background: rgba(255,255,255,.9);
}

@media (max-width: 980px) {
  .bee-search-panel--flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bee-search-panel--flow .bee-search-panel__actions {
    grid-template-columns: 1fr;
  }

  .bee-search-panel__microcopy,
  .bee-search-clear {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .bee-search-panel--flow {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 14px;
    border-radius: 24px;
  }

  .bee-search-panel--flow .bee-intent-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .bee-search-panel--flow .bee-intent-btn {
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .bee-search-panel--flow .bee-field input,
  .bee-search-panel--flow .bee-field select {
    min-height: 50px;
    font-size: 15px;
  }

  .bee-search-panel--flow .bee-search-panel__actions {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding-top: 2px;
    background: transparent;
    border-radius: 0;
  }

  .bee-btn--search-primary,
  .bee-search-call-link {
    width: 100%;
    min-height: 52px;
  }

  .bee-search-panel__microcopy {
    order: 3;
    margin: -2px 6px 2px;
    font-size: 11px;
    text-align: center;
  }

  .bee-search-clear {
    order: 4;
    width: fit-content;
    justify-self: center;
    min-height: 38px;
    padding: 0 15px;
    font-size: 13px;
  }
}

/* Patch 2026-04-30 Europe/Athens: desktop hero whitespace continuity fix */
@media (min-width: 981px) {
  .bee-hero-search {
    min-height: auto;
    align-items: flex-start;
    padding-top: 42px;
    padding-bottom: 30px;
  }

  .bee-hero-search__inner {
    gap: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .bee-hero-search::after {
    right: -150px;
    bottom: -260px;
  }
}

/* 2026-04-30 07:08 Europe/Athens
   Search form layout correction patch
   Scope: structural visual hierarchy only. Search ids, options, phone and runtime behavior remain unchanged.
*/
.bee-search-panel--flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
  border-radius: 30px;
}

.bee-search-panel--flow .bee-intent-row {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 22px;
  background: rgba(245,246,247,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(16,18,20,.07);
}

.bee-search-panel--flow .bee-intent-btn {
  min-height: 46px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: rgba(16,18,20,.7);
  box-shadow: 0 9px 22px rgba(16,18,20,.055);
}

.bee-search-panel--flow .bee-intent-btn.is-active,
.bee-search-panel--flow .bee-intent-btn:active {
  background: #fff;
  color: var(--bee-ink);
  border-color: rgba(16,18,20,.12);
  box-shadow: 0 14px 34px rgba(16,18,20,.12);
}

.bee-search-panel--flow .bee-field--wide {
  grid-column: 1 / -1;
}

.bee-search-panel--flow .bee-field--wide input {
  min-height: 58px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 21px;
  font-size: 16px;
}

.bee-search-panel--flow .bee-field input,
.bee-search-panel--flow .bee-field select {
  min-height: 54px;
  padding: 13px 14px;
  border-radius: 18px;
  background-color: #fff;
  font-size: 15px;
}

.bee-search-panel--flow .bee-search-panel__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-items: stretch;
  margin-top: 4px;
  padding-top: 2px;
}

.bee-btn--search-primary {
  width: 100%;
  min-height: 56px;
  border-radius: 20px;
  justify-content: center;
  background: #fff;
  color: var(--bee-ink);
  border: 1px solid rgba(16,18,20,.12);
  box-shadow: 0 15px 34px rgba(16,18,20,.1);
  font-size: 15px;
}

.bee-search-call-link {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  border-radius: 20px;
  gap: 9px;
  background: var(--bee-ink);
  color: #fff;
  box-shadow: 0 15px 34px rgba(16,18,20,.16);
  font-size: 14px;
}

.bee-search-call-link__icon {
  width: 30px;
  height: 30px;
}

.bee-search-panel__microcopy {
  grid-column: 1;
  grid-row: auto;
  order: 3;
  margin: 0 8px;
  max-width: none;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
}

.bee-search-clear {
  grid-column: 1;
  grid-row: auto;
  order: 4;
  justify-self: center;
  min-height: 38px;
  padding: 0 14px;
  background: transparent;
  border-color: transparent;
  color: rgba(16,18,20,.5);
  box-shadow: none;
  font-size: 13px;
}

@media (min-width: 981px) {
  .bee-search-panel--flow {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 14px 16px;
  }

  .bee-search-panel--flow .bee-search-panel__actions {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .bee-search-panel--flow {
    grid-template-columns: 1fr;
    max-width: none;
    padding: 14px;
    gap: 11px;
  }

  .bee-search-panel--flow .bee-intent-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 5px;
    border-radius: 20px;
  }

  .bee-search-panel--flow .bee-intent-btn {
    min-height: 45px;
    padding: 0 8px;
  }

  .bee-search-panel--flow .bee-field--wide input,
  .bee-search-panel--flow .bee-field input,
  .bee-search-panel--flow .bee-field select {
    min-height: 52px;
  }
}

/* Testimonials visual strength patch - 2026-04-30 Europe/Athens */
.bee-call-proof__trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 185, 66, .14);
  border: 1px solid rgba(244, 185, 66, .28);
  color: rgba(16, 18, 20, .78);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.bee-call-proof__trust-line::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bee-yellow);
  box-shadow: 0 0 0 4px rgba(244, 185, 66, .16);
}

.bee-call-proof__quotes {
  gap: 18px;
  margin-top: 14px;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 28px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(16, 18, 20, .08);
  background:
    linear-gradient(135deg, rgba(244, 185, 66, .18), rgba(255, 255, 255, 0) 30%),
    #fff;
  box-shadow: 0 18px 48px rgba(16, 18, 20, .10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--bee-yellow), rgba(244, 185, 66, .18));
}

.bee-call-proof__quotes blockquote.bee-testimonial-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 58px rgba(16, 18, 20, .14);
  border-color: rgba(244, 185, 66, .32);
}

.bee-testimonial-card__quote {
  position: absolute;
  top: 8px;
  right: 18px;
  color: rgba(244, 185, 66, .22);
  font-size: 5.8rem;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.bee-testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--bee-ink);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 750;
  line-height: 1.68;
}

.bee-testimonial-card footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.bee-testimonial-card__avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #101214;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 22px rgba(16, 18, 20, .18);
}

.bee-testimonial-card footer strong,
.bee-testimonial-card footer small {
  display: block;
}

.bee-testimonial-card footer strong {
  color: var(--bee-ink);
  font-size: .94rem;
  font-weight: 900;
}

.bee-testimonial-card footer small {
  margin-top: 2px;
  color: rgba(63, 67, 73, .72);
  font-size: .78rem;
  font-weight: 750;
}

@media (max-width: 980px) {
  .bee-call-proof__trust-line {
    margin-top: 18px;
  }

  .bee-call-proof__quotes {
    gap: 14px;
  }

  .bee-call-proof__quotes blockquote.bee-testimonial-card {
    min-height: auto;
    padding: 24px 22px 20px;
    border-radius: 24px;
  }

  .bee-testimonial-card__quote {
    font-size: 5rem;
  }
}


/* 2026-04-30 04:30 Europe/Athens
   Desktop custom dropdowns for premium search form.
   Native selects stay active for mobile and form logic.
*/
.bee-custom-select {
  display: none;
}

@media (min-width: 781px) {
  .bee-search-panel--flow .bee-field {
    position: relative;
  }

  .bee-search-panel--flow .bee-field > select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .bee-search-panel--flow .bee-custom-select {
    display: block;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .bee-search-panel--flow .bee-custom-select.is-open {
    z-index: 12;
  }

  .bee-custom-select__trigger {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(16, 24, 40, .13);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 248, 244, .94));
    color: #1d1a16;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    font: inherit;
    font-weight: 700;
    letter-spacing: -.01em;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  }

  .bee-custom-select__trigger:hover,
  .bee-custom-select__trigger:focus-visible,
  .bee-custom-select.is-open .bee-custom-select__trigger {
    border-color: rgba(17, 17, 17, .28);
    background: #fff;
    box-shadow: 0 12px 26px rgba(17, 17, 17, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
    outline: none;
  }

  .bee-custom-select__text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .bee-custom-select__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(17, 17, 17, .06);
    color: #1d1a16;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 18px;
    transform: translateY(-1px);
    transition: transform .18s ease, background .18s ease;
    flex: 0 0 auto;
  }

  .bee-custom-select.is-open .bee-custom-select__arrow {
    transform: rotate(180deg) translateY(1px);
    background: rgba(17, 17, 17, .1);
  }

  .bee-custom-select__list {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    margin-top: 0;
    border: 1px solid transparent;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 34px rgba(17, 17, 17, .11);
    transition: max-height .2s ease-out, opacity .16s ease-out, transform .2s ease-out, margin-top .2s ease-out, border-color .2s ease-out;
  }

  .bee-custom-select.is-open .bee-custom-select__list {
    max-height: 245px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px;
    border-color: rgba(16, 24, 40, .1);
  }

  .bee-custom-select__option {
    width: 100%;
    min-height: 42px;
    border: 0;
    background: transparent;
    color: #24201b;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px;
    font: inherit;
    font-size: .94rem;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
    transition: background .14s ease, color .14s ease, padding-left .14s ease;
  }

  .bee-custom-select__option:hover,
  .bee-custom-select__option:focus-visible {
    background: rgba(191, 151, 89, .12);
    outline: none;
    padding-left: 17px;
  }

  .bee-custom-select__option.is-selected {
    background: linear-gradient(90deg, rgba(191, 151, 89, .2), rgba(191, 151, 89, .07));
    color: #111;
  }
}

@media (max-width: 780px) {
  .bee-search-panel--flow .bee-field > select {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }
}

/* 2026-04-30 07:42 Europe/Athens
   Desktop form width and overflow fix.
   Scope: containment only. Search logic, labels, values, mobile flow and content remain unchanged.
*/
.bee-search-panel,
.bee-search-panel--flow,
.bee-search-panel--flow *,
.bee-search-panel--flow *::before,
.bee-search-panel--flow *::after {
  box-sizing: border-box;
}

.bee-search-panel--flow {
  width: 100%;
  max-width: min(860px, 100%);
  min-width: 0;
  overflow: visible;
}

.bee-search-panel--flow .bee-intent-row,
.bee-search-panel--flow .bee-field,
.bee-search-panel--flow .bee-field--wide,
.bee-search-panel--flow .bee-search-panel__actions,
.bee-search-panel--flow .bee-search-panel__microcopy,
.bee-search-panel--flow .bee-search-clear,
.bee-search-panel--flow input,
.bee-search-panel--flow select,
.bee-search-panel--flow button,
.bee-search-panel--flow a {
  max-width: 100%;
  min-width: 0;
}

.bee-search-panel--flow .bee-intent-btn,
.bee-search-panel--flow .bee-custom-select__trigger,
.bee-search-panel--flow .bee-custom-select__option,
.bee-btn--search-primary,
.bee-search-call-link {
  min-width: 0;
  white-space: normal;
}

.bee-search-panel--flow .bee-custom-select,
.bee-search-panel--flow .bee-custom-select__list {
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

@media (min-width: 981px) {
  .bee-search-panel--flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(860px, 100%);
    max-width: calc(100vw - 48px);
  }

  .bee-hero-search__inner {
    width: min(1180px, calc(100vw - 48px));
    max-width: 100%;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .bee-search-panel--flow {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 40px);
  }

  .bee-search-panel--flow .bee-intent-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 781px) and (max-width: 920px) {
  .bee-search-panel--flow .bee-intent-row {
    grid-template-columns: 1fr;
  }
}



/* 2026-04-30 Europe/Athens
   Final call section conversion patch.
   Scope: simplify the single pre-footer conversion block only. Placement remains immediately before footer.
*/
.bee-pre-footer-call,
.bee-pre-footer-call *,
.bee-pre-footer-call *::before,
.bee-pre-footer-call *::after {
  box-sizing: border-box;
}

.bee-pre-footer-call {
  padding: 26px 0 22px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 213, 79, .14), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 247, 240, .46));
}

.bee-pre-footer-call__inner {
  width: min(1060px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(17, 17, 17, .075);
  border-radius: 28px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 54px rgba(16, 18, 20, .08);
}

.bee-pre-footer-call__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.bee-pre-footer-call__intro h2 {
  margin: 0;
  color: var(--bee-ink);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.bee-pre-footer-call__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bee-pre-footer-call__step {
  min-height: 102px;
  padding: 14px 15px;
  border: 1px solid rgba(17, 17, 17, .075);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 252, 244, .72));
  box-shadow: 0 9px 24px rgba(16, 18, 20, .05);
}

.bee-pre-footer-call__number {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 28px;
  margin-bottom: 12px;
  padding: 0 11px;
  border-radius: 999px;
  color: #111;
  background: var(--bee-yellow);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(255, 213, 79, .26);
}

.bee-pre-footer-call__step p {
  margin: 0;
  color: var(--bee-ink);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 760;
  letter-spacing: -.012em;
}

.bee-pre-footer-call__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(560px, 100%);
  min-height: 62px;
  margin: 18px auto 0;
  padding: 15px 24px;
  border: 1px solid rgba(17, 17, 17, .13);
  border-radius: 999px;
  color: #111;
  background: linear-gradient(180deg, #ffe05c, #eeb417);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 22px 40px rgba(180, 126, 0, .24);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.bee-pre-footer-call__cta:hover,
.bee-pre-footer-call__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 46px rgba(180, 126, 0, .27);
  filter: saturate(1.05);
  outline: none;
}

.bee-pre-footer-call__cta-icon {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border-radius: 50%;
  background: rgba(17, 17, 17, .1);
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}

.bee-pre-footer-call__trust {
  margin: 10px auto 0;
  color: var(--bee-ink);
  text-align: center;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -.01em;
}

.bee-pre-footer-call__subtext {
  max-width: 620px;
  margin: 5px auto 0;
  color: var(--bee-muted);
  text-align: center;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 650;
}

@media (max-width: 820px) {
  .bee-pre-footer-call__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .bee-pre-footer-call {
    padding: 24px 0 20px;
  }

  .bee-pre-footer-call__inner {
    width: min(100% - 24px, 720px);
    padding: 18px;
    border-radius: 26px;
  }

  .bee-pre-footer-call__intro h2 {
    font-size: 28px;
  }

  .bee-pre-footer-call__steps {
    gap: 10px;
    margin-top: 16px;
  }

  .bee-pre-footer-call__step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 12px;
    border-radius: 21px;
  }

  .bee-pre-footer-call__number {
    min-width: 34px;
    width: 34px;
    height: 30px;
    margin: 0;
    padding: 0;
  }

  .bee-pre-footer-call__step p {
    font-size: 15px;
  }

  .bee-pre-footer-call__cta {
    width: 100%;
    min-height: 60px;
    font-size: 16px;
  }
}
/* 2026-04-30 Europe/Athens
   Search form premium upgrade patch
   Scope: visual upgrade only. Search logic, fields, values and results behavior remain unchanged.
*/
.bee-search-panel--flow {
  position: relative;
  isolation: isolate;
  padding: 22px;
  background: radial-gradient(circle at 18% 0%, rgba(244, 185, 66, .18), rgba(244, 185, 66, 0) 34%), linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 251, 252, .93));
  border: 1px solid rgba(16, 18, 20, .09);
  box-shadow: 0 32px 90px rgba(16, 18, 20, .18), 0 12px 28px rgba(16, 18, 20, .08), inset 0 1px 0 rgba(255, 255, 255, .95), inset 0 0 34px rgba(244, 185, 66, .055);
  backdrop-filter: blur(14px);
  transform: translateZ(0);
}
.bee-search-panel--flow::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}
.bee-search-panel--flow .bee-intent-row {
  background: rgba(245, 246, 247, .72);
  border: 1px solid rgba(16, 18, 20, .065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 16px 38px rgba(16, 18, 20, .08);
}
.bee-search-panel--flow .bee-intent-btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.bee-search-panel--flow .bee-intent-btn:hover,
.bee-search-panel--flow .bee-intent-btn:focus-visible {
  background: #fff;
  border-color: rgba(16, 18, 20, .14);
  box-shadow: 0 14px 30px rgba(16, 18, 20, .095);
}
.bee-search-panel--flow .bee-intent-btn.is-active,
.bee-search-panel--flow .bee-intent-btn:active {
  background: linear-gradient(180deg, #fff, #fff8e9);
  border-color: rgba(244, 185, 66, .55);
  box-shadow: 0 16px 36px rgba(244, 185, 66, .22), 0 10px 22px rgba(16, 18, 20, .08);
}
.bee-search-panel--flow .bee-field span {
  margin-left: 4px;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .075em;
  font-weight: 850;
  color: rgba(16, 18, 20, .48);
}
.bee-search-panel--flow .bee-field input,
.bee-search-panel--flow .bee-field select,
.bee-search-panel--flow .bee-custom-select__trigger {
  border: 1px solid rgba(16, 18, 20, .12);
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .94));
  box-shadow: 0 10px 24px rgba(16, 18, 20, .055), inset 0 1px 0 rgba(255, 255, 255, .96);
  color: var(--bee-ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.bee-search-panel--flow .bee-field input:hover,
.bee-search-panel--flow .bee-field select:hover,
.bee-search-panel--flow .bee-custom-select__trigger:hover {
  border-color: rgba(16, 18, 20, .22);
  box-shadow: 0 12px 28px rgba(16, 18, 20, .075), inset 0 1px 0 rgba(255, 255, 255, .98);
}
.bee-search-panel--flow .bee-field input:focus,
.bee-search-panel--flow .bee-field select:focus,
.bee-search-panel--flow .bee-custom-select.is-open .bee-custom-select__trigger,
.bee-search-panel--flow .bee-custom-select__trigger:focus-visible {
  border-color: rgba(16, 18, 20, .62);
  box-shadow: 0 0 0 4px rgba(244, 185, 66, .18), 0 14px 32px rgba(16, 18, 20, .1), inset 0 1px 0 rgba(255, 255, 255, .98);
  outline: none;
}
.bee-search-panel--flow .bee-field--wide input {
  box-shadow: 0 14px 34px rgba(16, 18, 20, .075), inset 0 1px 0 rgba(255, 255, 255, .98);
}
.bee-btn--search-primary {
  min-height: 60px;
  background: linear-gradient(180deg, #ffd86d, var(--bee-yellow));
  color: var(--bee-ink);
  border: 1px solid rgba(151, 104, 12, .18);
  box-shadow: 0 18px 38px rgba(244, 185, 66, .32), 0 10px 20px rgba(16, 18, 20, .09), inset 0 1px 0 rgba(255, 255, 255, .58);
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.bee-btn--search-primary:hover,
.bee-btn--search-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(244, 185, 66, .38), 0 12px 24px rgba(16, 18, 20, .12), inset 0 1px 0 rgba(255, 255, 255, .62);
  filter: saturate(1.04);
}
.bee-search-call-link {
  background: linear-gradient(180deg, #16191d, #08090a);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 42px rgba(16, 18, 20, .22), inset 0 1px 0 rgba(255, 255, 255, .12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.bee-search-call-link:hover,
.bee-search-call-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(16, 18, 20, .28), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.bee-search-call-link__icon {
  background: rgba(244, 185, 66, .18);
  color: var(--bee-yellow);
}
.bee-search-panel__microcopy {
  margin-top: 2px;
  color: rgba(16, 18, 20, .66);
  font-size: 11.5px;
  font-weight: 700;
}
.bee-search-clear {
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  border-color: transparent;
  color: rgba(16, 18, 20, .5);
  box-shadow: none;
  transition: color .2s ease, background .2s ease;
}
.bee-search-clear:hover,
.bee-search-clear:focus-visible {
  background: rgba(16, 18, 20, .04);
  color: rgba(16, 18, 20, .78);
}
.bee-search-panel--flow .bee-custom-select__list {
  transition: max-height .22s ease, opacity .18s ease, transform .22s ease;
  box-shadow: 0 18px 40px rgba(16, 18, 20, .14);
  border-color: rgba(16, 18, 20, .1);
}
.bee-search-panel--flow .bee-custom-select__option {
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
@media (min-width: 981px) {
  .bee-search-panel--flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 17px;
  }
}
@media (max-width: 760px) {
  .bee-search-panel--flow {
    padding: 16px;
    gap: 12px;
  }
  .bee-search-panel--flow .bee-field input,
  .bee-search-panel--flow .bee-field select,
  .bee-search-panel--flow .bee-custom-select__trigger {
    min-height: 54px;
  }
  .bee-btn--search-primary,
  .bee-search-call-link {
    min-height: 56px;
  }
}

/* 2026-04-30 Europe/Athens
   Call CTA center alignment + icon micro animation patch
   Scope: CTA alignment and phone icon animation only. Text, phone number, color, size, cards, headline and section layout remain unchanged.
*/
.bee-pre-footer-call__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 9px;
}

.bee-pre-footer-call__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin: 0;
  font-size: 14px;
  line-height: 1;
  transform: none;
  transform-origin: 50% 50%;
  animation: bee-phone-soft-ring 3.2s ease-in-out infinite;
}

@keyframes bee-phone-soft-ring {
  0%, 76%, 100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 0 0 0 rgba(17, 17, 17, 0);
  }
  82% {
    transform: rotate(-5deg) scale(1.02);
    box-shadow: 0 0 0 4px rgba(17, 17, 17, .045);
  }
  88% {
    transform: rotate(5deg) scale(1.02);
    box-shadow: 0 0 0 7px rgba(17, 17, 17, .02);
  }
  94% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 0 0 0 rgba(17, 17, 17, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-pre-footer-call__cta-icon {
    animation: none;
  }
}

/* 2026-04-30 14:45 Europe/Athens
   Smart quick filters behavior refinement
   Scope: premium grouped quick filters, remembered local state feedback, results highlight.
*/
.bee-quick-filters .bee-container {
  max-width: 1080px;
}

.bee-quick-filters-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(16, 18, 20, .08);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,248,213,.72));
  box-shadow: 0 22px 60px rgba(16, 18, 20, .10);
}

.bee-quick-filters__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.bee-quick-filters__title h2 {
  max-width: 720px;
  font-size: clamp(25px, 4vw, 42px);
}

.bee-smart-suggestion {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(247, 216, 74, .32);
  color: var(--bee-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(16, 18, 20, .08);
}

.bee-smart-suggestion[hidden] {
  display: none;
}

.bee-filter-groups {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.bee-filter-group {
  display: grid;
  gap: 10px;
}

.bee-filter-group__label {
  color: rgba(16, 18, 20, .58);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
}

.bee-filter-group__scroll,
.bee-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bee-chip {
  min-height: 48px;
  border: 1px solid rgba(16, 18, 20, .10);
  background: rgba(255, 255, 255, .78);
  color: var(--bee-graphite);
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(16, 18, 20, .045);
  transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, border-color .24s ease;
  cursor: pointer;
}

.bee-chip--primary {
  min-height: 56px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 950;
}

.bee-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .96);
  border-color: rgba(16, 18, 20, .18);
  box-shadow: 0 12px 26px rgba(16, 18, 20, .08);
}

.bee-chip.is-active {
  transform: scale(1.03);
  background: var(--bee-yellow);
  border-color: var(--bee-yellow);
  color: var(--bee-ink);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(247, 216, 74, .42), 0 8px 22px rgba(16, 18, 20, .10);
}

.bee-chip:active {
  transform: scale(.98);
}

.bee-chip--pulse {
  animation: beeChipPulse .32s ease;
}

@keyframes beeChipPulse {
  0% { transform: scale(1); }
  55% { transform: scale(1.045); }
  100% { transform: scale(1.03); }
}

.bee-results-toolbar--highlight {
  animation: beeResultsHighlight 1.1s ease;
}

@keyframes beeResultsHighlight {
  0% { background: rgba(247, 216, 74, .22); }
  100% { background: transparent; }
}

.bee-results-toolbar h2 {
  font-weight: 950;
}

.bee-results-toolbar h2::after {
  content: ' διαθέσιμα ακίνητα';
}

.bee-results-toolbar h2 #beeResultsCount + * {
  display: none;
}

@media (max-width: 760px) {
  .bee-quick-filters-card {
    margin-inline: -2px;
    padding: 18px 14px 20px;
    border-radius: 26px;
  }

  .bee-filter-groups {
    gap: 20px;
  }

  .bee-filter-group__scroll,
  .bee-chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 10px;
    margin-inline: -2px;
  }

  .bee-filter-group__scroll::-webkit-scrollbar,
  .bee-chip-row::-webkit-scrollbar {
    display: none;
  }

  .bee-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 50px;
    padding-inline: 18px;
  }

  .bee-chip--primary {
    min-height: 58px;
    padding-inline: 22px;
  }
}

/* 2026-04-30 14:58 Europe/Athens
   Unified search experience patch
   Scope: quick filters become primary entry point, advanced filters collapse into one shared search state.
*/
.bee-unified-search-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.bee-advanced-filter-toggle {
  width: min(100%, 360px);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(16, 18, 20, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--bee-ink);
  box-shadow: 0 12px 28px rgba(16, 18, 20, .075), inset 0 1px 0 rgba(255, 255, 255, .95);
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.bee-advanced-filter-toggle:hover,
.bee-advanced-filter-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(16, 18, 20, .22);
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 18, 20, .11), inset 0 1px 0 rgba(255, 255, 255, .98);
  outline: none;
}

.bee-advanced-filter-toggle__icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(247, 216, 74, .34);
  transition: transform .22s ease;
}

.bee-advanced-filter-toggle[aria-expanded="true"] .bee-advanced-filter-toggle__icon {
  transform: rotate(180deg);
}

.bee-quick-filters-card .bee-advanced-search-panel {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  transform: translateY(-8px);
  transition: max-height .32s ease, opacity .24s ease, visibility .24s ease, transform .28s ease, margin-top .28s ease, padding .28s ease, border-width .28s ease;
}

.bee-quick-filters-card .bee-advanced-search-panel.is-open {
  max-height: 1200px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  pointer-events: auto;
  margin-top: 22px;
  padding: 22px;
  border-width: 1px;
  transform: translateY(0);
}

.bee-quick-filters-card .bee-advanced-search-panel .bee-search-panel__actions {
  align-items: stretch;
}

.bee-quick-filters-card .bee-advanced-search-panel .bee-btn--search-primary {
  display: none;
}

.bee-quick-filters-card .bee-advanced-search-panel .bee-search-call-link {
  min-height: 56px;
}

@media (max-width: 760px) {
  .bee-unified-search-actions {
    margin-top: 18px;
  }

  .bee-advanced-filter-toggle {
    width: 100%;
    min-height: 56px;
  }

  .bee-quick-filters-card .bee-advanced-search-panel.is-open {
    margin-top: 18px;
    padding: 15px;
    max-height: 1500px;
  }
}

/* 2026-04-30 14:00 Europe/Athens
   Quick filters edge overflow fix
   Scope: prevent right-edge chip clipping without changing design, behavior, or search logic.
*/
.bee-quick-filters,
.bee-quick-filters * {
  box-sizing: border-box;
}

.bee-quick-filters {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.bee-quick-filters .bee-container,
.bee-quick-filters-card,
.bee-filter-groups,
.bee-filter-group,
.bee-filter-group__scroll,
.bee-chip-row {
  width: 100%;
  max-width: 100%;
}

.bee-filter-group__scroll,
.bee-chip-row {
  min-width: 0;
}

.bee-chip {
  max-width: 100%;
  flex-shrink: 0;
}

@media (min-width: 761px) {
  .bee-filter-group__scroll,
  .bee-chip-row {
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    white-space: normal;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .bee-quick-filters {
    overflow-x: hidden;
  }

  .bee-quick-filters .bee-container {
    padding-left: 16px;
    padding-right: 16px;
    overflow: visible;
  }

  .bee-quick-filters-card {
    overflow: visible;
    margin-inline: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bee-filter-group__scroll,
  .bee-chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    padding-left: 1px;
    padding-right: 28px;
    scroll-padding-left: 1px;
    scroll-padding-right: 28px;
  }

  .bee-filter-group__scroll::after,
  .bee-chip-row::after {
    content: '';
    flex: 0 0 18px;
    width: 18px;
    height: 1px;
  }

  .bee-chip {
    flex: 0 0 auto;
    max-width: calc(100vw - 56px);
  }
}

/* 2026-04-30 18:12 Europe/Athens
   Property card behavior override
   Scope: card is exploration entry point, not call conversion point.
*/
.bee-properties-grid {
  align-items: stretch;
}

.bee-property-card.bee-property-card--explore {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 18, 20, .08);
  box-shadow: 0 14px 36px rgba(16, 18, 20, .075);
  transform: none;
}

.bee-property-card.bee-property-card--explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(16, 18, 20, .11);
}

.bee-property-card.bee-property-card--explore .bee-property-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
}

.bee-property-card.bee-property-card--explore .bee-property-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.bee-property-card.bee-property-card--explore .bee-property-card__media::after {
  display: none;
}

.bee-property-card.bee-property-card--explore .bee-property-card__body {
  padding: 16px;
  gap: 10px;
  min-width: 0;
}

.bee-property-card.bee-property-card--explore .bee-property-card__mobile-head {
  order: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(16, 18, 20, .62);
  font-size: 12px;
}

.bee-property-card.bee-property-card--explore .bee-property-card__title {
  order: 2;
  margin: 0;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -.025em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-card.bee-property-card--explore .bee-property-card__price {
  order: 3;
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.04em;
  color: var(--bee-ink);
}

.bee-property-card.bee-property-card--explore .bee-property-card__area {
  order: 4;
  margin: 0;
  color: rgba(16, 18, 20, .66);
  font-size: 14px;
  font-weight: 800;
}

.bee-property-card.bee-property-card--explore .bee-property-card__facts {
  order: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.bee-property-card.bee-property-card--explore .bee-property-card__facts span {
  border-radius: 999px;
  background: rgba(16, 18, 20, .055);
  border: 1px solid rgba(16, 18, 20, .07);
  color: rgba(16, 18, 20, .74);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.bee-property-card.bee-property-card--explore .bee-property-card__snippet {
  order: 6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: rgba(16, 18, 20, .62);
  font-size: 13px;
  line-height: 1.4;
}

.bee-property-card.bee-property-card--explore .bee-property-card__actions,
.bee-property-card.bee-property-card--explore .bee-property-card__actions--single {
  order: 7;
  display: flex;
  grid-template-columns: none;
  margin-top: 4px;
  gap: 0;
}

.bee-property-card.bee-property-card--explore .bee-property-card__actions .bee-btn,
.bee-property-card.bee-property-card--explore .bee-property-card__actions--single .bee-btn {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.bee-property-card.bee-property-card--explore .bee-btn--call,
.bee-property-card.bee-property-card--explore a[href^="tel:"] {
  display: none !important;
}

@media (max-width: 720px) {
  .bee-property-card.bee-property-card--explore {
    display: flex;
    grid-template-columns: none;
    border-radius: 22px;
  }

  .bee-property-card.bee-property-card--explore .bee-property-card__media {
    aspect-ratio: 16 / 10;
  }

  .bee-property-card.bee-property-card--explore .bee-property-card__body {
    padding: 14px;
    gap: 9px;
  }

  .bee-property-card.bee-property-card--explore .bee-property-card__title {
    font-size: 18px;
  }

  .bee-property-card.bee-property-card--explore .bee-property-card__price {
    font-size: 23px;
  }

  .bee-property-card.bee-property-card--explore .bee-property-card__snippet {
    display: -webkit-box;
  }
}

/* 2026-04-30 18:00 Europe/Athens
   Property card premium redesign override
   Scope: property cards only. No hero, footer, search state, or JSON source changes.
*/
.bee-properties-grid {
  align-items: stretch;
}

.bee-property-card.bee-property-card--premium {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf3 100%);
  box-shadow: 0 16px 42px rgba(18, 18, 18, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bee-property-card.bee-property-card--premium:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 216, 74, 0.55);
  box-shadow: 0 22px 52px rgba(18, 18, 18, 0.12);
}

.bee-property-card.bee-property-card--premium .bee-property-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #f4f1e7;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: none !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media::after {
  content: none !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(247, 216, 74, 0.96);
  color: #171717;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(18, 18, 18, 0.14);
}

.bee-property-card.bee-property-card--premium .bee-property-card__badge--investment {
  left: auto;
  right: 12px;
  max-width: calc(100% - 24px);
  background: rgba(255, 255, 255, 0.94);
  color: #2e2a14;
}

.bee-property-card.bee-property-card--premium .bee-property-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 11px;
  padding: 18px;
}

.bee-property-card.bee-property-card--premium .bee-property-card__title {
  margin: 0;
  color: #151515;
  font-size: clamp(1.08rem, 2.6vw, 1.22rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-card.bee-property-card--premium .bee-property-card__area {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -2px 0 0;
  color: #5f5f5f;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.25;
}

.bee-property-card.bee-property-card--premium .bee-property-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-card__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.045);
  border: 1px solid rgba(18, 18, 18, 0.06);
  color: #343434;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.bee-property-investment {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid rgba(247, 216, 74, 0.42);
  border-radius: 15px;
  background: rgba(247, 216, 74, 0.12);
}

.bee-property-investment__label {
  color: #1f1b0b;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.15;
}

.bee-property-investment small {
  color: #635b32;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-broker {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.025);
}

.bee-property-broker img,
.bee-property-broker__avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
}

.bee-property-broker img {
  object-fit: cover;
  background: #f2f2f2;
}

.bee-property-broker__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  color: #f7d84a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.bee-property-broker span:not(.bee-property-broker__avatar) {
  display: grid;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
}

.bee-property-broker strong {
  color: #202020;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bee-property-broker small {
  color: #777;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.1;
}

.bee-property-card.bee-property-card--premium .bee-property-card__snippet {
  margin: 0;
  color: #666;
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-card__bottom {
  display: grid;
  gap: 13px;
  margin-top: auto;
  padding-top: 2px;
}

.bee-property-card__price-wrap {
  display: grid;
  gap: 2px;
}

.bee-property-card.bee-property-card--premium .bee-property-card__price {
  margin: 0;
  color: #111;
  font-size: clamp(1.3rem, 3.2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.bee-property-card__price-wrap small {
  color: #777;
  font-size: 0.78rem;
  font-weight: 650;
}

.bee-property-card.bee-property-card--premium .bee-property-card__actions,
.bee-property-card.bee-property-card--premium .bee-property-card__actions--premium {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  align-items: stretch;
  margin: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-card__actions .bee-btn {
  min-height: 44px;
  border-radius: 14px;
  padding: 10px 13px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}

.bee-btn--call-soft {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 18, 18, 0.11);
  background: #fff;
  color: #151515;
  box-shadow: none;
}

.bee-btn--call-soft::before {
  content: '☎';
  margin-right: 4px;
}

.bee-btn--call-soft small {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

@media (max-width: 720px) {
  .bee-property-card.bee-property-card--premium {
    border-radius: 22px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__media {
    aspect-ratio: 16 / 10.5;
    border-radius: 22px 22px 0 0;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__body {
    padding: 16px;
    gap: 10px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__actions,
  .bee-property-card.bee-property-card--premium .bee-property-card__actions--premium {
    grid-template-columns: 1fr 0.82fr;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__actions .bee-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .bee-property-card.bee-property-card--premium .bee-property-card__actions,
  .bee-property-card.bee-property-card--premium .bee-property-card__actions--premium {
    grid-template-columns: 1fr;
  }
}

/* 2026-04-30 Europe/Athens
   Property card premium redesign override v3
   Scope: property card only. Keeps search, hero, footer and JSON sources unchanged.
*/
.bee-properties-grid {
  align-items: stretch;
}

.bee-property-card.bee-property-card--premium {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
  box-shadow: 0 16px 42px rgba(18, 18, 18, 0.085);
}

.bee-property-card.bee-property-card--premium .bee-property-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #f4f1e7;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  transform: none !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media::after {
  content: none !important;
}

.bee-property-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.bee-property-card.bee-property-card--premium .bee-property-card__badge {
  position: static !important;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 58%;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(247, 216, 74, 0.96);
  color: #171717;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 22px rgba(18, 18, 18, 0.14);
}

.bee-property-card.bee-property-card--premium .bee-property-card__badge--investment {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.94);
  color: #2e2a14;
}

.bee-property-card.bee-property-card--premium .bee-property-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  gap: 11px;
  padding: 18px;
}

.bee-property-card.bee-property-card--premium .bee-property-card__title {
  margin: 0;
  color: #151515;
  font-size: clamp(1.08rem, 2.6vw, 1.22rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-card.bee-property-card--premium .bee-property-card__area {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #5f5f5f;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.25;
}

.bee-property-card.bee-property-card--premium .bee-property-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-card__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.045);
  border: 1px solid rgba(18, 18, 18, 0.06);
  color: #343434;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.bee-property-card.bee-property-card--premium .bee-property-investment {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid rgba(247, 216, 74, 0.42);
  border-radius: 15px;
  background: rgba(247, 216, 74, 0.12);
}

.bee-property-card.bee-property-card--premium .bee-property-investment__label {
  color: #1f1b0b;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.15;
}

.bee-property-card.bee-property-card--premium .bee-property-investment small {
  color: #635b32;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-card.bee-property-card--premium .bee-property-broker {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0 0;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
}

.bee-property-card.bee-property-card--premium .bee-property-broker img,
.bee-property-card.bee-property-card--premium .bee-property-broker__avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
}

.bee-property-card.bee-property-card--premium .bee-property-broker img {
  object-fit: cover;
  background: #f2f2f2;
}

.bee-property-card.bee-property-card--premium .bee-property-broker__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  color: #f7d84a;
  font-size: 0.72rem;
  font-weight: 850;
}

.bee-property-card.bee-property-card--premium .bee-property-broker span:not(.bee-property-broker__avatar) {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-broker strong {
  color: #202020;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bee-property-card.bee-property-card--premium .bee-property-broker small {
  color: #777;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.1;
}

.bee-property-card.bee-property-card--premium .bee-property-card__snippet {
  margin: 0;
  color: #666;
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-card.bee-property-card--premium .bee-property-card__bottom {
  display: grid;
  gap: 13px;
  margin-top: auto;
  padding-top: 2px;
}

.bee-property-card.bee-property-card--premium .bee-property-card__price-wrap {
  display: grid;
  gap: 2px;
}

.bee-property-card.bee-property-card--premium .bee-property-card__price {
  margin: 0;
  color: #111;
  font-size: clamp(1.32rem, 3.2vw, 1.58rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.bee-property-card.bee-property-card--premium .bee-property-card__price-wrap small {
  color: #777;
  font-size: 0.78rem;
  font-weight: 650;
}

.bee-property-card.bee-property-card--premium .bee-property-card__actions,
.bee-property-card.bee-property-card--premium .bee-property-card__actions--premium {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  align-items: stretch;
  margin: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-card__actions .bee-btn {
  min-height: 44px;
  border-radius: 14px;
  padding: 10px 13px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 18, 18, 0.11);
  background: #fff;
  color: #151515;
  box-shadow: none;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft span::before {
  content: '☎';
  margin-right: 5px;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft small {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

@media (max-width: 720px) {
  .bee-property-card.bee-property-card--premium {
    border-radius: 22px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__media {
    aspect-ratio: 16 / 10.5;
    border-radius: 22px 22px 0 0;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__body {
    padding: 16px;
    gap: 10px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__actions,
  .bee-property-card.bee-property-card--premium .bee-property-card__actions--premium {
    grid-template-columns: 1fr 0.82fr;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__actions .bee-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .bee-property-card.bee-property-card--premium .bee-property-card__actions,
  .bee-property-card.bee-property-card--premium .bee-property-card__actions--premium {
    grid-template-columns: 1fr;
  }
}

/* 2026-04-30 Europe/Athens
   Broker mini identity insert refinement
   Scope: property card broker block only. Keeps layout, filters, hero and CTA logic unchanged.
*/
.bee-property-card.bee-property-card--premium .bee-property-broker {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bee-property-card.bee-property-card--premium .bee-property-broker img,
.bee-property-card.bee-property-card--premium .bee-property-broker__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
}

.bee-property-card.bee-property-card--premium .bee-property-broker img {
  object-fit: cover;
  object-position: center;
  background: #f2f2f2;
}

.bee-property-card.bee-property-card--premium .bee-property-broker__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  color: #f7d84a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.bee-property-card.bee-property-card--premium .bee-property-broker span:not(.bee-property-broker__avatar) {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-broker strong {
  display: block;
  max-width: 100%;
  color: #202020;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.12;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bee-property-card.bee-property-card--premium .bee-property-broker small {
  color: #777;
  font-size: 0.71rem;
  font-weight: 650;
  line-height: 1.1;
}

.bee-property-card.bee-property-card--premium .bee-property-card__snippet {
  -webkit-line-clamp: 2;
}

@media (max-width: 380px) {
  .bee-property-card.bee-property-card--premium .bee-property-broker {
    border-radius: 18px;
  }
}

/* 2026-04-30 Europe/Athens
   Property card intelligence + broker visibility patch
   Scope: property card intelligence and compact broker visibility only.
*/
.bee-property-card.bee-property-card--premium .bee-property-broker {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bee-property-card.bee-property-card--premium .bee-property-broker img,
.bee-property-card.bee-property-card--premium .bee-property-broker__avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
}

.bee-property-card.bee-property-card--premium .bee-property-broker span:not(.bee-property-broker__avatar) {
  display: grid;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
}

.bee-property-card.bee-property-card--premium .bee-property-broker strong {
  display: block;
  max-width: 100%;
  color: #202020;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.12;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bee-property-card.bee-property-card--premium .bee-property-investment__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
}

.bee-property-card.bee-property-card--premium .bee-property-investment small,
.bee-property-card.bee-property-card--premium .bee-property-card__snippet {
  -webkit-line-clamp: 2;
}

/* Broker CTA context line */
.bee-property-card.bee-property-card--premium .bee-property-card__cta-context {
  margin: 8px 0 0;
  color: rgba(38, 38, 38, 0.58);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .bee-property-card.bee-property-card--premium .bee-property-card__cta-context {
    font-size: 11.5px;
    margin-top: 7px;
  }
}

/* 2026-05-01 Europe/Athens
   Broker initials avatar fallback fix for property cards.
   Scope: display compact initials avatar when brokers_profiles.json has no broker_photo_url.
*/
.bee-property-card.bee-property-card--premium .bee-property-broker__avatar,
.bee-property-broker__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7d84a 0%, #fff3a6 100%);
  color: #101214;
  border: 1px solid rgba(16,18,20,.10);
  box-shadow: 0 8px 18px rgba(16,18,20,.08);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-broker {
  min-width: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-broker strong,
.bee-property-card.bee-property-card--premium .bee-property-card__cta-context {
  overflow-wrap: anywhere;
}

/* 2026-05-01 Europe/Athens
   Property card broker relocation + full-width CTA stack patch
   Scope: property card only. Removes broker mini block from content area, adds compact property info, stacks CTA buttons full-width, removes bottom broker context line.
*/
.bee-property-card.bee-property-card--premium {
  min-height: 690px;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media {
  aspect-ratio: 16 / 10.8;
}

.bee-property-card.bee-property-card--premium .bee-property-card__body {
  gap: 12px;
  padding: 18px 18px 20px;
}

.bee-property-card.bee-property-card--premium .bee-property-broker {
  display: none !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.bee-property-card.bee-property-card--premium .bee-property-card__info span {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.035);
  border: 1px solid rgba(18, 18, 18, 0.055);
}

.bee-property-card.bee-property-card--premium .bee-property-card__info small {
  color: rgba(18, 18, 18, 0.52);
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1;
}

.bee-property-card.bee-property-card--premium .bee-property-card__info strong {
  min-width: 0;
  color: rgba(18, 18, 18, 0.82);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.12;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bee-property-card.bee-property-card--premium .bee-property-card__bottom {
  gap: 12px;
  margin-top: auto;
}

.bee-property-card.bee-property-card--premium .bee-property-card__actions,
.bee-property-card.bee-property-card--premium .bee-property-card__actions--premium {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 10px;
  width: 100%;
}

.bee-property-card.bee-property-card--premium .bee-property-card__actions .bee-btn {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  justify-content: center;
  white-space: normal;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft {
  position: relative;
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  row-gap: 2px;
  align-items: center;
  justify-items: start;
  padding: 9px 14px;
  text-align: left;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft::before,
.bee-property-card.bee-property-card--premium .bee-btn--call-soft span::before {
  content: none !important;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft__avatar {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  background: linear-gradient(135deg, #f7d84a 0%, #fff3a6 100%);
  border: 1px solid rgba(16,18,20,.10);
  box-shadow: 0 7px 16px rgba(16,18,20,.08);
  flex: 0 0 34px;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft__avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101214;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .01em;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft span:not(.bee-btn--call-soft__avatar) {
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.05;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft small {
  grid-column: 2;
  margin: 0;
  line-height: 1;
}

.bee-property-card.bee-property-card--premium .bee-property-card__cta-context {
  display: none !important;
}

@media (max-width: 720px) {
  .bee-property-card.bee-property-card--premium {
    min-height: 710px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__media {
    aspect-ratio: 16 / 10.9;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__body {
    padding: 17px 16px 20px;
    gap: 11px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__actions .bee-btn {
    min-height: 54px;
  }
}

@media (max-width: 380px) {
  .bee-property-card.bee-property-card--premium {
    min-height: 700px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__info {
    grid-template-columns: 1fr;
  }
}

/* 2026-05-01 Europe/Athens
   Broker call guidance balloon patch
   Scope: property card CTA only. Opens a short pre-call script with property code before tel link.
*/
.bee-property-card.bee-property-card--premium .bee-btn--call-soft {
  cursor: pointer;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft span:not(.bee-btn--call-soft__avatar) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bee-call-guide {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(247, 216, 74, 0.55);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf1 0%, #fff8d8 100%);
  box-shadow: 0 12px 26px rgba(18, 18, 18, 0.08);
}

.bee-call-guide[hidden] {
  display: none !important;
}

.bee-call-guide strong {
  display: block;
  margin: 0 0 6px;
  color: #191919;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
}

.bee-call-guide p {
  margin: 0 0 6px;
  color: rgba(18, 18, 18, 0.62);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.2;
}

.bee-call-guide blockquote {
  margin: 0;
  padding: 0;
  color: rgba(18, 18, 18, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.bee-call-guide__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 11px;
  border-radius: 13px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 380px) {
  .bee-property-card.bee-property-card--premium .bee-btn--call-soft {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .bee-property-card.bee-property-card--premium .bee-btn--call-soft__avatar {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}


/* 2026-05-01 Europe/Athens
   Property card image slideshow patch
   Scope: property-card media only. Uses existing JSON images, no data/search/filter changes.
*/
.bee-property-card.bee-property-card--premium .bee-property-card__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bee-property-card.bee-property-card--premium .bee-property-card__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  transform: none !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.bee-property-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(16, 18, 20, 0.46);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(16, 18, 20, 0.16);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.bee-property-gallery-btn:hover {
  background: rgba(16, 18, 20, 0.62);
}

.bee-property-gallery-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.bee-property-gallery-btn--prev {
  left: 10px;
}

.bee-property-gallery-btn--next {
  right: 10px;
}

.bee-property-gallery-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(16, 18, 20, 0.55);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.bee-property-gallery-dots {
  position: absolute;
  left: 12px;
  bottom: 14px;
  z-index: 4;
  display: inline-flex;
  gap: 5px;
  max-width: calc(100% - 92px);
  overflow: hidden;
}

.bee-property-gallery-dots span {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(16, 18, 20, 0.22);
}

.bee-property-gallery-dots span.is-active {
  width: 16px;
  flex-basis: 16px;
  background: #f7d84a;
}

@media (max-width: 720px) {
  .bee-property-gallery-btn {
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .bee-property-gallery-btn--prev {
    left: 8px;
  }

  .bee-property-gallery-btn--next {
    right: 8px;
  }

  .bee-property-gallery-count {
    right: 10px;
    bottom: 10px;
  }

  .bee-property-gallery-dots {
    left: 10px;
    bottom: 13px;
  }
}

/* 2026-05-01 Europe/Athens
   Property card slideshow controls patch
   Scope: slideshow controls only. Adds start/stop and countdown without changing data/search/filter/CTA logic.
*/
.bee-property-card.bee-property-card--premium .bee-property-gallery-controls {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(16, 18, 20, 0.48);
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(16, 18, 20, 0.16);
  transform: translateX(-50%);
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-toggle {
  min-width: 70px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 216, 74, 0.96);
  color: #111;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-toggle:hover {
  background: #ffe65c;
  box-shadow: 0 8px 18px rgba(247, 216, 74, 0.28);
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-toggle:active {
  transform: scale(0.96);
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-timer {
  min-width: 48px;
  min-height: 28px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-timer [data-gallery-countdown] {
  font-size: 0.72rem;
  font-weight: 900;
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-timer__label {
  margin-top: 2px;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.78;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media.is-paused .bee-property-gallery-timer {
  background: rgba(255, 255, 255, 0.22);
}

.bee-property-card.bee-property-card--premium .bee-property-card__media.is-paused .bee-property-gallery-timer [data-gallery-countdown]::after {
  content: " paused";
  font-size: 0.52rem;
  font-weight: 800;
  opacity: 0.78;
}

@media (max-width: 720px) {
  .bee-property-card.bee-property-card--premium .bee-property-gallery-controls {
    bottom: 9px;
    gap: 5px;
    padding: 3px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-gallery-toggle {
    min-width: 64px;
    min-height: 27px;
    font-size: 0.64rem;
  }

  .bee-property-card.bee-property-card--premium .bee-property-gallery-timer {
    min-width: 44px;
    min-height: 27px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-gallery-dots {
    max-width: 78px;
  }
}

/* 2026-05-01 Europe/Athens
   Property card slideshow progress + desktop fullscreen + clearer call CTA patch
   Scope: property cards only. No search/filter/pagination/data changes.
*/
.bee-property-card.bee-property-card--premium .bee-property-gallery-controls {
  gap: 7px;
  min-width: min(72%, 260px);
  justify-content: center;
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-progress {
  position: relative;
  width: 92px;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-progress [data-gallery-progress] {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #f7d84a;
  box-shadow: 0 0 10px rgba(247, 216, 74, 0.46);
  transition: width 0.12s linear;
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-fullscreen {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.bee-property-card.bee-property-card--premium .bee-property-gallery-fullscreen:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.bee-property-card.bee-property-card--premium .bee-property-card__media:fullscreen,
.bee-property-card.bee-property-card--premium .bee-property-card__media:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  border-radius: 0;
  background: #050505;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media:fullscreen .bee-property-card__slide,
.bee-property-card.bee-property-card--premium .bee-property-card__media:-webkit-full-screen .bee-property-card__slide {
  object-fit: contain;
  background: #050505;
}

.bee-property-card.bee-property-card--premium .bee-property-card__media:fullscreen .bee-property-gallery-controls,
.bee-property-card.bee-property-card--premium .bee-property-card__media:-webkit-full-screen .bee-property-gallery-controls {
  bottom: 24px;
  min-width: min(340px, calc(100vw - 48px));
}

.bee-property-card.bee-property-card--premium .bee-property-card__media:fullscreen .bee-property-gallery-progress,
.bee-property-card.bee-property-card--premium .bee-property-card__media:-webkit-full-screen .bee-property-gallery-progress {
  width: 150px;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft {
  position: relative;
  border: 1px solid rgba(247, 216, 74, 0.95) !important;
  background: linear-gradient(180deg, #fff6c7 0%, #f7d84a 100%) !important;
  color: #111 !important;
  box-shadow: 0 10px 22px rgba(247, 216, 74, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.66) !important;
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft:hover,
.bee-property-card.bee-property-card--premium .bee-btn--call-soft:focus-visible {
  background: linear-gradient(180deg, #fff9d8 0%, #ffe15d 100%) !important;
  box-shadow: 0 12px 26px rgba(247, 216, 74, 0.33), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-1px);
}

.bee-property-card.bee-property-card--premium .bee-btn--call-soft small {
  color: rgba(17, 17, 17, 0.72);
}

@media (max-width: 720px) {
  .bee-property-card.bee-property-card--premium .bee-property-gallery-controls {
    min-width: min(78%, 240px);
  }

  .bee-property-card.bee-property-card--premium .bee-property-gallery-progress {
    width: 82px;
  }

  .bee-property-card.bee-property-card--premium .bee-property-gallery-fullscreen {
    display: none;
  }
}

/* 2026-05-01 Europe/Athens
   Property card full information patch
   Scope: property card only. Removes the view/detail dependency by showing all available property information inside the card.
*/
.bee-property-card.bee-property-card--premium.bee-property-card--full-info {
  min-height: 0 !important;
  height: auto;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__body {
  gap: 13px;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__detail-grid span {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.035);
  border: 1px solid rgba(18, 18, 18, 0.055);
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__detail-grid small {
  color: rgba(18, 18, 18, 0.52);
  font-size: 0.66rem;
  font-weight: 780;
  line-height: 1;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__detail-grid strong {
  min-width: 0;
  color: rgba(18, 18, 18, 0.86);
  font-size: 0.78rem;
  font-weight: 880;
  line-height: 1.14;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description,
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description strong,
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features > strong {
  display: block;
  color: #1d1d1d;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description p {
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: 0.84rem;
  font-weight: 560;
  line-height: 1.48;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(247, 216, 74, 0.16);
  border: 1px solid rgba(247, 216, 74, 0.26);
  color: rgba(18, 18, 18, 0.78);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1.1;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__actions,
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__actions--premium {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-btn--call-soft {
  min-height: 58px;
}

@media (max-width: 380px) {
  .bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__detail-grid {
    grid-template-columns: 1fr;
  }
}


/* 2026-05-01 Europe/Athens
   Property card intelligence approved patch
   Scope: property card only. Smart inline description, compact safe investment badge, stricter lazy slideshow performance.
*/
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-investment {
  display: inline-grid !important;
  width: fit-content;
  max-width: 100%;
  gap: 3px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(247, 216, 74, 0.14);
  border: 1px solid rgba(247, 216, 74, 0.34);
  box-shadow: none;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-investment__label {
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.1;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-investment small {
  max-width: 260px;
  font-size: 0.7rem;
  line-height: 1.2;
  -webkit-line-clamp: 1;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description {
  position: relative;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description.is-expanded p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.bee-property-card__more {
  justify-self: start;
  min-height: 34px;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(18, 18, 18, 0.74);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.bee-property-card__more:hover {
  background: rgba(247, 216, 74, 0.18);
  color: #181818;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features div {
  max-height: 78px;
  overflow: hidden;
}

.bee-property-card.bee-property-card--premium .bee-property-card__slide {
  will-change: opacity;
}

@media (max-width: 720px) {
  .bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-investment {
    width: 100%;
    border-radius: 15px;
  }

  .bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-investment small {
    max-width: 100%;
  }
}


/* 2026-05-01 Europe/Athens
   Property card description + investment trigger restore
   Scope: property card only. Investment persona trigger must never be visually truncated.
*/
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-investment {
  width: 100% !important;
  border-radius: 16px !important;
  white-space: normal !important;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-investment small {
  display: block !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  line-clamp: unset !important;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description p {
  overflow-wrap: anywhere;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description.is-expanded p {
  max-height: none !important;
}

/* 2026-05-01 Europe/Athens
   Feature chip scan fix
   Scope: property card feature chips only. Keep each feature readable in one line and prevent clipped chips.
*/
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features {
  overflow: visible !important;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features div {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 7px !important;
  max-height: none !important;
  overflow: visible !important;
}

.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features span {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

@media (max-width: 380px) {
  .bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__features span {
    max-width: calc(100vw - 56px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}


/* 2026-05-01 Europe/Athens
   Description sentence preview fix
   Scope: property card only. Prevent broken half-sentence previews and keep full description available inline.
*/
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description p {
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  line-clamp: unset !important;
}

.bee-property-card__description-preview,
.bee-property-card__description-full {
  display: block;
}

.bee-property-card__description-full {
  display: none;
}

.bee-property-card__full-description.is-expanded .bee-property-card__description-preview {
  display: none;
}

.bee-property-card__full-description.is-expanded .bee-property-card__description-full {
  display: block;
}

/* 2026-05-02 Europe/Athens
   Property description hard lock
   Scope: property card description only. The preview uses the exact full description text and only clamps it visually to 3 lines. Expanded state shows the full text without truncation.
*/
.bee-property-card.bee-property-card--premium.bee-property-card--full-info .bee-property-card__full-description p {
  display: block !important;
  margin: 0 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  line-clamp: unset !important;
}

.bee-property-card__description-preview {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.bee-property-card__description-full {
  display: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.bee-property-card__full-description.is-expanded .bee-property-card__description-preview {
  display: none !important;
}

.bee-property-card__full-description.is-expanded .bee-property-card__description-full {
  display: block !important;
}

/* 2026-05-02 Europe/Athens
   Broker asset presentation patch
   Scope: property card and property detail broker presentation only.
   Keeps existing filters, galleries, CTA behavior and data loading unchanged.
*/
.bee-broker-asset {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 13px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 250, 219, 0.96) 0%, rgba(255, 255, 255, 0.98) 54%, rgba(247, 216, 74, 0.16) 100%);
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.07);
}

.bee-broker-asset__visual {
  width: 62px;
  min-width: 62px;
}

.bee-broker-asset__photo {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 22px rgba(16, 18, 20, 0.16);
  background: #f2f2f2;
}

.bee-broker-asset__photo--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #171717 0%, #343434 100%);
  color: #f7d84a;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.bee-broker-asset__content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.bee-broker-asset__eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.88);
  color: #f7d84a;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.bee-broker-asset strong {
  color: #151515;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.bee-broker-asset__promise,
.bee-broker-asset__excerpt {
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.36;
}

.bee-broker-asset__excerpt {
  color: rgba(18, 18, 18, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-broker-asset__profile {
  width: fit-content;
  margin-top: 2px;
  color: #151515;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.bee-broker-asset--compact {
  margin: 0;
}

.bee-broker-asset--compact .bee-broker-asset__excerpt {
  -webkit-line-clamp: 2;
}

.bee-detail .bee-broker-asset {
  margin: 18px 0 0;
}

@media (max-width: 720px) {
  .bee-broker-asset {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .bee-broker-asset__visual {
    width: 56px;
    min-width: 56px;
  }

  .bee-broker-asset__photo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .bee-broker-asset strong {
    font-size: 0.94rem;
  }

  .bee-broker-asset__promise,
  .bee-broker-asset__excerpt {
    font-size: 0.76rem;
  }
}

/* 2026-05-02 Europe/Athens
   Responsive broker card inside property responsive cell
   Scope: property card bottom broker component only.
*/
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset {
  display: grid !important;
  grid-template-columns: clamp(58px, 18%, 86px) minmax(0, 1fr) !important;
  gap: clamp(10px, 3vw, 14px) !important;
  align-items: stretch !important;
  padding: clamp(12px, 3vw, 16px) !important;
  border: 1px solid rgba(18, 18, 18, 0.10) !important;
  border-radius: clamp(18px, 4vw, 22px) !important;
  background: linear-gradient(135deg, #fff8c9 0%, #fffef6 48%, rgba(247, 216, 74, 0.28) 100%) !important;
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.08) !important;
  overflow: hidden !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__visual {
  width: auto !important;
  min-width: 0 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__photo {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: 86px !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border: 2px solid rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 9px 20px rgba(16, 18, 20, 0.15) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__content {
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  gap: 8px !important;
  min-width: 0 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__identity {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__label {
  color: rgba(18, 18, 18, 0.58) !important;
  font-size: clamp(0.64rem, 2.4vw, 0.72rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.045em !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__name {
  display: block !important;
  min-width: 0 !important;
  color: #111 !important;
  font-size: clamp(0.98rem, 3.2vw, 1.14rem) !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  overflow-wrap: anywhere !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__text {
  min-width: 0 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__excerpt,
.bee-property-card.bee-property-card--premium .bee-broker-asset__full {
  margin: 0 !important;
  color: rgba(18, 18, 18, 0.70) !important;
  font-size: clamp(0.76rem, 2.55vw, 0.84rem) !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__excerpt {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__excerpt[hidden],
.bee-property-card.bee-property-card--premium .bee-broker-asset__full[hidden] {
  display: none !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
  align-items: stretch !important;
  min-width: 0 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  min-height: 46px !important;
  padding: 10px 12px !important;
  border-radius: 14px !important;
  background: #111 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.86rem !important;
  font-weight: 950 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  box-shadow: 0 10px 22px rgba(18, 18, 18, 0.18) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call span {
  margin-top: 3px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 10px 11px !important;
  border: 1px solid rgba(18, 18, 18, 0.18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.62) !important;
  color: #111 !important;
  font: inherit !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

@media (max-width: 420px) {
  .bee-property-card.bee-property-card--premium .bee-broker-asset {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__photo {
    max-height: 58px !important;
    border-radius: 14px !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__actions {
    grid-template-columns: 1fr !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__more {
    width: 100% !important;
    white-space: normal !important;
  }
}

/* 2026-05-02 Europe/Athens
   Broker card micro interactions + CTR boost patch
   Scope: broker component inside responsive property card cell only.
   No layout architecture change, no data flow change.
*/
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset {
  position: relative !important;
  isolation: isolate !important;
  transform: translateZ(0) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  border-radius: inherit !important;
  background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.72), transparent 32%), linear-gradient(135deg, rgba(255, 250, 203, 0.72), rgba(247, 216, 74, 0.22)) !important;
  opacity: 0 !important;
  transition: opacity 180ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(214, 175, 0, 0.52) !important;
    box-shadow: 0 18px 38px rgba(18, 18, 18, 0.13) !important;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset:hover::before {
    opacity: 1 !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__photo {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
  }

  .bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset:hover .bee-broker-asset__photo {
    transform: scale(1.035) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 12px 26px rgba(16, 18, 20, 0.22) !important;
  }
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call,
.bee-property-card.bee-property-card--premium .bee-broker-asset__more {
  position: relative !important;
  overflow: hidden !important;
  transform: translateZ(0) !important;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease !important;
  -webkit-tap-highlight-color: transparent !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call::after {
  content: "" !important;
  position: absolute !important;
  top: -35% !important;
  left: -55% !important;
  width: 42% !important;
  height: 170% !important;
  transform: rotate(22deg) !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .bee-property-card.bee-property-card--premium .bee-broker-asset__call:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px rgba(18, 18, 18, 0.26) !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__call:hover::after {
    left: 112% !important;
    opacity: 1 !important;
    transition: left 520ms ease, opacity 180ms ease !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__more:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(18, 18, 18, 0.62) !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 10px 22px rgba(18, 18, 18, 0.10) !important;
  }
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call:active,
.bee-property-card.bee-property-card--premium .bee-broker-asset__more:active {
  transform: scale(0.975) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call:focus-visible,
.bee-property-card.bee-property-card--premium .bee-broker-asset__more:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.24) !important;
  outline-offset: 3px !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call {
  animation: beeBrokerCallAttention 4200ms ease-in-out infinite !important;
}

@keyframes beeBrokerCallAttention {
  0%, 72%, 100% {
    box-shadow: 0 10px 22px rgba(18, 18, 18, 0.18);
  }
  78% {
    box-shadow: 0 10px 22px rgba(18, 18, 18, 0.18), 0 0 0 0 rgba(18, 18, 18, 0.20);
  }
  88% {
    box-shadow: 0 10px 22px rgba(18, 18, 18, 0.18), 0 0 0 8px rgba(18, 18, 18, 0);
  }
}

.bee-property-card.bee-property-card--premium .bee-broker-asset.is-expanded {
  border-color: rgba(214, 175, 0, 0.56) !important;
  box-shadow: 0 18px 38px rgba(18, 18, 18, 0.12) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset.is-expanded .bee-broker-asset__full {
  animation: beeBrokerReveal 180ms ease both !important;
}

@keyframes beeBrokerReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .bee-property-card.bee-property-card--premium .bee-broker-asset__call,
  .bee-property-card.bee-property-card--premium .bee-broker-asset__more {
    min-height: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset,
  .bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset::before,
  .bee-property-card.bee-property-card--premium .bee-broker-asset__photo,
  .bee-property-card.bee-property-card--premium .bee-broker-asset__call,
  .bee-property-card.bee-property-card--premium .bee-broker-asset__more,
  .bee-property-card.bee-property-card--premium .bee-broker-asset__call::after,
  .bee-property-card.bee-property-card--premium .bee-broker-asset.is-expanded .bee-broker-asset__full {
    animation: none !important;
    transition: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Broker CTA emphasis patch
   Scope: broker card inside responsive property cell only.
   Purpose: larger broker photo, horizontal full width actions, stronger yellow CTA background.
*/
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset {
  border-color: rgba(221, 174, 0, 0.72) !important;
  background: linear-gradient(135deg, #fff7a8 0%, #ffe666 42%, #ffd93d 100%) !important;
  box-shadow: 0 18px 36px rgba(18, 18, 18, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.58) !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset::before {
  background: radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.84), transparent 34%), linear-gradient(135deg, rgba(255, 244, 116, 0.72), rgba(255, 207, 33, 0.42)) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset {
  grid-template-columns: clamp(76px, 24%, 112px) minmax(0, 1fr) !important;
  gap: clamp(12px, 3.2vw, 16px) !important;
  padding: clamp(14px, 3.4vw, 18px) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__photo {
  max-height: 112px !important;
  min-height: 76px !important;
  border-radius: 18px !important;
  border-width: 3px !important;
  box-shadow: 0 12px 25px rgba(16, 18, 20, 0.20) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 10px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call,
.bee-property-card.bee-property-card--premium .bee-broker-asset__more {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 12px 10px !important;
  border-radius: 16px !important;
  white-space: normal !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call {
  background: linear-gradient(135deg, #080808 0%, #1d1d1d 100%) !important;
  box-shadow: 0 12px 26px rgba(18, 18, 18, 0.26) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__more {
  border: 2px solid rgba(18, 18, 18, 0.72) !important;
  background: rgba(255, 255, 255, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__actions > :only-child {
  grid-column: 1 / -1 !important;
}

@media (max-width: 420px) {
  .bee-property-card.bee-property-card--premium .bee-broker-asset {
    grid-template-columns: clamp(72px, 28%, 96px) minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__photo {
    max-height: 96px !important;
    min-height: 72px !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__call,
  .bee-property-card.bee-property-card--premium .bee-broker-asset__more {
    min-height: 50px !important;
    padding: 11px 8px !important;
    font-size: 0.78rem !important;
  }
}

/* 2026-05-02 Europe/Athens
   Broker CTA final sizing patch
   Scope: broker card inside responsive property cell only.
   Purpose: larger broker photo, one full width action per row, call icon with subtle animation.
*/
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset {
  background: linear-gradient(135deg, #fff27a 0%, #ffe044 44%, #ffd21e 100%) !important;
  border-color: rgba(218, 168, 0, 0.86) !important;
  box-shadow: 0 18px 38px rgba(18, 18, 18, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset {
  grid-template-columns: clamp(92px, 31%, 138px) minmax(0, 1fr) !important;
  gap: clamp(12px, 3.4vw, 18px) !important;
  padding: clamp(14px, 3.6vw, 18px) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__photo {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  height: auto !important;
  min-height: 108px !important;
  max-height: 168px !important;
  border-radius: 18px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border: 3px solid rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 14px 28px rgba(16, 18, 20, 0.22) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call,
.bee-property-card.bee-property-card--premium .bee-broker-asset__more {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  white-space: normal !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call {
  flex-direction: column !important;
  gap: 4px !important;
  background: linear-gradient(135deg, #050505 0%, #1b1b1b 100%) !important;
  box-shadow: 0 14px 28px rgba(18, 18, 18, 0.28) !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call-main {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #fff !important;
  font-size: 0.92rem !important;
  font-weight: 950 !important;
  line-height: 1.05 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 999px !important;
  background: #ffe45c !important;
  color: #111 !important;
  font-size: 0.82rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  box-shadow: 0 0 0 0 rgba(255, 228, 92, 0.46) !important;
  animation: beeBrokerPhoneIconPulse 2200ms ease-in-out infinite !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__call-phone {
  display: block !important;
  margin-top: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.74rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

.bee-property-card.bee-property-card--premium .bee-broker-asset__more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(18, 18, 18, 0.74) !important;
  background: rgba(255, 255, 255, 0.24) !important;
  color: #111 !important;
  font-size: 0.84rem !important;
  font-weight: 950 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48) !important;
}

@keyframes beeBrokerPhoneIconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 228, 92, 0.44);
  }
  45% {
    transform: translateY(-1px) scale(1.06);
    box-shadow: 0 0 0 7px rgba(255, 228, 92, 0);
  }
}

@media (max-width: 420px) {
  .bee-property-card.bee-property-card--premium .bee-broker-asset {
    grid-template-columns: clamp(96px, 36%, 132px) minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__photo {
    min-height: 120px !important;
    max-height: 162px !important;
  }

  .bee-property-card.bee-property-card--premium .bee-broker-asset__call,
  .bee-property-card.bee-property-card--premium .bee-broker-asset__more {
    min-height: 50px !important;
    padding: 11px 12px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-property-card.bee-property-card--premium .bee-broker-asset__call-icon {
    animation: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Broker CTA strict final enforcement
   Scope: broker card actions inside property card.
   Purpose: every broker action button occupies one full-width row across the whole broker card. Phone icon is black/yellow with subtle green pulse.
*/
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__actions {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-top: 2px !important;
  align-items: stretch !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__actions > .bee-broker-asset__call,
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__actions > .bee-broker-asset__more {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  grid-column: 1 / -1 !important;
  box-sizing: border-box !important;
}

.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__call-icon {
  background: #111 !important;
  color: #ffe45c !important;
  border: 1px solid rgba(255, 228, 92, 0.86) !important;
  box-shadow: 0 0 0 0 rgba(38, 202, 96, 0.22) !important;
  animation: beeBrokerPhoneIconGreenPulseStrict 2600ms ease-in-out infinite !important;
}

@keyframes beeBrokerPhoneIconGreenPulseStrict {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(38, 202, 96, 0.20);
  }
  48% {
    transform: translateY(-1px) scale(1.035);
    box-shadow: 0 0 0 5px rgba(38, 202, 96, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__call-icon {
    animation: none !important;
  }
}


/* 2026-05-02 Europe/Athens
   Broker call icon correction
   Scope: only the phone icon inside the broker call button.
   Purpose: the button remains a normal CTA, while only the icon is black with a yellow phone and a subtle green pulse.
*/
.bee-broker-asset .bee-broker-asset__call-main .bee-broker-asset__call-icon,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__call-main .bee-broker-asset__call-icon,
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__call-main .bee-broker-asset__call-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  overflow: visible !important;
  animation: beeBrokerPhoneIconGreenBreath 2600ms ease-in-out infinite !important;
}

.bee-broker-asset .bee-broker-asset__call-svg,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__call-svg {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  overflow: visible !important;
}

.bee-broker-asset .bee-broker-asset__call-svg-bg,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__call-svg-bg {
  fill: #111111 !important;
  stroke: #ffe45c !important;
  stroke-width: 1.3 !important;
}

.bee-broker-asset .bee-broker-asset__call-svg-phone,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__call-svg-phone {
  fill: #ffe45c !important;
}

@keyframes beeBrokerPhoneIconGreenBreath {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(38, 202, 96, 0));
    transform: scale(1);
  }
  48% {
    filter: drop-shadow(0 0 6px rgba(38, 202, 96, 0.42));
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-broker-asset .bee-broker-asset__call-main .bee-broker-asset__call-icon,
  .bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__call-main .bee-broker-asset__call-icon,
  .bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__call-main .bee-broker-asset__call-icon {
    animation: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Broker CTA call balloon
   Scope: broker card CTA only. The visible CTA opens a natural call guide, and the balloon contains the real click-to-call button.
*/
.bee-broker-asset .bee-broker-asset__call {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.bee-broker-call-balloon {
  grid-column: 1 / -1;
  width: 100%;
  margin: 2px 0 0;
  padding: 14px 14px 15px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffef2 0%, #fff7bf 100%);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.14);
  color: #111;
  box-sizing: border-box;
}

.bee-broker-call-balloon[hidden] {
  display: none !important;
}

.bee-broker-call-balloon strong {
  display: block;
  margin: 0 0 7px;
  color: #111;
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.12;
}

.bee-broker-call-balloon p {
  margin: 0 0 8px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.28;
}

.bee-broker-call-balloon__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #111;
  color: #ffe45c;
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.01em;
}

.bee-broker-call-balloon blockquote {
  margin: 0;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(17, 17, 17, 0.82);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.38;
}

.bee-broker-call-balloon__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 15px;
  background: #111;
  color: #ffe45c;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.22);
}

.bee-broker-call-balloon__call:active {
  transform: translateY(1px) scale(0.99);
}

.bee-broker-call-balloon__call:focus-visible {
  outline: 3px solid rgba(43, 207, 106, 0.38);
  outline-offset: 3px;
}

/* 2026-05-02 Europe/Athens
   Broker profile inline more link refinement
   Scope: broker profile excerpt only.
   Purpose: "Δείτε περισσότερα" is no longer an action button. It appears as a discreet inline link at the end of the truncated text, immediately after the ellipsis.
*/
.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more,
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 0 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(17, 17, 17, 0.72) !important;
  font: inherit !important;
  font-size: 0.92em !important;
  font-weight: 850 !important;
  line-height: inherit !important;
  text-align: inherit !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
  white-space: normal !important;
  cursor: pointer !important;
  transform: none !important;
  overflow: visible !important;
}

.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::before,
.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::after,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::before,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::after {
  display: none !important;
  content: none !important;
}

.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more:hover,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more:hover {
  color: #111 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more:focus-visible,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.32) !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

/* 2026-05-02 Europe/Athens
   Broker profile inline read-more final lock
   Scope: broker profile text inside broker CTA card.
   Purpose: JS creates the real ellipsis and the inline link directly after it. CSS clamp is disabled so the link cannot be visually cut off.
*/
.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__excerpt,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__excerpt,
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__excerpt {
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more,
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 0 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(17, 17, 17, 0.70) !important;
  font: inherit !important;
  font-size: 0.92em !important;
  font-weight: 850 !important;
  line-height: inherit !important;
  text-align: inherit !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
  white-space: normal !important;
  cursor: pointer !important;
  transform: none !important;
  overflow: visible !important;
}

.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::before,
.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::after,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::before,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more::after {
  display: none !important;
  content: none !important;
}


/* 2026-05-02 Europe/Athens
   Broker profile hide/show final lock
   Scope: broker profile text only.
   Purpose: keep the requested hide/show behavior, prevent duplicated excerpt + full text, and keep the inline wording natural.
*/
.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__excerpt[hidden],
.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__full[hidden],
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__excerpt[hidden],
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__full[hidden],
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__excerpt[hidden],
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__full[hidden] {
  display: none !important;
}

.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__full:not([hidden]),
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__full:not([hidden]),
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__full:not([hidden]) {
  display: block !important;
  overflow: visible !important;
}

.bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more--less,
.bee-property-card.bee-property-card--premium .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more--less,
.bee-property-card.bee-property-card--premium .bee-property-card__bottom > .bee-broker-asset .bee-broker-asset__text .bee-broker-asset__more--less {
  display: inline !important;
  margin-left: 6px !important;
  color: rgba(17, 17, 17, 0.68) !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
}


/* 2026-05-02 Europe/Athens
   Broker filter extension
   Scope: quick filters and advanced search broker criterion only.
*/
.bee-filter-group--brokers {
  margin-top: 18px;
}

.bee-filter-group__scroll--brokers {
  display: flex;
  gap: 10px;
  align-items: stretch;
  overflow-x: auto;
  padding: 3px 2px 12px;
  scroll-snap-type: x proximity;
}

.bee-broker-chip {
  min-width: 176px;
  max-width: 220px;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  text-align: left;
  scroll-snap-align: start;
  padding: 9px 13px 9px 9px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(17, 17, 17, 0.10) !important;
  color: #151515 !important;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08) !important;
}

.bee-broker-chip:hover,
.bee-broker-chip:focus-visible,
.bee-broker-chip.is-active {
  background: linear-gradient(135deg, #ffe15d 0%, #ffd42a 100%) !important;
  border-color: rgba(185, 146, 0, 0.42) !important;
  box-shadow: 0 14px 28px rgba(156, 122, 0, 0.18) !important;
  transform: translateY(-1px);
}

.bee-broker-chip__photo {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  background: #111;
  color: #ffe15d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 950;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.16);
}

.bee-broker-chip__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.05;
}

.bee-broker-chip__count {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 850;
  color: rgba(17, 17, 17, 0.62);
}

@media (max-width: 640px) {
  .bee-broker-chip {
    min-width: 158px;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 8px 11px 8px 8px !important;
  }

  .bee-broker-chip__photo {
    width: 40px;
    height: 40px;
  }
}

/* 2026-05-02 Europe/Athens
   Advisor quick filter premium redesign
   Scope: quick advisor filter only.
   Purpose: show all property advisors on desktop and mobile, sorted by property count from JS, with larger portraits and better responsive card layout.
*/
.bee-filter-group--brokers {
  margin-top: clamp(22px, 3.2vw, 34px) !important;
  width: 100% !important;
}

.bee-filter-group--brokers .bee-filter-group__label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
  color: rgba(17, 24, 39, 0.58) !important;
  letter-spacing: 0.14em !important;
}

.bee-filter-group__scroll--brokers {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
  width: 100% !important;
  overflow: visible !important;
  overflow-x: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
}

.bee-filter-group__scroll--brokers::after {
  display: none !important;
  content: none !important;
}

.bee-broker-chip {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: 70px minmax(0, 1fr) !important;
  grid-template-rows: auto auto auto !important;
  gap: 2px 13px !important;
  align-items: center !important;
  min-height: 94px !important;
  padding: 13px 16px 13px 13px !important;
  border-radius: 22px !important;
  text-align: left !important;
  scroll-snap-align: unset !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(17, 17, 17, 0.11) !important;
  color: #111 !important;
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.74) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease !important;
}

.bee-broker-chip:hover,
.bee-broker-chip:focus-visible,
.bee-broker-chip.is-active {
  background: linear-gradient(135deg, #fff06f 0%, #ffdc32 52%, #ffc81d 100%) !important;
  border-color: rgba(186, 139, 0, 0.58) !important;
  box-shadow: 0 18px 36px rgba(156, 122, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
  transform: translateY(-2px) !important;
}

.bee-broker-chip__photo {
  grid-column: 1 !important;
  grid-row: 1 / span 3 !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 18px !important;
  object-fit: cover !important;
  object-position: center top !important;
  background: #111 !important;
  color: #ffe15d !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
  border: 3px solid rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18) !important;
}

.bee-broker-chip__meta {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  min-width: 0 !important;
  color: rgba(17, 17, 17, 0.54) !important;
  font-size: 0.62rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.bee-broker-chip__name {
  grid-column: 2 !important;
  grid-row: 2 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 1.02rem !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

.bee-broker-chip__count {
  grid-column: 2 !important;
  grid-row: 3 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  color: rgba(17, 17, 17, 0.64) !important;
  line-height: 1.05 !important;
}

@media (max-width: 900px) {
  .bee-filter-group__scroll--brokers {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

@media (max-width: 560px) {
  .bee-filter-group__scroll--brokers {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .bee-broker-chip {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    min-height: 88px !important;
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .bee-broker-chip__photo {
    width: 64px !important;
    height: 64px !important;
    border-radius: 17px !important;
  }

  .bee-broker-chip__name {
    font-size: 0.98rem !important;
  }
}

/* 2026-05-02 Europe/Athens
   Advisor quick filter desktop lock
   Scope: quick advisor filter only.
   Purpose: desktop shows exactly four advisors per row, names are readable, mobile keeps all advisors visible.
*/
@media (min-width: 1180px) {
  .bee-filter-group__scroll--brokers {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .bee-broker-chip {
    grid-template-columns: 84px minmax(0, 1fr) !important;
    min-height: 116px !important;
    padding: 15px 18px 15px 15px !important;
  }

  .bee-broker-chip__photo {
    width: 84px !important;
    height: 84px !important;
    border-radius: 20px !important;
  }

  .bee-broker-chip__meta {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.05 !important;
  }

  .bee-broker-chip__name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    font-size: 1.05rem !important;
    line-height: 1.14 !important;
    max-width: none !important;
  }

  .bee-broker-chip__count {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.1 !important;
  }
}

@media (min-width: 760px) and (max-width: 1179px) {
  .bee-filter-group__scroll--brokers {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .bee-broker-chip__name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.14 !important;
  }
}

@media (max-width: 759px) {
  .bee-filter-group__scroll--brokers {
    grid-template-columns: 1fr !important;
    overflow: visible !important;
    max-height: none !important;
  }

  .bee-broker-chip__name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.14 !important;
  }
}

/* 2026-05-02 Europe/Athens
   Advisor quick filter right column layout
   Scope: quick filters section only.
   Purpose: move property advisors into a visible vertical panel on the right side of the quick filters card on desktop, while keeping every advisor visible on mobile.
*/
.bee-quick-filters-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 380px) !important;
  gap: clamp(22px, 3vw, 42px) !important;
  align-items: start !important;
  width: 100% !important;
}

.bee-quick-filters-main {
  min-width: 0 !important;
}

.bee-advisor-filter-panel {
  min-width: 0 !important;
  align-self: stretch !important;
}

.bee-advisor-filter-panel .bee-filter-group--brokers {
  margin-top: 0 !important;
  width: 100% !important;
}

.bee-advisor-filter-panel .bee-filter-group--brokers .bee-filter-group__label {
  margin-bottom: 14px !important;
}

.bee-advisor-filter-panel .bee-filter-group__scroll--brokers {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
}

.bee-advisor-filter-panel .bee-broker-chip {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 76px !important;
  display: grid !important;
  grid-template-columns: 62px minmax(0, 1fr) !important;
  grid-template-rows: auto auto auto !important;
  gap: 2px 13px !important;
  align-items: center !important;
  padding: 10px 14px 10px 10px !important;
  border-radius: 20px !important;
}

.bee-advisor-filter-panel .bee-broker-chip__photo {
  grid-column: 1 !important;
  grid-row: 1 / span 3 !important;
  width: 62px !important;
  height: 62px !important;
  border-radius: 17px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.bee-advisor-filter-panel .bee-broker-chip__meta {
  grid-column: 2 !important;
  grid-row: 1 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 0.58rem !important;
  line-height: 1.05 !important;
}

.bee-advisor-filter-panel .bee-broker-chip__name {
  grid-column: 2 !important;
  grid-row: 2 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: block !important;
  font-size: 0.96rem !important;
  line-height: 1.12 !important;
  max-width: none !important;
}

.bee-advisor-filter-panel .bee-broker-chip__count {
  grid-column: 2 !important;
  grid-row: 3 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 0.73rem !important;
  line-height: 1.08 !important;
}

@media (min-width: 1180px) {
  .bee-advisor-filter-panel .bee-filter-group__scroll--brokers {
    display: flex !important;
    flex-direction: column !important;
  }

  .bee-advisor-filter-panel .bee-broker-chip {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    min-height: 76px !important;
    padding: 10px 14px 10px 10px !important;
  }

  .bee-advisor-filter-panel .bee-broker-chip__photo {
    width: 62px !important;
    height: 62px !important;
    border-radius: 17px !important;
  }
}

@media (max-width: 1099px) {
  .bee-quick-filters-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .bee-advisor-filter-panel {
    width: 100% !important;
  }

  .bee-advisor-filter-panel .bee-filter-group__scroll--brokers {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
    max-height: none !important;
  }
}

@media (max-width: 620px) {
  .bee-quick-filters-layout {
    gap: 20px !important;
  }

  .bee-advisor-filter-panel .bee-filter-group__scroll--brokers {
    grid-template-columns: 1fr !important;
  }

  .bee-advisor-filter-panel .bee-broker-chip {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    min-height: 72px !important;
    padding: 9px 12px 9px 9px !important;
  }

  .bee-advisor-filter-panel .bee-broker-chip__photo {
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
  }
}

/* 2026-05-02 Europe/Athens
   Advisor quick filter hero placement correction
   Scope: move the visible advisors list into the hero right column and return quick filters to one-column flow.
*/
.bee-quick-filters-layout {
  grid-template-columns: 1fr !important;
}

.bee-hero-advisor-panel {
  align-self: start !important;
  width: 100% !important;
  min-width: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.bee-hero-advisor-panel .bee-filter-group--brokers {
  margin: 0 !important;
  width: 100% !important;
  padding: 18px !important;
  border: 1px solid rgba(16, 18, 20, 0.08) !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.68) !important;
  box-shadow: 0 20px 55px rgba(16, 18, 20, 0.10) !important;
  backdrop-filter: blur(12px) !important;
}

.bee-hero-advisor-panel .bee-filter-group--brokers .bee-filter-group__label {
  display: block !important;
  margin: 0 0 14px !important;
  color: rgba(16, 18, 20, 0.56) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.16em !important;
}

.bee-hero-advisor-panel .bee-filter-group__scroll--brokers {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
  scroll-snap-type: none !important;
}

.bee-hero-advisor-panel .bee-broker-chip {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 78px !important;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  grid-template-rows: auto auto auto !important;
  gap: 2px 13px !important;
  align-items: center !important;
  padding: 10px 14px 10px 10px !important;
  border-radius: 20px !important;
}

.bee-hero-advisor-panel .bee-broker-chip__photo {
  grid-column: 1 !important;
  grid-row: 1 / span 3 !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 17px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.bee-hero-advisor-panel .bee-broker-chip__meta,
.bee-hero-advisor-panel .bee-broker-chip__name,
.bee-hero-advisor-panel .bee-broker-chip__count {
  grid-column: 2 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
}

.bee-hero-advisor-panel .bee-broker-chip__meta {
  grid-row: 1 !important;
  font-size: 0.57rem !important;
  line-height: 1.05 !important;
}

.bee-hero-advisor-panel .bee-broker-chip__name {
  grid-row: 2 !important;
  display: block !important;
  font-size: 0.96rem !important;
  line-height: 1.12 !important;
}

.bee-hero-advisor-panel .bee-broker-chip__count {
  grid-row: 3 !important;
  font-size: 0.73rem !important;
  line-height: 1.08 !important;
}

@media (min-width: 981px) {
  .bee-hero-search__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
    align-items: start !important;
  }
}

@media (max-width: 980px) {
  .bee-hero-advisor-panel {
    margin-top: 4px !important;
  }

  .bee-hero-advisor-panel .bee-filter-group__scroll--brokers {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

@media (max-width: 620px) {
  .bee-hero-advisor-panel .bee-filter-group--brokers {
    padding: 14px !important;
    border-radius: 22px !important;
  }

  .bee-hero-advisor-panel .bee-filter-group__scroll--brokers {
    grid-template-columns: 1fr !important;
  }

  .bee-hero-advisor-panel .bee-broker-chip {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    min-height: 72px !important;
    padding: 9px 12px 9px 9px !important;
  }

  .bee-hero-advisor-panel .bee-broker-chip__photo {
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
  }
}


/* 2026-05-02 Europe/Athens
   Hero background image lock
   Scope: hero search background only. Uses local project image images/hero-real-estate-bg.jpg.
*/
.bee-hero-search__bg {
  background-repeat: no-repeat !important;
  filter: saturate(.96) contrast(.98) !important;
  transform: none !important;
}

@media (max-width: 760px) {
  .bee-hero-search__bg {
    background-image:
      linear-gradient(180deg, rgba(246,247,245,.96) 0%, rgba(246,247,245,.90) 46%, rgba(246,247,245,.74) 100%),
      radial-gradient(circle at 68% 16%, rgba(255,214,70,.28), rgba(255,214,70,0) 58%),
      url("../../images/hero-real-estate-bg.jpg") !important;
    background-position: center top, center top, center top !important;
  }
}

/* 2026-05-02 Europe/Athens
   Hero advisors visibility and removed live CTA cleanup
   Scope: hero advisor list only. Shows first 9 advisors by default, reveals the rest on demand.
*/
.bee-filter-group__scroll--brokers [data-broker-extra][hidden] {
  display: none !important;
}

.bee-broker-more-toggle {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(214, 175, 0, 0.45);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe45c 0%, #ffd31f 100%);
  color: #141414;
  font: inherit;
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(18, 18, 18, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.bee-broker-more-toggle:hover,
.bee-broker-more-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(191, 145, 0, 0.75);
  box-shadow: 0 14px 28px rgba(18, 18, 18, 0.12);
  outline: none;
}

.bee-broker-more-toggle:active {
  transform: translateY(0);
}

.bee-avail-badge,
.bee-hero-call-first__cta {
  display: none !important;
}

/* 2026-05-02 Europe/Athens
   Hero background emphasis, land segment and consultation microcopy emphasis
   Scope: hero only. Keeps advisor filtering and property cards unchanged.
*/
.bee-hero-search__bg {
  background-image:
    linear-gradient(90deg, rgba(247, 246, 238, .92) 0%, rgba(247, 246, 238, .78) 38%, rgba(247, 246, 238, .44) 66%, rgba(247, 246, 238, .20) 100%),
    radial-gradient(circle at 76% 24%, rgba(255, 210, 54, .42), rgba(255, 210, 54, 0) 56%),
    url("../../images/hero-real-estate-bg.jpg") !important;
  background-size: 106% 106%, 106% 106%, 106% 106% !important;
  background-position: center center, center center, center center !important;
  filter: saturate(1.12) contrast(1.05) brightness(1.03) !important;
  transform: scale(1.035) !important;
  transform-origin: center center !important;
  animation: beeHeroBgPanZoom 22s ease-in-out infinite alternate !important;
  will-change: transform, background-position;
}

@keyframes beeHeroBgPanZoom {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
    background-position: center center, center center, 48% 50%;
  }
  100% {
    transform: scale(1.085) translate3d(-10px, -6px, 0);
    background-position: center center, center center, 54% 48%;
  }
}

.bee-hero-segments {
  gap: 10px !important;
}

.bee-hero-segment {
  box-shadow: 0 12px 28px rgba(18, 18, 18, .10), inset 0 1px 0 rgba(255, 255, 255, .92) !important;
}

.bee-call-microcopy {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 16px 0 10px !important;
  padding: 11px 16px !important;
  border: 1px solid rgba(214, 175, 0, .46) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(255, 242, 148, .94), rgba(255, 255, 255, .78)) !important;
  color: #161616 !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  box-shadow: 0 12px 28px rgba(18, 18, 18, .10) !important;
}

.bee-hero-call-first__meta {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .86) !important;
  border: 1px solid rgba(18, 18, 18, .08) !important;
  box-shadow: 0 12px 24px rgba(18, 18, 18, .08) !important;
}

.bee-hero-call-first__number {
  color: #0f0f10 !important;
  font-weight: 1000 !important;
  letter-spacing: .01em !important;
}

.bee-hero-call-first__response {
  color: rgba(15, 15, 16, .68) !important;
  font-weight: 800 !important;
}

.bee-hero-call-first__response::before {
  color: rgba(214, 175, 0, .85) !important;
  font-weight: 1000 !important;
}

@media (max-width: 760px) {
  .bee-hero-search__bg {
    background-image:
      linear-gradient(180deg, rgba(247, 246, 238, .94) 0%, rgba(247, 246, 238, .84) 48%, rgba(247, 246, 238, .62) 100%),
      radial-gradient(circle at 64% 12%, rgba(255, 210, 54, .36), rgba(255, 210, 54, 0) 58%),
      url("../../images/hero-real-estate-bg.jpg") !important;
    background-size: 118% 118%, 118% 118%, 118% 118% !important;
    animation-duration: 26s !important;
  }

  .bee-call-microcopy,
  .bee-hero-call-first__meta {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-hero-search__bg {
    animation: none !important;
    transform: scale(1.035) !important;
  }
}

/* 2026-05-02 Europe/Athens
   Hero broker portrait and consultation microcopy premium refinement
   Scope: hero call-first block only. Enlarges broker photo and improves the consultation line with subtle readable text animation.
*/
.bee-hero-call-first__broker {
  gap: 16px !important;
  align-items: center !important;
}

.bee-hero-call-first__photo {
  width: 92px !important;
  height: 92px !important;
  min-width: 92px !important;
  border-width: 4px !important;
  border-color: #f4d21f !important;
  box-shadow: 0 18px 34px rgba(18, 18, 18, .16), 0 0 0 6px rgba(255, 226, 70, .24) !important;
}

.bee-call-microcopy {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 18px 0 12px !important;
  padding: 14px 22px !important;
  border: 1px solid rgba(207, 160, 0, .62) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(255, 233, 89, .84) 0%, rgba(255, 250, 212, .96) 42%, rgba(255, 255, 255, .88) 100%) !important;
  color: #141414 !important;
  font-size: clamp(.94rem, 1.15vw, 1.08rem) !important;
  font-weight: 950 !important;
  line-height: 1.25 !important;
  letter-spacing: -.012em !important;
  text-align: center !important;
  overflow: hidden !important;
  box-shadow: 0 16px 34px rgba(18, 18, 18, .10), inset 0 1px 0 rgba(255, 255, 255, .92) !important;
}

.bee-call-microcopy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, .72) 48%, transparent 62%, transparent 100%);
  transform: translateX(-120%);
  animation: beeMicrocopyLetterSheen 4200ms ease-in-out infinite;
  pointer-events: none;
}

.bee-call-microcopy::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .52);
  pointer-events: none;
}

@keyframes beeMicrocopyLetterSheen {
  0%, 42% {
    transform: translateX(-120%);
    opacity: 0;
  }
  52% {
    opacity: .85;
  }
  72%, 100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .bee-hero-call-first__photo {
    width: 82px !important;
    height: 82px !important;
    min-width: 82px !important;
  }

  .bee-call-microcopy {
    max-width: 100% !important;
    padding: 13px 16px !important;
    border-radius: 24px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-call-microcopy::before {
    animation: none !important;
    display: none !important;
  }
}


.bee-hero-quote {
  position: relative;
  max-width: 760px;
  margin: 18px 0 0;
  padding: 18px 22px 18px 28px;
  color: #15110a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,246,206,0.88));
  border-left: 5px solid #d6a928;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 18px 45px rgba(21, 17, 10, 0.10);
}

.bee-hero-quote::before {
  content: "“";
  position: absolute;
  left: 8px;
  top: -12px;
  color: rgba(214, 169, 40, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.bee-hero-quote::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 22px;
  bottom: 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,169,40,0.55), rgba(214,169,40,0));
}

@media (max-width: 640px) {
  .bee-hero-quote {
    margin-top: 14px;
    padding: 16px 18px 16px 24px;
    font-size: 20px;
    line-height: 1.42;
    border-radius: 0 16px 16px 0;
  }

  .bee-hero-quote::before {
    left: 6px;
    top: -8px;
    font-size: 56px;
  }
}


/* Bee Iolkos local market proof logo patch */
.bee-call-proof__logo {
  width: 260px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 720px) {
  .bee-call-proof__broker {
    grid-template-columns: 1fr;
  }

  .bee-call-proof__logo {
    width: min(280px, 100%);
    height: auto;
    justify-self: start;
  }
}

/* 2026-05-02 Europe/Athens
   Hero professional proof mobile visibility patch
   Scope: hero call-first proof block only. Restores the broker bio and credential cards in mobile mode and keeps them compact/readable.
*/
@media (max-width: 760px) {
  .bee-hero-call-first__bio {
    display: block !important;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    padding: 12px 0 !important;
    margin: 12px 0 !important;
    color: #3a4048 !important;
  }

  .bee-hero-call-first__bio p {
    margin: 0 0 6px !important;
  }

  .bee-hero-call-first__bio p:last-child {
    margin-bottom: 0 !important;
  }

  .bee-hero-call-first__certs {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin: 12px 0 14px !important;
  }

  .bee-cert {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 11px 12px !important;
    border-radius: 14px !important;
  }

  .bee-cert__icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }

  .bee-cert__title {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .bee-cert__desc {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }
}

/* 2026-05-02 Europe/Athens
   Call proof premium animated background patch
   Scope: section-call-proof only. Decorative CSS-only background, no markup or JS changes.
*/
.bee-call-proof {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(244, 185, 66, .24) 0 11%, transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(16, 18, 20, .12) 0 9%, transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, #f7f4ec 44%, #ffffff 100%);
}

.bee-call-proof::before,
.bee-call-proof::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.bee-call-proof::before {
  inset: -34% -18% auto -18%;
  height: 72%;
  background:
    conic-gradient(from 120deg at 50% 50%, rgba(244, 185, 66, .34), rgba(255, 255, 255, 0), rgba(16, 18, 20, .12), rgba(255, 255, 255, 0), rgba(244, 185, 66, .34));
  filter: blur(34px);
  opacity: .72;
  animation: bee-call-proof-orbit 18s ease-in-out infinite alternate;
}

.bee-call-proof::after {
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 18, 20, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 20, .035) 1px, transparent 1px),
    radial-gradient(circle at 22% 72%, rgba(244, 185, 66, .20) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 34%, rgba(244, 185, 66, .16) 0 2px, transparent 3px);
  background-size: 56px 56px, 56px 56px, 130px 130px, 170px 170px;
  opacity: .72;
  animation: bee-call-proof-grid 22s linear infinite;
}

.bee-call-proof__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .80)),
    radial-gradient(circle at 8% 0%, rgba(244, 185, 66, .16), transparent 36%);
  border-color: rgba(244, 185, 66, .22);
  box-shadow:
    0 28px 90px rgba(16, 18, 20, .12),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.bee-call-proof__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(244, 185, 66, .18) 38%, transparent 58%);
  transform: translateX(-120%);
  animation: bee-call-proof-shine 7.5s ease-in-out infinite;
}

@keyframes bee-call-proof-orbit {
  0% {
    transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate3d(4%, 8%, 0) rotate(10deg) scale(1.08);
  }
}

@keyframes bee-call-proof-grid {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 56px 56px, 56px 56px, 130px 130px, -170px 170px;
  }
}

@keyframes bee-call-proof-shine {
  0%, 48% {
    transform: translateX(-120%);
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .bee-call-proof {
    background:
      radial-gradient(circle at 12% 10%, rgba(244, 185, 66, .24) 0 14%, transparent 34%),
      linear-gradient(160deg, #fffaf0 0%, #f7f4ec 48%, #ffffff 100%);
  }

  .bee-call-proof::before {
    inset: -24% -44% auto -44%;
    height: 58%;
    filter: blur(28px);
  }

  .bee-call-proof::after {
    background-size: 42px 42px, 42px 42px, 110px 110px, 150px 150px;
    opacity: .54;
  }

  .bee-call-proof__inner {
    backdrop-filter: blur(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-call-proof::before,
  .bee-call-proof::after,
  .bee-call-proof__inner::before {
    animation: none;
  }
}

/* Bee call proof visual optimization */
.bee-call-proof {
  background:
    radial-gradient(circle at 12% 14%, rgba(247, 216, 74, .20) 0 8%, transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(247, 216, 74, .12) 0 7%, transparent 23%),
    linear-gradient(180deg, #f7efd8 0%, #fffdf7 46%, #ffffff 100%);
}

.bee-call-proof::before {
  inset: -20% -8% auto -8%;
  height: 62%;
  background:
    conic-gradient(from 90deg at 50% 50%, rgba(247, 216, 74, .20), rgba(255, 255, 255, 0), rgba(18, 20, 24, .07), rgba(255, 255, 255, 0), rgba(247, 216, 74, .20));
  filter: blur(48px);
  opacity: .58;
}

.bee-call-proof::after {
  background-image:
    linear-gradient(rgba(18, 20, 24, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 20, 24, .026) 1px, transparent 1px),
    radial-gradient(circle at 20% 72%, rgba(247, 216, 74, .18) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 36%, rgba(247, 216, 74, .12) 0 2px, transparent 3px);
  background-size: 58px 58px, 58px 58px, 138px 138px, 184px 184px;
  opacity: .55;
}

.bee-call-proof__inner {
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 216, 74, .14) 0 18%, transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
  border: 1px solid rgba(247, 216, 74, .30);
  box-shadow:
    0 36px 110px rgba(18, 20, 24, .12),
    0 0 0 1px rgba(255, 255, 255, .80) inset,
    0 1px 0 rgba(255, 255, 255, .96) inset;
}

.bee-call-proof__inner::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(247, 216, 74, .12) 38%, rgba(255, 255, 255, .42) 50%, transparent 64%);
  animation-duration: 9s;
}

.bee-call-proof__logo {
  filter: drop-shadow(0 18px 28px rgba(18, 20, 24, .10));
}

.bee-call-proof__trust-line {
  box-shadow:
    0 12px 32px rgba(247, 216, 74, .18),
    0 1px 0 rgba(255, 255, 255, .92) inset;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card,
.bee-call-proof__quotes blockquote {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 252, 244, .92));
  border-color: rgba(247, 216, 74, .22);
  box-shadow:
    0 18px 46px rgba(18, 20, 24, .09),
    0 1px 0 rgba(255, 255, 255, .92) inset;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card:hover,
.bee-call-proof__quotes blockquote:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(18, 20, 24, .12),
    0 1px 0 rgba(255, 255, 255, .96) inset;
}

@media (max-width: 760px) {
  .bee-call-proof {
    background:
      radial-gradient(circle at 10% 9%, rgba(247, 216, 74, .20) 0 12%, transparent 32%),
      linear-gradient(180deg, #fbf2d9 0%, #fffdf7 52%, #ffffff 100%);
  }

  .bee-call-proof::after {
    background-size: 42px 42px, 42px 42px, 116px 116px, 156px 156px;
    opacity: .42;
  }

  .bee-call-proof__inner {
    box-shadow:
      0 24px 72px rgba(18, 20, 24, .11),
      0 0 0 1px rgba(255, 255, 255, .82) inset;
  }
}

/* 2026-05-02 Europe/Athens
   Bee call proof display optimization v2
   Scope: visual-only CSS refinement. No text, HTML structure or JS changes.
*/
.bee-call-proof {
  background:
    radial-gradient(circle at 18% 9%, rgba(247, 216, 74, .32) 0 10%, transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(247, 216, 74, .22) 0 8%, transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .96) 0 24%, transparent 56%),
    linear-gradient(180deg, #f3e5bd 0%, #fff8e8 48%, #ffffff 100%);
}

.bee-call-proof::before {
  inset: -18% -12% auto -12%;
  height: 66%;
  background:
    conic-gradient(from 110deg at 50% 50%, rgba(247, 216, 74, .30), rgba(255, 255, 255, 0), rgba(16, 18, 20, .08), rgba(255, 255, 255, 0), rgba(247, 216, 74, .30));
  filter: blur(54px);
  opacity: .66;
}

.bee-call-proof::after {
  background-image:
    linear-gradient(rgba(16, 18, 20, .030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 20, .030) 1px, transparent 1px),
    radial-gradient(circle at 18% 72%, rgba(247, 216, 74, .24) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 32%, rgba(247, 216, 74, .18) 0 2px, transparent 3px);
  background-size: 64px 64px, 64px 64px, 142px 142px, 188px 188px;
  opacity: .62;
}

.bee-call-proof__inner {
  background:
    radial-gradient(circle at 7% 13%, rgba(247, 216, 74, .18) 0 16%, transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 253, 247, .92));
  border: 1px solid rgba(247, 216, 74, .38);
  box-shadow:
    0 42px 120px rgba(16, 18, 20, .13),
    0 18px 46px rgba(247, 216, 74, .10),
    0 0 0 1px rgba(255, 255, 255, .88) inset;
}

.bee-call-proof__inner::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(247, 216, 74, .10) 34%, rgba(255, 255, 255, .55) 50%, transparent 66%);
  opacity: .86;
}

.bee-call-proof__broker {
  align-items: center;
}

.bee-call-proof__logo {
  filter:
    drop-shadow(0 16px 28px rgba(16, 18, 20, .10))
    drop-shadow(0 0 18px rgba(247, 216, 74, .16));
}

.bee-call-proof .bee-eyebrow {
  color: #263039;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.bee-call-proof h2 {
  color: #0d0f12;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .72);
}

.bee-call-proof p {
  color: #323a42;
}

.bee-call-proof__trust-line {
  background: linear-gradient(135deg, rgba(255, 248, 224, .96), rgba(255, 255, 255, .88));
  border-color: rgba(247, 216, 74, .44);
  box-shadow:
    0 14px 36px rgba(247, 216, 74, .20),
    0 1px 0 rgba(255, 255, 255, .95) inset;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card,
.bee-call-proof__quotes blockquote {
  background:
    radial-gradient(circle at 92% 10%, rgba(247, 216, 74, .14) 0 13%, transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(255, 252, 244, .94));
  border-color: rgba(247, 216, 74, .30);
  box-shadow:
    0 22px 54px rgba(16, 18, 20, .10),
    0 10px 26px rgba(247, 216, 74, .09),
    0 1px 0 rgba(255, 255, 255, .94) inset;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card::before {
  opacity: .38;
}

@media (max-width: 760px) {
  .bee-call-proof {
    background:
      radial-gradient(circle at 12% 6%, rgba(247, 216, 74, .30) 0 14%, transparent 36%),
      radial-gradient(circle at 90% 14%, rgba(247, 216, 74, .16) 0 10%, transparent 30%),
      linear-gradient(180deg, #f6e8c3 0%, #fff9eb 54%, #ffffff 100%);
  }

  .bee-call-proof::before {
    inset: -16% -42% auto -42%;
    height: 54%;
    filter: blur(42px);
  }

  .bee-call-proof::after {
    background-size: 46px 46px, 46px 46px, 118px 118px, 154px 154px;
    opacity: .46;
  }

  .bee-call-proof__inner {
    box-shadow:
      0 26px 78px rgba(16, 18, 20, .12),
      0 10px 28px rgba(247, 216, 74, .10),
      0 0 0 1px rgba(255, 255, 255, .86) inset;
  }
}

/* 2026-05-02 01:00 Europe/Athens
   Bee Iolkos testimonials micro animation
   Scope: visual only, no HTML, no text, no layout change.
*/
.bee-call-proof__quotes blockquote.bee-testimonial-card,
.bee-call-proof__quotes blockquote {
  transform: translate3d(0, 0, 0);
  will-change: transform, box-shadow, background-position;
  background-size: 145% 145%, 100% 100%;
  animation: bee-testimonial-breathe 7.5s ease-in-out infinite;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card:nth-child(2),
.bee-call-proof__quotes blockquote:nth-child(2) {
  animation-delay: .55s;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card:nth-child(3),
.bee-call-proof__quotes blockquote:nth-child(3) {
  animation-delay: 1.1s;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card::before,
.bee-call-proof__quotes blockquote::before {
  animation: bee-testimonial-quote-glow 5.8s ease-in-out infinite;
}

.bee-call-proof__quotes blockquote.bee-testimonial-card:hover,
.bee-call-proof__quotes blockquote:hover {
  transform: translate3d(0, -6px, 0) scale(1.012);
}

@keyframes bee-testimonial-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    background-position: 0% 0%, 50% 50%;
  }
  50% {
    transform: translate3d(0, -3px, 0);
    background-position: 100% 0%, 50% 50%;
  }
}

@keyframes bee-testimonial-quote-glow {
  0%, 100% {
    opacity: .30;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: .52;
    transform: translate3d(-2px, -2px, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-call-proof__quotes blockquote.bee-testimonial-card,
  .bee-call-proof__quotes blockquote,
  .bee-call-proof__quotes blockquote.bee-testimonial-card::before,
  .bee-call-proof__quotes blockquote::before {
    animation: none;
  }
}

/* 2026-05-02 12:28 Europe/Athens
   Visual optimization patch for quick filters section.
   Scope: CSS only. No text, HTML, JS, or layout structure changes.
*/
.bee-quick-filters-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 216, 74, .20) 0 10%, transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(247, 216, 74, .16) 0 9%, transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(255, 252, 239, .94) 56%, rgba(255, 246, 201, .72) 100%);
  border: 1px solid rgba(16, 18, 20, .08);
  box-shadow:
    0 28px 80px rgba(16, 18, 20, .10),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.bee-quick-filters-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 18, 20, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 20, .028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: .55;
}

.bee-quick-filters-card::after {
  content: "";
  position: absolute;
  inset: -30% -14% auto -14%;
  height: 62%;
  z-index: -1;
  pointer-events: none;
  background: conic-gradient(from 120deg at 50% 50%, rgba(247, 216, 74, .34), rgba(255, 255, 255, 0), rgba(16, 18, 20, .08), rgba(255, 255, 255, 0), rgba(247, 216, 74, .30));
  filter: blur(38px);
  opacity: .50;
  animation: beeQuickFiltersGlow 18s ease-in-out infinite alternate;
}

@keyframes beeQuickFiltersGlow {
  0% {
    transform: translate3d(-2%, 0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(3%, 4%, 0) rotate(8deg) scale(1.04);
  }
}

.bee-quick-filters__title .bee-eyebrow,
.bee-filter-group__label {
  color: rgba(16, 18, 20, .54);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72);
}

.bee-quick-filters__title h2 {
  color: #090b0f;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .78);
}

.bee-filter-groups {
  position: relative;
  z-index: 1;
}

.bee-chip {
  background: rgba(255, 255, 255, .86);
  border-color: rgba(16, 18, 20, .10);
  color: rgba(16, 18, 20, .82);
  box-shadow:
    0 10px 28px rgba(16, 18, 20, .07),
    inset 0 1px 0 rgba(255, 255, 255, .98);
  backdrop-filter: blur(10px);
}

.bee-chip:hover,
.bee-chip:focus-visible {
  background: rgba(255, 255, 255, .98);
  border-color: rgba(16, 18, 20, .18);
  box-shadow:
    0 16px 36px rgba(16, 18, 20, .11),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  outline: none;
}

.bee-chip.is-active {
  background: linear-gradient(180deg, #ffe45c 0%, #f7d84a 100%);
  border-color: rgba(16, 18, 20, .08);
  box-shadow:
    0 18px 42px rgba(247, 216, 74, .40),
    0 8px 24px rgba(16, 18, 20, .12),
    inset 0 1px 0 rgba(255, 255, 255, .62);
}

.bee-advanced-filter-toggle {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 248, 240, .96));
  border-color: rgba(16, 18, 20, .13);
  box-shadow:
    0 18px 42px rgba(16, 18, 20, .10),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.bee-advanced-filter-toggle:hover,
.bee-advanced-filter-toggle:focus-visible {
  background: #fff;
  box-shadow:
    0 24px 56px rgba(16, 18, 20, .14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.bee-advanced-filter-toggle__icon {
  background: linear-gradient(180deg, rgba(247, 216, 74, .52), rgba(247, 216, 74, .30));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70);
}

/* 2026-05-02 Europe/Athens
   Quick filters premium animated background + CSS icons patch
   Scope: visual CSS only. No text, HTML, JS, search logic or data changes.
*/
.bee-quick-filters-card {
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 216, 74, .34) 0 8%, transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(255, 224, 92, .30) 0 10%, transparent 34%),
    radial-gradient(circle at 72% 82%, rgba(16, 18, 20, .055) 0 8%, transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(255, 253, 245, .95) 45%, rgba(255, 247, 210, .82) 100%);
  box-shadow:
    0 32px 92px rgba(16, 18, 20, .12),
    0 14px 38px rgba(247, 216, 74, .10),
    inset 0 1px 0 rgba(255, 255, 255, .98),
    inset 0 0 0 1px rgba(255, 255, 255, .44);
}

.bee-quick-filters-card::before {
  background:
    linear-gradient(rgba(16, 18, 20, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 20, .025) 1px, transparent 1px),
    radial-gradient(circle, rgba(247, 216, 74, .34) 0 2px, transparent 2.5px);
  background-size: 58px 58px, 58px 58px, 132px 132px;
  background-position: 0 0, 0 0, 18px 28px;
  opacity: .62;
  animation: beeQuickFiltersGridFloat 28s linear infinite;
}

.bee-quick-filters-card::after {
  inset: -38% -22% auto -22%;
  height: 74%;
  background:
    conic-gradient(from 90deg at 50% 50%, rgba(247, 216, 74, .42), rgba(255, 255, 255, 0), rgba(247, 216, 74, .20), rgba(16, 18, 20, .07), rgba(255, 255, 255, 0), rgba(247, 216, 74, .38));
  filter: blur(44px);
  opacity: .62;
  animation: beeQuickFiltersPremiumAurora 16s ease-in-out infinite alternate;
}

@keyframes beeQuickFiltersGridFloat {
  0% {
    background-position: 0 0, 0 0, 18px 28px;
  }
  100% {
    background-position: 58px 58px, 58px 58px, 150px 160px;
  }
}

@keyframes beeQuickFiltersPremiumAurora {
  0% {
    transform: translate3d(-3%, -1%, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(2%, 5%, 0) rotate(7deg) scale(1.04);
  }
  100% {
    transform: translate3d(5%, 1%, 0) rotate(14deg) scale(1.08);
  }
}

.bee-chip,
.bee-advanced-filter-toggle {
  position: relative;
  overflow: hidden;
}

.bee-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bee-chip::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: rgba(16, 18, 20, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
  font-size: 12px;
  line-height: 1;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.bee-chip[data-quick="all"]::before {
  content: "⌂";
}

.bee-chip[data-quick-type="Κατοικία"]::before {
  content: "⌂";
}

.bee-chip[data-quick-type="Επαγγελματικά"]::before {
  content: "▦";
}

.bee-chip[data-quick-type="Γη"]::before {
  content: "◇";
}

.bee-chip[data-quick-type="Επιχειρήσεις"]::before {
  content: "◆";
}

.bee-chip[data-quick-availability="Πώληση"]::before {
  content: "€";
}

.bee-chip[data-quick-availability="Εκμίσθωση"]::before {
  content: "↻";
}

.bee-chip:hover::before,
.bee-chip:focus-visible::before,
.bee-chip.is-active::before {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(255, 255, 255, .70);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .90),
    0 8px 18px rgba(16, 18, 20, .08);
}

.bee-chip::after,
.bee-advanced-filter-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .55) 44%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}

.bee-chip:hover::after,
.bee-chip:focus-visible::after,
.bee-advanced-filter-toggle:hover::after,
.bee-advanced-filter-toggle:focus-visible::after {
  transform: translateX(130%);
}

.bee-unified-search-actions {
  position: relative;
  z-index: 2;
}

.bee-advanced-filter-toggle {
  gap: 12px;
}

.bee-advanced-filter-toggle::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #111318, #2a2f36);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5.25C3 4.56 3.56 4 4.25 4h15.5c.69 0 1.25.56 1.25 1.25 0 .29-.1.57-.29.79L14 14.08V19a1 1 0 0 1-.45.83l-3 2A1 1 0 0 1 9 21v-6.92L3.29 6.04A1.25 1.25 0 0 1 3 5.25Z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5.25C3 4.56 3.56 4 4.25 4h15.5c.69 0 1.25.56 1.25 1.25 0 .29-.1.57-.29.79L14 14.08V19a1 1 0 0 1-.45.83l-3 2A1 1 0 0 1 9 21v-6.92L3.29 6.04A1.25 1.25 0 0 1 3 5.25Z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
}

.bee-advanced-filter-toggle__icon {
  font-size: 0;
}

.bee-advanced-filter-toggle__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(16, 18, 20, .82);
  border-bottom: 2px solid rgba(16, 18, 20, .82);
  transform: translateY(-2px) rotate(45deg);
}

@media (min-width: 981px) {
  .bee-quick-filters-card {
    padding-right: clamp(34px, 4.4vw, 62px);
  }

  .bee-unified-search-actions {
    justify-content: flex-end;
    margin-top: 6px;
  }

  .bee-advanced-filter-toggle {
    width: min(100%, 330px);
    min-height: 58px;
  }
}

@media (max-width: 760px) {
  .bee-quick-filters-card::before {
    background-size: 46px 46px, 46px 46px, 112px 112px;
    opacity: .48;
  }

  .bee-quick-filters-card::after {
    inset: -28% -58% auto -58%;
    height: 58%;
    filter: blur(40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-quick-filters-card::before,
  .bee-quick-filters-card::after {
    animation: none;
  }
}

/* 2026-05-02 Europe/Athens
   Quick filters desktop decorative intelligence layer
   Scope: CSS only. No text, HTML, JS, filter logic or content changes.
*/
@media (min-width: 1100px) {
  .bee-quick-filters-main {
    position: relative;
    z-index: 1;
  }

  .bee-quick-filters-main > * {
    position: relative;
    z-index: 2;
  }

  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .bee-quick-filters-main::before {
    top: clamp(34px, 5vw, 72px);
    right: clamp(20px, 4vw, 78px);
    width: clamp(300px, 34vw, 560px);
    height: clamp(250px, 27vw, 430px);
    border-radius: 38px;
    opacity: .92;
    background:
      radial-gradient(circle at 21% 28%, rgba(17, 18, 20, .82) 0 7px, transparent 8px),
      radial-gradient(circle at 52% 18%, rgba(247, 216, 74, .98) 0 9px, transparent 10px),
      radial-gradient(circle at 78% 42%, rgba(17, 18, 20, .72) 0 6px, transparent 7px),
      radial-gradient(circle at 42% 66%, rgba(247, 216, 74, .82) 0 8px, transparent 9px),
      radial-gradient(circle at 72% 78%, rgba(17, 18, 20, .60) 0 5px, transparent 6px),
      linear-gradient(32deg, transparent 0 24%, rgba(17, 18, 20, .10) 24.2% 25%, transparent 25.2% 100%),
      linear-gradient(150deg, transparent 0 28%, rgba(247, 216, 74, .26) 28.2% 29%, transparent 29.2% 100%),
      linear-gradient(96deg, transparent 0 43%, rgba(17, 18, 20, .075) 43.2% 44%, transparent 44.2% 100%),
      radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .54), rgba(255, 250, 224, .18) 48%, transparent 70%);
    filter: drop-shadow(0 26px 46px rgba(16, 18, 20, .10));
    transform: rotate(-3deg);
    animation: beeQuickFiltersConstellation 15s ease-in-out infinite alternate;
  }

  .bee-quick-filters-main::after {
    top: clamp(84px, 9vw, 132px);
    right: clamp(88px, 9vw, 170px);
    width: clamp(190px, 22vw, 340px);
    height: clamp(190px, 22vw, 340px);
    border-radius: 50%;
    opacity: .76;
    background:
      radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(247, 216, 74, .22) 39% 40%, transparent 41% 100%),
      radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(16, 18, 20, .08) 59% 60%, transparent 61% 100%),
      conic-gradient(from 20deg, transparent 0 11%, rgba(247, 216, 74, .34) 12% 18%, transparent 19% 42%, rgba(16, 18, 20, .10) 43% 48%, transparent 49% 100%);
    filter: blur(.1px);
    animation: beeQuickFiltersRadar 22s linear infinite;
  }

  .bee-quick-filters-card {
    background:
      radial-gradient(circle at 12% 18%, rgba(247, 216, 74, .34) 0 8%, transparent 28%),
      radial-gradient(circle at 84% 14%, rgba(255, 224, 92, .34) 0 10%, transparent 34%),
      radial-gradient(circle at 74% 48%, rgba(247, 216, 74, .18) 0 8%, transparent 32%),
      radial-gradient(circle at 76% 80%, rgba(16, 18, 20, .060) 0 8%, transparent 30%),
      linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(255, 253, 245, .95) 45%, rgba(255, 247, 210, .84) 100%);
  }
}

@keyframes beeQuickFiltersConstellation {
  0% {
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  }
  50% {
    transform: translate3d(-10px, 8px, 0) rotate(-1deg) scale(1.015);
  }
  100% {
    transform: translate3d(8px, -6px, 0) rotate(-4deg) scale(1.025);
  }
}

@keyframes beeQuickFiltersRadar {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.02);
  }
}

@media (max-width: 1099px) {
  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    content: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    animation: none;
  }
}

/* 2026-05-02 Europe/Athens
   Quick filters premium desktop decoration refinement
   Scope: CSS only. No text, HTML, JS, filter logic or layout structure changes.
*/
@media (min-width: 1100px) {
  .bee-quick-filters-card {
    background:
      radial-gradient(circle at 12% 16%, rgba(247, 216, 74, .32) 0 7%, transparent 24%),
      radial-gradient(circle at 83% 18%, rgba(255, 226, 92, .46) 0 12%, transparent 36%),
      radial-gradient(circle at 77% 72%, rgba(247, 216, 74, .20) 0 10%, transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 253, 244, .94) 46%, rgba(255, 244, 184, .82) 100%);
  }

  .bee-quick-filters-main::before {
    top: clamp(26px, 4vw, 58px);
    right: clamp(18px, 4.2vw, 80px);
    width: clamp(340px, 37vw, 620px);
    height: clamp(280px, 28vw, 460px);
    border-radius: 44px;
    opacity: .98;
    background:
      radial-gradient(circle at 30% 24%, rgba(16, 18, 20, .78) 0 6px, transparent 7px),
      radial-gradient(circle at 62% 15%, rgba(247, 216, 74, .98) 0 11px, transparent 12px),
      radial-gradient(circle at 84% 42%, rgba(16, 18, 20, .66) 0 6px, transparent 7px),
      radial-gradient(circle at 50% 69%, rgba(247, 216, 74, .92) 0 10px, transparent 11px),
      radial-gradient(circle at 76% 78%, rgba(16, 18, 20, .58) 0 5px, transparent 6px),
      linear-gradient(30deg, transparent 0 27%, rgba(247, 216, 74, .34) 27.2% 28.2%, transparent 28.4% 100%),
      linear-gradient(151deg, transparent 0 31%, rgba(16, 18, 20, .12) 31.2% 32.2%, transparent 32.4% 100%),
      linear-gradient(92deg, transparent 0 46%, rgba(16, 18, 20, .08) 46.2% 47.1%, transparent 47.3% 100%),
      radial-gradient(circle at 64% 54%, transparent 0 27%, rgba(247, 216, 74, .22) 27.3% 28.1%, transparent 28.4% 46%, rgba(16, 18, 20, .075) 46.3% 47.1%, transparent 47.4% 100%),
      radial-gradient(circle at 66% 54%, rgba(255, 255, 255, .70), rgba(255, 249, 219, .20) 50%, transparent 72%);
    filter: drop-shadow(0 28px 54px rgba(16, 18, 20, .12));
    transform: rotate(-2deg);
    mix-blend-mode: multiply;
  }

  .bee-quick-filters-main::after {
    top: clamp(70px, 8vw, 118px);
    right: clamp(86px, 8.6vw, 160px);
    width: clamp(210px, 23vw, 355px);
    height: clamp(210px, 23vw, 355px);
    opacity: .88;
    background:
      radial-gradient(circle at 50% 50%, rgba(247, 216, 74, .18) 0 21%, transparent 22%),
      radial-gradient(circle at 50% 50%, transparent 0 39%, rgba(247, 216, 74, .32) 39.4% 40.4%, transparent 40.8% 100%),
      radial-gradient(circle at 50% 50%, transparent 0 61%, rgba(16, 18, 20, .10) 61.4% 62.3%, transparent 62.8% 100%),
      conic-gradient(from 35deg, transparent 0 10%, rgba(247, 216, 74, .48) 10.5% 17.5%, transparent 18% 43%, rgba(16, 18, 20, .12) 43.5% 49%, transparent 49.5% 100%);
    filter: drop-shadow(0 18px 34px rgba(247, 216, 74, .18));
  }

  .bee-quick-filters-main .bee-chip-row {
    max-width: 640px;
  }
}

.bee-advanced-filter-toggle::before {
  display: none;
}

.bee-advanced-filter-toggle {
  overflow: hidden;
  justify-content: center;
  padding-right: 18px;
}

.bee-advanced-filter-toggle__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff1a7 0%, #f7d84a 100%);
  border: 1px solid rgba(16, 18, 20, .12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 9px 18px rgba(247, 216, 74, .32);
}

.bee-advanced-filter-toggle__icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 0;
  transform: none;
  background: #101214;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 7h9.18a3 3 0 0 0 5.64 0H20a1 1 0 1 0 0-2h-1.18a3 3 0 0 0-5.64 0H4a1 1 0 1 0 0 2Zm12-1a1 1 0 1 1 0 .01V6ZM4 13h1.18a3 3 0 0 0 5.64 0H20a1 1 0 1 0 0-2h-9.18a3 3 0 0 0-5.64 0H4a1 1 0 1 0 0 2Zm4-1a1 1 0 1 1 0 .01V12Zm-4 7h9.18a3 3 0 0 0 5.64 0H20a1 1 0 1 0 0-2h-1.18a3 3 0 0 0-5.64 0H4a1 1 0 1 0 0 2Zm12-1a1 1 0 1 1 0 .01V18Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 7h9.18a3 3 0 0 0 5.64 0H20a1 1 0 1 0 0-2h-1.18a3 3 0 0 0-5.64 0H4a1 1 0 1 0 0 2Zm12-1a1 1 0 1 1 0 .01V6ZM4 13h1.18a3 3 0 0 0 5.64 0H20a1 1 0 1 0 0-2h-9.18a3 3 0 0 0-5.64 0H4a1 1 0 1 0 0 2Zm4-1a1 1 0 1 1 0 .01V12Zm-4 7h9.18a3 3 0 0 0 5.64 0H20a1 1 0 1 0 0-2h-1.18a3 3 0 0 0-5.64 0H4a1 1 0 1 0 0 2Zm12-1a1 1 0 1 1 0 .01V18Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bee-advanced-filter-toggle:hover .bee-advanced-filter-toggle__icon,
.bee-advanced-filter-toggle:focus-visible .bee-advanced-filter-toggle__icon {
  transform: translateX(2px) rotate(4deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 12px 24px rgba(247, 216, 74, .42);
}

/* 2026-05-02 Europe/Athens
   Quick filters desktop premium right-side decoration v2.
   Scope: CSS only. No text, HTML, JS, filter logic or layout structure changes.
*/
@media (min-width: 1100px) {
  .bee-quick-filters-card {
    background:
      radial-gradient(circle at 13% 15%, rgba(247, 216, 74, .28) 0 7%, transparent 24%),
      radial-gradient(circle at 88% 12%, rgba(255, 226, 92, .56) 0 14%, transparent 39%),
      radial-gradient(circle at 78% 68%, rgba(247, 216, 74, .24) 0 12%, transparent 36%),
      linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 253, 246, .96) 48%, rgba(255, 245, 193, .88) 100%);
  }

  .bee-quick-filters-main::before {
    top: clamp(30px, 4.5vw, 70px);
    right: clamp(26px, 5.2vw, 96px);
    width: clamp(380px, 39vw, 670px);
    height: clamp(285px, 28vw, 475px);
    border-radius: 48px;
    opacity: .95;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 34px 62px rgba(16, 18, 20, .13));
    background:
      radial-gradient(circle at 28% 30%, rgba(16, 18, 20, .74) 0 6px, transparent 7px),
      radial-gradient(circle at 58% 16%, rgba(247, 216, 74, .98) 0 12px, transparent 13px),
      radial-gradient(circle at 83% 39%, rgba(16, 18, 20, .58) 0 7px, transparent 8px),
      radial-gradient(circle at 49% 71%, rgba(247, 216, 74, .90) 0 11px, transparent 12px),
      radial-gradient(circle at 75% 79%, rgba(16, 18, 20, .52) 0 5px, transparent 6px),
      linear-gradient(31deg, transparent 0 31%, rgba(247, 216, 74, .38) 31.15% 32.25%, transparent 32.4% 100%),
      linear-gradient(148deg, transparent 0 33%, rgba(16, 18, 20, .12) 33.15% 34.25%, transparent 34.4% 100%),
      linear-gradient(92deg, transparent 0 47%, rgba(16, 18, 20, .08) 47.15% 48.15%, transparent 48.3% 100%),
      radial-gradient(circle at 65% 53%, transparent 0 26%, rgba(247, 216, 74, .28) 26.4% 27.4%, transparent 27.8% 43%, rgba(16, 18, 20, .10) 43.4% 44.4%, transparent 44.8% 60%, rgba(247, 216, 74, .14) 60.4% 61.2%, transparent 61.6% 100%),
      conic-gradient(from 278deg at 65% 53%, transparent 0 9%, rgba(247, 216, 74, .32) 9.4% 17%, transparent 17.5% 46%, rgba(16, 18, 20, .08) 46.5% 54%, transparent 54.5% 100%),
      repeating-linear-gradient(30deg, rgba(255, 255, 255, 0) 0 28px, rgba(255, 255, 255, .14) 29px 30px),
      radial-gradient(circle at 66% 54%, rgba(255, 255, 255, .76), rgba(255, 248, 213, .24) 49%, transparent 73%);
    animation: beeQuickFiltersPremiumMapFloat 18s ease-in-out infinite alternate;
  }

  .bee-quick-filters-main::after {
    top: clamp(86px, 9vw, 138px);
    right: clamp(112px, 10vw, 205px);
    width: clamp(190px, 20vw, 330px);
    height: clamp(190px, 20vw, 330px);
    opacity: .82;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, rgba(247, 216, 74, .16) 0 23%, transparent 24%),
      radial-gradient(circle at 50% 50%, transparent 0 40%, rgba(247, 216, 74, .36) 40.4% 41.2%, transparent 41.7% 100%),
      radial-gradient(circle at 50% 50%, transparent 0 64%, rgba(16, 18, 20, .12) 64.4% 65.4%, transparent 66% 100%),
      conic-gradient(from 45deg, transparent 0 8%, rgba(247, 216, 74, .55) 8.5% 16%, transparent 16.5% 44%, rgba(16, 18, 20, .13) 44.5% 51%, transparent 51.5% 100%);
    filter: drop-shadow(0 22px 38px rgba(247, 216, 74, .20));
    animation: beeQuickFiltersPremiumRadar 26s linear infinite;
  }
}

@keyframes beeQuickFiltersPremiumMapFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2.8deg) scale(1);
  }
  50% {
    transform: translate3d(-12px, 10px, 0) rotate(-1.2deg) scale(1.018);
  }
  100% {
    transform: translate3d(10px, -7px, 0) rotate(-3.6deg) scale(1.028);
  }
}

@keyframes beeQuickFiltersPremiumRadar {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    animation: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Quick filters full-height animated map layer + hero-style filter icons.
   Scope: CSS only. No text, HTML, JS, data, or filter logic changes.
*/
@media (min-width: 1100px) {
  .bee-quick-filters-card {
    background:
      radial-gradient(circle at 15% 15%, rgba(247, 216, 74, .24) 0 8%, transparent 25%),
      radial-gradient(circle at 90% 8%, rgba(255, 226, 92, .58) 0 17%, transparent 45%),
      radial-gradient(circle at 83% 72%, rgba(247, 216, 74, .26) 0 14%, transparent 42%),
      linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 253, 246, .96) 44%, rgba(255, 245, 188, .90) 100%);
  }

  .bee-quick-filters-main::before {
    top: 0;
    right: clamp(10px, 3.4vw, 74px);
    bottom: 0;
    width: clamp(480px, 45vw, 760px);
    height: auto;
    border-radius: 0;
    opacity: .94;
    transform-origin: 62% 52%;
    background:
      radial-gradient(circle at 28% 26%, rgba(16, 18, 20, .72) 0 6px, rgba(16, 18, 20, .14) 7px 12px, transparent 13px),
      radial-gradient(circle at 57% 18%, rgba(247, 216, 74, .98) 0 13px, rgba(247, 216, 74, .26) 14px 27px, transparent 28px),
      radial-gradient(circle at 83% 35%, rgba(16, 18, 20, .62) 0 7px, rgba(16, 18, 20, .12) 8px 15px, transparent 16px),
      radial-gradient(circle at 49% 70%, rgba(247, 216, 74, .94) 0 12px, rgba(247, 216, 74, .24) 13px 29px, transparent 30px),
      radial-gradient(circle at 78% 79%, rgba(16, 18, 20, .56) 0 5px, rgba(16, 18, 20, .12) 6px 12px, transparent 13px),
      radial-gradient(circle at 37% 86%, rgba(247, 216, 74, .70) 0 6px, transparent 15px),
      linear-gradient(31deg, transparent 0 30%, rgba(247, 216, 74, .38) 30.12% 31.1%, transparent 31.3% 100%),
      linear-gradient(148deg, transparent 0 32%, rgba(16, 18, 20, .13) 32.12% 33.2%, transparent 33.4% 100%),
      linear-gradient(92deg, transparent 0 47%, rgba(16, 18, 20, .08) 47.12% 48.1%, transparent 48.3% 100%),
      radial-gradient(circle at 64% 54%, transparent 0 24%, rgba(247, 216, 74, .32) 24.35% 25.35%, transparent 25.8% 41%, rgba(16, 18, 20, .11) 41.35% 42.35%, transparent 42.8% 58%, rgba(247, 216, 74, .16) 58.35% 59.2%, transparent 59.7% 100%),
      conic-gradient(from 276deg at 64% 54%, transparent 0 8%, rgba(247, 216, 74, .36) 8.5% 17%, transparent 17.5% 43%, rgba(16, 18, 20, .10) 43.5% 53%, transparent 53.5% 100%),
      repeating-linear-gradient(30deg, rgba(255, 255, 255, 0) 0 27px, rgba(255, 255, 255, .16) 28px 29px),
      radial-gradient(circle at 65% 53%, rgba(255, 255, 255, .78), rgba(255, 248, 212, .24) 47%, transparent 74%);
    animation: beeQuickFiltersFullMapFloat 20s ease-in-out infinite alternate;
  }

  .bee-quick-filters-main::after {
    top: 50%;
    right: clamp(112px, 10.2vw, 214px);
    width: clamp(235px, 24vw, 390px);
    height: clamp(235px, 24vw, 390px);
    margin-top: calc(clamp(235px, 24vw, 390px) / -2);
    opacity: .84;
    transform-origin: 50% 50%;
    background:
      radial-gradient(circle at 50% 50%, rgba(247, 216, 74, .18) 0 22%, transparent 23%),
      radial-gradient(circle at 50% 50%, transparent 0 39%, rgba(247, 216, 74, .35) 39.4% 40.2%, transparent 40.8% 100%),
      radial-gradient(circle at 50% 50%, transparent 0 62%, rgba(16, 18, 20, .12) 62.4% 63.4%, transparent 64% 100%),
      radial-gradient(circle at 50% 50%, transparent 0 76%, rgba(247, 216, 74, .12) 76.4% 77.2%, transparent 77.8% 100%),
      conic-gradient(from 52deg, transparent 0 8%, rgba(247, 216, 74, .58) 8.5% 16%, transparent 16.5% 42%, rgba(16, 18, 20, .14) 42.5% 50%, transparent 50.5% 100%);
    animation: beeQuickFiltersFullRadarSpin 28s linear infinite;
  }
}

@keyframes beeQuickFiltersFullMapFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2.4deg) scale(1);
  }
  50% {
    transform: translate3d(-14px, 10px, 0) rotate(-.8deg) scale(1.018);
  }
  100% {
    transform: translate3d(11px, -9px, 0) rotate(-3.4deg) scale(1.03);
  }
}

@keyframes beeQuickFiltersFullRadarSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.025);
  }
}

.bee-chip::before {
  content: "" !important;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border-radius: 0;
  background: rgba(16, 18, 20, .68);
  box-shadow: none;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 18px 18px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 18px 18px;
}

.bee-chip.is-active::before,
.bee-chip:hover::before,
.bee-chip:focus-visible::before {
  background: rgba(16, 18, 20, .86);
}

.bee-chip[data-quick="all"]::before,
.bee-chip[data-quick-type="Κατοικία"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3.1 3 10.6l1.35 1.62L5.6 11.2V20h12.8v-8.8l1.25 1.02L21 10.6 12 3.1Zm0 2.6 4.4 3.66V18h-2.9v-4.7h-3V18H7.6V9.36L12 5.7Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3.1 3 10.6l1.35 1.62L5.6 11.2V20h12.8v-8.8l1.25 1.02L21 10.6 12 3.1Zm0 2.6 4.4 3.66V18h-2.9v-4.7h-3V18H7.6V9.36L12 5.7Z'/%3E%3C/svg%3E");
}

.bee-chip[data-quick-type="Επαγγελματικά"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v16H4V4Zm2 2v12h3V6H6Zm5 0v3h2V6h-2Zm4 0v3h3V6h-3Zm-4 5v7h2v-7h-2Zm4 0v7h3v-7h-3Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v16H4V4Zm2 2v12h3V6H6Zm5 0v3h2V6h-2Zm4 0v3h3V6h-3Zm-4 5v7h2v-7h-2Zm4 0v7h3v-7h-3Z'/%3E%3C/svg%3E");
}

.bee-chip[data-quick-type="Γη"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 4 8 4.6v8.8L12 22l-8-4.6V8.6L12 4Zm0 2.3L6 9.75v5.7l6 3.45 6-3.45v-5.7l-6-3.45Zm0 2.7 3.8 2.2v4.4L12 17.8l-3.8-2.2v-4.4L12 9Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 4 8 4.6v8.8L12 22l-8-4.6V8.6L12 4Zm0 2.3L6 9.75v5.7l6 3.45 6-3.45v-5.7l-6-3.45Zm0 2.7 3.8 2.2v4.4L12 17.8l-3.8-2.2v-4.4L12 9Z'/%3E%3C/svg%3E");
}

.bee-chip[data-quick-type="Επιχειρήσεις"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 4h8l1 4h4v12H3V8h4l1-4Zm1.55 2-.5 2h5.9l-.5-2h-4.9ZM5 10v8h14v-8h-3v2h-2v-2h-4v2H8v-2H5Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 4h8l1 4h4v12H3V8h4l1-4Zm1.55 2-.5 2h5.9l-.5-2h-4.9ZM5 10v8h14v-8h-3v2h-2v-2h-4v2H8v-2H5Z'/%3E%3C/svg%3E");
}

.bee-chip[data-quick-availability="Πώληση"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.2 3a6.2 6.2 0 0 0-5.9 4.2H5v1.7h1.95A7.5 7.5 0 0 0 6.9 10H5v1.7h2.3A6.2 6.2 0 0 0 13.2 16c1.65 0 3.15-.64 4.26-1.7l-1.42-1.5a4.05 4.05 0 0 1-2.84 1.15 4.18 4.18 0 0 1-3.56-2.25h4.66V10H9.05a5.24 5.24 0 0 1 .05-1.1h5.2V7.2H9.75a4.17 4.17 0 0 1 3.45-2.15c1.08 0 2.08.42 2.82 1.13l1.42-1.5A6.14 6.14 0 0 0 13.2 3ZM6 18h12v2H6v-2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.2 3a6.2 6.2 0 0 0-5.9 4.2H5v1.7h1.95A7.5 7.5 0 0 0 6.9 10H5v1.7h2.3A6.2 6.2 0 0 0 13.2 16c1.65 0 3.15-.64 4.26-1.7l-1.42-1.5a4.05 4.05 0 0 1-2.84 1.15 4.18 4.18 0 0 1-3.56-2.25h4.66V10H9.05a5.24 5.24 0 0 1 .05-1.1h5.2V7.2H9.75a4.17 4.17 0 0 1 3.45-2.15c1.08 0 2.08.42 2.82 1.13l1.42-1.5A6.14 6.14 0 0 0 13.2 3ZM6 18h12v2H6v-2Z'/%3E%3C/svg%3E");
}

.bee-chip[data-quick-availability="Εκμίσθωση"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 4h10v2H7V4Zm5 3a5 5 0 0 1 5 5h2.2l-3.2 3.2L12.8 12H15a3 3 0 1 0-.88 2.12l1.42 1.42A5 5 0 1 1 12 7Zm-1 3h2v3.2l2.2 2.2-1.4 1.4-2.8-2.8V10Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 4h10v2H7V4Zm5 3a5 5 0 0 1 5 5h2.2l-3.2 3.2L12.8 12H15a3 3 0 1 0-.88 2.12l1.42 1.42A5 5 0 1 1 12 7Zm-1 3h2v3.2l2.2 2.2-1.4 1.4-2.8-2.8V10Z'/%3E%3C/svg%3E");
}

.bee-advanced-filter-toggle__icon::before {
  width: 17px;
  height: 17px;
  border: 0;
  transform: none;
  background: #101214;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 5.5a3 3 0 0 1 5.83-1H20v2h-8.17A3 3 0 0 1 6 5.5ZM4 4.5h1v2H4v-2Zm5 0a1 1 0 1 0 .01 0H9Zm4 7a3 3 0 0 1 5.83-1H20v2h-1.17A3 3 0 0 1 13 11.5Zm-9-1h8v2H4v-2Zm12 0a1 1 0 1 0 .01 0H16Zm-8 7a3 3 0 0 1 5.83-1H20v2h-6.17A3 3 0 0 1 8 17.5Zm-4-1h3v2H4v-2Zm7 0a1 1 0 1 0 .01 0H11Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 5.5a3 3 0 0 1 5.83-1H20v2h-8.17A3 3 0 0 1 6 5.5ZM4 4.5h1v2H4v-2Zm5 0a1 1 0 1 0 .01 0H9Zm4 7a3 3 0 0 1 5.83-1H20v2h-1.17A3 3 0 0 1 13 11.5Zm-9-1h8v2H4v-2Zm12 0a1 1 0 1 0 .01 0H16Zm-8 7a3 3 0 0 1 5.83-1H20v2h-6.17A3 3 0 0 1 8 17.5Zm-4-1h3v2H4v-2Zm7 0a1 1 0 1 0 .01 0H11Z'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

@media (prefers-reduced-motion: reduce) {
  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    animation: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Quick filters full-card animation refinement and hero-aligned icons.
   Scope: CSS only. No text, HTML, JS, data, filter behavior, or layout structure changes.
*/
@media (min-width: 1100px) {
  .bee-quick-filters-card {
    isolation: isolate;
    overflow: hidden;
    background:
      radial-gradient(circle at 19% 16%, rgba(247, 216, 74, .22) 0 8%, transparent 27%),
      radial-gradient(circle at 88% 7%, rgba(255, 226, 92, .62) 0 18%, transparent 46%),
      radial-gradient(circle at 86% 82%, rgba(247, 216, 74, .34) 0 17%, transparent 48%),
      linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 253, 246, .96) 43%, rgba(255, 244, 176, .94) 100%);
  }

  .bee-quick-filters-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
      linear-gradient(rgba(16, 18, 20, .024) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16, 18, 20, .024) 1px, transparent 1px),
      radial-gradient(circle at 14% 18%, rgba(247, 216, 74, .38) 0 2px, transparent 3px),
      radial-gradient(circle at 25% 38%, rgba(247, 216, 74, .30) 0 2px, transparent 3px),
      radial-gradient(circle at 42% 22%, rgba(247, 216, 74, .34) 0 2px, transparent 3px),
      radial-gradient(circle at 54% 52%, rgba(247, 216, 74, .26) 0 2px, transparent 3px),
      radial-gradient(circle at 71% 28%, rgba(247, 216, 74, .28) 0 2px, transparent 3px),
      radial-gradient(circle at 81% 74%, rgba(247, 216, 74, .34) 0 2px, transparent 3px);
    background-size:
      64px 64px,
      64px 64px,
      100% 100%,
      100% 100%,
      100% 100%,
      100% 100%,
      100% 100%,
      100% 100%;
    opacity: .78;
    animation: beeQuickFiltersMapGridDrift 26s linear infinite;
  }

  .bee-quick-filters-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,.08) 70%, rgba(255,255,255,0) 100%),
      radial-gradient(circle at 74% 48%, rgba(255, 255, 255, .86) 0 0, rgba(255, 248, 211, .45) 0 23%, transparent 52%),
      radial-gradient(circle at 75% 48%, transparent 0 17%, rgba(247, 216, 74, .22) 17.4% 18.2%, transparent 18.8% 31%, rgba(16, 18, 20, .10) 31.4% 32.3%, transparent 33% 48%, rgba(247, 216, 74, .18) 48.4% 49.3%, transparent 50%),
      conic-gradient(from 18deg at 75% 48%, transparent 0 8%, rgba(247,216,74,.34) 8.5% 16%, transparent 16.5% 39%, rgba(16,18,20,.10) 39.5% 48%, transparent 48.5% 65%, rgba(247,216,74,.22) 65.5% 73%, transparent 73.5% 100%),
      linear-gradient(151deg, transparent 0 31%, rgba(16, 18, 20, .15) 31.2% 31.95%, transparent 32.2% 100%),
      linear-gradient(33deg, transparent 0 42%, rgba(247, 216, 74, .38) 42.2% 43.1%, transparent 43.35% 100%),
      linear-gradient(92deg, transparent 0 69%, rgba(16, 18, 20, .09) 69.2% 70%, transparent 70.3% 100%);
    opacity: .94;
    animation: beeQuickFiltersFullCardRadar 24s ease-in-out infinite alternate;
  }

  .bee-quick-filters-main::before {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(58vw, 860px) !important;
    height: 100% !important;
    border-radius: 0 !important;
    opacity: .96 !important;
    z-index: -1 !important;
    background:
      radial-gradient(circle at 31% 24%, rgba(16,18,20,.72) 0 7px, rgba(16,18,20,.16) 8px 15px, transparent 16px),
      radial-gradient(circle at 54% 20%, rgba(247,216,74,.98) 0 13px, rgba(247,216,74,.28) 14px 29px, transparent 30px),
      radial-gradient(circle at 82% 36%, rgba(16,18,20,.68) 0 8px, rgba(16,18,20,.14) 9px 18px, transparent 19px),
      radial-gradient(circle at 48% 72%, rgba(247,216,74,.92) 0 14px, rgba(247,216,74,.25) 15px 32px, transparent 33px),
      radial-gradient(circle at 76% 82%, rgba(16,18,20,.58) 0 6px, rgba(16,18,20,.12) 7px 15px, transparent 16px),
      radial-gradient(circle at 39% 90%, rgba(247,216,74,.70) 0 8px, rgba(247,216,74,.18) 9px 24px, transparent 25px),
      radial-gradient(circle at 68% 58%, rgba(255,255,255,.70), rgba(255,248,213,.22) 46%, transparent 74%);
    animation: beeQuickFiltersMapPointsPulse 7.5s ease-in-out infinite;
  }

  .bee-quick-filters-main::after {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(58vw, 860px) !important;
    height: 100% !important;
    margin-top: 0 !important;
    opacity: .72 !important;
    z-index: -1 !important;
    background:
      radial-gradient(circle at 72% 48%, transparent 0 18%, rgba(247,216,74,.34) 18.4% 19.2%, transparent 19.8% 34%, rgba(16,18,20,.12) 34.4% 35.3%, transparent 36% 52%, rgba(247,216,74,.16) 52.4% 53.3%, transparent 54%),
      conic-gradient(from 0deg at 72% 48%, transparent 0 9%, rgba(247,216,74,.55) 9.5% 17%, transparent 17.5% 45%, rgba(16,18,20,.15) 45.5% 53%, transparent 53.5% 100%);
    animation: beeQuickFiltersRadarSweepFullHeight 21s linear infinite;
  }
}

@keyframes beeQuickFiltersMapGridDrift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 64px 64px, 64px 64px, 10px -8px, -12px 9px, 14px 10px, -8px -12px, 12px 8px, -10px 11px; }
}

@keyframes beeQuickFiltersFullCardRadar {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: .88; }
  50% { transform: translate3d(-10px, 7px, 0) scale(1.018); opacity: .98; }
  100% { transform: translate3d(10px, -7px, 0) scale(1.032); opacity: .92; }
}

@keyframes beeQuickFiltersMapPointsPulse {
  0%, 100% { filter: saturate(1) brightness(1); transform: translate3d(0, 0, 0); }
  50% { filter: saturate(1.18) brightness(1.04); transform: translate3d(-8px, 5px, 0); }
}

@keyframes beeQuickFiltersRadarSweepFullHeight {
  0% { transform: rotate(0deg) scale(1.02); }
  100% { transform: rotate(360deg) scale(1.02); }
}

.bee-chip::before {
  display: inline-grid !important;
  place-items: center !important;
  width: 25px !important;
  height: 25px !important;
  flex: 0 0 25px !important;
  border-radius: 999px !important;
  background: rgba(16,18,20,.07) !important;
  color: rgba(16,18,20,.86) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.bee-chip[data-quick="all"]::before {
  content: "🏠" !important;
}

.bee-chip[data-quick-type="Κατοικία"]::before {
  content: "🏠" !important;
}

.bee-chip[data-quick-type="Επαγγελματικά"]::before {
  content: "🏢" !important;
}

.bee-chip[data-quick-type="Γη"]::before {
  content: "🌿" !important;
}

.bee-chip[data-quick-type="Επιχειρήσεις"]::before {
  content: "📈" !important;
}

.bee-chip[data-quick-availability="Πώληση"]::before {
  content: "€" !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

.bee-chip[data-quick-availability="Εκμίσθωση"]::before {
  content: "⟳" !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

.bee-chip.is-active::before {
  background: rgba(255,255,255,.42) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 6px 14px rgba(16,18,20,.12) !important;
}

@media (prefers-reduced-motion: reduce) {
  .bee-quick-filters-card::before,
  .bee-quick-filters-card::after,
  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    animation: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Quick filters full-height animation performance pass.
   Scope: CSS only. Keeps text, HTML, JS, data and filter behavior unchanged.
   Rendering safety: removes large rotating/transformed layers, avoids filter/backdrop-filter on animated layers,
   uses opacity/background-position only, and keeps the visual layer inside the full card height.
*/
@media (min-width: 1100px) {
  .bee-quick-filters-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    contain: paint;
    background:
      radial-gradient(circle at 19% 16%, rgba(247, 216, 74, .18) 0 8%, transparent 28%),
      radial-gradient(circle at 90% 8%, rgba(255, 226, 92, .54) 0 17%, transparent 45%),
      radial-gradient(circle at 89% 86%, rgba(247, 216, 74, .28) 0 18%, transparent 49%),
      linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 253, 246, .96) 44%, rgba(255, 245, 184, .92) 100%);
  }

  .bee-quick-filters-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(16, 18, 20, .022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16, 18, 20, .022) 1px, transparent 1px),
      radial-gradient(circle, rgba(247, 216, 74, .34) 0 2px, transparent 3px);
    background-size:
      68px 68px,
      68px 68px,
      166px 166px;
    background-position:
      0 0,
      0 0,
      18px 22px;
    opacity: .72;
    animation: beeQuickFiltersLightGridFullHeight 34s linear infinite;
    transform: translateZ(0);
  }

  .bee-quick-filters-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.78) 39%, rgba(255,255,255,.18) 66%, rgba(255,255,255,0) 100%),
      radial-gradient(circle at 76% 50%, rgba(255,255,255,.68) 0 16%, rgba(247,216,74,.22) 17% 18%, transparent 19% 32%, rgba(16,18,20,.085) 33% 34%, transparent 35% 52%),
      linear-gradient(151deg, transparent 0 41%, rgba(16, 18, 20, .10) 41.2% 41.9%, transparent 42.2% 100%),
      linear-gradient(34deg, transparent 0 48%, rgba(247, 216, 74, .24) 48.2% 49%, transparent 49.3% 100%);
    opacity: .88;
    animation: beeQuickFiltersSoftPulseFullHeight 12s ease-in-out infinite;
  }

  .bee-quick-filters-main::before {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(58vw, 860px) !important;
    height: 100% !important;
    border-radius: 0 !important;
    opacity: .92 !important;
    z-index: -1 !important;
    filter: none !important;
    background:
      radial-gradient(circle at 34% 24%, rgba(16,18,20,.64) 0 7px, rgba(16,18,20,.13) 8px 15px, transparent 16px),
      radial-gradient(circle at 56% 18%, rgba(247,216,74,.92) 0 13px, rgba(247,216,74,.24) 14px 29px, transparent 30px),
      radial-gradient(circle at 84% 38%, rgba(16,18,20,.58) 0 8px, rgba(16,18,20,.12) 9px 18px, transparent 19px),
      radial-gradient(circle at 50% 72%, rgba(247,216,74,.86) 0 14px, rgba(247,216,74,.22) 15px 32px, transparent 33px),
      radial-gradient(circle at 77% 83%, rgba(16,18,20,.50) 0 6px, rgba(16,18,20,.10) 7px 15px, transparent 16px),
      radial-gradient(circle at 42% 91%, rgba(247,216,74,.62) 0 8px, rgba(247,216,74,.14) 9px 24px, transparent 25px);
    animation: beeQuickFiltersMapPointsOpacity 8s ease-in-out infinite;
    transform: translateZ(0) !important;
  }

  .bee-quick-filters-main::after {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(58vw, 860px) !important;
    height: 100% !important;
    margin-top: 0 !important;
    opacity: .58 !important;
    z-index: -1 !important;
    filter: none !important;
    background:
      radial-gradient(circle at 75% 50%, transparent 0 18%, rgba(247,216,74,.28) 18.4% 19.2%, transparent 19.8% 34%, rgba(16,18,20,.10) 34.4% 35.2%, transparent 36% 52%),
      linear-gradient(90deg, transparent 0%, rgba(247,216,74,.18) 54%, transparent 76%),
      linear-gradient(151deg, transparent 0 38%, rgba(16,18,20,.11) 38.2% 38.9%, transparent 39.2% 100%);
    animation: beeQuickFiltersRadarOpacityFullHeight 10s ease-in-out infinite;
    transform: translateZ(0) !important;
  }
}

@keyframes beeQuickFiltersLightGridFullHeight {
  0% {
    background-position: 0 0, 0 0, 18px 22px;
  }
  100% {
    background-position: 68px 68px, 68px 68px, 184px 188px;
  }
}

@keyframes beeQuickFiltersSoftPulseFullHeight {
  0%, 100% {
    opacity: .82;
  }
  50% {
    opacity: .96;
  }
}

@keyframes beeQuickFiltersMapPointsOpacity {
  0%, 100% {
    opacity: .74;
  }
  50% {
    opacity: .96;
  }
}

@keyframes beeQuickFiltersRadarOpacityFullHeight {
  0%, 100% {
    opacity: .46;
  }
  50% {
    opacity: .66;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bee-quick-filters-card::before,
  .bee-quick-filters-card::after,
  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    animation: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Section transition optimization between testimonials and quick filters.
   Scope: CSS only. Keeps text, HTML, JS and component order unchanged.
   Goal: reduce the visible vertical gap and blend the two section backgrounds smoothly.
*/
.bee-call-proof {
  padding-bottom: clamp(26px, 3vw, 42px) !important;
  background:
    linear-gradient(180deg, var(--bee-bg) 0%, #f7f7f2 58%, rgba(255, 250, 222, .72) 100%) !important;
}

.bee-call-proof::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(70px, 7vw, 118px);
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(246, 247, 245, 0) 0%, rgba(255, 250, 224, .72) 54%, rgba(255, 248, 207, .94) 100%);
}

.bee-call-proof__inner {
  position: relative;
  z-index: 1;
}

.bee-call-proof + .bee-quick-filters {
  margin-top: -18px;
  padding-top: clamp(12px, 1.8vw, 22px) !important;
  background:
    linear-gradient(180deg, rgba(255, 248, 207, .94) 0%, rgba(255, 250, 224, .78) 34%, var(--bee-bg) 100%);
}

.bee-call-proof + .bee-quick-filters .bee-quick-filters-card {
  margin-top: 0;
}

@media (max-width: 760px) {
  .bee-call-proof {
    padding-bottom: 18px !important;
  }

  .bee-call-proof::after {
    height: 58px;
  }

  .bee-call-proof + .bee-quick-filters {
    margin-top: -10px;
    padding-top: 10px !important;
  }
}

/* 2026-05-02 Europe/Athens
   Quick filters creative map search animation pass.
   Scope: CSS only. Keeps text, HTML, JS, data, search state and layout order unchanged.
   Rendering safety: full-card-height visual layer, no blur filters, no heavy rotating oversized layers.
*/
@media (min-width: 1100px) {
  .bee-quick-filters-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    contain: paint;
    background:
      radial-gradient(circle at 21% 18%, rgba(255, 255, 255, .96) 0 16%, transparent 37%),
      radial-gradient(circle at 84% 12%, rgba(255, 226, 86, .68) 0 18%, transparent 45%),
      radial-gradient(circle at 83% 78%, rgba(247, 216, 74, .40) 0 22%, transparent 54%),
      linear-gradient(135deg, rgba(255,255,255,.99) 0%, rgba(255,253,242,.96) 42%, rgba(255,244,170,.94) 100%) !important;
  }

  .bee-quick-filters-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(16, 18, 20, .024) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16, 18, 20, .024) 1px, transparent 1px),
      radial-gradient(circle, rgba(247, 216, 74, .28) 0 2px, transparent 3px);
    background-size: 70px 70px, 70px 70px, 152px 152px;
    background-position: 0 0, 0 0, 24px 30px;
    opacity: .80;
    animation: beeQuickMapGridSearchDrift 36s linear infinite;
    transform: translateZ(0);
  }

  .bee-quick-filters-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 37%, rgba(255,255,255,.36) 57%, rgba(255,255,255,0) 80%),
      linear-gradient(24deg, transparent 0 45%, rgba(247,216,74,.44) 45.2% 46.1%, transparent 46.4% 100%),
      linear-gradient(151deg, transparent 0 42%, rgba(16,18,20,.16) 42.15% 42.85%, transparent 43.1% 100%),
      linear-gradient(98deg, transparent 0 66%, rgba(16,18,20,.085) 66.2% 66.8%, transparent 67.1% 100%),
      radial-gradient(circle at 76% 49%, rgba(255,255,255,.72) 0 15%, rgba(247,216,74,.21) 16% 17%, transparent 18% 32%, rgba(16,18,20,.11) 33% 34%, transparent 35% 51%, rgba(247,216,74,.17) 52% 53%, transparent 54% 100%),
      conic-gradient(from 312deg at 76% 49%, transparent 0 7%, rgba(247,216,74,.40) 7.5% 16%, transparent 16.5% 37%, rgba(16,18,20,.11) 37.5% 45%, transparent 45.5% 67%, rgba(247,216,74,.22) 67.5% 75%, transparent 75.5% 100%);
    opacity: .95;
    animation: beeQuickMapSearchBreath 12s ease-in-out infinite;
    transform: translateZ(0);
  }

  .bee-quick-filters-main::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(61vw, 930px) !important;
    height: 100% !important;
    z-index: -2 !important;
    pointer-events: none !important;
    border-radius: 0 !important;
    opacity: .98 !important;
    filter: none !important;
    background:
      radial-gradient(circle at 32% 25%, rgba(16,18,20,.72) 0 7px, rgba(16,18,20,.14) 8px 20px, transparent 21px),
      radial-gradient(circle at 55% 19%, rgba(247,216,74,.98) 0 13px, rgba(247,216,74,.28) 14px 36px, transparent 37px),
      radial-gradient(circle at 83% 36%, rgba(16,18,20,.64) 0 8px, rgba(16,18,20,.13) 9px 24px, transparent 25px),
      radial-gradient(circle at 50% 72%, rgba(247,216,74,.94) 0 14px, rgba(247,216,74,.26) 15px 40px, transparent 41px),
      radial-gradient(circle at 76% 84%, rgba(16,18,20,.54) 0 6px, rgba(16,18,20,.12) 7px 20px, transparent 21px),
      radial-gradient(circle at 41% 90%, rgba(247,216,74,.68) 0 9px, rgba(247,216,74,.20) 10px 32px, transparent 33px),
      radial-gradient(circle at 63% 57%, rgba(247,216,74,.32) 0 8px, transparent 9px),
      linear-gradient(28deg, transparent 0 37%, rgba(247,216,74,.40) 37.15% 38%, transparent 38.25% 100%),
      linear-gradient(149deg, transparent 0 35%, rgba(16,18,20,.15) 35.15% 35.85%, transparent 36.1% 100%),
      radial-gradient(circle at 70% 50%, transparent 0 20%, rgba(247,216,74,.28) 20.3% 21.1%, transparent 21.7% 37%, rgba(16,18,20,.11) 37.3% 38.2%, transparent 38.8% 57%, rgba(247,216,74,.16) 57.3% 58.1%, transparent 58.7% 100%);
    animation: beeQuickMapPointsSearchPulse 6.8s ease-in-out infinite;
    transform: translateZ(0) !important;
  }

  .bee-quick-filters-main::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(61vw, 930px) !important;
    height: 100% !important;
    margin-top: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
    opacity: .72 !important;
    filter: none !important;
    background:
      radial-gradient(circle at 72% 50%, rgba(255,255,255,.46) 0 13%, transparent 14%),
      conic-gradient(from 262deg at 72% 50%, transparent 0 3%, rgba(247,216,74,.52) 3.5% 10%, transparent 10.5% 100%),
      repeating-linear-gradient(32deg, transparent 0 29px, rgba(255,255,255,.18) 30px 31px);
    animation: beeQuickMapScanSweep 8.5s steps(12, end) infinite;
    transform: translateZ(0) !important;
  }
}

@keyframes beeQuickMapGridSearchDrift {
  0% { background-position: 0 0, 0 0, 24px 30px; }
  100% { background-position: 70px 70px, 70px 70px, 176px 182px; }
}

@keyframes beeQuickMapSearchBreath {
  0%, 100% { opacity: .88; }
  50% { opacity: .98; }
}

@keyframes beeQuickMapPointsSearchPulse {
  0%, 100% { opacity: .76; background-position: 0 0; }
  22% { opacity: .98; }
  48% { opacity: .84; background-position: 6px -4px; }
  72% { opacity: 1; }
}

@keyframes beeQuickMapScanSweep {
  0% { opacity: .44; background-position: 0 0, 0 0, 0 0; }
  50% { opacity: .78; background-position: 0 0, 0 0, 42px 0; }
  100% { opacity: .44; background-position: 0 0, 0 0, 84px 0; }
}

.bee-chip::before {
  content: "" !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 25px !important;
  height: 25px !important;
  flex: 0 0 25px !important;
  border-radius: 999px !important;
  background-color: rgba(16,18,20,.78) !important;
  box-shadow: none !important;
  mask-position: center !important;
  mask-repeat: no-repeat !important;
  mask-size: 18px 18px !important;
  -webkit-mask-position: center !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-size: 18px 18px !important;
}

.bee-chip.is-active::before {
  background-color: #101214 !important;
  box-shadow: none !important;
}

.bee-chip[data-quick="all"]::before,
.bee-chip[data-quick-type="Κατοικία"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 10.8 12 3l9 7.8-1.35 1.52L18 10.9V20h-5.2v-5.6h-1.6V20H6v-9.1l-1.65 1.42L3 10.8Zm5 7.2h1.2v-5.6h5.6V18H16V9.16l-4-3.47-4 3.47V18Z'/%3E%3C/svg%3E") !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 10.8 12 3l9 7.8-1.35 1.52L18 10.9V20h-5.2v-5.6h-1.6V20H6v-9.1l-1.65 1.42L3 10.8Zm5 7.2h1.2v-5.6h5.6V18H16V9.16l-4-3.47-4 3.47V18Z'/%3E%3C/svg%3E") !important;
}

.bee-chip[data-quick-type="Επαγγελματικά"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4h14v16H5V4Zm2 2v12h2V8h2v10h2V8h2v10h2V6H7Zm1 3h1.5v1.5H8V9Zm0 3h1.5v1.5H8V12Zm6.5-3H16v1.5h-1.5V9Zm0 3H16v1.5h-1.5V12Z'/%3E%3C/svg%3E") !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4h14v16H5V4Zm2 2v12h2V8h2v10h2V8h2v10h2V6H7Zm1 3h1.5v1.5H8V9Zm0 3h1.5v1.5H8V12Zm6.5-3H16v1.5h-1.5V9Zm0 3H16v1.5h-1.5V12Z'/%3E%3C/svg%3E") !important;
}

.bee-chip[data-quick-type="Γη"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 17.5 9.5 6l5 7 2.2-3.5L20 17.5H4Zm3.15-2h9.8l-1.55-3.75-.78 1.25 1.8 2.5h-2.45L9.9 9.8l-2.75 5.7Z'/%3E%3C/svg%3E") !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 17.5 9.5 6l5 7 2.2-3.5L20 17.5H4Zm3.15-2h9.8l-1.55-3.75-.78 1.25 1.8 2.5h-2.45L9.9 9.8l-2.75 5.7Z'/%3E%3C/svg%3E") !important;
}

.bee-chip[data-quick-type="Επιχειρήσεις"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 6V4h8v2h4v14H4V6h4Zm2 0h4V5.8h-4V6Zm-4 6.4V18h12v-5.6l-5 2.1v1H11v-1l-5-2.1Zm12-4.4H6v2.25l5.6 2.35h.8l5.6-2.35V8Z'/%3E%3C/svg%3E") !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 6V4h8v2h4v14H4V6h4Zm2 0h4V5.8h-4V6Zm-4 6.4V18h12v-5.6l-5 2.1v1H11v-1l-5-2.1Zm12-4.4H6v2.25l5.6 2.35h.8l5.6-2.35V8Z'/%3E%3C/svg%3E") !important;
}

.bee-chip[data-quick-availability="Πώληση"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.2 4.8c1.15 0 2.24.43 3.08 1.2l1.24-1.48A6.58 6.58 0 0 0 13.2 3a6.4 6.4 0 0 0-6.08 4.4H5.4v1.7h1.35a6.63 6.63 0 0 0 0 1.8H5.4v1.7h1.72A6.4 6.4 0 0 0 13.2 17c1.66 0 3.18-.62 4.32-1.65l-1.24-1.48a4.57 4.57 0 0 1-3.08 1.2 4.45 4.45 0 0 1-3.95-2.47h5.35v-1.7H8.72a5.55 5.55 0 0 1 0-1.8h5.88V7.4H9.25a4.45 4.45 0 0 1 3.95-2.6ZM6 19h12v2H6v-2Z'/%3E%3C/svg%3E") !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.2 4.8c1.15 0 2.24.43 3.08 1.2l1.24-1.48A6.58 6.58 0 0 0 13.2 3a6.4 6.4 0 0 0-6.08 4.4H5.4v1.7h1.35a6.63 6.63 0 0 0 0 1.8H5.4v1.7h1.72A6.4 6.4 0 0 0 13.2 17c1.66 0 3.18-.62 4.32-1.65l-1.24-1.48a4.57 4.57 0 0 1-3.08 1.2 4.45 4.45 0 0 1-3.95-2.47h5.35v-1.7H8.72a5.55 5.55 0 0 1 0-1.8h5.88V7.4H9.25a4.45 4.45 0 0 1 3.95-2.6ZM6 19h12v2H6v-2Z'/%3E%3C/svg%3E") !important;
}

.bee-chip[data-quick-availability="Εκμίσθωση"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a7 7 0 0 1 6.32 10H21l-4 4-4-4h3.04A5 5 0 1 0 12 17v2a7.5 7.5 0 0 1 0-15Zm-1 4h2v4.25l3 1.8-1 1.72-4-2.37V8Z'/%3E%3C/svg%3E") !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a7 7 0 0 1 6.32 10H21l-4 4-4-4h3.04A5 5 0 1 0 12 17v2a7.5 7.5 0 0 1 0-15Zm-1 4h2v4.25l3 1.8-1 1.72-4-2.37V8Z'/%3E%3C/svg%3E") !important;
}

@media (prefers-reduced-motion: reduce) {
  .bee-quick-filters-card::before,
  .bee-quick-filters-card::after,
  .bee-quick-filters-main::before,
  .bee-quick-filters-main::after {
    animation: none !important;
  }
}

/* 2026-05-02 Europe/Athens
   Broker chip pseudo icon removal patch
   Scope: advisor broker filter cards only.
   Purpose: remove the inherited quick-filter pseudo icon/dot from broker chips without changing HTML, text, data flow, or layout.
*/
.bee-broker-chip::before,
.bee-broker-chip::after,
.bee-advisor-filter-panel .bee-broker-chip::before,
.bee-advisor-filter-panel .bee-broker-chip::after,
.bee-hero-advisor-panel .bee-broker-chip::before,
.bee-hero-advisor-panel .bee-broker-chip::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  flex: 0 0 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

/* 2026-05-02 Europe/Athens
   Quick filters desktop logo surgical fix.
   Scope: visual only. Adds the real FullLogo asset as a contained decorative layer in desktop mode.
   Safety: hidden while advanced filters are open, so it cannot overlap the form controls.
*/
.bee-quick-filters-desktop-logo {
  display: none;
}

@media (min-width: 1100px) {
  .bee-quick-filters-layout {
    position: relative;
  }

  .bee-quick-filters-desktop-logo {
    display: flex;
    position: absolute;
    right: clamp(84px, 10vw, 190px);
    top: 50%;
    width: clamp(240px, 18vw, 360px);
    transform: translateY(-48%);
    z-index: 1;
    pointer-events: none;
    opacity: .92;
    filter: drop-shadow(0 22px 36px rgba(16, 18, 20, .12));
  }

  .bee-quick-filters-desktop-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .bee-quick-filters-main {
    position: relative;
    z-index: 2;
  }

  .bee-search-panel {
    position: relative;
    z-index: 5;
  }

  .bee-quick-filters-main:has(.bee-search-panel.is-open) .bee-quick-filters-desktop-logo,
  .bee-quick-filters-layout:has(.bee-search-panel.is-open) .bee-quick-filters-desktop-logo {
    opacity: 0;
    visibility: hidden;
  }
}

/* 2026-05-02 Europe/Athens
   Advanced search controls visual optimization patch.
   Scope: CSS only. Preserves HTML, text, form ids, JS behavior and existing layout.
*/
.bee-search-panel--flow.bee-advanced-search-panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 52%, rgba(255,248,215,.72) 100%) !important;
  border: 1px solid rgba(16,18,20,.08) !important;
  box-shadow:
    0 28px 82px rgba(16,18,20,.13),
    inset 0 1px 0 rgba(255,255,255,.96),
    inset 0 -1px 0 rgba(247,216,74,.18) !important;
}

.bee-search-panel--flow.bee-advanced-search-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  pointer-events: none;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(247,216,74,.20), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(16,18,20,.055), transparent 28%),
    linear-gradient(120deg, transparent 0 46%, rgba(247,216,74,.10) 46.5% 47.5%, transparent 48% 100%);
  opacity: .85;
}

.bee-search-panel--flow .bee-intent-row {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,248,249,.88)) !important;
  border: 1px solid rgba(16,18,20,.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 14px 34px rgba(16,18,20,.08) !important;
}

.bee-search-panel--flow .bee-intent-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16,18,20,.075) !important;
  background:
    linear-gradient(180deg, #fff 0%, #f9f9f7 100%) !important;
  color: rgba(16,18,20,.72) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.bee-search-panel--flow .bee-intent-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(247,216,74,.20) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity .22s ease, transform .22s ease;
}

.bee-search-panel--flow .bee-intent-btn:hover,
.bee-search-panel--flow .bee-intent-btn:focus-visible {
  color: var(--bee-ink) !important;
  border-color: rgba(16,18,20,.16) !important;
  box-shadow: 0 14px 30px rgba(16,18,20,.095) !important;
  transform: translateY(-1px);
}

.bee-search-panel--flow .bee-intent-btn:hover::after,
.bee-search-panel--flow .bee-intent-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.bee-search-panel--flow .bee-intent-btn.is-active,
.bee-search-panel--flow .bee-intent-btn:active {
  background:
    linear-gradient(180deg, #ffe46a 0%, #f6d43a 100%) !important;
  color: #101214 !important;
  border-color: rgba(16,18,20,.15) !important;
  box-shadow:
    0 16px 34px rgba(247,216,74,.30),
    inset 0 1px 0 rgba(255,255,255,.62) !important;
}

.bee-search-panel--flow .bee-field {
  position: relative;
}

.bee-search-panel--flow .bee-field span {
  color: rgba(16,18,20,.54) !important;
  font-weight: 900 !important;
  letter-spacing: .055em !important;
}

.bee-search-panel--flow .bee-field input,
.bee-search-panel--flow .bee-field select {
  color: var(--bee-ink) !important;
  border: 1px solid rgba(16,18,20,.105) !important;
  background:
    linear-gradient(180deg, #fff 0%, rgba(255,255,255,.94) 100%) !important;
  box-shadow:
    0 12px 30px rgba(16,18,20,.065),
    inset 0 1px 0 rgba(255,255,255,.96) !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.bee-search-panel--flow .bee-field input:hover,
.bee-search-panel--flow .bee-field select:hover {
  border-color: rgba(16,18,20,.18) !important;
  box-shadow:
    0 15px 34px rgba(16,18,20,.085),
    inset 0 1px 0 rgba(255,255,255,.98) !important;
}

.bee-search-panel--flow .bee-field input:focus,
.bee-search-panel--flow .bee-field select:focus {
  border-color: rgba(247,190,18,.78) !important;
  background: #fff !important;
  box-shadow:
    0 0 0 4px rgba(247,216,74,.22),
    0 18px 38px rgba(16,18,20,.10),
    inset 0 1px 0 rgba(255,255,255,1) !important;
  transform: translateY(-1px);
}

.bee-search-panel--flow .bee-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 50px !important;
  background-image:
    radial-gradient(circle at calc(100% - 31px) 50%, rgba(247,216,74,.26) 0 18px, transparent 19px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23101214' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #fff 0%, rgba(255,255,255,.94) 100%) !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center, right 22px center, 0 0 !important;
  background-size: auto, 16px 16px, auto !important;
}

.bee-search-panel--flow .bee-field--wide input {
  background:
    radial-gradient(circle at 18px 50%, rgba(247,216,74,.18) 0 14px, transparent 15px),
    linear-gradient(180deg, #fff 0%, rgba(255,255,255,.94) 100%) !important;
}

.bee-btn--search-primary,
.bee-search-call-link {
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.bee-btn--search-primary:hover,
.bee-btn--search-primary:focus-visible,
.bee-search-call-link:hover,
.bee-search-call-link:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.bee-search-clear {
  text-underline-offset: 4px;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.bee-search-clear:hover,
.bee-search-clear:focus-visible {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .bee-search-panel--flow .bee-intent-btn,
  .bee-search-panel--flow .bee-field input,
  .bee-search-panel--flow .bee-field select,
  .bee-btn--search-primary,
  .bee-search-call-link,
  .bee-search-clear {
    transition: none !important;
    transform: none !important;
  }
}

/* 2026-05-02 11:45 Europe/Athens
   Patch: remove sticky behavior from the simple call CTA.
   Scope: #beeMobileStickyCta only. Keeps the CTA available in normal document flow without fixed/mobile sticky positioning.
*/
#beeMobileStickyCta.bee-mobile-sticky-cta {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  display: block !important;
  width: min(var(--bee-container), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
  backdrop-filter: none;
}

#beeMobileStickyCta .bee-mobile-sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  min-height: 58px;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0 !important;
  }

  #beeMobileStickyCta.bee-mobile-sticky-cta {
    width: min(var(--bee-container), calc(100% - 22px));
    margin: 16px auto 0;
    padding: 0 !important;
  }
}

/* Upgrade 2026-05-02 Europe/Athens: smart sticky active filters control in results section */
.bee-results-filter-dock {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 88;
  pointer-events: none;
}

.bee-results-filter-dock[hidden] {
  display: none !important;
}

.bee-results-filter-dock__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, .58fr) minmax(260px, 1.35fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(36, 38, 40, .96), rgba(20, 21, 22, .94));
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.bee-results-filter-dock__text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.bee-results-filter-dock__eyebrow {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 218, 57, .82);
}

.bee-results-filter-dock__text strong {
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bee-results-filter-dock__chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 1px;
  scrollbar-width: none;
  min-width: 0;
}

.bee-results-filter-dock__chips::-webkit-scrollbar {
  display: none;
}

.bee-results-filter-chip,
.bee-results-filter-dock__empty {
  flex: 0 0 auto;
  max-width: 260px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .105);
  color: #fff;
  min-height: 34px;
  padding: 7px 9px 7px 11px;
  font-size: 12px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.bee-results-filter-chip {
  cursor: pointer;
}

.bee-results-filter-chip__label {
  color: rgba(255, 255, 255, .62);
  font-weight: 900;
}

.bee-results-filter-chip__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bee-results-filter-chip strong {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.bee-results-filter-chip:hover,
.bee-results-filter-chip:focus-visible {
  background: rgba(255, 255, 255, .18);
  outline: none;
}

.bee-results-filter-chip:hover strong,
.bee-results-filter-chip:focus-visible strong {
  background: var(--bee-yellow);
  color: var(--bee-ink);
}

.bee-results-filter-dock__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.bee-results-filter-dock__btn {
  border: 0;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}

.bee-results-filter-dock__btn--dark {
  background: var(--bee-yellow);
  color: var(--bee-ink);
  box-shadow: 0 10px 24px rgba(255, 218, 57, .18);
}

.bee-results-filter-dock__btn--light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
}

.bee-results-filter-dock--no-filters .bee-results-filter-dock__btn--light {
  display: none;
}

@media (max-width: 780px) {
  .bee-results-filter-dock {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .bee-results-filter-dock__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .bee-results-filter-dock__text {
    padding: 0 2px;
  }

  .bee-results-filter-dock__eyebrow {
    font-size: 9px;
  }

  .bee-results-filter-dock__text strong {
    font-size: 13px;
  }

  .bee-results-filter-dock__chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1px;
  }

  .bee-results-filter-chip,
  .bee-results-filter-dock__empty {
    max-width: min(280px, 78vw);
    min-height: 32px;
    padding: 6px 8px 6px 10px;
    font-size: 11px;
  }

  .bee-results-filter-dock__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .bee-results-filter-dock__btn {
    width: 100%;
    min-height: 37px;
    padding: 8px 10px;
    font-size: 13px;
  }
}


/* Upgrade 2026-05-02 Europe/Athens: active filter chips show values only, broker first as avatar */
.bee-results-filter-chip__label {
  display: none !important;
}

.bee-results-filter-chip__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bee-results-filter-chip--broker {
  width: 38px;
  height: 38px;
  min-height: 38px;
  max-width: 38px;
  padding: 0;
  position: relative;
  justify-content: center;
  overflow: visible;
  border-color: rgba(255, 218, 57, .55);
  background: rgba(255, 218, 57, .12);
}

.bee-results-filter-chip--broker strong {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 17px;
  height: 17px;
  font-size: 13px;
}

.bee-results-filter-chip__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(255, 218, 57, .92);
  background: rgba(255, 255, 255, .16);
}

.bee-results-filter-chip__avatar--initials {
  display: grid;
  place-items: center;
  color: var(--bee-ink);
  font-size: 11px;
  font-weight: 950;
  background: var(--bee-yellow);
}
