.auth-screen{gap:var(--auth-spacing-form-gap);width:100%;font-family:var(--auth-font-family);font-size:var(--auth-font-size-base);font-weight:var(--auth-font-weight-body);color:var(--auth-color-text);box-sizing:border-box;flex-direction:column;display:flex}.auth-screen__header{flex-direction:column;gap:.25rem;display:flex}.auth-screen__heading{font-size:var(--auth-font-size-heading);font-weight:var(--auth-font-weight-heading);color:var(--auth-color-text);margin:0}.auth-screen__subtext{font-size:var(--auth-font-size-label);color:var(--auth-color-text-muted);margin:0}.auth-screen__form{gap:var(--auth-spacing-form-gap);flex-direction:column;display:flex}.auth-screen__name-row{gap:var(--auth-spacing-form-gap);grid-template-columns:1fr 1fr;display:grid}.auth-screen__actions{justify-content:flex-start;display:flex}.auth-screen__footer{text-align:center;font-size:var(--auth-font-size-label);color:var(--auth-color-text-muted);margin:0}.auth-guard--dimmed{opacity:.4;pointer-events:none;transition:opacity .2s}.auth-input{flex-direction:column;gap:.375rem;display:flex}.auth-input__label{font-size:var(--auth-font-size-label);font-weight:var(--auth-font-weight-body);color:var(--auth-color-text)}.auth-input__wrapper{align-items:center;display:flex;position:relative}.auth-input__field{width:100%;font-family:var(--auth-font-family);font-size:var(--auth-font-size-base);color:var(--auth-color-text);background:var(--auth-color-surface);border:1px solid var(--auth-color-border);border-radius:var(--auth-radius-input);box-sizing:border-box;outline:none;padding:.625rem .75rem;transition:border-color .15s,box-shadow .15s}.auth-input__field::placeholder{color:var(--auth-color-text-muted)}.auth-input__field:focus{border-color:var(--auth-color-primary);box-shadow:0 0 0 2px color-mix(in srgb, var(--auth-color-primary) 20%, transparent)}.auth-input--error .auth-input__field{border-color:var(--auth-color-error)}.auth-input--error .auth-input__field:focus{box-shadow:0 0 0 2px color-mix(in srgb, var(--auth-color-error) 20%, transparent)}.auth-input__toggle{cursor:pointer;color:var(--auth-color-text-muted);background:0 0;border:none;border-radius:.25rem;justify-content:center;align-items:center;padding:.25rem;display:flex;position:absolute;right:.5rem}.auth-input__toggle:hover{color:var(--auth-color-text)}.auth-input__error{font-size:var(--auth-font-size-label);color:var(--auth-color-error);margin:0}.auth-button{width:100%;font-family:var(--auth-font-family);font-size:var(--auth-font-size-base);font-weight:var(--auth-font-weight-button);border-radius:var(--auth-radius-button);cursor:pointer;box-sizing:border-box;border:1px solid #0000;justify-content:center;align-items:center;gap:.5rem;padding:.625rem 1.25rem;line-height:1.5;text-decoration:none;transition:background-color .15s,color .15s,border-color .15s,opacity .15s;display:inline-flex}.auth-button:disabled{opacity:.55;cursor:not-allowed}.auth-button-tooltip-wrapper{display:inline-flex;position:relative}.auth-button-tooltip{white-space:nowrap;color:#fff;background:var(--auth-color-text,#171717);pointer-events:none;opacity:0;border-radius:6px;padding:6px 12px;font-size:.75rem;font-weight:500;transition:opacity .15s;position:absolute;bottom:calc(100% + 8px);left:50%;transform:translate(-50%)}.auth-button-tooltip:after{content:"";border:5px solid #0000;border-top-color:var(--auth-color-text,#171717);position:absolute;top:100%;left:50%;transform:translate(-50%)}.auth-button-tooltip-wrapper:hover .auth-button-tooltip{opacity:1}.auth-button--primary{background:var(--auth-color-primary);color:var(--auth-color-background)}.auth-button--primary:hover:not(:disabled){background:var(--auth-color-primary-hover)}.auth-button--secondary{color:var(--auth-color-primary);border-color:var(--auth-color-border);background:0 0}.auth-button--secondary:hover:not(:disabled){background:var(--auth-color-surface)}.auth-button--ghost{color:var(--auth-color-primary);background:0 0}.auth-button--ghost:hover:not(:disabled){background:var(--auth-color-surface)}.auth-button--danger{background:var(--auth-color-error);color:#fff}.auth-button--danger:hover:not(:disabled){opacity:.9}.auth-button__label{align-items:center;gap:.5rem;display:inline-flex}.auth-button--loading .auth-button__label{opacity:.6}@keyframes auth-spin{to{transform:rotate(360deg)}}.auth-button__spinner{animation:.8s linear infinite auth-spin}.auth-alert{font-size:var(--auth-font-size-label);border-radius:var(--auth-radius-input);padding:.75rem 1rem;line-height:1.5}.auth-alert--error{background:color-mix(in srgb, var(--auth-color-error) 10%, transparent);color:var(--auth-color-error);border:1px solid color-mix(in srgb, var(--auth-color-error) 25%, transparent)}.auth-alert--success{background:color-mix(in srgb, var(--auth-color-success) 10%, transparent);color:var(--auth-color-success);border:1px solid color-mix(in srgb, var(--auth-color-success) 25%, transparent)}.auth-alert--info{background:color-mix(in srgb, var(--auth-color-primary) 10%, transparent);color:var(--auth-color-primary);border:1px solid color-mix(in srgb, var(--auth-color-primary) 25%, transparent)}.auth-link{font-family:var(--auth-font-family);font-size:inherit;font-weight:var(--auth-font-weight-button);color:var(--auth-color-primary);cursor:pointer;background:0 0;border:none;padding:0;text-decoration:none;display:inline}.auth-link:hover{text-decoration:underline}.auth-divider{color:var(--auth-color-text-muted);font-size:var(--auth-font-size-label);align-items:center;gap:1rem;display:flex}.auth-divider:before,.auth-divider:after{content:"";background:var(--auth-color-border);flex:1;height:1px}.auth-checkbox__label{font-size:var(--auth-font-size-label);color:var(--auth-color-text);cursor:pointer;align-items:flex-start;gap:.5rem;display:flex}.auth-checkbox__input{accent-color:var(--auth-color-primary);cursor:pointer;margin:.125rem 0 0}.auth-checkbox__text{line-height:1.4}.auth-checkbox__text a{color:var(--auth-color-primary);text-decoration:underline}.auth-checkbox__error{font-size:var(--auth-font-size-label);color:var(--auth-color-error);margin:.25rem 0 0}.auth-logo{justify-content:flex-start;display:flex}.auth-logo__image{height:var(--auth-logo-height);object-fit:contain}.auth-social-buttons{flex-direction:column;gap:.5rem;display:flex}.auth-social-button{width:100%;font-family:var(--auth-font-family);font-size:var(--auth-font-size-base);font-weight:var(--auth-font-weight-body);color:var(--auth-color-text);background:var(--auth-color-background);border:1px solid var(--auth-color-border);border-radius:var(--auth-radius-button);cursor:pointer;box-sizing:border-box;justify-content:center;align-items:center;gap:.625rem;padding:.625rem 1rem;transition:background-color .15s,border-color .15s;display:inline-flex}.auth-social-button:hover:not(:disabled){background:var(--auth-color-surface);border-color:var(--auth-color-text-muted)}.auth-social-button:disabled{opacity:.55;cursor:not-allowed}.auth-social-button__icon{flex-shrink:0}.auth-card{font-family:var(--auth-font-family);color:var(--auth-color-text);background:var(--auth-color-background);border-radius:var(--auth-radius-card);justify-content:center;align-items:center;width:100%;min-height:100vh;display:flex}.auth-card__form{width:100%;max-width:480px;padding:var(--auth-spacing-padding);box-sizing:border-box}.auth-card--split{border-radius:0;grid-template-columns:1fr 1fr;justify-content:stretch;align-items:stretch;display:grid}.auth-card--split .auth-card__hero{display:flex}.auth-card--split .auth-card__form{justify-content:center;align-items:center;max-width:none;padding:3rem;display:flex}.auth-card--split .auth-card__form>*{width:100%;max-width:480px}.auth-hero-panel{background-color:var(--auth-color-surface);box-sizing:border-box;background-repeat:no-repeat;flex-direction:column;justify-content:flex-end;width:100%;height:100%;padding:2.5rem;display:flex;position:relative;overflow:hidden}.auth-hero-panel__overlay{position:absolute;inset:0}.auth-hero-panel__body{z-index:1;flex-direction:column;gap:.75rem;display:flex;position:relative}.auth-hero-panel__heading{font-size:2rem;font-weight:var(--auth-font-weight-heading);color:var(--auth-color-text);margin:0;line-height:1.2}.auth-hero-panel__description{font-size:var(--auth-font-size-base);color:var(--auth-color-text-muted);max-width:400px;margin:0;line-height:1.6}.auth-hero-panel__content{margin-top:.5rem}.auth-flow-button__trigger{width:auto}.auth-overlay{z-index:999;background:var(--auth-color-overlay,#00000080);opacity:0;transition:opacity var(--auth-drawer-duration,.3s) ease;position:fixed;inset:0}.auth-overlay--visible{opacity:1}.auth-drawer{z-index:1000;background:var(--auth-color-background);font-family:var(--auth-font-family);color:var(--auth-color-text);box-sizing:border-box;transition:transform var(--auth-drawer-duration,.3s) cubic-bezier(.32, .72, 0, 1);flex-direction:column;display:flex;position:fixed;overflow-y:auto}@media (prefers-reduced-motion:reduce){.auth-drawer,.auth-overlay{transition-duration:.01ms}}.auth-drawer--right{width:var(--auth-drawer-width,420px);max-width:100vw;height:100vh;top:0;right:0;transform:translate(100%)}.auth-drawer--right.auth-drawer--open{transform:translate(0)}.auth-drawer--right.auth-drawer--closing{transform:translate(100%)}.auth-drawer--left{width:var(--auth-drawer-width,420px);max-width:100vw;height:100vh;top:0;left:0;transform:translate(-100%)}.auth-drawer--left.auth-drawer--open{transform:translate(0)}.auth-drawer--left.auth-drawer--closing{transform:translate(-100%)}.auth-drawer--bottom{max-height:var(--auth-drawer-max-height,92vh);border-radius:var(--auth-radius-drawer) var(--auth-radius-drawer) 0 0;bottom:0;left:0;right:0;transform:translateY(100%)}.auth-drawer--bottom.auth-drawer--open{transform:translateY(0)}.auth-drawer--bottom.auth-drawer--closing{transform:translateY(100%)}.auth-drawer__close{z-index:1;cursor:pointer;width:2rem;height:2rem;color:var(--auth-color-text-muted);background:0 0;border:none;border-radius:.25rem;justify-content:center;align-items:center;padding:0;transition:color .15s,background-color .15s;display:flex;position:absolute;top:.75rem;right:.75rem}.auth-drawer__close:hover{color:var(--auth-color-text);background:var(--auth-color-surface)}.auth-drawer__content{padding:var(--auth-spacing-padding);flex:1;padding-top:3rem;overflow-y:auto}.property-badge{font-family:var(--auth-font-family,system-ui, sans-serif);text-transform:uppercase;letter-spacing:.04em;border-radius:.1875rem;padding:.25rem .625rem;font-size:.6875rem;font-weight:700;line-height:1.4;display:inline-block}.property-badge--available-now{color:#fff;background:#16a34a}.property-badge--available-from{color:#fff;background:#2563eb}.property-badge--let-agreed{color:#fff;background:#d97706}.property-badge--let{color:#fff;background:#6b7280}.property-badge--under-offer{color:#fff;background:#dc2626}.property-badge--unavailable{color:#fff;background:#9ca3af}.property-carousel{background:var(--auth-color-surface,#f5f5f5);width:100%;height:100%;min-height:240px;position:relative;overflow:hidden}.property-carousel--empty{justify-content:center;align-items:center;display:flex}.property-carousel__placeholder{height:100%;color:var(--auth-color-text-muted,#737373);font-size:var(--auth-font-size-label,.875rem);justify-content:center;align-items:center;display:flex}.property-carousel__slide{object-fit:cover;width:100%;height:100%;display:block}.property-carousel__badge{z-index:2;position:absolute;bottom:.75rem;left:.75rem}.property-carousel__prev,.property-carousel__next{z-index:2;background:color-mix(in srgb, var(--auth-color-background,#fff) 85%, transparent);cursor:pointer;width:2rem;height:2rem;color:var(--auth-color-text,#171717);opacity:0;border:none;border-radius:50%;justify-content:center;align-items:center;padding:0;transition:background-color .15s;display:flex;position:absolute;top:50%;transform:translateY(-50%)}.property-carousel:hover .property-carousel__prev,.property-carousel:hover .property-carousel__next{opacity:1}.property-carousel__prev{left:.5rem}.property-carousel__next{right:.5rem}.property-carousel__prev:hover,.property-carousel__next:hover{background:var(--auth-color-background,#fff)}.property-carousel__counter{z-index:2;color:#fff;font-family:var(--auth-font-family,system-ui, sans-serif);background:#0009;border-radius:.1875rem;align-items:center;gap:.25rem;padding:.2rem .5rem;font-size:.75rem;display:flex;position:absolute;bottom:.75rem;right:.75rem}.property-price{flex-direction:column;gap:.125rem;display:flex}.property-price__label{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text-muted,#737373);text-transform:uppercase;letter-spacing:.03em;font-size:.75rem}.property-price__amount{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);font-size:1.5rem;font-weight:700;line-height:1.2}.property-price__amount--fallback{opacity:.7;font-size:1.125rem;font-style:italic}.property-price__frequency{color:var(--auth-color-text-muted,#737373);font-size:.875rem;font-weight:400}.auth-toggle-wrap{display:inline-block}.auth-toggle{cursor:pointer;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);-webkit-user-select:none;user-select:none;align-items:center;gap:.5rem;display:inline-flex}.auth-toggle--label-left{flex-direction:row-reverse}.auth-toggle--disabled{cursor:not-allowed;opacity:.55}.auth-toggle__input{clip:rect(0 0 0 0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.auth-toggle__track{background:var(--auth-color-border,#d4d4d4);border-radius:999px;flex-shrink:0;width:2.25rem;height:1.25rem;transition:background .18s;display:inline-block;position:relative}.auth-toggle__thumb{background:#fff;border-radius:50%;width:calc(1.25rem - 4px);height:calc(1.25rem - 4px);transition:transform .18s;position:absolute;top:2px;left:2px;box-shadow:0 1px 2px #00000040}.auth-toggle__input:checked+.auth-toggle__track{background:var(--auth-color-primary,#171717)}.auth-toggle__input:checked+.auth-toggle__track .auth-toggle__thumb{transform:translate(1rem)}.auth-toggle__input:focus-visible+.auth-toggle__track{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px}.auth-toggle__label{font-size:.875rem}.auth-toggle--sm .auth-toggle__track{width:1.75rem;height:1rem}.auth-toggle--sm .auth-toggle__thumb{width:calc(1rem - 4px);height:calc(1rem - 4px)}.auth-toggle--sm .auth-toggle__input:checked+.auth-toggle__track .auth-toggle__thumb{transform:translate(.75rem)}.auth-toggle--sm .auth-toggle__label{font-size:.8125rem}.price-summary{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);flex-direction:column;gap:.75rem;display:flex}.price-summary__lines{flex-direction:column;gap:.625rem;display:flex}.price-summary__line{justify-content:space-between;align-items:center;gap:.75rem;font-size:.875rem;line-height:1.3;display:flex}.price-summary__line--indent{border-left:2px solid var(--auth-color-border,#e5e5e5);margin-left:.25rem;padding-left:.625rem}.price-summary__line--muted{color:var(--auth-color-text-muted,#737373)}.price-summary__label{align-items:center;gap:.375rem;min-width:0;display:inline-flex}.price-summary__info{color:var(--auth-color-text-muted,#737373);cursor:help;align-items:center;display:inline-flex}.price-summary__amount{font-variant-numeric:tabular-nums;flex-shrink:0;font-weight:600}.price-summary__line--muted .price-summary__amount{font-weight:400}.price-summary__divider{background:var(--auth-color-border,#e5e5e5);height:1px}.price-summary__total{justify-content:space-between;align-items:baseline;gap:.75rem;display:flex}.price-summary__total-label{font-size:1rem;font-weight:700}.price-summary__total-amount{font-variant-numeric:tabular-nums;font-size:1rem;font-weight:700}.card{background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-card,1rem);font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);flex-direction:column;gap:1rem;padding:1.25rem 1.5rem;display:flex}.card__header{flex-direction:column;gap:.25rem;display:flex}.card__title{margin:0;font-size:1.0625rem;font-weight:700;line-height:1.3}.card__text{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.875rem;line-height:1.4}.card__body{flex-direction:column;gap:.875rem;display:flex}.calendar{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);--calendar-cell:2.25rem;flex-direction:column;gap:.75rem;display:flex}.calendar__header{justify-content:space-between;align-items:center;gap:.5rem;display:flex}.calendar__title{font-size:.9375rem;font-weight:600}.calendar__nav{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-button,.5rem);background:var(--auth-color-background,#fff);width:2rem;height:2rem;color:var(--auth-color-text,#171717);cursor:pointer;justify-content:center;align-items:center;padding:0;transition:background .15s,border-color .15s;display:inline-flex}.calendar__nav:hover{background:color-mix(in srgb, var(--auth-color-text,#171717) 6%, transparent);border-color:var(--auth-color-text-muted,#737373)}.calendar__nav:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px}.calendar__weekdays,.calendar__grid{grid-template-columns:repeat(7,1fr);gap:.25rem;display:grid}.calendar__weekday{text-transform:uppercase;letter-spacing:.03em;color:var(--auth-color-text-muted,#737373);justify-content:center;align-items:center;font-size:.6875rem;font-weight:600;display:flex}.calendar__day{width:100%;height:var(--calendar-cell);border-radius:var(--auth-radius-button,.5rem);color:var(--auth-color-text,#171717);font-variant-numeric:tabular-nums;cursor:pointer;background:0 0;border:1px solid #0000;justify-content:center;align-items:center;padding:0;font-size:.875rem;transition:background .12s,color .12s,border-color .12s;display:inline-flex}.calendar__day--blank{cursor:default}.calendar__day:not(.calendar__day--blank):not(:disabled):hover{background:color-mix(in srgb, var(--auth-color-primary,#171717) 10%, transparent)}.calendar__day--today{border-color:var(--auth-color-primary,#171717);font-weight:600}.calendar__day--selected,.calendar__day--selected:hover{background:var(--auth-color-primary,#171717);border-color:var(--auth-color-primary,#171717);color:var(--auth-color-background,#fff);font-weight:600}.calendar__day--disabled,.calendar__day:disabled{color:var(--auth-color-text-muted,#737373);opacity:.4;cursor:not-allowed;text-decoration:line-through}.calendar__day:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px}.calendar__time{margin-top:.25rem}@media (pointer:coarse){.calendar{--calendar-cell:2.75rem}}.editable-time-display{font-family:var(--auth-font-family,system-ui, sans-serif);flex-direction:column;gap:.625rem;display:flex}.editable-time-display__row{justify-content:space-between;align-items:center;gap:.75rem;font-size:.875rem;display:flex}.editable-time-display__label{color:var(--auth-color-text-muted,#737373)}.editable-time-display__value{color:var(--auth-color-text,#171717);font:inherit;text-underline-offset:3px;cursor:pointer;background:0 0;border:0;padding:0;font-weight:600;text-decoration:underline;transition:color .15s}.editable-time-display__value:hover{color:var(--auth-color-primary,#171717)}.editable-time-display__value:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px;border-radius:3px}.editable-time-display--field{flex-direction:row;gap:.5rem}.editable-time-display__field{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);background:var(--auth-color-background,#fff);min-width:9.5rem;color:var(--auth-color-text,#171717);text-align:left;cursor:pointer;flex-direction:column;gap:.125rem;padding:.375rem .75rem;transition:border-color .15s;display:flex}.editable-time-display__field:hover{border-color:var(--auth-color-text-muted,#737373)}.editable-time-display__field:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px}.editable-time-display__field-label{color:var(--auth-color-primary,#171717);font-size:.6875rem}.editable-time-display__field-row{justify-content:space-between;align-items:center;gap:.5rem;display:flex}.editable-time-display__field-value{font-size:.875rem;font-weight:600}.editable-time-display__chevron{color:var(--auth-color-text-muted,#737373);flex-shrink:0}.date-time-edit-modal{flex-direction:column;gap:1rem;display:flex}.date-time-edit-modal__subtext{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.875rem;line-height:1.4}.date-time-edit-modal__fieldtabs{gap:.5rem;display:flex}.date-time-edit-modal__tab{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-button,.5rem);background:var(--auth-color-background,#fff);color:var(--auth-color-text,#171717);text-align:left;cursor:pointer;flex-direction:column;flex:1;gap:.125rem;padding:.5rem .75rem;transition:border-color .15s,background .15s;display:flex}.date-time-edit-modal__tab--active{border-color:var(--auth-color-primary,#171717);background:color-mix(in srgb, var(--auth-color-primary,#171717) 6%, transparent)}.date-time-edit-modal__tab:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px}.date-time-edit-modal__tab-label{text-transform:uppercase;letter-spacing:.03em;color:var(--auth-color-text-muted,#737373);font-size:.6875rem}.date-time-edit-modal__tab-value{font-size:.8125rem;font-weight:600}.date-time-edit-modal__footer{justify-content:flex-end;display:flex}.parking-card{background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-card,1rem);font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);flex-direction:column;gap:.75rem;padding:.75rem;transition:border-color .15s,box-shadow .15s;display:flex}.parking-card--active{border-color:var(--auth-color-primary,#171717);box-shadow:0 0 0 1px var(--auth-color-primary,#171717)}.parking-card--sold-out{opacity:.75}.parking-card__top{gap:.75rem;display:flex}.parking-card__media{border-radius:var(--auth-radius-input,.5rem);background:var(--auth-color-surface,#f5f5f5);flex-shrink:0;width:5rem;height:5rem;overflow:hidden}.parking-card__thumb{object-fit:cover;width:100%;height:100%;display:block}.parking-card__placeholder{text-align:center;width:100%;height:100%;color:var(--auth-color-text-muted,#737373);justify-content:center;align-items:center;padding:.25rem;font-size:.6875rem;display:flex}.parking-card__body{flex-direction:column;flex:1;gap:.375rem;min-width:0;display:flex}.parking-card__heading{justify-content:space-between;align-items:flex-start;gap:.5rem;display:flex}.parking-card__title-heading{min-width:0;margin:0}.parking-card__heading-end{flex-shrink:0;align-items:center;gap:.5rem;display:flex}.parking-card__distance--top{white-space:nowrap}.parking-card__title{font:inherit;color:var(--auth-color-text,#171717);text-align:left;text-underline-offset:2px;cursor:pointer;background:0 0;border:0;padding:0;font-size:.9375rem;font-weight:600;line-height:1.3;text-decoration:underline}.parking-card__title:hover{color:var(--auth-color-primary,#171717)}.parking-card__title:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px;border-radius:3px}.parking-card__save{flex-shrink:0}.parking-card__meta{flex-wrap:wrap;align-items:center;gap:.5rem;font-size:.8125rem;display:flex}.parking-card__bookings{color:var(--auth-color-text-muted,#737373);align-items:center;gap:.25rem;margin:0;font-size:.8125rem;display:flex}.parking-card__shield{color:var(--auth-color-success,#16a34a)}.parking-card__distance{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.8125rem}.parking-card__features,.parking-card__flags{flex-wrap:wrap;gap:.25rem;display:inline-flex}.parking-card__chips{flex-wrap:nowrap;align-items:center;gap:.25rem;min-width:0;display:flex;position:relative}.parking-card__chips-measure{white-space:nowrap;visibility:hidden;pointer-events:none;gap:.25rem;display:flex;position:absolute;top:0;left:0}.parking-card__chips-more{color:var(--auth-color-text,#171717);background:var(--auth-color-surface,#f5f5f5);border:1px solid var(--auth-color-border,#e5e5e5);cursor:pointer;border-radius:.25rem;flex-shrink:0;justify-content:center;align-items:center;padding:.1875rem .4rem;font-size:.6875rem;font-weight:600;line-height:1.4;display:inline-flex;position:relative}.parking-card__chips-popover{z-index:20;background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);opacity:0;visibility:hidden;flex-wrap:wrap;gap:.25rem;width:max-content;max-width:15rem;padding:.5rem;transition:opacity .12s;display:flex;position:absolute;bottom:calc(100% + .375rem);right:0;box-shadow:0 6px 20px #00000024}.parking-card__chips-more:hover .parking-card__chips-popover,.parking-card__chips-more:focus-within .parking-card__chips-popover{opacity:1;visibility:visible}.parking-card--vertical .parking-card__top{flex-direction:column}.parking-card--vertical .parking-card__media{aspect-ratio:16/10;width:100%;height:auto}.parking-card__media .property-carousel{height:100%;min-height:0}.listing-toolbar{border-bottom:1px solid var(--auth-color-border,#e5e5e5);font-family:var(--auth-font-family,system-ui, sans-serif);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.5rem 1rem;padding-bottom:.5rem;display:flex}.listing-toolbar__sort{flex:0 auto;min-width:0}.listing-toolbar__end{align-items:center;gap:.75rem;margin-left:auto;display:flex}.listing-toolbar__results{color:var(--auth-color-text-muted,#737373);white-space:nowrap;font-size:.8125rem}.listing-toolbar__filters{width:auto;padding:.375rem .75rem}.listing-toolbar__filters-badge{background:var(--auth-color-primary,#171717);min-width:1.125rem;height:1.125rem;color:var(--auth-color-background,#fff);border-radius:999px;justify-content:center;align-items:center;padding:0 .3125rem;font-size:.6875rem;font-weight:700;display:inline-flex}.parking-search-header{font-family:var(--auth-font-family,system-ui, sans-serif);background:var(--auth-color-background,#fff);border-bottom:1px solid var(--auth-color-border,#e5e5e5);flex-direction:column;display:flex}.parking-search-header__bar{background:var(--auth-color-text,#171717);color:var(--auth-color-background,#fff);justify-content:space-between;align-items:center;gap:1rem;padding:.75rem 1.5rem;display:flex}.parking-search-header__nav{align-items:center;gap:1rem;display:flex}.parking-search-header__search{align-items:center;gap:.75rem;padding:.75rem 1.5rem;display:flex}.parking-search-header__search-bar{flex:1;min-width:0}.parking-search-header__dates{flex-shrink:0}.parking-search{height:100%;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);background:var(--auth-color-background,#fff);flex-direction:column;display:flex}.parking-search__body{flex:1;grid-template-columns:minmax(360px,34rem) 1fr;min-height:0;display:grid}.parking-search__list{border-right:1px solid var(--auth-color-border,#e5e5e5);flex-direction:column;gap:.75rem;padding:.75rem 1rem;display:flex;overflow-y:auto}.parking-search__cards{flex-direction:column;gap:.75rem;display:flex}.parking-search__map{min-height:24rem;position:relative}.parking-search__map-placeholder{background:var(--auth-color-surface,#f5f5f5);background-image:repeating-linear-gradient(45deg, transparent, transparent 14px, color-mix(in srgb, var(--auth-color-border,#e5e5e5) 60%, transparent) 14px, color-mix(in srgb, var(--auth-color-border,#e5e5e5) 60%, transparent) 15px);width:100%;height:100%;color:var(--auth-color-text-muted,#737373);letter-spacing:.08em;text-transform:uppercase;justify-content:center;align-items:center;font-size:.875rem;display:flex}@media (max-width:768px){.parking-search__body{grid-template-columns:1fr}.parking-search__map{display:none}.parking-search-header__search{flex-wrap:wrap}}.accordion{font-family:var(--auth-font-family,system-ui, sans-serif);flex-direction:column;display:flex}.accordion__item+.accordion__item{border-top:1px solid var(--auth-color-border,#e5e5e5)}.accordion__header{width:100%;color:var(--auth-color-text,#171717);font:inherit;text-align:left;cursor:pointer;background:0 0;border:0;align-items:center;gap:.5rem;padding:.75rem 0;font-size:.9375rem;font-weight:600;display:flex}.accordion__header:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px;border-radius:4px}.accordion__icon{color:var(--auth-color-success,#16a34a);display:inline-flex}.accordion__title{flex:1;min-width:0}.accordion__chevron{color:var(--auth-color-text-muted,#737373);flex-shrink:0;transition:transform .18s}.accordion__item--open .accordion__chevron{transform:rotate(180deg)}.accordion__panel{color:var(--auth-color-text-muted,#737373);padding:0 0 .875rem;font-size:.875rem;line-height:1.5}.vehicle-information__toggle{margin-bottom:.25rem}.vehicle-information__list{flex-direction:column;gap:.5rem;display:flex}.vehicle-information__option{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);background:var(--auth-color-background,#fff);color:var(--auth-color-text,#171717);cursor:pointer;justify-content:space-between;align-items:center;gap:.75rem;padding:.625rem .875rem;transition:border-color .15s,background .15s;display:flex}.vehicle-information__option:hover{border-color:var(--auth-color-text-muted,#737373)}.vehicle-information__option--selected{border-color:var(--auth-color-primary,#171717);background:color-mix(in srgb, var(--auth-color-primary,#171717) 6%, transparent)}.vehicle-information__option:focus-visible{outline:2px solid color-mix(in srgb, var(--auth-color-primary,#171717) 45%, transparent);outline-offset:2px}.vehicle-information__reg{letter-spacing:.04em;font-variant-numeric:tabular-nums;font-weight:700}.vehicle-information__tags{flex-wrap:wrap;gap:.25rem;display:inline-flex}.vehicle-information__add{flex-direction:column;gap:.75rem;display:flex}.checkout-screen{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);max-width:1040px;margin:0 auto;padding:1.5rem}.checkout-screen__heading{margin:0 0 1.25rem;font-size:1.5rem;font-weight:700}.checkout-screen__grid{grid-template-columns:minmax(0,1fr) minmax(0,22rem);align-items:start;gap:1.5rem;display:grid}.checkout-screen__main,.checkout-screen__aside{flex-direction:column;gap:1rem;display:flex}.checkout-screen__notice{align-items:center;gap:.5rem;display:flex}.checkout-screen__notice-icon{flex-shrink:0}.checkout-screen__duration{justify-content:space-between;align-items:center;gap:.75rem;font-size:.875rem;display:flex}.checkout-screen__duration-label{color:var(--auth-color-text-muted,#737373)}.checkout-screen__add-date{text-align:center}.checkout-screen__promo-row{align-items:center;gap:1rem;display:flex}.checkout-screen__promo-art{color:var(--auth-color-text,#171717);flex-shrink:0}.checkout-screen__promo-title{margin:0 0 .25rem;font-size:1rem;font-weight:700}.checkout-screen__promo-text{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.875rem;line-height:1.4}.checkout-screen__payment-note{color:var(--auth-color-text-muted,#737373);align-items:center;gap:.5rem;margin:0;font-size:.875rem;display:flex}.checkout-screen__pay{margin-top:.25rem}.checkout-screen__map{margin:-.25rem -.25rem .25rem}.checkout-screen__map-placeholder{border-radius:var(--auth-radius-input,.5rem);background:var(--auth-color-surface,#f5f5f5);background-image:repeating-linear-gradient(45deg, transparent, transparent 14px, color-mix(in srgb, var(--auth-color-border,#e5e5e5) 60%, transparent) 14px, color-mix(in srgb, var(--auth-color-border,#e5e5e5) 60%, transparent) 15px);height:9rem;color:var(--auth-color-text-muted,#737373);letter-spacing:.08em;text-transform:uppercase;justify-content:center;align-items:center;font-size:.8125rem;display:flex}.checkout-screen__listing-title{margin:0;font-size:1rem;font-weight:700}.checkout-screen__policy-text{margin:0}.checkout-screen__trustpilot{justify-content:center;align-items:center;gap:.375rem;font-size:.8125rem;display:flex}.checkout-screen__trustpilot-label{font-weight:700;text-decoration:underline}.checkout-screen__stars{gap:2px;display:inline-flex}.checkout-screen__star{background:var(--auth-color-success,#16a34a);justify-content:center;align-items:center;width:18px;height:18px;display:inline-flex}.checkout-screen__trustpilot-brand{font-weight:700}@media (max-width:900px){.checkout-screen__grid{grid-template-columns:1fr}}.property-address{flex-direction:column;gap:.125rem;display:flex}.property-address__street{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);font-size:1.0625rem;font-weight:600;line-height:1.3}.property-address__postcode{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373)}.property-features{flex-wrap:wrap;gap:.375rem;margin:0;padding:0;list-style:none;display:flex}.property-features__pill{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);background:var(--auth-color-surface,#f5f5f5);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:.1875rem;align-items:center;padding:.1875rem .5rem;font-size:.75rem;line-height:1.4;display:inline-flex}.property-meta{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373);border-top:1px solid var(--auth-color-border,#e5e5e5);background:var(--auth-color-background,#fff);align-items:center;gap:.75rem;padding:.75rem 1rem;display:flex}.property-meta__item{white-space:nowrap;align-items:center;gap:.3rem;display:flex}.property-meta__item--furnished{text-transform:uppercase;letter-spacing:.03em;font-size:.75rem}.property-meta__icon{color:var(--auth-color-text-muted,#737373);flex-shrink:0}.property-meta__divider{background:var(--auth-color-border,#e5e5e5);flex-shrink:0;width:1px;height:1rem}.wishlist-button{background:color-mix(in srgb, var(--auth-color-background,#fff) 90%, transparent);cursor:pointer;color:var(--auth-color-text-muted,#737373);border:none;border-radius:50%;justify-content:center;align-items:center;padding:0;transition:color .15s,background-color .15s;display:flex}.wishlist-button--md{width:2.25rem;height:2.25rem}.wishlist-button--md .wishlist-button__icon{width:20px;height:20px}.wishlist-button--sm{width:1.75rem;height:1.75rem}.wishlist-button--sm .wishlist-button__icon{width:16px;height:16px}.wishlist-button:hover{color:var(--auth-color-error,#dc2626);background:var(--auth-color-background,#fff)}.wishlist-button--saved{color:var(--auth-color-error,#dc2626)}.chip{font-family:var(--auth-font-family,system-ui, sans-serif);white-space:nowrap;border-radius:.25rem;align-items:center;font-weight:600;display:inline-flex}.chip--sm{padding:.1875rem .5rem;font-size:.6875rem}.chip--md{padding:.25rem .625rem;font-size:.75rem}.chip--default{background:var(--auth-color-surface,#f5f5f5);color:var(--auth-color-text,#171717);border:1px solid var(--auth-color-border,#e5e5e5)}.chip--success{color:#166534;background:#dcfce7}.chip--info{color:#1e40af;background:#dbeafe}.chip--warning{color:#92400e;background:#fef3c7}.verification-badge{font-family:var(--auth-font-family,system-ui, sans-serif);white-space:nowrap;border-radius:9999px;align-items:center;gap:.25rem;padding:.125rem .5rem;font-size:.6875rem;font-weight:600;line-height:1.4;display:inline-flex}.verification-badge--verified{color:#065f46;background:#d1fae5;border:1.5px solid #059669}.verification-badge--not-verified{color:#b91c1c;background:#fef2f2;border:1.5px solid #f87171}@media (prefers-color-scheme:dark){[data-theme=dark] .verification-badge--verified,.verification-badge--verified:is([data-theme=dark] *){color:#6ee7b7;background:#064e3b40;border-color:#34d39966}[data-theme=dark] .verification-badge--not-verified,.verification-badge--not-verified:is([data-theme=dark] *){color:#fca5a5;background:#7f1d1d40;border-color:#f8717166}}[data-theme=dark] .verification-badge--verified{color:#6ee7b7;background:#064e3b40;border-color:#34d39966}[data-theme=dark] .verification-badge--not-verified{color:#fca5a5;background:#7f1d1d40;border-color:#f8717166}.rating{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);align-items:center;gap:.25rem;display:flex}.rating__star{color:#16a34a;flex-shrink:0}.rating__score{color:var(--auth-color-text,#171717);font-weight:700}.rating__count{color:var(--auth-color-text-muted,#737373)}.property-card{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-card,.5rem);background:var(--auth-color-background,#fff);font-family:var(--auth-font-family,system-ui, sans-serif);grid-template-rows:auto auto;grid-template-columns:420px 1fr;transition:box-shadow .2s;display:grid;position:relative;overflow:hidden}.property-card:hover{box-shadow:0 4px 12px #00000014}.property-card[role=button]{cursor:pointer}.property-card__media{isolation:isolate;grid-area:1/1/2/2;height:280px;position:relative;overflow:hidden}.property-card__media .property-carousel{height:100%}.property-card__body{flex-direction:column;grid-area:1/2/2/3;gap:.75rem;padding:1.25rem 1.5rem;display:flex}.property-card__description{font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373);-webkit-line-clamp:3;-webkit-box-orient:vertical;margin:0;line-height:1.6;display:-webkit-box;overflow:hidden}.property-card__actions{gap:.5rem;margin-top:auto;display:flex}.property-card__cta{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);font-weight:var(--auth-font-weight-button,600);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;box-sizing:border-box;border:1px solid #0000;padding:.5rem 1.25rem;transition:background-color .15s,border-color .15s}.property-card__cta--primary{background:var(--auth-color-primary,#171717);color:var(--auth-color-background,#fff)}.property-card__cta--primary:hover:not(:disabled){background:var(--auth-color-primary-hover,#333)}.property-card__cta:disabled{opacity:.45;cursor:not-allowed}.property-card__tooltip-wrapper{display:inline-flex;position:relative}.property-card__tooltip{white-space:nowrap;color:#fff;background:var(--auth-color-text,#171717);pointer-events:none;opacity:0;border-radius:6px;padding:6px 12px;font-size:.75rem;font-weight:500;transition:opacity .15s;position:absolute;bottom:calc(100% + 8px);left:50%;transform:translate(-50%)}.property-card__tooltip:after{content:"";border:5px solid #0000;border-top-color:var(--auth-color-text,#171717);position:absolute;top:100%;left:50%;transform:translate(-50%)}.property-card__tooltip-wrapper:hover .property-card__tooltip{opacity:1}.property-card__cta--secondary{color:var(--auth-color-primary,#171717);border-color:var(--auth-color-border,#e5e5e5);background:0 0}.property-card__cta--secondary:hover{background:var(--auth-color-surface,#f5f5f5);border-color:var(--auth-color-text-muted,#737373)}.property-card__footer{grid-area:2/1/3/-1}.property-card--vertical{grid-template-rows:auto 1fr auto;grid-template-columns:1fr;max-width:400px}.property-card--vertical .property-card__media{grid-area:auto/1;height:240px}.property-card--vertical .property-card__body,.property-card--vertical .property-card__footer{grid-area:auto/1}.property-card--compact{border:1px solid var(--auth-color-border,#e5e5e5);grid-template-rows:auto;grid-template-columns:180px 1fr}.property-card--compact .property-card__media{aspect-ratio:1;border-radius:var(--auth-radius-card,.5rem) 0 0 var(--auth-radius-card,.5rem);grid-area:1/1;height:auto;min-height:auto;overflow:hidden}.property-card--compact .property-card__body{grid-area:1/2;gap:.375rem;padding:1rem 1.25rem}.property-card__thumb{object-fit:cover;width:100%;height:100%;display:block}.property-card__title{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0;font-size:1.0625rem;font-weight:700;line-height:1.3;display:-webkit-box;overflow:hidden}.property-card__features-inline{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text-muted,#737373);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0;font-size:.8125rem;line-height:1.5;display:-webkit-box;overflow:hidden}.property-card__compact-footer{justify-content:space-between;align-items:center;margin-top:auto;padding-top:.5rem;display:flex}.property-card__rating{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);align-items:center;gap:.25rem;display:flex}.property-card__rating-star{flex-shrink:0}.property-card__rating-score{color:var(--auth-color-text,#171717);font-weight:700}.property-card__rating-count{color:var(--auth-color-text-muted,#737373)}.property-card--compact .property-card__save{width:2rem;height:2rem;top:.5rem;right:.5rem}.property-card--compact .property-price{flex-direction:row;align-items:baseline;gap:.25rem}.property-card--compact .property-price__label{text-transform:none;letter-spacing:0;font-size:.8125rem}.property-card--compact .property-price__amount{font-size:1.125rem}.property-card__compact-view{width:100%;margin-top:auto;padding:.375rem .75rem;font-size:.8125rem}.property-card--gallery{grid-template-rows:auto;grid-template-columns:1fr 1fr}.property-card--gallery .property-card__media{min-height:auto}.property-card__header{justify-content:space-between;align-items:flex-start;gap:1rem;display:flex}.property-card__meta-inline{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373);margin:.25rem 0 0}.property-card__contact{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);font-weight:var(--auth-font-weight-button,600);color:var(--auth-color-text,#171717);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;white-space:nowrap;background:0 0;align-items:center;gap:.375rem;padding:.5rem 1rem;transition:background-color .15s,border-color .15s;display:inline-flex}.property-card__contact:hover{background:var(--auth-color-surface,#f5f5f5);border-color:var(--auth-color-text-muted,#737373)}.property-card__save{z-index:5;background:color-mix(in srgb, var(--auth-color-background,#fff) 90%, transparent);cursor:pointer;width:2.25rem;height:2.25rem;color:var(--auth-color-text-muted,#737373);border:none;border-radius:50%;justify-content:center;align-items:center;padding:0;transition:color .15s,background-color .15s;display:flex;position:absolute;top:.75rem;right:.75rem}.property-card__save:hover{color:var(--auth-color-error,#dc2626);background:var(--auth-color-background,#fff)}.property-card__media{position:relative}.property-card__gallery{flex-direction:column;gap:.25rem;height:100%;display:flex}.property-card__gallery-hero{flex:1;min-height:200px;position:relative;overflow:hidden}.property-card__gallery-hero img{object-fit:cover;width:100%;height:100%;display:block}.property-card__gallery-badge{z-index:2;position:absolute;top:.75rem;left:.75rem}.property-card__gallery-counter{z-index:2;color:#fff;font-family:var(--auth-font-family,system-ui, sans-serif);background:#0009;border-radius:.1875rem;align-items:center;gap:.25rem;padding:.2rem .5rem;font-size:.75rem;display:flex;position:absolute;bottom:.75rem;right:.75rem}.property-card__gallery-thumbs{grid-template-columns:1fr 1fr;gap:.25rem;height:120px;display:grid}.property-card__gallery-thumbs img{object-fit:cover;width:100%;height:100%;display:block}.property-card__gallery-placeholder{height:100%;color:var(--auth-color-text-muted,#737373);font-size:var(--auth-font-size-label,.875rem);background:var(--auth-color-surface,#f5f5f5);justify-content:center;align-items:center;display:flex}.property-card__agent{border-top:1px solid var(--auth-color-border,#e5e5e5);justify-content:space-between;align-items:center;gap:.75rem;margin-top:auto;padding-top:.75rem;display:flex}.property-card__agent-logo{object-fit:contain;height:1.5rem}.property-card__agent-name{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373)}.property-card--active{border-color:var(--auth-color-primary,#c9a96e);box-shadow:0 0 0 2px var(--auth-color-primary,#c9a96e)}.property-card__fees-link{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;border:none;margin-top:.125rem;padding:0;font-size:.75rem;text-decoration:underline;display:inline-block}.property-card__fees-link:hover{color:var(--auth-color-primary,#c9a96e)}.property-card__highlights{grid-template-columns:1fr 1fr;gap:.375rem 1.5rem;margin:0;padding:0;list-style:none;display:grid}.property-card__highlight{color:var(--auth-color-text,#171717);-webkit-line-clamp:2;-webkit-box-orient:vertical;padding-left:1rem;font-size:.8125rem;line-height:1.5;display:-webkit-box;position:relative;overflow:hidden}.property-card__highlight:before{content:"";background:var(--auth-color-primary,#c9a96e);border-radius:50%;width:6px;height:6px;position:absolute;top:.5em;left:0}.property-card__agent-contact{border-top:1px solid var(--auth-color-border,#e5e5e5);align-items:center;gap:.75rem;padding-top:.75rem;display:flex}.property-card__agent-avatar{object-fit:cover;border-radius:50%;flex-shrink:0;width:2rem;height:2rem}.property-card__agent-details{flex-direction:column;gap:.0625rem;min-width:0;display:flex}.property-card__agent-contact-name{color:var(--auth-color-text,#171717);font-size:.8125rem;font-weight:600}.property-card__agent-agency{color:var(--auth-color-text-muted,#737373);font-size:.75rem}.property-card__agent-phone{color:var(--auth-color-primary,#c9a96e);font-size:.75rem;text-decoration:none}.property-card__contact-now{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-primary,#c9a96e);cursor:pointer;white-space:nowrap;background:0 0;border:none;margin-left:auto;padding:0;font-size:.75rem;font-weight:600}.property-card__contact-now:hover{text-decoration:underline}@media (max-width:768px){.property-card,.property-card--horizontal,.property-card--gallery{grid-template-columns:1fr}.property-card__media,.property-card--horizontal .property-card__media{grid-column:1;min-height:200px}.property-card__body,.property-card__footer{grid-column:1}.property-card--compact{grid-template-columns:120px 1fr}.property-card__highlights{grid-template-columns:1fr}.property-meta{flex-wrap:wrap;gap:.5rem}}.select{flex-direction:column;gap:.375rem;display:flex}.select__label{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);font-weight:var(--auth-font-weight-body,400);color:var(--auth-color-text,#171717)}.select__field{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-base,1rem);color:var(--auth-color-text,#171717);background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);appearance:none;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-position:right .625rem center;background-repeat:no-repeat;outline:none;padding:.5rem 2rem .5rem .75rem;transition:border-color .15s,box-shadow .15s}.select__field:focus{border-color:var(--auth-color-primary,#171717);box-shadow:0 0 0 2px color-mix(in srgb, var(--auth-color-primary) 20%, transparent)}.select__field:disabled{opacity:.55;cursor:not-allowed}.search-bar{width:100%;position:relative}.search-bar__form{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);background:var(--auth-color-background,#fff);align-items:stretch;display:flex;overflow:hidden}.search-bar__input-wrap{flex:1;align-items:center;gap:.5rem;min-width:0;padding-left:1rem;display:flex}.search-bar__icon{color:var(--auth-color-text-muted,#737373);flex-shrink:0}.search-bar__input{min-width:0;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);background:0 0;border:none;outline:none;flex:1;padding:.75rem .5rem;font-size:.875rem}.search-bar__input:focus-visible{outline:none}.search-bar__input::placeholder{color:var(--auth-color-text-muted,#737373)}.search-bar__clear{cursor:pointer;color:var(--auth-color-text-muted,#737373);background:0 0;border:none;align-items:center;padding:0 .5rem;transition:color .15s;display:flex}.search-bar__clear:hover{color:var(--auth-color-text,#171717)}.search-bar__chip{background:var(--auth-color-border,#ffffff1f);border:1px solid var(--auth-color-border,#ffffff2e);color:var(--auth-color-text,#171717);white-space:nowrap;border-radius:1rem;flex-shrink:0;align-items:center;gap:.25rem;padding:.25rem .5rem;font-size:.8125rem;font-weight:500;display:inline-flex}.search-bar__chip-remove{cursor:pointer;width:16px;height:16px;color:var(--auth-color-text-muted,#737373);background:0 0;border:none;border-radius:50%;justify-content:center;align-items:center;padding:0;transition:color .15s,background .15s;display:inline-flex}.search-bar__chip-remove:hover{color:var(--auth-color-text,#171717);background:var(--auth-color-border,#00000014)}.search-bar__button{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:.875rem;font-weight:var(--auth-font-weight-button,600);color:var(--auth-color-background,#fff);background:var(--auth-color-primary,#171717);cursor:pointer;white-space:nowrap;border:none;align-items:center;gap:.375rem;padding:.75rem 1.25rem;transition:background-color .15s;display:inline-flex}.search-bar__button:hover{background:var(--auth-color-primary-hover,#333)}.search-bar__dropdown{z-index:50;border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);background:var(--auth-color-background,#fff);max-height:400px;margin-top:.25rem;position:absolute;top:100%;left:0;right:0;overflow-y:auto;box-shadow:0 8px 24px #0000001f}.search-bar__group-label{text-transform:uppercase;letter-spacing:.05em;color:var(--auth-color-text-muted,#737373);background:var(--auth-color-surface,#f5f5f5);padding:.5rem 1rem;font-size:.6875rem;font-weight:600}.search-bar__suggestion{width:100%;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);text-align:left;cursor:pointer;background:0 0;border:none;align-items:center;gap:.625rem;padding:.625rem 1rem;font-size:.875rem;transition:background-color .1s;display:flex}.search-bar__suggestion:hover,.search-bar__suggestion--active{background:var(--auth-color-surface,#f5f5f5);color:var(--auth-color-primary,#171717)}.search-panel__use-location{width:100%;font-family:var(--auth-font-family,system-ui, sans-serif);text-transform:uppercase;letter-spacing:.03em;color:var(--auth-color-primary,#c9a96e);border:none;border-bottom:1px solid var(--auth-color-border,#e5e5e5);cursor:pointer;text-align:left;background:0 0;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.8125rem;font-weight:600;display:flex}.search-panel__use-location:hover{background:var(--auth-color-surface,#f5f5f5)}.search-panel__use-location:disabled{opacity:.6;cursor:wait}.search-bar__suggestion-icon{color:var(--auth-color-text-muted,#737373);flex-shrink:0}.search-bar__loading{color:var(--auth-color-text-muted,#737373);padding:.75rem 1rem;font-size:.8125rem;font-style:italic}.listing-screen{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);flex-direction:column;gap:1.5rem;padding:1.5rem;display:flex}.listing-screen__toolbar{align-items:stretch;gap:.75rem;display:flex}.listing-screen__search{flex:1}.listing-screen__sort{flex-shrink:0}.listing-screen__filters{flex-wrap:wrap;align-items:center;gap:.5rem;display:flex}.listing-screen__filters .chip{align-items:center;gap:.375rem;display:inline-flex}.listing-screen__filter-remove{cursor:pointer;color:inherit;opacity:.7;background:0 0;border:none;align-items:center;padding:0;display:flex}.listing-screen__filter-remove:hover{opacity:1}.listing-screen__header{justify-content:space-between;align-items:flex-start;gap:1rem;display:flex}.listing-screen__heading{font-size:1.5rem;font-weight:var(--auth-font-weight-heading,700);color:var(--auth-color-text,#171717);margin:0;line-height:1.3}.listing-screen__description{font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373);margin:.5rem 0 0;line-height:1.6}.listing-screen__save-search{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);font-weight:var(--auth-font-weight-button,600);color:var(--auth-color-text,#171717);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;white-space:nowrap;background:0 0;align-items:center;gap:.375rem;padding:.5rem 1rem;transition:background-color .15s,border-color .15s;display:inline-flex}.listing-screen__save-search:hover{background:var(--auth-color-surface,#f5f5f5);border-color:var(--auth-color-text-muted,#737373)}.listing-screen__results{flex-direction:column;gap:1rem;display:flex}.listing-screen__empty{text-align:center;color:var(--auth-color-text-muted,#737373);font-size:var(--auth-font-size-base,1rem);padding:3rem 1rem}.block-card{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-card,.5rem);background:var(--auth-color-background,#fff);height:380px;font-family:var(--auth-font-family,system-ui, sans-serif);grid-template-rows:auto;grid-template-columns:420px 1fr;transition:box-shadow .2s;display:grid;overflow:hidden}.block-card:hover{box-shadow:0 4px 12px #00000014}.block-card[role=button]{cursor:pointer}.block-card__media{position:relative;overflow:hidden}.block-card__media .property-carousel{height:100%}.block-card__thumb{object-fit:cover;width:100%;height:100%;display:block}.block-card__save{z-index:2;position:absolute;top:.75rem;right:.75rem}.block-card__body{flex-direction:column;gap:.625rem;padding:1.25rem 1.5rem;display:flex;overflow-y:auto}.block-card__label{letter-spacing:.08em;color:var(--auth-color-text-muted,#737373);font-size:.6875rem;font-weight:600}.block-card__name{color:var(--auth-color-text,#171717);margin:0;font-size:1.125rem;font-weight:700;line-height:1.3}.block-card__unit-count{font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373);margin:0}.block-card__stats{flex-wrap:wrap;gap:.375rem;display:flex}.block-card__breakdown{font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373);margin:0}.block-card__rent-section{flex-direction:column;gap:.125rem;display:flex}.block-card__rent-label{color:var(--auth-color-text-muted,#737373);text-transform:uppercase;letter-spacing:.03em;font-size:.75rem}.block-card__rent{font-size:var(--auth-font-size-base,1rem);color:var(--auth-color-text,#171717)}.block-card__rent strong{font-size:1.25rem}.block-card__rent-freq{font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373)}.block-card__description{font-size:var(--auth-font-size-label,.875rem);color:var(--auth-color-text-muted,#737373);-webkit-line-clamp:3;-webkit-box-orient:vertical;margin:0;line-height:1.6;display:-webkit-box;overflow:hidden}.block-card__features-inline{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.8125rem;line-height:1.5}.block-card__compact-footer{justify-content:space-between;align-items:center;margin-top:auto;padding-top:.5rem;display:flex}.block-card__cta{font-family:var(--auth-font-family,system-ui, sans-serif);font-size:var(--auth-font-size-label,.875rem);font-weight:var(--auth-font-weight-button,600);color:var(--auth-color-background,#fff);background:var(--auth-color-primary,#171717);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;border:none;padding:.5rem 1.25rem;transition:background-color .15s}.block-card__cta:hover{background:var(--auth-color-primary-hover,#333)}.block-card--vertical{grid-template-columns:1fr;max-width:400px}.block-card--vertical .block-card__media{height:220px}.block-card--compact{grid-template-columns:200px 1fr}.block-card--compact .block-card__media{aspect-ratio:1;height:auto}.block-card--compact .block-card__body{gap:.375rem;padding:1rem 1.25rem}.block-card--compact .block-card__rent strong{font-size:1.125rem}.block-card--minimal{grid-template-columns:1fr;max-width:320px;height:auto}.block-card--minimal .block-card__media{height:220px}.block-card--minimal .block-card__body{gap:.25rem;padding:1rem;overflow:visible}.block-card__minimal-address{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);text-transform:uppercase;font-size:.9375rem;font-weight:700;line-height:1.3}@media (max-width:768px){.block-card--horizontal{grid-template-columns:1fr}}.filter-pill{border:1.5px solid var(--auth-color-border,#d1d5db);background:var(--auth-color-background,#fff);font-family:var(--auth-font-family,system-ui, sans-serif);text-align:left;box-sizing:border-box;border-radius:.625rem;flex-direction:column;justify-content:center;gap:2px;min-width:140px;height:56px;padding:.5rem .875rem;transition:border-color .15s;display:flex}.filter-pill--clickable{cursor:pointer}.filter-pill--clickable:hover{border-color:var(--auth-color-text,#171717)}.filter-pill--active{border-color:var(--auth-color-primary,#171717);box-shadow:0 0 0 1px var(--auth-color-primary,#171717)}.filter-pill__label{color:var(--auth-color-text,#171717);pointer-events:none;font-size:.75rem;font-weight:700;line-height:1.2}.filter-pill__value{height:1.25rem;color:var(--auth-color-text,#171717);justify-content:space-between;align-items:center;gap:.5rem;font-size:.9375rem;line-height:1.25rem;display:flex}.filter-pill__content{text-overflow:ellipsis;white-space:nowrap;flex:auto;align-items:center;gap:.5rem;min-width:0;display:flex;overflow:hidden}.filter-pill__chevron{color:var(--auth-color-text,#171717);flex-shrink:0;transition:transform .2s}.filter-pill__chevron--open{transform:rotate(180deg)}.filter-panel{z-index:20;background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);min-width:280px;font-family:var(--auth-font-family,system-ui, sans-serif);border-radius:.75rem;padding:1rem;position:absolute;top:calc(100% + .5rem);left:0;box-shadow:0 8px 24px #0000001f}.filter-panel--range{grid-template-columns:1fr 1fr;gap:1rem;min-width:360px;display:grid}.filter-panel--wide{min-width:480px}.segmented-toggle{background:var(--auth-color-background,#fff);font-family:var(--auth-font-family,system-ui, sans-serif);border-radius:.5rem;align-items:stretch;gap:0;display:inline-flex;overflow:hidden}.segmented-toggle__option{border:1px solid var(--auth-color-border,#d1d5db);background:var(--auth-color-background,#fff);color:var(--auth-color-text,#171717);cursor:pointer;white-space:nowrap;border-right-width:0;flex:auto;padding:.625rem 1rem;font-family:inherit;font-size:.875rem;font-weight:600;transition:background .15s,color .15s}.segmented-toggle__option:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.segmented-toggle__option:last-child{border-right-width:1px;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.segmented-toggle__option:hover:not(.segmented-toggle__option--active){background:var(--auth-color-surface,#f5f5f5)}.segmented-toggle__option--active{background:var(--auth-color-primary,#171717);color:#fff;border-color:var(--auth-color-primary,#171717)}.tabs{font-family:var(--auth-font-family,system-ui, sans-serif);align-items:stretch;gap:0;display:flex}.tabs--full-width{width:100%}.tabs--full-width .tabs__tab{flex:1;justify-content:center}.tabs__tab{color:var(--auth-color-muted,#6b7280);cursor:pointer;white-space:nowrap;background:0 0;border:none;align-items:center;gap:.5rem;padding:.75rem 1.25rem;font-family:inherit;font-weight:500;transition:color .15s,background .15s,border-color .15s,box-shadow .15s;display:inline-flex;position:relative}.tabs__tab:focus-visible{outline:2px solid var(--auth-color-primary,#171717);outline-offset:-2px}.tabs__tab--disabled{opacity:.4;cursor:not-allowed}.tabs--sm .tabs__tab{padding:.5rem 1rem;font-size:.8125rem}.tabs--md .tabs__tab{padding:.75rem 1.25rem;font-size:.875rem}.tabs--lg .tabs__tab{padding:1rem 1.5rem;font-size:1rem}.tabs--underline{border-bottom:1px solid var(--auth-color-border,#d1d5db)}.tabs--underline .tabs__tab{border-bottom:2px solid #0000;margin-bottom:-1px}.tabs--underline .tabs__tab:hover:not(.tabs__tab--active):not(.tabs__tab--disabled){color:var(--auth-color-text,#171717);border-bottom-color:var(--auth-color-border,#d1d5db)}.tabs--underline .tabs__tab--active{color:var(--auth-color-primary,#171717);border-bottom-color:var(--auth-color-primary,#171717)}.tabs--pill{background:var(--auth-color-surface,#f5f5f5);border-radius:.625rem;gap:.25rem;padding:.25rem}.tabs--pill .tabs__tab{border-radius:.5rem}.tabs--pill .tabs__tab:hover:not(.tabs__tab--active):not(.tabs__tab--disabled){background:var(--auth-color-background,#fff);color:var(--auth-color-text,#171717)}.tabs--pill .tabs__tab--active{background:var(--auth-color-background,#fff);color:var(--auth-color-primary,#171717);box-shadow:0 1px 3px #0000001a}.tabs--contained{border-radius:.5rem;gap:0;overflow:hidden}.tabs--contained .tabs__tab{border:1px solid var(--auth-color-border,#d1d5db);background:var(--auth-color-background,#fff);border-right-width:0}.tabs--contained .tabs__tab:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.tabs--contained .tabs__tab:last-child{border-right-width:1px;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.tabs--contained .tabs__tab:hover:not(.tabs__tab--active):not(.tabs__tab--disabled){background:var(--auth-color-surface,#f5f5f5)}.tabs--contained .tabs__tab--active{background:var(--auth-color-primary,#171717);color:#fff;border-color:var(--auth-color-primary,#171717)}.tabs__tab-icon{align-items:center;font-size:1.125em;display:inline-flex}.tabs__tab-badge{background:var(--auth-color-primary,#171717);color:#fff;border-radius:999px;justify-content:center;align-items:center;min-width:1.25rem;height:1.25rem;padding:0 .375rem;font-size:.6875rem;font-weight:700;line-height:1;display:inline-flex}.tabs__tab--active .tabs__tab-badge{background:var(--auth-color-background,#fff);color:var(--auth-color-primary,#171717)}.tabs--underline .tabs__tab-badge,.tabs--pill .tabs__tab-badge{background:var(--auth-color-surface,#f5f5f5);color:var(--auth-color-muted,#6b7280)}.tabs--underline .tabs__tab--active .tabs__tab-badge,.tabs--pill .tabs__tab--active .tabs__tab-badge{background:var(--auth-color-primary,#171717);color:#fff}@media (max-width:768px){.auth-drawer.filter-drawer{width:100vw}.filter-drawer__tristate-row{grid-template-columns:1fr;gap:.5rem}.filter-drawer__checkbox-grid,.filter-drawer__range{grid-template-columns:1fr}}.property-map{width:100%;font-family:var(--auth-font-family,system-ui, sans-serif);position:relative;overflow:hidden}.property-map__container{width:100%;height:100%}.property-map__filter-bar{z-index:10;background:var(--auth-color-surface,#fff);font-family:var(--auth-font-family,system-ui, sans-serif);border-radius:.875rem;align-items:stretch;gap:.5rem;padding:.625rem;display:flex;position:absolute;top:1rem;left:1rem;right:1rem;box-shadow:0 4px 16px #0000001f}.property-map__filter-group{position:relative}.property-map__filter-pill-input{cursor:text;flex:240px;min-width:200px}.property-map__filter-bar .filter-pill--clickable{flex:none;min-width:160px}.property-map__filter-input{min-width:0;height:100%;color:var(--auth-color-text,#171717);background:0 0;border:none;outline:none;flex:auto;margin:0;padding:0;font-family:inherit;font-size:.9375rem;line-height:1.25rem}.property-map__filter-input::placeholder{color:var(--auth-color-text-muted,#737373);opacity:1}.property-map__filter-clear{width:20px;height:20px;color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;border:none;border-radius:999px;justify-content:center;align-items:center;padding:0;display:inline-flex}.property-map__filter-clear:hover{color:var(--auth-color-text,#171717)}.property-map__filter-radius-list{max-height:320px;margin:0;padding:0;list-style:none;overflow-y:auto}.property-map__filter-radius-item{width:100%;color:var(--auth-color-text,#171717);text-align:left;cursor:pointer;background:0 0;border:none;border-radius:.375rem;align-items:center;gap:.5rem;padding:.5rem .625rem;font-family:inherit;font-size:.9375rem;display:flex}.property-map__filter-radius-item:hover{background:var(--auth-color-surface,#f5f5f5)}.property-map__filter-radius-item--selected{font-weight:600}.property-map__filter-checkbox-grid{grid-template-columns:1fr 1fr;gap:.25rem 1.5rem;display:grid}.property-map__filter-btn-inner{align-items:center;gap:.5rem;display:inline-flex}.property-map__filter-bar .auth-button{white-space:nowrap;border-width:1.5px;border-radius:.625rem;flex:none;width:auto;height:56px;padding:0 1.25rem}.property-map__list-toggle{z-index:10;background:var(--auth-color-primary,#171717);color:#fff;font-family:var(--auth-font-family,system-ui, sans-serif);font-size:.875rem;font-weight:var(--auth-font-weight-button,600);cursor:pointer;border:none;border-radius:999px;align-items:center;gap:.5rem;padding:.625rem 1.25rem;transition:background .2s;display:flex;position:absolute;bottom:1.5rem;left:50%;transform:translate(-50%);box-shadow:0 2px 8px #0003}.property-map__list-toggle:hover{background:var(--auth-color-primary-hover,#333)}.property-map__popup{border-radius:var(--auth-radius-card,12px);background:var(--auth-color-surface,#fff);width:260px;font-family:var(--auth-font-family,system-ui, sans-serif);overflow:hidden}.property-map__popup-image{object-fit:cover;width:100%;height:140px;display:block}.property-map__popup-body{padding:.75rem}.property-map__popup-price{color:var(--auth-color-text,#171717);font-size:1rem;font-weight:700}.property-map__popup-address{color:var(--auth-color-text-muted,#737373);margin-top:.25rem;font-size:.8125rem}.property-map__popup-meta{color:var(--auth-color-text-muted,#737373);margin-top:.25rem;font-size:.75rem}.property-map .maplibregl-popup-content,.property-map .mapboxgl-popup-content{border-radius:var(--auth-radius-card,12px);padding:0;box-shadow:0 4px 16px #00000026}.property-map .maplibregl-popup-close-button,.property-map .mapboxgl-popup-close-button{color:var(--auth-color-text-muted,#737373);padding:.25rem .5rem;font-size:1.25rem}@media (max-width:768px){.property-map__filter-bar{flex-wrap:wrap;gap:.375rem;padding:.5rem;top:.5rem;left:.5rem;right:.5rem}.property-map__filter-bar .filter-pill{min-width:0;height:48px}.property-map__filter-pill-input{flex:100%}.property-map__filter-bar .filter-panel{min-width:0;left:0;right:0}.property-map__filter-bar .filter-panel--range,.property-map__filter-bar .filter-panel--wide{min-width:0}.property-map__filter-bar .auth-button{height:48px}}.avatar{background-color:var(--auth-color-primary,#171717);color:#fff;font-weight:600;font-family:var(--auth-font-family,sans-serif);-webkit-user-select:none;user-select:none;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;display:inline-flex;overflow:hidden}.avatar--sm{width:28px;height:28px;font-size:11px}.avatar--md{width:36px;height:36px;font-size:13px}.avatar--lg{width:44px;height:44px;font-size:16px}img.avatar{object-fit:cover}.user-menu{display:inline-flex;position:relative}.user-menu__trigger{cursor:pointer;background:0 0;border:none;border-radius:50%;align-items:center;gap:.5rem;padding:0;transition:opacity .15s;display:flex}.user-menu__trigger:hover{opacity:.85}.user-menu__dropdown{background:var(--auth-color-surface,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-border-radius-card,12px);z-index:1000;min-width:220px;animation:.15s user-menu-fade-in;position:absolute;top:calc(100% + 8px);right:0;overflow:hidden;box-shadow:0 4px 24px #0000001f}@keyframes user-menu-fade-in{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}.user-menu__header{flex-direction:column;padding:.75rem 1rem;display:flex}.user-menu__name{font-family:var(--auth-font-family,sans-serif);color:var(--auth-color-text,#171717);font-size:.875rem;font-weight:600}.user-menu__email{font-family:var(--auth-font-family,sans-serif);color:var(--auth-color-text-muted,#737373);margin-top:2px;font-size:.75rem}.user-menu__divider{background:var(--auth-color-border,#e5e5e5);height:1px}.user-menu__item{text-align:left;width:100%;font-family:var(--auth-font-family,sans-serif);color:var(--auth-color-text,#171717);cursor:pointer;background:0 0;border:none;padding:.625rem 1rem;font-size:.875rem;transition:background-color .1s;display:block}.user-menu__item:hover{background-color:var(--auth-color-background,#fafafa)}.user-menu__item--danger{color:var(--auth-color-error,#dc2626)}.user-menu__item--danger:hover{background-color:#fef2f2}.enquiry-form{gap:var(--auth-spacing-form-gap,1rem);font-family:var(--auth-font-family,sans-serif);flex-direction:column;display:flex}.enquiry-form__property-badge{border:1px solid color-mix(in srgb, var(--auth-color-primary,#171717) 20%, transparent);background:color-mix(in srgb, var(--auth-color-primary,#171717) 5%, transparent);border-radius:var(--auth-border-radius-card,12px);align-items:center;gap:.75rem;padding:.75rem 1rem;display:flex}.enquiry-form__property-label{text-transform:uppercase;letter-spacing:.05em;color:var(--auth-color-primary,#171717);font-size:.7rem;font-weight:600}.enquiry-form__property-title{color:var(--auth-color-text,#171717);font-size:.875rem;font-weight:500}.enquiry-form__autofill-notice{border:1px solid var(--auth-color-border,#e5e5e5);background:var(--auth-color-background,#fafafa);border-radius:var(--auth-border-radius-card,12px);color:var(--auth-color-text,#171717);padding:.75rem 1rem;font-size:.875rem}.enquiry-form__autofill-notice p{margin:0}.enquiry-form__field{flex-direction:column;gap:.25rem;display:flex}.enquiry-form__textarea{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-border-radius-input,8px);width:100%;font-family:var(--auth-font-family,sans-serif);font-size:var(--auth-font-size-base,.875rem);color:var(--auth-color-text,#171717);background:var(--auth-color-surface,#fff);resize:vertical;min-height:120px;padding:.75rem;transition:border-color .15s}.enquiry-form__textarea:focus{border-color:var(--auth-color-primary,#171717);outline:none}.enquiry-form__textarea:disabled{opacity:.6;cursor:not-allowed}.enquiry-form__success{text-align:center;border:1px solid color-mix(in srgb, var(--auth-color-success,#16a34a) 30%, transparent);background:color-mix(in srgb, var(--auth-color-success,#16a34a) 5%, transparent);border-radius:var(--auth-border-radius-card,12px);flex-direction:column;align-items:center;padding:2rem;display:flex}.enquiry-form__success-icon{color:var(--auth-color-success,#16a34a);margin-bottom:1rem}.enquiry-form__success-heading{color:var(--auth-color-text,#171717);margin:0;font-size:1.25rem;font-weight:600}.enquiry-form__success-text{color:var(--auth-color-text-muted,#737373);margin:.5rem 0 0;font-size:.875rem}.enquiry-form__section{margin-bottom:1.5rem}.enquiry-form__section-title{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);border-bottom:1px solid var(--auth-color-border,#e5e5e5);margin:0 0 1rem;padding-bottom:.5rem;font-size:1.125rem;font-weight:700}.enquiry-form__row{gap:.75rem;display:flex}.enquiry-form__row>*{flex:1}.enquiry-form__authed{color:var(--auth-color-text,#171717);margin-bottom:1rem;font-size:.875rem}.enquiry-form__label{color:var(--auth-color-text,#171717);margin-bottom:.5rem;font-size:.875rem;font-weight:500}.enquiry-form__info{color:var(--auth-color-text,#171717);background:var(--auth-color-surface,#f5f5f5);border-left:3px solid var(--auth-color-primary,#c9a96e);border-radius:var(--auth-radius-input,.5rem);margin:1rem 0;padding:.75rem 1rem;font-size:.8125rem}.enquiry-form__actions{gap:.75rem;margin-top:1.5rem;display:flex}.enquiry-form__privacy{color:var(--auth-color-text-muted,#737373);margin-top:1rem;font-size:.75rem}.file-upload{flex-direction:column;gap:.75rem;display:flex}.file-upload__dropzone{border:2px dashed var(--auth-color-border,#e5e5e5);border-radius:var(--auth-border-radius-card,12px);cursor:pointer;flex-direction:column;align-items:center;gap:.5rem;padding:1.5rem;transition:border-color .15s,background-color .15s;display:flex}.file-upload__dropzone:hover{border-color:var(--auth-color-primary,#171717);background:color-mix(in srgb, var(--auth-color-primary,#171717) 3%, transparent)}.file-upload__icon{color:var(--auth-color-text-muted,#737373)}.file-upload__text{color:var(--auth-color-text,#171717);margin:0;font-size:.875rem;font-weight:500}.file-upload__hint{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.75rem}.file-upload__input{display:none}.file-upload__list{flex-direction:column;gap:.5rem;margin:0;padding:0;list-style:none;display:flex}.file-upload__item{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-border-radius-input,8px);background:var(--auth-color-surface,#fff);align-items:center;gap:.75rem;padding:.5rem .75rem;display:flex}.file-upload__preview{object-fit:cover;border-radius:4px;flex-shrink:0;width:36px;height:36px}.file-upload__file-icon{width:36px;height:36px;color:var(--auth-color-text-muted,#737373);flex-shrink:0;justify-content:center;align-items:center;display:flex}.file-upload__info{flex-direction:column;flex:1;min-width:0;display:flex}.file-upload__name{color:var(--auth-color-text,#171717);text-overflow:ellipsis;white-space:nowrap;font-size:.8rem;overflow:hidden}.file-upload__size{color:var(--auth-color-text-muted,#737373);font-size:.7rem}.file-upload__remove{color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;border:none;flex-shrink:0;padding:0 .25rem;font-size:1.25rem;line-height:1}.file-upload__remove:hover{color:var(--auth-color-error,#dc2626)}.file-upload__error{color:var(--auth-color-error,#dc2626);margin:0;font-size:.75rem}.file-upload--error .file-upload__dropzone{border-color:var(--auth-color-error,#dc2626)}.props-carousel{font-family:var(--auth-font-family,sans-serif);position:relative}.props-carousel:focus{outline:none}.props-carousel__header{margin-bottom:1.5rem}.props-carousel__title{color:var(--auth-color-text,#171717);margin:0;font-size:1.5rem;font-weight:700}.props-carousel__subtitle{color:var(--auth-color-text-muted,#737373);margin:.25rem 0 0;font-size:.875rem}.props-carousel__wrapper{position:relative}.props-carousel__track{gap:var(--carousel-card-gap,16px);-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:4px;scroll-padding-left:0;display:flex;overflow-x:auto}.props-carousel__track::-webkit-scrollbar{display:none}.props-carousel__track--snap{scroll-snap-type:x mandatory}.props-carousel__slide{scroll-snap-align:start;flex-shrink:0}.props-carousel__slide .property-card--vertical{width:100%;max-width:none;height:100%}.props-carousel__arrow{z-index:10;border:1px solid var(--auth-color-border,#e5e5e5);background:var(--auth-color-surface,#fff);width:40px;height:40px;color:var(--auth-color-text,#171717);cursor:pointer;border-radius:50%;justify-content:center;align-items:center;transition:background-color .15s,box-shadow .15s;display:flex;position:absolute;top:50%;transform:translateY(-50%);box-shadow:0 2px 8px #0000001a}.props-carousel__arrow:hover{background:var(--auth-color-background,#fafafa);box-shadow:0 4px 12px #00000026}.props-carousel__arrow--left{left:-20px}.props-carousel__arrow--right{right:-20px}@media (max-width:768px){.props-carousel__arrow{display:none}.props-carousel__track{padding-left:1rem;padding-right:1rem}}.hub-dialog__overlay{z-index:999;transition:background-color var(--hub-dialog-duration,.25s) ease;background:0 0;position:fixed;inset:0}.hub-dialog__overlay--visible{background:#00000080}.hub-dialog{z-index:1000;opacity:0;background:var(--auth-color-surface,#fff);border-radius:var(--auth-border-radius-card,12px);max-height:90vh;transition:opacity var(--hub-dialog-duration,.25s) ease, transform var(--hub-dialog-duration,.25s) ease;font-family:var(--auth-font-family,sans-serif);position:fixed;top:50%;left:50%;overflow-y:auto;transform:translate(-50%,-50%)scale(.95);box-shadow:0 20px 60px #0003}.hub-dialog--open{opacity:1;transform:translate(-50%,-50%)scale(1)}.hub-dialog--closing{opacity:0;transform:translate(-50%,-50%)scale(.95)}.hub-dialog--sm{width:min(400px,90vw)}.hub-dialog--md{width:min(540px,90vw)}.hub-dialog--lg{width:min(720px,90vw)}.hub-dialog--xl{width:min(900px,90vw)}.hub-dialog--full{width:90vw;height:90vh}.hub-dialog__header{border-bottom:1px solid var(--auth-color-border,#e5e5e5);justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;display:flex}.hub-dialog__title{color:var(--auth-color-text,#171717);margin:0;font-size:1.125rem;font-weight:600}.hub-dialog__close{width:2rem;height:2rem;color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;border:none;border-radius:50%;justify-content:center;align-items:center;padding:0;transition:background-color .15s;display:flex}.hub-dialog__close:hover{background:var(--auth-color-background,#fafafa);color:var(--auth-color-text,#171717)}.hub-dialog__body{padding:1.5rem}@media (max-width:640px){.hub-dialog{border-radius:var(--auth-border-radius-card,12px) var(--auth-border-radius-card,12px) 0 0;width:100%;max-height:85vh;inset:auto 0 0;transform:translateY(100%)}.hub-dialog--open{transform:translateY(0)}.hub-dialog--closing{transform:translateY(100%)}.hub-dialog--sm,.hub-dialog--md,.hub-dialog--lg,.hub-dialog--xl,.hub-dialog--full{width:100%}}.interactive-map{width:100%;position:relative}.interactive-map__layout{justify-content:center;align-items:center;gap:1.5rem;height:calc(100vh - 14rem);display:flex}.interactive-map__svg{flex:55%}.interactive-map__list{flex-direction:column;flex:none;min-width:10rem;max-width:16rem;max-height:calc(100vh - 15rem);margin:0;padding:0;list-style:none;display:flex;overflow-y:auto}.interactive-map__list-item{text-align:left;width:100%;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#e8e4dc);cursor:pointer;background:0 0;border:none;border-radius:.25rem;padding:.3rem .625rem;font-size:.8125rem;line-height:1.3;transition:color .15s,background .15s;display:block}.interactive-map__list-item:hover,.interactive-map__list-item--hover{color:var(--auth-color-primary,#b8a378);background:var(--auth-color-border,#ffffff0f)}.interactive-map__list-item--selected{color:var(--auth-color-primary,#b8a378);font-weight:600}.interactive-map__list::-webkit-scrollbar{width:4px}.interactive-map__list::-webkit-scrollbar-track{background:0 0}.interactive-map__list::-webkit-scrollbar-thumb{background:var(--auth-color-border,#ffffff26);border-radius:2px}.interactive-map__svg{width:auto;max-width:100%;height:auto;max-height:calc(100vh - 14rem);margin:0 auto;display:block}.interactive-map__region{fill:var(--auth-color-secondary,#1a3460);stroke:var(--auth-color-background,#fff);cursor:pointer;transition:fill .2s}.interactive-map__region--hovered{fill:var(--auth-color-secondary-hover,#dcc292)}.interactive-map__region--selected{fill:var(--auth-color-primary,#c9a96e)}.interactive-map__label{pointer-events:none;-webkit-user-select:none;user-select:none;fill:#fff;text-shadow:0 1px 3px #000000b3;font-weight:600}.interactive-map__tooltip{background:var(--auth-color-foreground,#0c1f3f);color:#fff;white-space:nowrap;border-radius:.375rem;padding:.375rem .75rem;font-size:.75rem;font-weight:500;position:absolute;bottom:1rem;left:50%;transform:translate(-50%);box-shadow:0 4px 12px #00000026}.stats-banner{justify-content:center;gap:2rem;padding:1.5rem 0;display:flex}.stats-banner--pills .stats-banner__item{background:var(--auth-color-surface,#f5f5f5);border-radius:9999px;padding:.75rem 1.5rem}.stats-banner--dividers .stats-banner__item+.stats-banner__item{border-left:1px solid var(--auth-color-border,#e5e5e5);padding-left:2rem}.stats-banner--cards .stats-banner__item{background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);padding:1rem 1.5rem}.stats-banner__item{text-align:center}.stats-banner__item--highlight .stats-banner__value{color:var(--auth-color-primary,#171717)}.stats-banner__value{font-size:1.75rem;font-weight:700;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);line-height:1.2}.stats-banner--sm .stats-banner__value{font-size:1.25rem}.stats-banner--lg .stats-banner__value{font-size:2.25rem}.stats-banner__affix{font-size:.75em}.stats-banner__label{color:var(--auth-color-text-muted,#737373);text-transform:uppercase;letter-spacing:.05em;margin-top:.25rem;font-size:.75rem}.featured-categories__header{margin-bottom:1.5rem}.featured-categories__title{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);margin:0;font-size:1.5rem;font-weight:700}.featured-categories__subtitle{color:var(--auth-color-text-muted,#737373);margin:.5rem 0 0;font-size:.875rem}.featured-categories__grid{gap:1rem;display:grid}@media (max-width:768px){.featured-categories__grid{grid-template-columns:repeat(2,1fr)!important}}@media (max-width:480px){.featured-categories__grid{grid-template-columns:1fr!important}}.featured-categories__tile{border-radius:var(--auth-radius-input,.5rem);aspect-ratio:3/4;cursor:pointer;text-align:left;background:0 0;border:none;padding:0;position:relative;overflow:hidden}.featured-categories__image{object-fit:cover;width:100%;height:100%;transition:transform .4s;position:absolute;inset:0}.featured-categories__tile--zoom:hover .featured-categories__image{transform:scale(1.04)}.featured-categories__tile--darken:hover .featured-categories__image{filter:brightness(.7)}.featured-categories__tile--lift:hover{transform:translateY(-2px);box-shadow:0 8px 24px #00000026}.featured-categories__overlay{background:linear-gradient(#0000 40%,#0009 100%);position:absolute;inset:0}.featured-categories__content{position:absolute;bottom:1.25rem;left:1.25rem;right:1.25rem}.featured-categories__label{font-family:var(--auth-font-family,system-ui, sans-serif);color:#fff;font-size:1.25rem;font-weight:700;line-height:1.2;display:block}.featured-categories__count{letter-spacing:.08em;color:#fffc;margin-top:.25rem;font-size:.6875rem;font-weight:600;display:block}.featured-categories__arrow{color:#fff;font-size:1.25rem;position:absolute;bottom:1.25rem;right:1.25rem}.comparison-drawer{z-index:100;background:var(--auth-color-background,#fff);border-top:1px solid var(--auth-color-border,#e5e5e5);border-radius:1rem 1rem 0 0;max-height:70vh;transition:transform .3s;position:fixed;bottom:0;left:0;right:0;overflow-y:auto;transform:translateY(100%);box-shadow:0 -8px 32px #0000001f}.comparison-drawer--open{transform:translateY(0)}.comparison-drawer__handle{background:var(--auth-color-border,#e5e5e5);border-radius:9999px;width:2.5rem;height:.25rem;margin:.75rem auto}.comparison-drawer__header{justify-content:space-between;align-items:center;padding:0 1.5rem 1rem;display:flex}.comparison-drawer__title{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);margin:0;font-size:1.125rem;font-weight:700}.comparison-drawer__close{cursor:pointer;color:var(--auth-color-text-muted,#737373);background:0 0;border:none;padding:.25rem}.comparison-drawer__body{padding:0 1.5rem 1.5rem}.comparison-drawer__row{border-bottom:1px solid var(--auth-color-border,#e5e5e5);display:flex}.comparison-drawer__row--header{border-bottom:2px solid var(--auth-color-border,#e5e5e5)}.comparison-drawer__label{color:var(--auth-color-text-muted,#737373);flex:0 0 120px;padding:.75rem 0;font-size:.8125rem;font-weight:600}.comparison-drawer__cell{color:var(--auth-color-text,#171717);flex:1;padding:.75rem .5rem;font-size:.875rem}.comparison-drawer__cell--header{text-align:center;position:relative}.comparison-drawer__cell--diff{background:rgba(var(--auth-color-primary-rgb,23, 23, 23), .04);font-weight:600}.comparison-drawer__thumb{object-fit:cover;border-radius:var(--auth-radius-input,.5rem);width:100%;height:80px;margin-bottom:.5rem}.comparison-drawer__address{font-size:.8125rem;font-weight:600;display:block}.comparison-drawer__postcode{color:var(--auth-color-text-muted,#737373);font-size:.75rem;display:block}.comparison-drawer__remove{cursor:pointer;color:var(--auth-color-text-muted,#737373);background:0 0;border:none;font-size:1.25rem;line-height:1;position:absolute;top:.25rem;right:.25rem}.comparison-drawer__enquire{width:100%;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-background,#fff);background:var(--auth-color-primary,#171717);border-radius:var(--auth-radius-input,.5rem);cursor:pointer;border:none;padding:.5rem 1rem;font-size:.8125rem;font-weight:600;transition:background-color .15s}.comparison-drawer__enquire:hover{background:var(--auth-color-primary-hover,#333)}.partner-logos{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:2rem;display:flex}.partner-logos__group{flex-wrap:wrap;justify-content:center;align-items:center;gap:2rem;display:flex}.partner-logos__image{opacity:.7;width:auto;transition:opacity .2s}.partner-logos__link{display:inline-flex}.partner-logos__link:hover .partner-logos__image,.partner-logos__image:hover{opacity:1}@media (max-width:768px){.partner-logos{flex-direction:column;gap:1.5rem}}.quick-filter-bar{justify-content:space-between;align-items:center;gap:.5rem;padding:.75rem 0;display:flex}.quick-filter-bar__pills{flex-wrap:wrap;align-items:center;gap:.5rem;display:flex}.quick-filter-bar__pill-wrap{position:relative}.quick-filter-bar__range{gap:.75rem;min-width:280px;padding:.75rem;display:flex}.quick-filter-bar__type-grid{grid-template-columns:repeat(3,1fr);gap:.5rem;min-width:320px;padding:.75rem;display:grid}.quick-filter-bar__type-card{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);cursor:pointer;text-align:center;padding:.75rem;font-size:.8125rem;font-weight:500;transition:border-color .15s,background-color .15s}.quick-filter-bar__type-card:hover{border-color:var(--auth-color-primary,#171717)}.quick-filter-bar__type-card--selected{background:var(--auth-color-primary,#171717);color:var(--auth-color-background,#fff);border-color:var(--auth-color-primary,#171717)}.quick-filter-bar__more{background:var(--auth-color-surface,#f5f5f5);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);cursor:pointer;width:2.5rem;height:2.5rem;color:var(--auth-color-text,#171717);flex-shrink:0;justify-content:center;align-items:center;transition:border-color .15s;display:inline-flex;position:relative}.quick-filter-bar__more:hover{border-color:var(--auth-color-primary,#171717)}.quick-filter-bar__badge{text-align:center;color:#fff;background:var(--auth-color-primary,#171717);border-radius:9999px;min-width:1rem;height:1rem;padding:0 .25rem;font-size:.625rem;font-weight:700;line-height:1rem;position:absolute;top:-4px;right:-4px}@media (max-width:640px){.quick-filter-bar__type-grid{grid-template-columns:repeat(2,1fr);min-width:auto}}.filter-drawer--inline{font-family:var(--auth-font-family,system-ui, sans-serif);background:var(--auth-color-background,#fff);animation:.2s filter-drawer-slide-in}@keyframes filter-drawer-slide-in{0%{opacity:.5;clip-path:inset(0 0 100%)}to{opacity:1;clip-path:inset(0)}}.filter-drawer__header{align-items:center;gap:.75rem;padding:.5rem 0;display:flex}.filter-drawer__title{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);flex:1;margin:0;font-size:1.125rem;font-weight:700}.filter-drawer__clear{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-background,#fff);background:var(--auth-color-text-muted,#737373);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;border:none;padding:.25rem .625rem;font-size:.75rem;font-weight:600}.filter-drawer__clear:hover{background:var(--auth-color-text,#171717)}.filter-drawer__close{color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;border:none;padding:.25rem}.filter-drawer__close:hover{color:var(--auth-color-text,#171717)}.filter-drawer__body{padding:0}.filter-drawer__section{border-bottom:1px solid var(--auth-color-border,#e5e5e5)}.filter-drawer__section:last-child{border-bottom:none}.filter-drawer__section-header{width:100%;color:var(--auth-color-text,#171717);cursor:pointer;font-family:var(--auth-font-family,system-ui, sans-serif);text-align:left;background:0 0;border:none;justify-content:space-between;align-items:center;padding:.5rem 0;display:flex}.filter-drawer__section-title{font-size:.875rem;font-weight:600}.filter-drawer__section-summary{color:var(--auth-color-text-muted,#737373);align-items:center;gap:.375rem;font-size:.8125rem;display:flex}.filter-drawer__section-chevron{transition:transform .2s}.filter-drawer__section-chevron--open{transform:rotate(180deg)}.filter-drawer__section-body{padding:0 0 .5rem}.filter-drawer__range-row{gap:.75rem;display:flex}.filter-drawer__range-row .hub-select{flex:1}.filter-drawer__type-grid{grid-template-columns:repeat(4,1fr);gap:.375rem;display:grid}.filter-drawer__type-card{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);cursor:pointer;text-align:center;background:0 0;padding:.5rem;font-size:.8125rem;font-weight:500;transition:border-color .15s,background .15s}.filter-drawer__type-card:hover{border-color:var(--auth-color-text-muted,#737373)}.filter-drawer__type-card--selected{background:var(--auth-color-primary,#c9a96e);border-color:var(--auth-color-primary,#c9a96e);color:#fff}.filter-drawer__chip-group{flex-wrap:wrap;gap:.375rem;display:flex}.filter-drawer__chip{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);border:1px solid var(--auth-color-border,#e5e5e5);cursor:pointer;background:0 0;border-radius:9999px;padding:.25rem .625rem;font-size:.8125rem;font-weight:500;transition:border-color .15s,background .15s}.filter-drawer__chip:hover{border-color:var(--auth-color-text-muted,#737373)}.filter-drawer__chip--selected{background:var(--auth-color-primary,#c9a96e);border-color:var(--auth-color-primary,#c9a96e);color:#fff}.search-panel{font-family:var(--auth-font-family,system-ui, sans-serif)}.search-panel--overlay{z-index:100;background:var(--auth-color-background,#fff);padding:1rem;animation:.3s ease-out search-panel-reveal;position:fixed;inset:0;overflow-y:auto}@keyframes search-panel-reveal{0%{opacity:0;clip-path:inset(0 0 100%)}to{opacity:1;clip-path:inset(0)}}.search-panel__bar{align-items:center;display:flex}.search-panel__tenure{border-right:1px solid var(--auth-color-border,#e5e5e5);flex-shrink:0;align-items:center;gap:.75rem;padding:0 1rem;display:flex}.search-panel__tenure-option{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);cursor:pointer;white-space:nowrap;align-items:center;gap:.25rem;font-size:.875rem;font-weight:500;display:flex}.search-panel__tenure-option input[type=radio]{accent-color:var(--auth-color-primary,#c9a96e);cursor:pointer;margin:0}.search-panel__chips{border-right:1px solid var(--auth-color-border,#e5e5e5);align-items:center;gap:.25rem;padding:0 .75rem;display:flex}.search-panel__chip{color:var(--auth-color-text,#171717);background:var(--auth-color-primary,#c9a96e);background:color-mix(in srgb, var(--auth-color-primary,#c9a96e) 20%, transparent);border-radius:.25rem;align-items:center;gap:.25rem;padding:.125rem .5rem;font-size:.75rem;font-weight:500;display:inline-flex}.search-panel__chip-remove{cursor:pointer;color:var(--auth-color-text-muted,#737373);background:0 0;border:none;padding:0;font-size:.875rem;line-height:1}.search-panel__chip-remove:hover{color:var(--auth-color-text,#171717)}.search-panel__search{flex:1}.search-panel__filters{border-top:1px solid var(--auth-color-border,#e5e5e5);align-items:center;gap:.5rem;display:flex}.search-panel__clear-filters{font-size:.8125rem;font-family:var(--auth-font-family,inherit);color:inherit;opacity:.6;cursor:pointer;white-space:nowrap;background:0 0;border:none;align-items:center;gap:.25rem;padding:.375rem .75rem;transition:opacity .15s;display:inline-flex}.search-panel__clear-filters:hover{opacity:1}.search-panel__map-btn{border:none;border-left:1px solid var(--auth-color-border,#e5e5e5);color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;flex-direction:column;justify-content:center;align-items:center;gap:.125rem;padding:.5rem 1.25rem;transition:color .15s;display:flex}.search-panel__map-btn:hover{color:var(--auth-color-primary,#c9a96e)}.search-panel__map-label{text-transform:uppercase;letter-spacing:.03em;font-size:.625rem;font-weight:600}.search-panel__map-panel{margin-top:.5rem}.search-panel__map-header{justify-content:space-between;align-items:center;margin-bottom:.5rem;display:flex}.search-panel__map-tabs{border-bottom:1px solid var(--auth-color-border,#e5e5e5);display:flex}.search-panel__map-tab{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;border:none;border-bottom:2px solid #0000;padding:.5rem 1rem;font-size:.875rem;font-weight:500;transition:color .15s,border-color .15s}.search-panel__map-tab:hover{color:var(--auth-color-text,#171717)}.search-panel__map-tab--active{color:var(--auth-color-text,#171717);border-bottom-color:var(--auth-color-primary,#c9a96e)}.search-panel__map-actions{align-items:center;gap:.5rem;display:flex}.search-panel__map-toggle{background:var(--auth-color-surface,#f5f5f5);border-radius:var(--auth-radius-button,.25rem);gap:.125rem;padding:.125rem;display:flex}.search-panel__map-toggle-btn{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text-muted,#737373);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;background:0 0;border:none;padding:.25rem .625rem;font-size:.75rem;font-weight:500;transition:background .15s,color .15s}.search-panel__map-toggle-btn--active{background:var(--auth-color-primary,#c9a96e);color:#fff}.search-panel__close{color:var(--auth-color-text-muted,#737373);cursor:pointer;background:0 0;border:none;padding:.25rem}.search-panel__close:hover{color:var(--auth-color-text,#171717)}.search-panel__area-map{max-width:36rem;margin:0 auto;padding:1rem 0}@media (max-width:768px){.search-panel__map-label{display:none}.search-panel__map-btn{padding:.5rem .75rem}.search-panel__filters,.quick-filter-bar__pills{flex-wrap:wrap}}.property-detail{font-family:var(--auth-font-family,system-ui, sans-serif)}.property-detail__sticky-header{z-index:999;background:var(--auth-color-text,#171717);color:#fff;transition:transform .25s;position:fixed;top:0;left:0;right:0;transform:translateY(-100%);box-shadow:0 2px 8px #00000026}.property-detail__sticky-header--visible{transform:translateY(0)}.property-detail__sticky-inner{align-items:center;gap:2rem;max-width:1280px;margin:0 auto;padding:.75rem 1.5rem;display:flex}.property-detail__sticky-info{flex-direction:column;min-width:0;display:flex}.property-detail__sticky-address{white-space:nowrap;text-overflow:ellipsis;font-size:.9375rem;font-weight:600;overflow:hidden}.property-detail__sticky-location{opacity:.7;font-size:.75rem}.property-detail__sticky-price{white-space:nowrap;font-size:.9375rem;font-weight:700}.property-detail__sticky-facts{align-items:center;gap:1rem;display:flex}.property-detail__sticky-fact{align-items:center;gap:.25rem;font-size:.875rem;display:flex}.property-detail__sticky-fact svg{width:18px;height:18px;color:var(--auth-color-primary,#c9a96e)}.property-detail__sticky-agent{flex-direction:column;align-items:flex-end;margin-left:auto;display:flex}.property-detail__sticky-agent-name{white-space:nowrap;font-size:.8125rem;font-weight:600}.property-detail__sticky-agent-phone{color:var(--auth-color-primary,#c9a96e);font-size:.75rem;text-decoration:none}.property-detail__hero{width:100vw;margin-left:calc(50% - 50vw);position:relative}.property-detail__hero:before{content:"";z-index:5;pointer-events:none;background:linear-gradient(#00000073,#0000);height:120px;position:absolute;top:0;left:0;right:0}.property-detail__hero-content{background:var(--auth-color-surface,#f5f5f5);height:60vh;min-height:350px;max-height:600px;overflow:hidden}.property-detail__hero-content img{object-fit:cover;width:100%;height:100%}.property-detail__hero-breadcrumbs{z-index:10;color:#fff;text-shadow:0 1px 3px #00000080;font-size:.75rem;position:absolute;bottom:3.5rem;left:1.5rem}.property-detail__hero-breadcrumbs .property-detail__breadcrumb-link{color:#ffffffd9;text-decoration:none}.property-detail__hero-breadcrumbs .property-detail__breadcrumb-link:hover,.property-detail__hero-breadcrumbs .property-detail__breadcrumb-current{color:#fff}.property-detail__breadcrumb-sep{margin:0 .375rem}.property-detail__hero-tabs{z-index:10;gap:0;display:flex;position:absolute;bottom:0;left:0}.property-detail__hero-tab{text-transform:uppercase;letter-spacing:.03em;color:var(--auth-color-text,#171717);background:color-mix(in srgb, var(--auth-color-background,#fff) 85%, transparent);cursor:pointer;border:none;align-items:center;gap:.5rem;padding:.75rem 1.25rem;font-size:.8125rem;font-weight:600;transition:background .15s,color .15s;display:flex}.property-detail__hero-tab:hover{background:color-mix(in srgb, var(--auth-color-background,#fff) 95%, transparent)}.property-detail__hero-tab--active{background:var(--auth-color-background,#fff);color:var(--auth-color-primary,#c9a96e)}.property-detail__hero-tab svg{flex-shrink:0}.property-detail__no-images{height:100%;color:var(--auth-color-text-muted,#737373);justify-content:center;align-items:center;font-size:.875rem;display:flex}.property-detail__map-embed{height:100%}.property-detail__map-embed iframe{width:100%;height:100%}.property-detail__title-strip{border-bottom:1px solid var(--auth-color-border,#e5e5e5);justify-content:space-between;align-items:flex-start;gap:2rem;padding:2rem 0 1.5rem;display:flex}.property-detail__title-left{min-width:0}.property-detail__title{color:var(--auth-color-text,#171717);margin:0;font-size:2rem;font-weight:700;line-height:1.2}.property-detail__location{color:var(--auth-color-text-muted,#737373);margin:.25rem 0 0;font-size:1rem}.property-detail__badge-row{align-items:center;gap:.75rem;margin-top:.75rem;display:flex}.property-detail__furnished-badge{letter-spacing:.05em;border:1px solid var(--auth-color-border,#e5e5e5);color:var(--auth-color-text,#171717);padding:.25rem .75rem;font-size:.6875rem;font-weight:600;display:inline-block}.property-detail__title-right{flex-direction:column;flex-shrink:0;align-items:flex-end;display:flex}.property-detail__price-label{color:var(--auth-color-text-muted,#737373);font-size:.8125rem}.property-detail__price-amount{color:var(--auth-color-text,#171717);font-size:2.25rem;font-weight:700;line-height:1.1}.property-detail__price-freq{color:var(--auth-color-text-muted,#737373);font-size:.875rem}.property-detail__price-ask{color:var(--auth-color-text-muted,#737373);font-size:1.5rem;font-style:italic;font-weight:600}.property-detail__facts-bar{border-bottom:1px solid var(--auth-color-border,#e5e5e5);justify-content:space-between;align-items:center;padding:1.25rem 0;display:flex}.property-detail__facts{flex-wrap:wrap;align-items:center;gap:1.5rem;display:flex}.property-detail__fact{align-items:center;gap:.5rem;display:flex}.property-detail__fact svg{color:var(--auth-color-primary,#c9a96e);flex-shrink:0}.property-detail__fact-value{color:var(--auth-color-text,#171717);text-transform:capitalize;font-size:1rem;font-weight:600}.property-detail__fact-label{color:var(--auth-color-text-muted,#737373);text-transform:uppercase;letter-spacing:.04em;font-size:.75rem}.property-detail__share-save{align-items:center;gap:1.25rem;display:flex}.property-detail__share-btn,.property-detail__save-btn{cursor:pointer;font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text-muted,#737373);background:0 0;border:none;align-items:center;gap:.375rem;padding:.25rem 0;font-size:.875rem;transition:color .15s;display:flex}.property-detail__share-btn:hover,.property-detail__save-btn:hover{color:var(--auth-color-primary,#c9a96e)}.property-detail__section-title{color:var(--auth-color-text,#171717);margin:0 0 1rem;font-size:1.125rem;font-weight:700}.property-detail__details-section,.property-detail__agent-card,.property-detail__features-section,.property-detail__description-section,.property-detail__map-section,.property-detail__similar-section{border-bottom:1px solid var(--auth-color-border,#e5e5e5);padding:1.5rem 0}.property-detail__details-grid{grid-template-columns:repeat(2,1fr);gap:.75rem 2rem;display:grid}.property-detail__detail-row{justify-content:space-between;display:flex}.property-detail__detail-row dt{color:var(--auth-color-text-muted,#737373);font-size:.875rem}.property-detail__detail-row dd{color:var(--auth-color-text,#171717);margin:0;font-size:.875rem;font-weight:500}.property-detail__agent-actions{gap:.75rem;display:flex}.property-detail__features-list{grid-template-columns:repeat(2,1fr);gap:.5rem;margin:0;padding:0;list-style:none;display:grid}.property-detail__feature-item{color:var(--auth-color-text,#171717);align-items:center;gap:.5rem;font-size:.875rem;display:flex}.property-detail__feature-item svg{color:var(--auth-color-primary,#c9a96e);flex-shrink:0}.property-detail__description--collapsed{max-height:12rem;position:relative;overflow:hidden}.property-detail__description--collapsed:after{content:"";background:linear-gradient(to bottom, transparent, var(--auth-color-background,#fff));height:4rem;position:absolute;bottom:0;left:0;right:0}.property-detail__description-text{color:var(--auth-color-text,#171717);white-space:pre-line;margin:0;font-size:.9375rem;line-height:1.7}.property-detail__read-more{color:var(--auth-color-primary,#c9a96e);cursor:pointer;background:0 0;border:none;margin-top:.75rem;padding:0;font-size:.875rem;font-weight:600;display:inline-block}.property-detail__similar-grid{grid-template-columns:repeat(4,1fr);gap:1rem;display:grid}.property-detail__similar-card{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);cursor:pointer;text-align:left;background:0 0;padding:0;transition:box-shadow .15s;overflow:hidden}.property-detail__similar-card:hover{box-shadow:0 4px 12px #0000001a}.property-detail__similar-image{object-fit:cover;width:100%;height:140px}.property-detail__similar-info{flex-direction:column;gap:.125rem;padding:.75rem;display:flex}.property-detail__similar-price{color:var(--auth-color-text,#171717);font-size:.875rem;font-weight:600}.property-detail__similar-address{color:var(--auth-color-text,#171717);font-size:.8125rem}.property-detail__similar-postcode{color:var(--auth-color-text-muted,#737373);font-size:.75rem}@media (max-width:768px){.property-detail__title{font-size:1.375rem}.property-detail__title-strip{flex-direction:column;gap:1rem;padding:1.25rem 0}.property-detail__title-right{align-items:flex-start}.property-detail__price-amount{font-size:1.75rem}.property-detail__facts-bar{flex-direction:column;align-items:flex-start;gap:1rem}.property-detail__facts{gap:1rem}.property-detail__hero-tabs{flex-wrap:wrap}.property-detail__hero-tab{padding:.5rem .75rem;font-size:.6875rem}.property-detail__details-grid,.property-detail__features-list{grid-template-columns:1fr}.property-detail__similar-grid{grid-template-columns:repeat(2,1fr)}.property-detail__sticky-inner{gap:1rem;padding:.5rem 1rem}.property-detail__sticky-facts,.property-detail__sticky-agent{display:none}}.property-detail__thumbnails{gap:.5rem;padding:.75rem 0;display:flex;overflow-x:auto}.property-detail__thumbnail{border-radius:var(--auth-radius-input,.5rem);cursor:pointer;background:0 0;border:2px solid #0000;flex-shrink:0;width:80px;height:56px;padding:0;transition:border-color .15s;position:relative;overflow:hidden}.property-detail__thumbnail:hover{border-color:var(--auth-color-primary,#c9a96e)}.property-detail__thumbnail img{object-fit:cover;width:100%;height:100%}.property-detail__thumbnail-more{color:#fff;background:#0009;justify-content:center;align-items:center;font-size:.875rem;font-weight:600;display:flex;position:absolute;inset:0}.property-detail__lightbox{z-index:10000;background:#000000eb;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.property-detail__lightbox-content{justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:relative}.property-detail__lightbox-image{object-fit:contain;border-radius:4px;max-width:90vw;max-height:85vh}.property-detail__lightbox-close{color:#fff;cursor:pointer;z-index:1;background:#ffffff26;border:none;border-radius:50%;justify-content:center;align-items:center;width:2.5rem;height:2.5rem;transition:background .15s;display:flex;position:absolute;top:1rem;right:1rem}.property-detail__lightbox-close:hover{background:#ffffff4d}.property-detail__lightbox-prev,.property-detail__lightbox-next{color:#fff;cursor:pointer;background:#ffffff26;border:none;border-radius:50%;justify-content:center;align-items:center;width:3rem;height:3rem;transition:background .15s;display:flex;position:absolute;top:50%;transform:translateY(-50%)}.property-detail__lightbox-prev{left:1.5rem}.property-detail__lightbox-next{right:1.5rem}.property-detail__lightbox-prev:hover,.property-detail__lightbox-next:hover{background:#ffffff4d}.property-detail__lightbox-counter{color:#fff;letter-spacing:.05em;background:#0009;border-radius:2rem;padding:.5rem 1rem;font-size:.875rem;font-weight:500;position:absolute;bottom:1.5rem;left:50%;transform:translate(-50%)}.property-detail__price-secondary{color:var(--auth-color-text-muted,#737373);margin-top:.125rem;font-size:.8125rem}@keyframes property-detail-shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}.property-detail__skeleton-block{background:linear-gradient(90deg, var(--auth-color-surface,#f0f0f0) 25%, var(--auth-color-border,#e5e5e5) 37%, var(--auth-color-surface,#f0f0f0) 63%);border-radius:var(--auth-radius-input,.5rem);background-size:200% 100%;animation:1.5s infinite property-detail-shimmer}.property-detail__skeleton-hero{width:100%;height:100%}.property-detail__skeleton-title{width:60%;height:2rem;margin-bottom:.5rem}.property-detail__skeleton-subtitle{width:30%;height:1rem;margin-bottom:.75rem}.property-detail__skeleton-badge{width:25%;height:1.5rem}.property-detail__skeleton-price{width:120px;height:2.5rem}.property-detail__skeleton-fact{width:100px;height:1.5rem}.property-detail__skeleton-section{width:100%;height:120px;margin-bottom:1.5rem}.property-detail__skeleton-section-tall{width:100%;height:200px;margin-bottom:1.5rem}.property-detail__skeleton-sidebar{width:100%;height:280px}.property-detail--error{justify-content:center;align-items:center;min-height:60vh;display:flex}.property-detail__error-content{text-align:center;max-width:400px;padding:3rem 1.5rem}.property-detail__error-content svg{color:var(--auth-color-text-muted,#737373);margin-bottom:1rem}.property-detail__error-title{color:var(--auth-color-text,#171717);margin:0 0 .5rem;font-size:1.25rem;font-weight:700}.property-detail__error-message{color:var(--auth-color-text-muted,#737373);margin:0 0 1.5rem;font-size:.9375rem;line-height:1.5}.agent-card{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);padding:1.5rem}.agent-card__agents{flex-direction:column;gap:1rem;margin-bottom:1.5rem;display:flex}.agent-card__agent{align-items:center;gap:1rem;display:flex}.agent-card__photo{object-fit:cover;border-radius:50%;width:3.5rem;height:3.5rem}.agent-card__photo-placeholder{background:var(--auth-color-surface,#f5f5f5);width:3.5rem;height:3.5rem;color:var(--auth-color-text-muted,#737373);border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;display:flex}.agent-card__agent-info{flex-direction:column;gap:.125rem;display:flex}.agent-card__agent-name{color:var(--auth-color-text,#171717);font-size:.9375rem;font-weight:600}.agent-card__agent-role{color:var(--auth-color-text-muted,#737373);font-size:.8125rem}.agent-card__agent-phone{color:var(--auth-color-primary,#c9a96e);font-size:.875rem;font-weight:500;text-decoration:none}.agent-card__agent-phone:hover{text-decoration:underline}.agent-card__more{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.8125rem}.agent-card__org{align-items:center;gap:1rem;margin-bottom:1.5rem;display:flex}.agent-card__org-logo{object-fit:contain;width:4rem;height:auto;max-height:3rem}.agent-card__org-info{flex-direction:column;gap:.125rem;display:flex}.agent-card__org-name{color:var(--auth-color-text,#171717);font-size:.9375rem;font-weight:600}.agent-card__org-branch,.agent-card__org-address{color:var(--auth-color-text-muted,#737373);font-size:.8125rem}.agent-card__org-phone{color:var(--auth-color-primary,#c9a96e);font-size:.875rem;font-weight:500;text-decoration:none}.agent-card__actions{flex-wrap:wrap;gap:.75rem;display:flex}.agent-card__brochure{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-input,.5rem);align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:500;text-decoration:none;transition:border-color .15s;display:inline-flex}.agent-card__brochure:hover{border-color:var(--auth-color-primary,#c9a96e)}.property-detail__back{margin-top:1rem}.property-detail__layout{grid-template-columns:1fr 380px;align-items:start;gap:2rem;display:grid}.property-detail__main,.property-detail__sidebar{min-width:0}.property-detail__sidebar-sticky{position:sticky;top:5rem}.property-detail__agent-section{border-bottom:1px solid var(--auth-color-border,#e5e5e5);padding:1.5rem 0}@media (max-width:1024px){.property-detail__layout{grid-template-columns:1fr}.property-detail__sidebar-sticky{position:static}}.property-detail__facts-row-section{border-bottom:1px solid var(--auth-color-border,#e5e5e5);padding:1.5rem 0}.property-detail__facts-row-grid{grid-template-columns:repeat(4,1fr);gap:1rem;display:grid}.property-detail__facts-row-item{background:var(--auth-color-surface,#f5f5f5);border-radius:var(--auth-radius-input,.5rem);flex-direction:column;gap:.25rem;padding:1rem;display:flex}.property-detail__facts-row-label{text-transform:uppercase;letter-spacing:.04em;color:var(--auth-color-text-muted,#737373);font-size:.75rem;font-weight:600}.property-detail__facts-row-value{color:var(--auth-color-text,#171717);font-size:.9375rem;font-weight:600}.property-detail__epc-section{border-bottom:1px solid var(--auth-color-border,#e5e5e5);padding:1.5rem 0}.property-detail__epc-stub{color:var(--auth-color-text-muted,#737373);margin:0;font-size:.875rem;font-style:italic}.property-detail__utilities-section{border-bottom:1px solid var(--auth-color-border,#e5e5e5);padding:1.5rem 0}.property-detail__utilities-grid{grid-template-columns:repeat(3,1fr);gap:0 2rem;display:grid}.property-detail__utility-row{border-bottom:1px solid var(--auth-color-border,#e5e5e5);justify-content:space-between;gap:1rem;padding:.75rem 0;display:flex}.property-detail__utility-label{color:var(--auth-color-text-muted,#737373);font-size:.875rem}.property-detail__utility-value{color:var(--auth-color-text,#171717);font-size:.875rem;font-weight:500}@media (max-width:768px){.property-detail__facts-row-grid{grid-template-columns:repeat(2,1fr)}.property-detail__utilities-grid{grid-template-columns:1fr}}.maplibregl-map{width:100%;height:100%;overflow:hidden;position:relative!important}.maplibregl-canvas-container{width:100%;height:100%;top:0;left:0;position:absolute!important}.maplibregl-canvas{top:0;left:0;position:absolute!important}.listing-map{width:100%;position:relative}.listing-map__container{width:100%;height:100%}.listing-map__pin{background:var(--auth-color-primary,#171717);color:#fff;font-family:var(--auth-font-family,system-ui, sans-serif);white-space:nowrap;cursor:pointer;transform-origin:bottom;border-radius:4px;align-items:center;gap:2px;padding:4px 8px;font-size:12px;font-weight:600;line-height:1;transition:transform .15s,box-shadow .15s;display:inline-flex;position:relative;box-shadow:0 2px 6px #00000040}.listing-map__pin:after{content:"";border-left:5px solid #0000;border-right:5px solid #0000;border-top:5px solid var(--auth-color-primary,#171717);width:0;height:0;position:absolute;bottom:-5px;left:50%;transform:translate(-50%)}.listing-map__pin--hover,.listing-map__pin:hover{transform:scale(1.1)translateY(-2px);box-shadow:0 4px 12px #0000004d}.listing-map__pin--active{background:var(--auth-color-primary-hover,#c9a96e);z-index:10}.listing-map__pin--active:after{border-top-color:var(--auth-color-primary-hover,#c9a96e)}.listing-map__pin-label{font-weight:700}.listing-map__pin-freq{opacity:.85;font-size:10px;font-weight:400}.listing-map__cluster{background:var(--auth-color-primary,#171717);color:#fff;font-family:var(--auth-font-family,system-ui, sans-serif);cursor:pointer;border-radius:6px;justify-content:center;align-items:center;font-weight:700;transition:transform .15s,box-shadow .15s;display:flex;box-shadow:0 2px 8px #0000004d}.listing-map__cluster:hover{transform:scale(1.08);box-shadow:0 4px 14px #00000059}.listing-map__cluster--small{width:36px;height:36px;font-size:13px}.listing-map__cluster--medium{width:44px;height:44px;font-size:14px}.listing-map__cluster--large{width:52px;height:52px;font-size:15px}.listing-map__cluster-count{line-height:1}.listing-map__popup-wrapper .maplibregl-popup-content,.listing-map__popup-wrapper .mapboxgl-popup-content{border-radius:8px;padding:0;overflow:hidden;box-shadow:0 4px 16px #00000026}.listing-map__popup-wrapper .maplibregl-popup-close-button,.listing-map__popup-wrapper .mapboxgl-popup-close-button{color:#fff;z-index:1;padding:4px 8px;font-size:18px}.listing-map__popover{width:260px;font-family:var(--auth-font-family,system-ui, sans-serif)}.listing-map__popover-image{object-fit:cover;width:100%;height:140px;display:block}.listing-map__popover-placeholder{background:var(--auth-color-surface,#f5f5f5);width:100%;height:100px}.listing-map__popover-body{padding:10px 12px 12px}.listing-map__popover-price{color:var(--auth-color-text,#171717);margin-bottom:2px;font-size:16px;font-weight:700}.listing-map__popover-address{color:var(--auth-color-text-muted,#737373);margin-bottom:4px;font-size:13px}.listing-map__popover-meta{color:var(--auth-color-text-muted,#737373);margin-bottom:10px;font-size:12px}.listing-map__popover-cta{background:var(--auth-color-primary,#171717);color:#fff;cursor:pointer;text-align:center;border:none;border-radius:4px;width:100%;padding:8px;font-family:inherit;font-size:13px;font-weight:600;transition:background .15s;display:block}.listing-map__popover-cta:hover{background:var(--auth-color-primary-hover,#333)}.marketplace-layout{width:100%}.marketplace-layout__map-hero{width:100%;height:50vh;min-height:300px;max-height:500px;position:relative}.marketplace-layout__hide-map{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;z-index:10;align-items:center;gap:.375rem;padding:.5rem 1rem;font-size:.8125rem;font-weight:600;display:inline-flex;position:absolute;bottom:1rem;left:50%;transform:translate(-50%);box-shadow:0 2px 8px #0000001f}.marketplace-layout__hide-map:hover{background:var(--auth-color-surface,#f5f5f5)}.marketplace-layout__show-map{font-family:var(--auth-font-family,system-ui, sans-serif);color:var(--auth-color-text,#171717);background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-button,.25rem);cursor:pointer;align-items:center;gap:.375rem;margin-bottom:.5rem;padding:.5rem 1rem;font-size:.8125rem;font-weight:600;display:inline-flex}.marketplace-layout__show-map:hover{background:var(--auth-color-surface,#f5f5f5)}.marketplace-layout__toolbar{justify-content:flex-end;padding:.5rem 0;display:flex}.marketplace-layout__view-toggle{border:1px solid var(--auth-color-border,#e5e5e5);border-radius:var(--auth-radius-button,.25rem);display:inline-flex;overflow:hidden}.marketplace-layout__view-btn{background:var(--auth-color-background,#fff);width:36px;height:32px;color:var(--auth-color-text-muted,#737373);cursor:pointer;border:none;justify-content:center;align-items:center;padding:0;transition:background .15s,color .15s;display:flex}.marketplace-layout__view-btn:not(:last-child){border-right:1px solid var(--auth-color-border,#e5e5e5)}.marketplace-layout__view-btn:hover{background:var(--auth-color-surface,#f5f5f5)}.marketplace-layout__view-btn--active{background:var(--auth-color-primary,#171717);color:#fff}.marketplace-layout__view-btn--active:hover{background:var(--auth-color-primary,#171717)}.marketplace-layout__content{width:100%;position:relative}.marketplace-layout--grid .marketplace-layout__content{display:block}.marketplace-layout--grid .marketplace-layout__grid{width:100%}.marketplace-layout--split .marketplace-layout__content{grid-template-columns:1fr 40%;gap:0;height:calc(100vh - 200px);display:grid}.marketplace-layout--split .marketplace-layout__grid{padding-right:1rem;overflow-y:auto}.marketplace-layout--split .marketplace-layout__map{border-left:1px solid var(--auth-color-border,#e5e5e5);height:100%;position:sticky;top:0}.marketplace-layout--map .marketplace-layout__content{height:calc(100vh - 200px);position:relative}.marketplace-layout--map .marketplace-layout__map{width:100%;height:100%}.marketplace-layout__floating-panel{background:var(--auth-color-background,#fff);border-radius:var(--auth-radius-card,.5rem);z-index:10;flex-direction:column;width:380px;max-height:calc(100% - 2rem);display:flex;position:absolute;top:1rem;left:1rem;overflow:hidden;box-shadow:0 4px 20px #00000026}.marketplace-layout__floating-header{border-bottom:1px solid var(--auth-color-border,#e5e5e5);font-family:var(--auth-font-family,system-ui, sans-serif);justify-content:space-between;align-items:center;padding:.75rem 1rem;display:flex}.marketplace-layout__floating-count{color:var(--auth-color-text,#171717);font-size:.8125rem;font-weight:600}.marketplace-layout__floating-close{border:1px solid var(--auth-color-border,#e5e5e5);background:var(--auth-color-background,#fff);width:28px;height:28px;color:var(--auth-color-text-muted,#737373);cursor:pointer;border-radius:4px;justify-content:center;align-items:center;padding:0;display:flex}.marketplace-layout__floating-close:hover{background:var(--auth-color-surface,#f5f5f5)}.marketplace-layout__floating-list{flex:1;padding:.5rem;overflow-y:auto}@media (max-width:768px){.marketplace-layout--split .marketplace-layout__content{flex-direction:column;height:auto;display:flex}.marketplace-layout--split .marketplace-layout__grid{padding-right:0;overflow-y:visible}.marketplace-layout--split .marketplace-layout__map{border-left:none;border-bottom:1px solid var(--auth-color-border,#e5e5e5);order:-1;height:300px}.marketplace-layout__floating-panel{width:calc(100% - 2rem);max-height:50%}}.pagination{color:inherit;flex-direction:column;align-items:center;gap:.75rem;padding:1.5rem 0;display:flex}.pagination__summary{color:inherit;opacity:.7;font-size:.875rem}.pagination__summary strong{opacity:1}.pagination__load-more{font-size:.875rem;font-weight:500;font-family:var(--auth-font-family,inherit);color:var(--auth-color-background,#fff);background:var(--auth-color-primary,#b8a378);border-radius:var(--auth-border-radius,.375rem);cursor:pointer;border:none;justify-content:center;align-items:center;padding:.625rem 1.75rem;transition:opacity .15s;display:inline-flex}.pagination__load-more:hover{opacity:.9}.pagination__load-more:disabled{opacity:.5;cursor:not-allowed}.pagination--pages{flex-flow:wrap;justify-content:center;gap:.75rem}.pagination__info{color:inherit;opacity:.7;align-items:center;gap:1rem;font-size:.8125rem;display:flex}.pagination__info strong{opacity:1}.pagination__info-text{white-space:nowrap}.pagination__rows-wrap{position:relative}.pagination__rows-trigger{font-size:.8125rem;font-family:var(--auth-font-family,inherit);color:inherit;border:1px solid var(--auth-color-border,#e5e7eb);border-radius:var(--auth-border-radius,.375rem);cursor:pointer;white-space:nowrap;background:0 0;align-items:center;gap:.375rem;padding:.375rem .625rem;transition:border-color .15s;display:inline-flex}.pagination__rows-trigger:hover:not(:disabled){border-color:var(--auth-color-primary,#b8a378)}.pagination__rows-trigger:disabled{opacity:.5;cursor:not-allowed}.pagination__rows-chevron{transition:transform .15s}.pagination__rows-chevron--open{transform:rotate(180deg)}.pagination__rows-menu{background:var(--auth-color-background,#fff);border:1px solid var(--auth-color-border,#e5e7eb);border-radius:var(--auth-border-radius,.375rem);z-index:10;min-width:100%;margin-top:.25rem;padding:.25rem;list-style:none;position:absolute;top:100%;left:0;box-shadow:0 4px 12px #00000026}.pagination__rows-option{width:100%;font-size:.8125rem;font-family:var(--auth-font-family,inherit);color:inherit;cursor:pointer;text-align:left;white-space:nowrap;background:0 0;border:none;border-radius:.25rem;padding:.375rem .75rem;transition:background .1s;display:block}.pagination__rows-option:hover{background:var(--auth-color-border,#ffffff0f)}.pagination__rows-option--active{color:var(--auth-color-primary,#b8a378);font-weight:600}.pagination__controls{align-items:center;gap:.25rem;display:flex}.pagination__arrow{border:1px solid var(--auth-color-border,#e5e7eb);border-radius:var(--auth-border-radius,.375rem);width:2rem;height:2rem;color:inherit;cursor:pointer;background:0 0;justify-content:center;align-items:center;transition:background .15s;display:inline-flex}.pagination__arrow:hover:not(:disabled){background:var(--auth-color-border,#ffffff0f)}.pagination__arrow:disabled{opacity:.3;cursor:not-allowed}.pagination__page{border:1px solid var(--auth-color-border,#e5e7eb);border-radius:var(--auth-border-radius,.375rem);min-width:2rem;height:2rem;color:inherit;font-size:.875rem;font-family:var(--auth-font-family,inherit);cursor:pointer;background:0 0;justify-content:center;align-items:center;padding:0 .5rem;transition:all .15s;display:inline-flex}.pagination__page:hover:not(:disabled){background:var(--auth-color-border,#ffffff0f)}.pagination__page--active{background:var(--auth-color-primary,#b8a378);color:var(--auth-color-background,#fff);border-color:var(--auth-color-primary,#b8a378)}.pagination__page--active:hover:not(:disabled){background:var(--auth-color-primary,#b8a378);opacity:.9}.pagination__ellipsis{min-width:2rem;height:2rem;color:inherit;opacity:.5;justify-content:center;align-items:center;font-size:.875rem;display:inline-flex}.pagination--infinite{padding:0}.pagination__sentinel{height:1px}.pagination__spinner{justify-content:center;padding:1rem 0;display:flex}.pagination__spinner-icon{border:2px solid var(--auth-color-border,#e5e7eb);border-top-color:var(--auth-color-primary,#b8a378);border-radius:50%;width:1.5rem;height:1.5rem;animation:.6s linear infinite pagination-spin}@keyframes pagination-spin{to{transform:rotate(360deg)}}@media (max-width:768px){.pagination--pages{flex-direction:column;gap:.5rem}.pagination__info{flex-wrap:wrap;justify-content:center;gap:.5rem;font-size:.75rem}.pagination__controls{flex-wrap:wrap;justify-content:center}.pagination__page,.pagination__arrow{min-width:1.75rem;height:1.75rem;font-size:.75rem}}
