:root {
    /* Barvy z loga SHO REALITY */
    --sho-logo-bg: #000D1F;
    --sho-header-bg-end: #102844;
    --sho-navy: #000D1F;
    --sho-navy-dark: #000810;
    --sho-navy-light: #102844;
    --sho-gold: #c9a96e;
    --sho-gold-hover: #b89558;
    --sho-white: #ffffff;
    --sho-gray-100: #f7f8fa;
    --sho-gray-200: #e9ecf1;
    --sho-gray-500: #6b7280;
    --sho-text: #2d3748;
    --sho-font-serif: Georgia, "Times New Roman", serif;
    --sho-font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    /* sticky hlavička: padding + logo + mezera pod ní */
    --sho-header-sticky-offset: calc(76px + 1.7rem + 0.75rem);
}

body.sho-public {
    font-family: var(--sho-font-sans);
    color: var(--sho-text);
    background: var(--sho-white);
}

html.sho-home-intro-active {
    overflow: hidden;
}

.sho-home-intro {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.sho-home-intro[hidden] {
    display: none !important;
}

.sho-home-intro--hide {
    opacity: 0;
    pointer-events: none;
}

.sho-home-intro__video {
    display: block;
    max-width: min(90vw, 1320px);
    max-height: min(75vh, 960px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.sho-home-intro__skip {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.sho-home-intro__skip:hover,
.sho-home-intro__skip:focus-visible {
    color: #111827;
    outline: none;
}

/* Header — vlevo barva loga, vpravo jemně světlejší (bez textury) */
.sho-header {
    background-color: var(--sho-header-bg-start, var(--sho-logo-bg));
    background-image: linear-gradient(
        90deg,
        var(--sho-header-bg-start, var(--sho-logo-bg)) 0%,
        var(--sho-header-bg-start, var(--sho-logo-bg)) 32%,
        var(--sho-header-bg-mid, var(--sho-navy-dark)) 50%,
        var(--sho-header-bg-end, var(--sho-navy-light)) 100%
    );
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sho-header .navbar {
    background: transparent !important;
}

.sho-header .navbar-brand,
.sho-logo-brand {
    text-decoration: none;
    line-height: 0;
    padding: 0;
    margin: 0;
    background: transparent;
}

/* Podélné logo — větší v headeru */
.sho-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.sho-logo-img--header {
    height: 76px;
    width: auto;
    max-width: min(220px, 42vw);
}

.sho-logo-img--footer {
    height: 68px;
    width: auto;
    max-width: 200px;
}

.sho-logo-text {
    display: inline-flex;
    align-items: center;
    font-family: var(--sho-font-serif, Georgia, serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--sho-menu-text, #fff);
    white-space: nowrap;
}

.sho-logo-text.sho-logo-img--footer {
    color: var(--sho-footer-text, rgba(255, 255, 255, 0.9));
    font-size: 1.05rem;
}

.sho-header .navbar-nav {
    row-gap: 0.15rem;
}

.sho-header .nav-link {
    color: color-mix(in srgb, var(--sho-menu-text, #ffffff) 85%, transparent) !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem !important;
    white-space: nowrap;
}

.sho-header .nav-link:hover,
.sho-header .nav-link.active {
    color: var(--sho-gold) !important;
}

.sho-header .header-phone {
    color: var(--sho-menu-text, var(--sho-white));
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
}

.sho-header .sho-lang-switcher .btn-outline-light {
    color: var(--sho-menu-text, var(--sho-white));
    border-color: color-mix(in srgb, var(--sho-menu-text, #ffffff) 55%, transparent);
}

.sho-header .sho-lang-switcher .btn-outline-light:hover,
.sho-header .sho-lang-switcher .btn-outline-light:focus {
    background: var(--sho-menu-text, var(--sho-white));
    border-color: var(--sho-menu-text, var(--sho-white));
    /* Kontrast k barvě menu: na světlé hlavičce tmavé menu → světlý text, na tmavé naopak */
    color: var(--sho-header-bg-start, var(--sho-logo-bg, var(--sho-navy-dark)));
}

.sho-header .header-phone i {
    color: var(--sho-gold);
    margin-right: 0.35rem;
}

.sho-btn-gold {
    background: var(--sho-gold);
    border: none;
    color: var(--sho-btn-accent-text, var(--sho-navy-dark));
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s;
}

.sho-btn-gold:hover {
    background: var(--sho-gold-hover);
    color: var(--sho-btn-accent-text, var(--sho-navy-dark));
}

.sho-btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--sho-white);
    background: transparent;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
}

.sho-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sho-white);
}

.sho-btn-navy {
    background: var(--sho-navy);
    border: none;
    color: var(--sho-white);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
}

.sho-btn-navy:hover {
    background: var(--sho-navy-light);
    color: var(--sho-white);
}

/* Hero */
.sho-hero {
    position: relative;
    min-height: 520px;
    background: var(--sho-navy-dark) center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--sho-white);
}

.sho-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--sho-navy-dark) 92%, transparent) 0%,
        color-mix(in srgb, var(--sho-navy-dark) 55%, transparent) 55%,
        color-mix(in srgb, var(--sho-navy-dark) 25%, transparent) 100%);
}

.sho-hero .container {
    position: relative;
    z-index: 1;
}

.sho-hero h1 {
    font-family: var(--sho-font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1rem;
    white-space: pre-line;
}

.sho-hero .lead {
    font-size: 1rem;
    opacity: 0.88;
    max-width: 520px;
    line-height: 1.6;
}

.sho-featured-card {
    background: rgba(26, 35, 50, 0.85);
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 4px;
    padding: 1.25rem;
    backdrop-filter: blur(4px);
}

.sho-featured-card__inner {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.sho-featured-card__content {
    flex: 1;
    min-width: 0;
}

.sho-featured-card__thumb {
    flex: 0 0 128px;
    width: 128px;
    align-self: center;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.5);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sho-featured-card__thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.sho-featured-card__thumb img {
    display: block;
    width: 100%;
    height: 128px;
    object-fit: cover;
}

.sho-featured-card .label {
    color: var(--sho-gold);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.sho-featured-card .price {
    color: var(--sho-gold);
    font-size: 1.35rem;
    font-weight: 700;
}

/* Search bar */
.sho-search-bar {
    background: var(--sho-homepage-search-strip-bg, var(--sho-homepage-stats-strip-bg, var(--sho-white)));
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    padding: 1.25rem;
}

.sho-search-bar .form-select,
.sho-search-bar .form-control {
    border: 1px solid var(--sho-gray-200);
    border-radius: 2px;
    font-size: 0.9rem;
}

/* Statistiky pod hero (Klasická / Moderní / Global) */
.sho-homepage-stats-bar {
    background: var(--sho-homepage-stats-strip-bg, var(--sho-white));
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    padding: 1.15rem 0;
    width: 100%;
}

.sho-homepage-stats-bar__row {
    align-items: stretch;
}

.sho-homepage-stats-bar__row > [class*="col-"]:not(:last-child) .sho-homepage-stat {
    border-right: 1px solid var(--sho-gray-200);
}

.sho-homepage-stat {
    text-align: center;
    padding: 0.35rem 1rem;
    min-height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sho-homepage-stat__value {
    font-family: var(--sho-font-serif);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 600;
    color: var(--sho-gold);
    line-height: 1.1;
}

.sho-homepage-stat__label {
    color: var(--sho-gray-500);
    font-size: 0.82rem;
    margin-top: 0.25rem;
    line-height: 1.35;
}

/* Klasická — mezera mezi panelem statistik/vyhledávání pod hero a první sekcí */
body.template-classic {
    --sho-classic-strip-clearance: 2.75rem;
}

body.template-classic:has(.sho-search-bar) {
    --sho-classic-strip-clearance: 4rem;
}

body.template-classic:has(.sho-homepage-stats-bar) .container:has(> .sho-homepage-stats-bar),
body.template-classic:has(.sho-search-bar) .container:has(> .sho-search-bar) {
    margin-bottom: 1.5rem;
}

body.template-classic:has(.sho-homepage-stats-bar) .sho-section:first-of-type,
body.template-classic:has(.sho-search-bar) .sho-section:first-of-type {
    padding-top: calc(4rem + var(--sho-classic-strip-clearance));
}

/* Sections */
.sho-section {
    padding: 4rem 0;
}

.sho-section-title {
    font-family: var(--sho-font-serif);
    font-size: 1.75rem;
    color: var(--sho-navy);
    margin-bottom: 0.35rem;
}

.sho-section-subtitle {
    color: var(--sho-gray-500);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.sho-section-dark {
    background: var(--sho-navy);
    color: var(--sho-white);
}

.sho-section-dark .sho-section-title {
    color: var(--sho-white);
}

.sho-section-gray {
    background: var(--sho-gray-100);
}

.sho-section-testimonials {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.sho-newsletter-section {
    padding-top: 0;
    padding-bottom: 3rem;
}

/* Klasická — mezera mezi „Naši makléři/poradci“ a „Nové nabídky jako první“ */
body.template-classic #makleri:has(+ .sho-newsletter-section) {
    padding-bottom: 5rem;
}

body.template-classic .sho-section + .sho-newsletter-section {
    padding-top: 3.5rem;
    background: var(--sho-white);
}

body.template-classic #makleri + .sho-newsletter-section {
    padding-top: 4rem;
}

.sho-newsletter-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 1.5rem;
    padding: 1.5rem 1.75rem;
    background: var(--sho-gray-100);
    border: 1px solid var(--sho-gray-200);
    border-radius: 8px;
}

.sho-newsletter-banner__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    background: var(--sho-white);
    border: 1px solid var(--sho-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sho-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sho-newsletter-banner__text {
    flex: 1 1 12rem;
    min-width: 0;
}

.sho-newsletter-banner__text .sho-section-title {
    margin-bottom: 0.25rem;
}

.sho-newsletter-banner__text .sho-section-subtitle {
    margin-bottom: 0;
}

.sho-newsletter-banner__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex: 1 1 16rem;
    min-width: min(100%, 18rem);
}

.sho-newsletter-banner__form .form-control {
    flex: 1 1 10rem;
    min-height: 44px;
    border-radius: 6px;
    border-color: var(--sho-gray-200);
}

.sho-newsletter-banner__form .sho-btn-gold {
    border: 0;
    border-radius: 6px;
    padding: 0 1.25rem;
    min-height: 44px;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .sho-newsletter-banner__form {
        flex-direction: column;
    }

    .sho-newsletter-banner__form .sho-btn-gold {
        width: 100%;
    }
}

/* Property cards */
.sho-property-card {
    background: var(--sho-white);
    border: 1px solid var(--sho-gray-200);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.sho-property-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.sho-property-card .card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sho-property-card .card-img-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.sho-property-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.sho-property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    pointer-events: none;
    color: var(--sho-white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.sho-property-badge--new,
.sho-property-badge--default {
    background: var(--sho-navy);
}

.sho-property-badge--top {
    background: var(--sho-gold);
    color: var(--sho-navy-dark);
}

.sho-property-badge--exclusive {
    background: #1a4d7a;
}

.sho-property-badge--sale {
    background: #b42318;
}

.sho-property-badge--invest {
    background: #2d6a4f;
}

.sho-property-badge--open {
    background: #5a3d8c;
}

.sho-property-badge--soon {
    background: #6b5b3e;
}

.sho-property-badge--mortgage {
    background: #0f5c4c;
}

.sho-property-badge--status-closed {
    background: #b42318;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.sho-property-badge--status-reserved {
    background: #b45309;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.sho-property-badge--secondary {
    top: auto;
    bottom: 12px;
    left: 12px;
}

.sho-property-status-banner {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    background: #b42318;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sho-property-status-banner--reserved {
    background: #b45309;
}

.sho-property-watermark {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.sho-property-watermark span {
    transform: rotate(-18deg);
    font-size: clamp(1.25rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    border: 4px solid rgba(255, 255, 255, 0.82);
    padding: 0.3em 0.7em;
    background: rgba(180, 83, 9, 0.42);
    backdrop-filter: blur(1px);
}

.sho-property-card .card-img-wrap .sho-property-watermark span {
    font-size: clamp(0.85rem, 3.5vw, 1.35rem);
    letter-spacing: 0.12em;
    border-width: 3px;
}

.sho-gallery-main .sho-property-watermark {
    border-radius: inherit;
}

.sho-property-card .card-body {
    padding: 1.1rem;
}

.sho-property-card .card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sho-navy);
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.sho-price-block {
    margin-bottom: 0.75rem;
}

.sho-price-amount {
    color: var(--sho-gold);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
}

.sho-price-note {
    margin-top: 0.35rem;
    color: var(--sho-gray-500);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.35;
}

.sho-price-block--card .sho-price-amount {
    font-size: 1.1rem;
}

.sho-price-block--card .sho-price-note {
    font-size: 0.72rem;
}

.sho-price-block--featured .sho-price-amount {
    font-size: 1.35rem;
}

.sho-price-block--featured .sho-price-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.sho-property-card .meta {
    font-size: 0.8rem;
    color: var(--sho-gray-500);
}

.sho-property-card .meta i {
    color: var(--sho-gold);
    width: 1rem;
}

.sho-link-detail {
    color: var(--sho-navy);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.sho-link-detail:hover {
    color: var(--sho-gold);
}

/* Why us */
.sho-why-item {
    text-align: center;
    padding: 0.75rem 1rem;
    height: 100%;
}

.sho-why-item .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--sho-gold);
}

.sho-why-icon {
    font-size: 2.75rem;
    line-height: 1;
    width: auto;
    height: auto;
    display: inline-block;
}

@media (min-width: 992px) {
    .sho-why-icon {
        font-size: 3rem;
    }
}

.sho-why-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sho-gold);
    margin-bottom: 0.65rem;
}

.sho-why-item p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.sho-why-item--light h5 {
    color: var(--sho-navy);
}

.sho-why-item--light p {
    color: var(--sho-gray-500);
}

/* Testimonials */
.sho-testimonials-block {
    margin-top: 2rem;
    padding: 1.75rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(201, 169, 110, 0.35);
    background: rgba(0, 0, 0, 0.18);
    border-radius: 6px;
}

.sho-testimonials-block--full {
    margin-top: 0;
    padding: 1.5rem 1.5rem 1.25rem;
}

.sho-testimonials-block__title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sho-gold);
    margin-bottom: 1.15rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sho-testimonials-block--full .sho-testimonials-block__title {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.sho-testimonial {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 4px;
    padding: 1.25rem;
    height: 100%;
}

.sho-testimonial .stars {
    color: var(--sho-gold);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.sho-testimonial blockquote {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.sho-testimonial cite {
    font-size: 0.8rem;
    font-style: normal;
    color: var(--sho-gold);
}

/* Appraisal form */
.sho-appraisal-box {
    background: var(--sho-white);
    border-radius: 4px;
    padding: 1.75rem;
    color: var(--sho-text);
}

.sho-appraisal-box h3 {
    font-family: var(--sho-font-serif);
    color: var(--sho-navy);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.sho-appraisal-preview {
    background: linear-gradient(135deg, #f0faf4 0%, #fff 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-left: 4px solid var(--sho-gold);
    border-radius: 4px;
    padding: 1rem 1.1rem;
}

.sho-appraisal-gate {
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 4px;
    padding: 1rem 1.1rem;
}

.sho-appraisal-gate__icon {
    color: var(--sho-gold);
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.sho-appraisal-summary {
    background: var(--sho-gray-100, #f4f6f8);
    border-radius: 4px;
    padding: 0.75rem 1rem;
}

.sho-appraisal-result {
    background: linear-gradient(135deg, #f0faf4 0%, #fff 100%);
    border-left: 4px solid var(--sho-gold) !important;
    padding: 1.25rem 1.5rem;
}

.sho-appraisal-result__price {
    font-family: var(--sho-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sho-navy);
}

/* Property search — mapa krajů */
.sho-location-panel {
    background: linear-gradient(165deg, #081220 0%, #101e34 48%, #162a42 100%);
    border-radius: 8px;
    padding: 1.35rem 1.5rem 1.15rem;
    overflow: hidden;
}

.sho-location-panel__title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.sho-location-panel__select {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.sho-location-panel__select option {
    color: #212529;
    background: #fff;
}

.sho-location-panel__sketch {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 1rem;
    padding: 0.5rem 0 0;
    min-height: 10rem;
}

.sho-location-panel__sketch::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 8%;
    height: 75%;
    background: radial-gradient(ellipse at center bottom, rgba(148, 178, 210, 0.14) 0%, transparent 72%);
    pointer-events: none;
}

.sho-location-panel__sketch .sho-location-sketch__svg {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 9rem;
    max-height: 18rem;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 6px 24px rgba(160, 190, 220, 0.16));
    user-select: none;
    pointer-events: none;
}

@media (min-width: 992px) {
    .sho-location-panel__sketch {
        min-height: 15rem;
    }

    .sho-location-panel__sketch .sho-location-sketch__svg {
        min-height: 11rem;
        max-height: 20rem;
    }
}

@media (max-width: 991.98px) {
    .sho-location-panel__sketch {
        min-height: 10rem;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }

    .sho-location-panel__sketch .sho-location-sketch__svg {
        min-height: 8rem;
        max-height: 12rem;
    }
}

.sho-cz-map {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 0.5rem;
    min-height: 220px;
}

.sho-cz-map__svg,
.sho-cz-map__object {
    width: 100%;
    height: auto;
    display: block;
    min-height: 220px;
    pointer-events: auto;
}

.sho-cz-map__region {
    fill: rgba(255, 255, 255, 0.12);
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 2;
    cursor: pointer;
    transition: fill 0.15s ease, stroke 0.15s ease;
}

.sho-cz-map__region:hover,
.sho-cz-map__region.is-active {
    fill: rgba(201, 162, 39, 0.55);
    stroke: var(--sho-gold);
}

.sho-cz-map__region:focus,
.sho-cz-map__region:focus-visible {
    outline: none;
}

/* Team */
.sho-team-card {
    text-align: center;
    padding: 0 0.5rem 1rem;
}

.sho-team-card__photo-wrap {
    width: 220px;
    height: 220px;
    max-width: 100%;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--sho-gold);
    background: var(--sho-gray-100);
    flex-shrink: 0;
}

.sho-team-card .photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.sho-team-photo-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.sho-team-photo-media__img,
.sho-team-photo-media__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.sho-team-card .sho-team-photo-media__img,
.sho-team-card .sho-team-photo-media__video {
    object-position: center 30%;
}

.sho-team-photo-media--has-video .sho-team-photo-media__video {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.sho-team-photo-media--has-video .sho-team-photo-media__img {
    position: relative;
}

.sho-team-photo-media--playing .sho-team-photo-media__img {
    opacity: 0;
}

.sho-team-photo-media--playing .sho-team-photo-media__video {
    opacity: 1;
}

.sho-advisor-card__photo-wrap .sho-team-photo-media {
    width: 168px;
    height: 196px;
    flex-shrink: 0;
}

.sho-advisor-card__photo-wrap .sho-team-photo-media__img,
.sho-advisor-card__photo-wrap .sho-team-photo-media__video {
    border-radius: 4px;
    border: 2px solid var(--sho-gold);
    object-position: center 30%;
}

.sho-team-card .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sho-gray-500);
    font-size: 3rem;
    background: var(--sho-gray-200);
}

.sho-team-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sho-navy);
    margin-bottom: 0.15rem;
}

.sho-team-card .title {
    font-size: 0.8rem;
    color: var(--sho-gold);
    margin-bottom: 0.5rem;
}

.sho-team-card a {
    font-size: 0.8rem;
    color: var(--sho-gray-500);
    text-decoration: none;
    display: block;
}

/* CTA box */
.sho-cta-gold {
    background: var(--sho-gold);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    color: var(--sho-navy-dark);
}

.sho-cta-gold h3 {
    font-family: var(--sho-font-serif);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sho-cta-gold--sidebar {
    min-height: 100%;
    padding: 2rem 1.5rem;
}

@media (min-width: 992px) {
    .sho-home-pair-appraisal .sho-appraisal-box {
        margin-top: 0;
    }
}

/* Blog */
.sho-blog-card {
    display: block;
    border: 1px solid var(--sho-gray-200);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sho-blog-card:hover {
    box-shadow: 0 10px 28px rgba(0, 13, 31, 0.1);
    transform: translateY(-2px);
    color: inherit;
}

.sho-blog-card .thumb {
    height: 140px;
    background: var(--sho-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sho-gray-500);
    overflow: hidden;
}

.sho-blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sho-blog-card-title {
    color: var(--sho-navy);
}

.sho-blog-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sho-blog-article {
    max-width: 820px;
}

.sho-blog-article-image-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 13, 31, 0.12);
}

.sho-blog-article-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.sho-btn-outline {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    border: 1px solid var(--sho-navy);
    border-radius: 4px;
    color: var(--sho-navy);
    font-weight: 600;
    text-decoration: none;
}

.sho-btn-outline:hover {
    background: var(--sho-navy);
    color: var(--sho-white);
}

/* Footer */
.sho-footer {
    background-color: var(--sho-footer-bg-start, var(--sho-logo-bg));
    background-image: linear-gradient(
        90deg,
        var(--sho-footer-bg-start, var(--sho-logo-bg)) 0%,
        var(--sho-footer-bg-mid, var(--sho-navy-dark)) 50%,
        var(--sho-footer-bg-end, var(--sho-navy-light)) 100%
    );
    color: var(--sho-footer-text, rgba(255, 255, 255, 0.75));
    padding: 3rem 0 1.5rem;
    font-size: 0.85rem;
}

.sho-footer__about {
    white-space: pre-line;
}

.sho-footer h6 {
    color: var(--sho-gold);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sho-footer a {
    color: var(--sho-footer-link, rgba(255, 255, 255, 0.75));
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
}

.sho-footer a:hover {
    color: var(--sho-gold);
}

.sho-footer .social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    margin-right: 0.5rem;
}

.sho-footer-bottom {
    border-top: 1px solid color-mix(in srgb, var(--sho-footer-text, white) 18%, transparent);
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--sho-footer-text, white) 72%, transparent);
}

@media (max-width: 991.98px) {
    .sho-hero {
        min-height: auto;
        padding: 3rem 0 4rem;
    }

    .sho-search-bar {
        margin-top: 1rem;
    }

    body.template-classic:has(.sho-homepage-stats-bar) .sho-section:first-of-type,
    body.template-classic:has(.sho-search-bar) .sho-section:first-of-type {
        padding-top: 3.5rem;
    }

    .sho-header .header-phone {
        display: none;
    }

    .sho-logo-img--header {
        height: 58px;
        max-width: 160px;
    }

    :root {
        --sho-header-sticky-offset: calc(58px + 1.7rem + 0.75rem);
    }

    .sho-property-sidebar.sticky-top {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .sho-logo-img--footer {
        height: 52px;
        max-width: 140px;
    }

    .sho-team-card__photo-wrap {
        width: 190px;
        height: 190px;
    }
}

@media (max-width: 575.98px) {
    .sho-team-card__photo-wrap {
        width: 168px;
        height: 168px;
    }

    .sho-team-card .photo,
    .sho-team-card .sho-team-photo-media__img,
    .sho-team-card .sho-team-photo-media__video {
        object-position: center 26%;
    }

    .sho-featured-card__inner {
        flex-direction: column;
    }

    .sho-featured-card__thumb {
        width: 100%;
        flex: none;
    }

    .sho-featured-card__thumb img {
        height: 180px;
    }
}

/* Detail nemovitosti */
.sho-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sho-property-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    background: var(--sho-gray-100);
    border: 1px solid var(--sho-gray-200);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--sho-text);
}

.sho-property-meta__item i {
    color: var(--sho-gold);
    font-size: 0.75rem;
}

.sho-property-description {
    background: var(--sho-white);
    border: 1px solid var(--sho-gray-200);
    border-left: 4px solid var(--sho-gold);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 13, 31, 0.06);
    overflow: hidden;
}

.sho-property-description__header {
    padding: 1.25rem 1.5rem 0.75rem;
    background: linear-gradient(180deg, var(--sho-gray-100) 0%, var(--sho-white) 100%);
    border-bottom: 1px solid var(--sho-gray-200);
}

.sho-property-description__eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sho-gold);
    margin-bottom: 0.25rem;
}

.sho-property-description__title {
    font-family: var(--sho-font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--sho-navy);
    margin: 0;
}

.sho-property-description__body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.sho-property-description__text {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--sho-text);
    font-size: 0.95rem;
}

