*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #6b207d;
    --text-color: rgb(119, 119, 119);
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --border: #e8e8e8;
    --dark: #222222;
    --primary-dark: #541963;
    --primary-darker: #3e1249;
    /* Font Size Variables from common-utilities.css */
    --heading-big: 65px;
    --heading-medium: 55px;
    --heading-small: 35px;
    --heading-tiny: 24px;
    --text-huge: 24px;
    --text-big: 21px;
    --text-medium: 18px;
    --text-small: 16px;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    color: var(--text-color);
    background: var(--white);
    font-size: 15px;
    line-height: 1.65;
}

/* ── CONTAINER ── */
.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ─────────────────────────────────
   STATIC PROPERTY HERO (New Feedback Design)
───────────────────────────────── */
.static-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b0b0b;
    color: #ffffff;
    font-family: 'FS Albert', sans-serif;
}

.static-hero-top-group {
    display: flex;
    flex-direction: column;
}

.static-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.static-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.static-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.7) 100%);
}

.static-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px 102px;
}

/* Breadcrumb at top */
.static-hero-top .breadcrumb {
    margin: 0 0 20px 0;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity .2s;
}

.breadcrumb a:hover {
    opacity: 0.75;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
}

.breadcrumb .cur {
    color: rgba(255, 255, 255, 0.7);
}

/* Info block */
.static-hero-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Title + Price row */
.sh-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 24px;
}

.sh-left {
    flex: 1;
}

.sh-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    letter-spacing: 0.01em;
    font-family: 'FS Albert', sans-serif;
    max-width: 1100px;
    margin-bottom: 15px;
}

.sh-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.sh-location svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.sh-right {
    text-align: right;
    flex-shrink: 0;
}

.sh-price-lbl {
    font-size: 15px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 2px;
    text-align: left;
    font-weight: 600;
}

.sh-price-val {
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
    font-family: 'FS Albert', sans-serif;
}

.sh-divider {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Specs row below divider */
.sh-specs {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sh-spec-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sh-spec-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.2;
}

.sh-spec-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    gap: 3px;
}

.sh-spec-val {
    font-size: 18px;
    font-weight: 700;
}

.sh-spec-lbl {
        font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

/* Bottom Row */
.sh-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    position: relative;
}

.sh-btn-photos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'FS Albert', sans-serif;
    transition: all 0.3s ease;
}

.sh-btn-photos:hover {
    background: #ffffff;
    color: #6B207D;
}

.sh-btn-photos svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.downward-arrow-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent !important;
    border: none !important;
    z-index: 100;
    cursor: pointer;
    animation: bounceDown 2s infinite;
    opacity: 0.8;
    padding: 0;
}




.downward-arrow-btn:hover,
.downward-arrow-btn:focus,
.downward-arrow-btn:active {
    opacity: 1;
    background-color: transparent !important;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* ─────────────────────────────────
   ACTION BAR
───────────────────────────────── */
.action-bar {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.action-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    transition: background .2s, color .2s;
    font-family: inherit;
}

.action-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.action-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Share dropdown */
.share-wrap {
    position: relative;
    display: inline-flex;
}

.share-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 210px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    padding: 8px 0;
    z-index: 50;
    display: none;
}

.share-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

.share-menu a {
    display: block;
    padding: 9px 16px;
    font-size: 14px;
    color: var(--dark);
}

.share-menu a:hover,
.share-menu a:focus-visible {
    background: rgba(107, 32, 125, 0.08);
    color: var(--primary-color);
    outline: none;
}

.share-wrap.is-open .share-menu {
    display: block;
}

/* ─────────────────────────────────
   MAIN CONTENT LAYOUT
───────────────────────────────── */
.main-section {
    padding: 50px 0 50px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 34px;
    align-items: start;
}

/* ─────────────────────────────────
   LEFT COLUMN
───────────────────────────────── */
.section-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.prop-ref {
    font-size: 12.5px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
}

/* Overview grid */
.overview-section {
    margin-bottom: 32px;
}