.sho-property-description__text:last-child {
    margin-bottom: 0;
}

.sho-property-description__text--lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--sho-navy);
    line-height: 1.6;
}

.sho-property-sidebar.sticky-top {
    top: var(--sho-header-sticky-offset);
    z-index: 1020;
    max-height: calc(100vh - var(--sho-header-sticky-offset) - 1rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

.sho-property-sidebar__card {
    background: var(--sho-white);
    border: 1px solid var(--sho-gray-200);
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(0, 13, 31, 0.08);
    padding: 1.35rem;
}

.sho-property-facts li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--sho-gray-200);
    font-size: 0.85rem;
}

.sho-property-facts li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sho-property-facts__label {
    color: var(--sho-gray-500);
    flex-shrink: 0;
}

.sho-property-facts__label i {
    color: var(--sho-gold);
    width: 1rem;
    margin-right: 0.25rem;
}

.sho-property-facts__value {
    text-align: right;
    font-weight: 600;
    color: var(--sho-navy);
}

.sho-property-agent {
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sho-gray-200);
}

.sho-property-agent__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sho-gray-500);
    margin-bottom: 0.75rem;
}

.sho-property-agent__body {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.sho-property-agent__photo-wrap {
    flex-shrink: 0;
}

.sho-property-agent__photo,
.sho-property-agent__photo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--sho-gold);
}