.overview-section .section-title {
    display: block;
    margin-bottom: 18px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.overview-col h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.overview-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.overview-row:last-child {
    border-bottom: none;
}

.overview-label {
    color: var(--text-color);
}

.overview-val {
    color: var(--dark);
    font-weight: 500;
}

/* Description */
.desc-section {
    margin-bottom: 32px;
}

.desc-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 12px;
}

.read-more {
    color: var(--primary-color);
    font-size: 13px;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0;
}

.read-more:hover {
    text-decoration: underline;
}

/* Highlights */
.highlights-list {
    list-style: none;
    margin-bottom: 32px;
}

.highlights-list li {
    font-size: 13.5px;
    color: var(--text-color);
    padding: 6px 0 6px 18px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Features */
.features-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    columns: 4;
    column-gap: 70px;
}

.features-list li {
    break-inside: avoid;
    padding: 4px 0;
    font-size: 14px;
    color: var(--dark);
    font-family: var(--sans);
}

.features-list li.is-hidden {
    display: none;
}

@media (max-width: 1024px) {
    .features-list {
        columns: 2;
        column-gap: 50px;
    }
}

@media (max-width: 640px) {
    .features-list {
        columns: 1;
    }
}

/* Energy cert */
.energy-section {
    margin-bottom: 36px;
}

.energy-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.energy-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
}

.energy-row span:first-child {
    width: 90px;
    color: var(--text-color);
}

.energy-bar-wrap {
    flex: 1;
    height: 18px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.energy-bar {
    height: 100%;
    border-radius: 2px;
}

.e-a {
    background: #00a651;
    width: 20%;
}

.e-b {
    background: #4cb84c;
    width: 35%;
}

.e-c {
    background: #b7d100;
    width: 50%;
}

.e-d {
    background: #ffec00;
    width: 62%;
}

.e-e {
    background: #f7941d;
    width: 74%;
}

.e-f {
    background: #ef3829;
    width: 87%;
}

.e-g {
    background: #7b0000;
    width: 100%;
}

.energy-label {
    width: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    font-size: 12px;
}

.energy-current {
    border: 2px solid var(--primary-color);
}

/* EPC image layout */
.epc-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 296px;
    align-items: start;
}

.epc-meta p {
    margin: 0 0 10px;
    font-size: 24px;
    color: var(--dark);
}

.epc-meta p span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-color);
}

.epc-img {
    width: 100%;
    max-width: 280px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: block;
}

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

/* Contact agent form */
.agent-contact-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 32px;
}

.agent-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.agent-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.agent-name {
    font-size: 18px;
    color: var(--dark);
    font-weight: 500;
}

.agent-title {
    font-size: 12px;
    color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-field {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    transition: border-color .2s;
}

.form-field:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-field.full {
    grid-column: 1 / -1;
}

textarea.form-field {
    resize: vertical;
    min-height: 90px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.form-check input[type="checkbox"] {
    accent-color: var(--primary-color);
    margin-top: 2px;
}

.btn-primary {
    padding: 9px 20px;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    font-size: 13.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: background .2s, color .2s;
}

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

.btn-primary:hover {
    opacity: 0.87;
}

/* Map section */
.map-section {
    margin-bottom: 36px;
}

.map-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(180deg, #f2f5f8 0%, #e8eef5 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(11, 43, 76, 0.08), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(11, 43, 76, 0.06), transparent 55%);
    pointer-events: none;
}

.map-btn {
    position: absolute;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: opacity .2s;
}

.map-btn:hover {
    opacity: 0.87;
}

.map-canvas {
    width: 100%;
    height: 280px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: #f2f5f8;
}

.map-canvas iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Fullscreen map modal */
.map-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 28px 18px;
}

.map-modal[hidden] {
    display: none;
}

.map-modal__panel {
    position: relative;
    width: min(1100px, 100%);
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.map-modal__panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.map-modal__close:hover {
    background: rgba(0, 0, 0, .75);
}

/* ─────────────────────────────────
   RIGHT SIDEBAR
───────────────────────────────── */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 22px;
    margin-bottom: 20px;
}

.sidebar-card-title {
    font-size: 18px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sidebar-agent-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.sidebar-agent-avatar {
    width: 80px;
    height: 80px;

    object-fit: cover;
}

.sidebar-agent-name {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.sidebar-agent-role {
    font-size: 12px;
    color: var(--text-color);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-color);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-contact-item:last-of-type {
    border-bottom: none;
}

.sidebar-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.sidebar-contact-item a {
    color: var(--primary-color);
}

.sidebar-form .form-field {
    margin-bottom: 10px;
}

.sidebar-form textarea.form-field {
    min-height: 80px;
}

.sidebar-form .form-check {
    font-size: 11.5px;
}

/* Confidence box */
.confidence-box {
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    padding: 22px;
    margin-bottom: 20px;
}

.confidence-box h3 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.3;
}

.confidence-box p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 14px;
}

.confidence-link {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    cursor: pointer;
}

.confidence-link:hover {
    color: #fff;
}

/* ─────────────────────────────────
   GOLDEN MILE SECTION
───────────────────────────────── */
.area-section {
    padding: 60px 0;
    margin-bottom: 0;
}

.area-inner {
    display: grid;
    grid-template-columns: 750px 1fr;
    gap: 50px;
    align-items: center;
}

.area-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-content h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.area-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 20px;
}

.area-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 9px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    font-family: inherit;
    transition: background .2s, color .2s;
}

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

/* ─────────────────────────────────
   RELATED PROPERTIES
───────────────────────────────── */
.related-section {
    padding: 60px 0;
}

/* Header row */
.related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.related-header h2 {
    font-size: 28px;
    font-weight: 400;
    color: #6B207D;
    font-family: var(--serif);
}

/* Cards layout (no outer slider) */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 16px;
}

@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Card */
.rp-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.rp-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* Card image slider */
.rp-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.rp-inner-swiper {
    width: 100%;
    height: 220px;
}

.rp-inner-swiper .swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Price badge on image */
.rp-price-badge {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: #fff;
    color: #2d2d2d;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 8px 14px;
    z-index: 5;
}

/* Image inner arrows */
.rp-img-prev,
.rp-img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-img-prev {
    left: 6px;
}

.rp-img-next {
    right: 6px;
}

.rp-img-prev svg,
.rp-img-next svg {
    width: 20px;
    height: 20px;
    stroke: #6B207D;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    min-width: 20px;
}

/* Card body */
.rp-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rp-top {
    flex: 1;
}

.rp-title {
    font-family: 'FS Albert', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
    line-height: 1.3;
    margin-bottom: 10px;
}

.rp-location {
    font-size: 13px;
    color: #6B207D;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Bottom: stats + view link */
.rp-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #e8e8e8;
}

.rp-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    align-items: center;
    margin-bottom: 10px;
}

.rp-stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #4a4a5a;
    white-space: nowrap;
}

.rp-stat strong {
    font-weight: 500;
    color: inherit;
}

.rp-ico {
    width: 18px;
    height: 18px;
    stroke: #4a4a5a;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-right: 3px;
}

.rp-view-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.rp-pc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a5a;
    transition: color 0.2s;
}

.rp-view-link:hover .rp-pc-link {
    color: #2d2d2d;
}

/* ─────────────────────────────────
   POPULAR AREAS
───────────────────────────────── */
.popular-section {
    background: var(--primary-color);
    padding: 46px 0;
}

.popular-section h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 18px;
    font-family: var(--serif);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.popular-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    padding: 6px 0;
    cursor: pointer;
    transition: color .2s, opacity .2s;
}

.popular-item:hover {
    color: #fff;
    opacity: 0.9;
}

.popular-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-top: 2px;
}

/* Divider */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   FS ALBERT FONT UTILITY CLASSES (from common-utilities.css)
═══════════════════════════════════════════════════════════ */