.sho-property-agent__photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sho-gray-100);
    color: var(--sho-gray-500);
    font-size: 1.25rem;
}

.sho-property-agent__name {
    font-weight: 700;
    color: var(--sho-navy);
    line-height: 1.2;
}

.sho-property-agent__title {
    font-size: 0.8rem;
    color: var(--sho-gray-500);
    margin-top: 0.15rem;
}

.sho-property-agent__contact {
    display: block;
    font-size: 0.8rem;
    color: var(--sho-navy);
    text-decoration: none;
    margin-top: 0.35rem;
}

.sho-property-agent__contact i {
    color: var(--sho-gold);
    width: 1rem;
}

.sho-property-agent__contact:hover {
    color: var(--sho-gold-dark, #a88a4e);
}

/* Galerie na detailu nemovitosti */
.sho-gallery-placeholder {
    min-height: 280px;
    background: var(--sho-gray-100);
    border: 1px dashed var(--sho-gray-200);
}

.sho-gallery-main .sho-property-badge {
    z-index: 4;
}

.sho-gallery-main .sho-property-watermark {
    z-index: 3;
}

.sho-gallery-main {
    background: var(--sho-gray-100);
    min-height: 320px;
}

.sho-gallery-main-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    position: relative;
}

.sho-gallery-main-img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    min-height: 280px;
}

.sho-gallery-zoom-hint {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(0, 13, 31, 0.65);
    color: var(--sho-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sho-gallery-main-btn:hover .sho-gallery-zoom-hint,
.sho-gallery-main-btn:focus-visible .sho-gallery-zoom-hint {
    opacity: 1;
}

.sho-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 13, 31, 0.72);
    color: var(--sho-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.sho-gallery-nav:hover {
    background: rgba(0, 13, 31, 0.9);
}

.sho-gallery-nav--prev {
    left: 0.75rem;
}

.sho-gallery-nav--next {
    right: 0.75rem;
}

.sho-gallery-counter {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 13, 31, 0.72);
    color: var(--sho-white);
    font-size: 0.8rem;
}

.sho-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

.sho-gallery-thumb {
    flex: 0 0 auto;
    width: 88px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.35rem;
    overflow: hidden;
    background: var(--sho-gray-100);
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

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

.sho-gallery-thumb:hover,
.sho-gallery-thumb.is-active {
    opacity: 1;
}

.sho-gallery-thumb.is-active {
    border-color: var(--sho-gold);
}

.sho-gallery-modal-img {
    max-height: 75vh;
    width: auto;
    object-fit: contain;
}

#propertyGalleryModal .modal-body {
    min-height: 200px;
}

.sho-gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 13, 31, 0.72);
    color: var(--sho-white);
}