/* All Section Headings - Purple */
.section-title,
.left-col h3,
.sidebar-card h3,
.overview-section .section-title,
.desc-section h3,
.highlights-list+h3,
.features-section h3,
.energy-section h3,
.agent-contact-section h3,
.map-section h3,
.area-content h2,
.related-header h2,
.popular-section h3,
.main-section h3 {
    color: var(--primary-color, #6B207D) !important;
}

.heading-big {
    font-size: var(--heading-big) !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.heading-medium {
    font-size: var(--heading-medium) !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.heading-small {
    font-size: var(--heading-small) !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.heading-tiny {
    font-size: var(--heading-tiny) !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-huge {
    font-size: var(--text-huge) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-big {
    font-size: var(--text-big) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-medium {
    font-size: var(--text-medium) !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-small {
    font-size: var(--text-small) !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.white-text,
.white-heading {
    color: #ffffff !important;
}

.purple-text,
.purple-heading {
    color: var(--primary-color, #6B207D) !important;
}

/* Global font family override - everything uses FS Albert */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
button,
input,
textarea,
select,
label {
    font-family: 'FS Albert', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE STYLES — TABLET & MOBILE ONLY
═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .container {
        padding: 0 22px;
    }

    /* Banner */
    .prop-title {
        font-size: 26px;
    }

    .price-val {
        font-size: 26px;
    }

    .banner-body {
        gap: 24px;
    }

    /* Main layout: sidebar drops below content */
    .main-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .sidebar .confidence-box {
        margin-bottom: 0;
    }

    /* Overview: 3-col → 2-col */
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Area section: side-by-side → stacked */
    .area-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .area-img {
        max-height: 340px;
        width: 100%;
    }

    /* EPC: wide gap removed */
    .epc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ─────────────────────────────────
   MOBILE  ≤ 767px
───────────────────────────────── */
@media (max-width: 767px) {
    .downward-arrow-btn {
    bottom: -10px;
}
    .container {
        padding: 0 14px;
    }

    /* ── Property Banner ── */
    .prop-banner-inner {
        padding: 12px 14px;
        min-height: auto;
    }

    .breadcrumb {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .banner-body {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }

    .banner-left {
        width: 100%;
    }

    .banner-right {
        text-align: left;
    }

    .prop-title {
        font-size: 19px;
        line-height: 1.28;
    }

    .price-lbl {
        font-size: 11px;
    }

    .price-val {
        font-size: 22px;
        white-space: normal;
    }

    .prop-stats {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }

    .prop-stats-left {
        flex-direction: column;
        gap: 4px;
    }

    .prop-stats-right {
        gap: 10px;
    }

    /* ── Hero Slider ── */
    .hero-slider {
        height: 56vw;
        min-height: 210px;
        max-height: 360px;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        width: 34px;
        height: 34px;
    }

    .hero-slider .swiper-button-prev svg,
    .hero-slider .swiper-button-next svg {
        width: 22px;
        height: 22px;
    }

    .hero-slider .swiper-button-prev {
        left: 6px;
    }

    .hero-slider .swiper-button-next {
        right: 6px;
    }

    /* ── Action Bar ── */
    .action-bar {
        padding: 10px 0;
    }

    .action-bar-inner {
        gap: 6px;
    }

    .action-btn {
        padding: 6px 10px;
        font-size: 12px;
        gap: 4px;
    }

    .action-btn svg {
        width: 12px;
        height: 12px;
    }

    /* ── Main Section ── */
    .main-section {
        padding: 24px 0 32px;
    }

    .main-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .left-col>h2 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 7px;
    }

    .prop-ref {
        font-size: 11px;
        padding: 2px 8px;
        margin-bottom: 14px;
    }

    /* Overview */
    .overview-section {
        margin-bottom: 22px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .overview-col h4 {
        font-size: 11.5px;
        margin-bottom: 8px;
    }

    .overview-row {
        font-size: 13px;
    }

    /* Description */
    .desc-section {
        margin-bottom: 22px;
    }

    .desc-text {
        font-size: 13.5px;
        line-height: 1.72;
    }

    /* Highlights */
    .highlights-list {
        margin-bottom: 22px;
    }

    .highlights-list li {
        font-size: 13px;
        padding: 5px 0 5px 15px;
    }

    .highlights-list li::before {
        top: 12px;
        width: 6px;
        height: 6px;
    }

    /* Features */
    .features-list {
        columns: 1 !important;
        margin-bottom: 10px;
    }

    .features-list li {
        font-size: 13px;
        padding: 3px 0;
    }

    /* Energy / EPC */
    .energy-section {
        margin-bottom: 24px;
    }

    .epc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .epc-meta p {
        font-size: 18px;
    }

    .epc-img {
        max-width: 100%;
    }

    /* Agent contact form */
    .agent-contact-section {
        margin-bottom: 22px;
    }

    .agent-row {
        gap: 12px;
        margin-bottom: 14px;
    }

    .agent-avatar {
        width: 76px;
        height: 76px;
    }

    .agent-name {
        font-size: 15px;
    }

    .agent-title {
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }

    .form-field {
        padding: 8px 10px;
        font-size: 13px;
    }

    textarea.form-field {
        min-height: 80px;
    }

    .form-check {
        font-size: 11.5px;
        margin-bottom: 10px;
    }

    .btn-primary {
        padding: 9px 20px;
        border: 2px solid var(--primary-color);
        background: var(--primary-color);
        color: #fff;
        font-size: 13.5px;
        border-radius: 3px;
        cursor: pointer;
        transition: background .2s, color .2s;
    }

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

    /* Map */
    .map-section {
        margin-bottom: 24px;
    }

    .map-placeholder {
        height: 195px;
    }

    .map-canvas {
        height: 195px;
    }

    .map-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* Sidebar — fully stacked on mobile */
    .sidebar {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .sidebar-card {
        padding: 14px;
        margin-bottom: 0;
    }

    .sidebar-card-title {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .sidebar-agent-row {
        gap: 10px;
        margin-bottom: 10px;
    }

    .sidebar-agent-avatar {
        width: 54px;
        height: 54px;
    }

    .sidebar-agent-name {
        font-size: 13px;
    }

    .sidebar-agent-role {
        font-size: 11px;
    }

    .sidebar-contact-item {
        font-size: 12.5px;
        padding: 5px 0;
    }

    .sidebar-form .form-field {
        margin-bottom: 8px;
    }

    .confidence-box {
        padding: 14px;
        margin-bottom: 0;
    }

    .confidence-box h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .confidence-box p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .confidence-link {
        font-size: 12px;
    }

    /* Area section */
    .area-section {
        padding: 32px 0;
    }

    .area-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .area-img {
        max-height: 210px;
        width: 100%;
        object-fit: cover;
    }

    .area-content h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .area-content p {
        font-size: 13.5px;
        margin-bottom: 12px;
    }

    .area-btns {
        flex-direction: column;
        gap: 8px;
    }

    .btn-outline {
        padding: 9px 16px;
        font-size: 12.5px;
        text-align: center;
    }

    /* Related properties */
    .related-section {
        padding: 32px 0;
    }

    .related-header {
        margin-bottom: 18px;
    }

    .related-header h2 {
        font-size: 19px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rp-img-wrap {
        height: 195px;
    }

    .rp-inner-swiper {
        height: 195px;
    }

    .rp-inner-swiper .swiper-slide img {
        height: 195px;
    }

    .rp-img-prev,
    .rp-img-next {
        width: 28px;
        height: 28px;
    }

    .rp-img-prev svg,
    .rp-img-next svg {
        width: 15px;
        height: 15px;
    }

    .rp-body {
        padding: 12px 12px 10px;
    }

    .rp-title {
        font-size: 13.5px;
        margin-bottom: 5px;
    }

    .rp-location {
        font-size: 11.5px;
        margin-bottom: 8px;
    }

    .rp-price {
        font-size: 14.5px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .rp-stats {
        font-size: 11.5px;
    }

    .rp-stat {
        padding-right: 8px;
        margin-right: 8px;
        gap: 4px;
    }

    .rp-ico {
        width: 12px;
        height: 12px;
    }

    /* Popular areas */
    .popular-section {
        padding: 28px 0;
    }

    .popular-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .popular-item {
        font-size: 12px;
        padding: 4px 0;
    }

    .popular-item span {
        font-size: 10.5px;
    }

    /* Map modal */
    .map-modal {
        padding: 12px 8px;
    }

    .map-modal__panel {
        aspect-ratio: auto;
        height: 62vw;
        min-height: 215px;
    }

    .map-modal__close {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: 6px;
        right: 6px;
    }
}

.fancybox__container {
    z-index: 10010 !important;
}

.fancybox__toolbar {
    padding-top: 20px !important;
}


.action-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #6B207D;
    background: transparent;
    color: #6B207D;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'FS Albert', sans-serif;
}

.action-btn-outline:hover {
    background: #6B207D;
    color: #fff;
}

.action-btn-outline svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
}

/* ── Map box ── */
.sp-map-box {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
}

.sp-map-header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
}

.sp-map-launcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'FS Albert', sans-serif;
    color: #555;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.sp-map-launcher svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sp-map-launcher:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .sp-map-header {
        padding: 16px 18px;
        align-items: center;
        position: relative;
    }

    .sp-map-launcher {
        position: absolute;
        top: 14px;
        right: 14px;
        padding: 6px 8px;
        gap: 0;
    }

    .sp-map-launcher span {
        display: none;
    }

    .sp-map-launcher svg {
        width: 14px;
        height: 14px;
    }
}

/* ── Area guide box ── */
.sp-area-guide-box {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    height: fit-content;
}

.sp-area-guide-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: left;
}

.sp-area-guide-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .sp-area-guide-box {
        padding: 18px;
    }

    .sp-area-guide-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sp-area-guide-item {
        gap: 4px;
    }

    .sp-area-guide-item img,
    .sp-area-guide-item svg {
        width: 22px !important;
        height: 22px !important;
        margin-bottom: 6px !important;
    }

    .sp-area-guide-item div[style*="font-size: 13px"] {
        line-height: 1.2;
        margin-bottom: 2px !important;
    }

    .sp-area-guide-item div[style*="font-size: 12px"] {
        line-height: 1.2;
    }
}

/* ── Mobile specs strip (outside hero, above action bar) ── */
.sp-mobile-specs {
    display: none;
}

@media (max-width: 768px) {
    .sh-specs {
        display: none;
    }

    .sh-divider {
        display: none;
    }

    .sp-mobile-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid #eaeaea;
        padding: 14px 16px;
    }

    .sp-mobile-specs .sh-spec-col {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1 1 auto;
        padding: 6px 12px;
        border-right: 1px solid #eaeaea;
    }

    .sp-mobile-specs .sh-spec-col:last-child {
        border-right: none;
    }

    .sp-mobile-specs .sh-spec-icon svg {
        width: 18px;
        height: 18px;
        stroke: #6b207d;
        fill: none;
        stroke-width: 1.2;
    }

    .sp-mobile-specs .sh-spec-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .sp-mobile-specs .sh-spec-val {
        font-size: 13px;
        font-weight: 600;
        color: #222;
    }

    .sp-mobile-specs .sh-spec-lbl {
        font-size: 11px;
        color: #888;
    }
}

.sp-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
    margin-top: 10px;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-action-bar__location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #555;
}

.sp-action-bar__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── At a Glance grid ── */
.sp-glance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* ── Highlights + Area Guide grid ── */
.sp-highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.sp-highlights-grid--split {
    grid-template-columns: 1fr 1.6fr;
}

/* ── Area guide inner image+text row ── */
.sp-area-guide-inner {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.sp-area-guide-img {
    width: 50%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.sp-area-guide-text {
    flex: 1;
    min-width: 0;
}

@media (max-width: 1024px) {
    .sh-title {
        font-size: 38px;
        max-width: 900px;
        margin-bottom: 10px;
    }

    .static-hero-inner {
        min-height: 520px;
    }

    .sh-body {
        gap: 24px;
        margin-bottom: 16px;
    }

    .sh-btn-photos {
        gap: 6px;
        padding: 8px 16px;
        font-size: 13px;
    }

    .sh-btn-photos svg {
        width: 14px;
        height: 14px;
    }

    .sh-spec-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {

    /* Hero title */
    .sh-title {
        font-size: 22px;
    }

    .sh-price-val {
        font-size: 22px;
    }

    .sh-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sh-right {
        text-align: left;
    }

    .sh-specs {
        gap: 16px;
        flex-wrap: wrap;
    }

    .sh-spec-col {
        gap: 8px;
    }

    .sh-spec-icon svg {
        width: 18px;
        height: 18px;
    }

    .sh-spec-val {
        font-size: 13px;
    }

    .sh-spec-lbl {
        font-size: 11px;
    }

    .static-hero-inner {
        min-height: 0;
        padding: 100px 16px 24px;
    }

    .sh-bottom {
        margin-top: 14px;
    }

    .sh-scroll-indicator {
        display: none;
    }

    /* Action bar */
    .sp-action-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 28px;
    }

    .sp-action-bar__btns {
        width: 100%;
        gap: 8px;
    }

    .sp-action-bar__btns .action-btn-outline {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .sp-glance-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .sp-highlights-grid,
    .sp-highlights-grid--split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sp-area-guide-inner {
        flex-direction: column;
        gap: 16px;
    }

    .sp-area-guide-img {
        width: 100%;
        height: 200px;
    }

    .sp-area-guide-text {
        width: 100%;
    }
}

.mpf-form-response {
    display: none;
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.45;
}

.mpf-form-response.is-error,
.mpf-form-response.is-success,
.mpf-form-response.is-loading {
    display: block;
}

.mpf-form-response.is-error {
    background: #fff3f3;
    border: 1px solid #e7b3b3;
    color: #b42318;
}

.mpf-form-response.is-success {
    background: #f0fff4;
    border: 1px solid #b7dfc2;
    color: #137333;
}

.mpf-form-response.is-loading {
    background: #f6f7f9;
    border: 1px solid #d9dde3;
    color: #555;
}

/* ── Share Modal ── */
.share-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
}

.share-modal[hidden] {
    display: none;
}

.share-modal__panel {
    background: #fff;
    border-radius: 8px;
    padding: 36px 40px;
    width: min(480px, 100%);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    font-family: 'FS Albert', sans-serif;
}

.share-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none !important;
    border: none !important;
    font-size: 35px;
    font-weight: 300;
    color: #aaa !important;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    box-shadow: none !important;
    outline: none !important;
    transition: color .2s !important;
}

.share-modal__close:hover,
.share-modal__close:focus {
    color: #333 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.share-modal__title {
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
    font-family: 'FS Albert', sans-serif;
}

.share-modal__divider {
    width: 40px;
    height: 3px;
    background: #6B207D;
    margin-bottom: 28px;
}

.share-modal__copy {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.share-modal__url {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    background: #f8f8f8;
    outline: none;
    font-family: 'FS Albert', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.share-modal__copy-btn {
    padding: 11px 20px;
    background: #6B207D;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'FS Albert', sans-serif;
    transition: background .2s;
    flex-shrink: 0;
}

.share-modal__copy-btn:hover {
    background: #541963;
}

.share-modal__copy-btn.is-copied {
    background: #137333;
}

.share-modal__socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.share-modal__social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    color: #333;
    transition: border-color .2s, color .2s;
    font-family: 'FS Albert', sans-serif;
}

.share-modal__social:hover,
.share-modal__social:focus,
.share-modal__social:visited {
    text-decoration: none !important;
}

.share-modal__social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.share-modal__social:hover {
    border-color: #6B207D;
    color: #6B207D;
}

.share-modal__social--whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.share-modal__social--facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.share-modal__social--twitter:hover {
    border-color: #000;
    color: #000;
}

.share-modal__social--email:hover {
    border-color: #6B207D;
    color: #6B207D;
}

@media (max-width: 480px) {
    .share-modal__panel {
        padding: 28px 20px;
    }

    .share-modal__socials {
        grid-template-columns: 1fr;
    }
}