.sho-gallery-modal-nav:hover {
    background: rgba(0, 13, 31, 0.9);
}

.sho-gallery-modal-nav--prev {
    left: 1rem;
}

.sho-gallery-modal-nav--next {
    right: 1rem;
}

@media (max-width: 575.98px) {
    .sho-gallery-main-img {
        min-height: 220px;
        max-height: 320px;
    }

    .sho-gallery-thumb {
        width: 72px;
        height: 54px;
    }

    .sho-gallery-nav {
        width: 2.1rem;
        height: 2.1rem;
    }
}

/* Stránky O nás / Poradci */
.sho-about-header {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    background: var(--sho-navy);
}

.sho-about-header-image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.sho-page-lead {
    font-size: 1.1rem;
    color: var(--sho-gray-500);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.sho-about-content p {
    line-height: 1.75;
    margin-bottom: 1rem;
    color: var(--sho-text);
}

.sho-about-content p:last-child {
    margin-bottom: 0;
}

.sho-about-content h2,
.sho-about-content h3 {
    color: var(--sho-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.sho-about-content h2 {
    font-size: 1.35rem;
}

.sho-about-content h3 {
    font-size: 1.15rem;
}

.sho-about-content ul,
.sho-about-content ol {
    margin-bottom: 1rem;
    padding-left: 1.35rem;
    line-height: 1.75;
}

.sho-about-content a {
    color: var(--sho-gold-dark, #b8860b);
    text-decoration: underline;
}

.sho-about-image-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 13, 31, 0.12);
}

.sho-about-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sho-advisor-card {
    display: flex;
    gap: 1.25rem;
    height: 100%;
    padding: 1.5rem;
    background: var(--sho-white);
    border: 1px solid var(--sho-gray-200);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 13, 31, 0.06);
}

.sho-advisor-card__photo-wrap {
    flex-shrink: 0;
}

.sho-advisor-card__photo,
.sho-advisor-card__photo-placeholder {
    width: 168px;
    height: 196px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center 30%;
    border: 2px solid var(--sho-gold);
}

.sho-advisor-card__photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sho-gray-100);
    color: var(--sho-gray-500);
    font-size: 2rem;
}

.sho-advisor-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sho-navy);
    margin-bottom: 0.25rem;
}

.sho-advisor-card__title {
    color: var(--sho-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.sho-advisor-card__bio p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--sho-gray-500);
    margin-bottom: 0.65rem;
}

.sho-advisor-card__bio p:last-child {
    margin-bottom: 0;
}

.sho-advisor-card__contacts a {
    display: block;
    font-size: 0.85rem;
    color: var(--sho-navy);
    text-decoration: none;
    margin-top: 0.35rem;
}

.sho-advisor-card__contacts a i {
    color: var(--sho-gold);
    width: 1rem;
}

@media (max-width: 575.98px) {
    .sho-advisor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sho-advisor-card__photo,
    .sho-advisor-card__photo-placeholder {
        width: 190px;
        height: 220px;
    }

    .sho-advisor-card__photo-wrap .sho-team-photo-media {
        width: 190px;
        height: 220px;
    }
}

/* Broker profile page */
.sho-broker-profile__photo-wrap.sho-advisor-card__photo-wrap {
    margin: 0 auto;
    max-width: 100%;
}

.sho-broker-profile__photo-wrap .sho-team-photo-media {
    width: 300px;
    height: 347px;
    max-width: 100%;
}

.sho-broker-profile__photo-wrap .sho-advisor-card__photo,
.sho-broker-profile__photo-wrap .sho-advisor-card__photo-placeholder,
.sho-broker-profile__photo-wrap .sho-team-photo-media__img,
.sho-broker-profile__photo-wrap .sho-team-photo-media__video {
    width: 300px;
    height: 347px;
    max-width: 100%;
    border-radius: 6px;
    border: 3px solid var(--sho-gold);
    object-fit: cover;
    object-position: center 30%;
}

.sho-broker-profile__photo-wrap .sho-advisor-card__photo-placeholder {
    font-size: 3.5rem;
}

@media (min-width: 992px) {
    .sho-broker-profile__photo-wrap .sho-team-photo-media {
        width: 380px;
        height: 440px;
    }

    .sho-broker-profile__photo-wrap .sho-advisor-card__photo,
    .sho-broker-profile__photo-wrap .sho-advisor-card__photo-placeholder,
    .sho-broker-profile__photo-wrap .sho-team-photo-media__img,
    .sho-broker-profile__photo-wrap .sho-team-photo-media__video {
        width: 380px;
        height: 440px;
    }
}

.sho-broker-profile__headline {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--sho-gray-700, #495057);
    margin: 0.75rem 0 1rem;
    max-width: 42rem;
}

.sho-broker-profile__about {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sho-gray-200, #e9ecef);
    max-width: 42rem;
}

.sho-broker-profile__about-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sho-navy);
    margin-bottom: 0.85rem;
}

.sho-broker-profile__bio p {
    margin-bottom: 0.65rem;
    color: var(--sho-gray-700, #495057);
    line-height: 1.65;
}

.sho-broker-profile__bio p:last-child {
    margin-bottom: 0;
}

.sho-broker-stat {
    text-align: center;
    padding: 1rem 0.75rem;
    background: #fff;
    border: 1px solid var(--sho-gray-200, #e9ecef);
    border-radius: 10px;
    height: 100%;
}

.sho-broker-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sho-navy);
    line-height: 1.2;
}

.sho-broker-stat__label {
    font-size: 0.85rem;
    color: var(--sho-gray-600, #6c757d);
    margin-top: 0.35rem;
}

.sho-broker-reason {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid var(--sho-gray-200, #e9ecef);
    border-radius: 10px;
    height: 100%;
}

.sho-broker-reason i {
    color: var(--sho-gold, #c9a227);
    margin-top: 0.15rem;
}

.sho-broker-faq__item {
    border: 1px solid var(--sho-gray-200, #e9ecef);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    background: #fff;
}

.sho-broker-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--sho-navy);
}

.sho-broker-faq__item p {
    margin: 0.75rem 0 0;
    color: var(--sho-gray-700, #495057);
    line-height: 1.6;
}

.sho-broker-profile__name {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--sho-navy);
    margin-bottom: 0.35rem;
}

.sho-broker-profile__title {
    font-size: 1.05rem;
    color: var(--sho-gold, #c9a227);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sho-broker-profile__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.25rem;
}

.sho-broker-profile__contacts a {
    color: var(--sho-navy);
    text-decoration: none;
    font-weight: 500;
}

.sho-broker-profile__contacts a i {
    color: var(--sho-gold, #c9a227);
    margin-right: 0.35rem;
}

.sho-broker-profile__services {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--sho-gray-50, #f8f9fa);
    border-radius: 10px;
    border: 1px solid var(--sho-gray-200, #e9ecef);
}

.sho-broker-profile__services h2 {
    color: var(--sho-navy);
    margin-bottom: 0.75rem;
}

.sho-broker-profile__services ul {
    margin: 0;
    padding-left: 1.15rem;
}

.sho-broker-profile__services li {
    margin-bottom: 0.35rem;
    color: var(--sho-gray-700, #495057);
}

.sho-team-card__profile-link {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sho-gold, #c9a227) !important;
    text-decoration: none;
}

.sho-team-card__profile-link:hover {
    text-decoration: underline;
}

/* Mortgage calculator */
.sho-mortgage-calc {
    background: var(--sho-gray-50, #f8f9fa);
    border: 1px solid var(--sho-gray-200);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.sho-mortgage-calc__label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.sho-mortgage-calc__value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sho-navy);
    white-space: nowrap;
}

.sho-mortgage-calc__scale {
    margin-top: 0.15rem;
    font-size: 0.75rem;
}

.sho-mortgage-calc__results {
    border-top: 1px solid var(--sho-gray-200);
    padding-top: 1rem;
}

.sho-mortgage-calc__result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

.sho-mortgage-calc__result-row--highlight {
    font-size: 1.05rem;
    color: var(--sho-navy);
}

.sho-mortgage-calc__result-row--highlight strong {
    color: var(--sho-gold);
    font-size: 1.25rem;
}

/* Market info */
.sho-market-info {
    background: #fff;
    border: 1px solid var(--sho-gray-200);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.sho-market-info__stat {
    background: var(--sho-gray-50, #f8f9fa);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    height: 100%;
}

.sho-market-info__stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sho-gray-500);
    margin-bottom: 0.25rem;
}

.sho-market-info__history-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--sho-gray-100);
}

.sho-market-info__history-item:last-child {
    border-bottom: none;
}

/* Property compare */
.sho-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--sho-navy);
    color: #fff;
    z-index: 1030;
    box-shadow: 0 -4px 16px rgba(0, 13, 31, 0.15);
}

.sho-compare-bar .sho-btn-gold {
    padding: 0.35rem 1rem;
    font-size: 0.875rem;
}

.sho-compare-btn.active {
    background: var(--sho-navy);
    border-color: var(--sho-navy);
    color: #fff;
}

.sho-compare-table-wrap {
    margin-top: 1rem;
}

.sho-compare-table {
    --bs-table-bg: #fff;
    border: 1px solid var(--sho-gray-200);
}

.sho-compare-table th,
.sho-compare-table td {
    vertical-align: middle;
    min-width: 140px;
}

.sho-compare-table thead th:first-child {
    min-width: 120px;
}

.sho-compare-table__thumb {
    width: 100%;
    max-width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

body.sho-public {
    padding-bottom: 0;
}

body.sho-public:has(.sho-compare-bar:not(.d-none)) {
    padding-bottom: 56px;
}

/* Property tags */
.sho-property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.sho-property-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    background: var(--sho-navy);
    color: #fff;
}

/* Highlights */
.sho-highlights__box {
    border-radius: 8px;
    padding: 1rem 1.15rem;
    height: 100%;
}

.sho-highlights__box h3 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
}

.sho-highlights__box ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.sho-highlights__box--pro {
    background: #f0faf4;
    border: 1px solid #c3e6cb;
}

.sho-highlights__box--pro h3 {
    color: #1e7e34;
}

.sho-highlights__box--con {
    background: #fff8f0;
    border: 1px solid #ffe0b2;
}

.sho-highlights__box--con h3 {
    color: #c65c00;
}

/* FAQ assistant */
.sho-faq-assistant__answer {
    font-size: 0.95rem;
    line-height: 1.55;
}

.sho-faq-assistant__answer a {
    color: var(--sho-navy);
    font-weight: 600;
}

/* Price watch */
.sho-price-watch {
    font-size: 0.95rem;
}

/* Investment panel */
.sho-investment-panel {
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(45, 106, 79, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fcf9 0%, #fff 100%);
}

.sho-investment-panel__score {
    text-align: right;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    background: #2d6a4f;
    color: #fff;
    line-height: 1.2;
}

.sho-investment-panel__score-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.sho-investment-panel__score strong {
    font-size: 1.35rem;
}

.sho-investment-panel__score strong small {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.85;
}

.sho-investment-panel__stat {
    padding: 0.75rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8ece9;
    height: 100%;
}

.sho-investment-panel__stat--highlight {
    border-color: #2d6a4f;
    background: #f0f7f3;
}

.sho-investment-panel__stat-label {
    display: block;
    font-size: 0.75rem;
    color: #667;
    margin-bottom: 0.15rem;
}

.sho-investment-panel__tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #e8f3ed;
    color: #1b4332;
    font-size: 0.8rem;
}

.sho-investment-panel__note {
    padding-top: 0.75rem;
    border-top: 1px solid #e8ece9;
    color: #444;
}

.sho-investment-panel__reasons summary {
    cursor: pointer;
    color: var(--sho-navy);
}

.sho-investment-calc__scenarios summary {
    cursor: pointer;
    color: var(--sho-navy);
}

.sho-property-card__yield {
    color: #2d6a4f !important;
    font-weight: 600;
}

.sho-lang-switcher {
    margin-left: 0.25rem;
    flex-shrink: 0;
}

.sho-lang-switcher .btn-outline-light {
    border-color: color-mix(in srgb, var(--sho-menu-text, #ffffff) 55%, transparent);
    color: var(--sho-menu-text, #fff);
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
}

.sho-lang-switcher .dropdown-menu {
    min-width: 5rem;
    font-size: 0.875rem;
}

/* Rozbalovací menu — akcent z WebAppearance (všechny Bootstrap dropdowny na veřejném webu) */
body.sho-public .dropdown-item:hover,
body.sho-public .dropdown-item:focus {
    background-color: color-mix(in srgb, var(--sho-gold) 16%, transparent);
    color: var(--sho-text, #212529);
}

body.sho-public .dropdown-item.active,
body.sho-public .dropdown-item:active {
    background-color: var(--sho-gold);
    color: var(--sho-btn-accent-text, var(--sho-navy-dark));
}

body.sho-public .dropdown-item.active {
    font-weight: 600;
}

/* Select pole — focus ring v akcentní barvě (seznam v prohlížeči zůstává systémový) */
body.sho-public .form-select:focus,
body.sho-public select:focus {
    border-color: var(--sho-gold);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--sho-gold) 25%, transparent);
}

/* Cookie consent */
.sho-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 1rem;
    background: color-mix(in srgb, var(--sho-navy, #0b1b33) 92%, black);
    color: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.sho-cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.sho-cookie-banner__text {
    flex: 1 1 280px;
    font-size: 0.9rem;
}

.sho-cookie-banner__text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.sho-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* 360° virtual tour */
.sho-property-tour__frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--sho-gray-200);
    background: #0b1220;
}

.sho-property-tour__viewer {
    width: 100%;
    height: min(62vh, 520px);
    min-height: 320px;
}

.sho-property-tour__frame:fullscreen,
.sho-property-tour__frame:-webkit-full-screen {
    border-radius: 0;
    border: 0;
}

.sho-property-tour__frame:fullscreen .sho-property-tour__viewer,
.sho-property-tour__frame:-webkit-full-screen .sho-property-tour__viewer {
    height: 100vh;
    min-height: 100vh;
}

.sho-property-tour__rooms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sho-property-tour__room-btn {
    border: 1px solid var(--sho-gray-200);
    background: var(--sho-white);
    color: var(--sho-text, #212529);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.sho-property-tour__room-btn:hover {
    border-color: var(--sho-gold);
}

.sho-property-tour__room-btn[aria-current="true"] {
    background: var(--sho-gold);
    border-color: var(--sho-gold);
    color: var(--sho-btn-accent-text, var(--sho-navy-dark));
    font-weight: 600;
}

/* Cookie consent */
.sho-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 1rem;
    background: color-mix(in srgb, var(--sho-navy, #0b1b33) 92%, black);
    color: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}
.sho-cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.sho-cookie-banner__text { flex: 1 1 280px; font-size: 0.9rem; }
.sho-cookie-banner__text strong { display: block; margin-bottom: 0.25rem; }
.sho-cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Pricing page */
.sho-pricing__intro {
    max-width: 42rem;
}

.sho-pricing-card {
    position: relative;
    height: 100%;
    padding: 1.75rem 1.5rem 1.5rem;
    border: 1px solid color-mix(in srgb, var(--sho-navy, #0b1b33) 12%, transparent);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sho-pricing-card--highlight {
    border-color: var(--sho-gold, #c9a227);
    box-shadow: 0 12px 32px rgba(11, 27, 51, 0.08);
}

.sho-pricing-card__badge {
    position: absolute;
    top: -0.65rem;
    left: 1.25rem;
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: var(--sho-gold, #c9a227);
    color: var(--sho-btn-accent-text, var(--sho-navy-dark, #0b1b33));
}

.sho-pricing-card__name {
    margin: 0.35rem 0 0;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--sho-navy, #0b1b33);
}

.sho-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.sho-pricing-card__amount {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--sho-navy, #0b1b33);
    line-height: 1.1;
}

.sho-pricing-card__period {
    font-size: 0.9rem;
    color: var(--sho-gray-500, #6c757d);
}

.sho-pricing-card__summary {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--sho-gray-500, #6c757d);
    flex-grow: 1;
}

.sho-pricing-card__meta {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    font-size: 0.88rem;
    color: var(--sho-text, #212529);
}

.sho-pricing-card__meta li + li {
    margin-top: 0.2rem;
}

.sho-pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid color-mix(in srgb, var(--sho-navy, #0b1b33) 10%, transparent);
    background: #fff;
}

.sho-pricing-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.92rem;
}

.sho-pricing-table th,
.sho-pricing-table td {
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid color-mix(in srgb, var(--sho-navy, #0b1b33) 8%, transparent);
    vertical-align: middle;
}

.sho-pricing-table thead th {
    background: color-mix(in srgb, var(--sho-navy, #0b1b33) 4%, white);
    color: var(--sho-navy, #0b1b33);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.sho-pricing-table thead th:first-child,
.sho-pricing-table tbody th {
    text-align: left;
    font-weight: 500;
}

.sho-pricing-table thead th.is-highlight {
    background: color-mix(in srgb, var(--sho-gold, #c9a227) 22%, white);
}

.sho-pricing-table__group th {
    background: var(--sho-navy, #0b1b33);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 0.9rem;
}

.sho-pricing-table td {
    text-align: center;
}

.sho-pricing-table td.is-text {
    font-size: 0.85rem;
    color: var(--sho-text, #212529);
}

.sho-pricing-check {
    color: #1f7a4d;
    font-weight: 700;
}

.sho-pricing-dash {
    color: var(--sho-gray-500, #adb5bd);
}

.sho-pricing-future {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    vertical-align: middle;
    background: color-mix(in srgb, var(--sho-navy, #0b1b33) 8%, white);
    color: var(--sho-navy, #0b1b33);
}

.sho-pricing__footnote {
    max-width: 48rem;
}

@media (max-width: 767.98px) {
    .sho-pricing-card__amount {
        font-size: 1.55rem;
    }
}
