
/* The custom template replaces Estatik's native single layout completely. */
body.single-properties .js-es-single-property-layout,
body.single-property .js-es-single-property-layout,
body.single-properties .es-breadcrumbs,
body.single-property .es-breadcrumbs,
.sgpt-page .js-es-single-property-layout,
.sgpt-page .es-breadcrumbs {
    display: none !important;
}

/* SolGestión property template - all selectors are scoped to avoid theme conflicts. */
.sgpt-page,
.sgpt-page * {
    box-sizing: border-box;
}

.sgpt-page {
    width: 100%;
    margin: 0;
    padding: 20px var(--sgpt-outer-pad) 0;
    background: var(--sgpt-page-bg);
    color: var(--sgpt-text);
    font-family: var(--sgpt-font);
    font-size: var(--sgpt-body-size);
    line-height: var(--sgpt-body-lh);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.sgpt-page button,
.sgpt-page input,
.sgpt-page textarea,
.sgpt-page select {
    font: inherit;
}

.sgpt-page button,
.sgpt-page a {
    -webkit-tap-highlight-color: transparent;
}

.sgpt-page a {
    color: var(--sgpt-link);
    text-decoration: none;
}

.sgpt-page a:hover {
    color: var(--sgpt-link-hover);
}

.sgpt-shell {
    width: 100%;
    max-width: var(--sgpt-max);
    margin: 0 auto;
}

.sgpt-cover {
    width: 100%;
    height: var(--sgpt-cover-height);
    margin: 0 0 2px;
    overflow: hidden;
    border-radius: var(--sgpt-cover-radius);
    background: var(--sgpt-cover-bg);
}

.sgpt-cover img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: var(--sgpt-cover-fit);
    object-position: var(--sgpt-cover-position);
}

.sgpt-preview-bar {
    position: sticky;
    top: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 42px;
    padding: 9px 18px;
    background: #171717;
    color: #fff;
    font: 14px/1.3 Arial, sans-serif;
    text-align: center;
}

.sgpt-preview-bar span {
    color: #cfcfcf;
}

/* Toolbar and breadcrumbs */
.sgpt-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-bottom: 22px;
    border-bottom: 1px solid transparent;
    font-size: 14px;
}

.sgpt-breadcrumbs {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 7px;
    color: var(--sgpt-link);
    white-space: nowrap;
    overflow: hidden;
}

.sgpt-breadcrumbs a,
.sgpt-breadcrumbs span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sgpt-breadcrumb-sep {
    flex: 0 0 auto;
    color: #a8a8a8;
    font-size: 18px;
    line-height: 1;
}

.sgpt-toolbar-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 24px;
    margin-left: 24px;
}

.sgpt-toolbar-actions button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--sgpt-link);
    cursor: pointer;
    font-size: 14px;
}

.sgpt-toolbar-actions .sgpt-icon {
    width: 17px;
    height: 17px;
}

/* Main two-column layout */
.sgpt-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--sgpt-sidebar);
    align-items: start;
    gap: var(--sgpt-gap);
}

.sgpt-primary-column,
.sgpt-sidebar {
    min-width: 0;
}

.sgpt-sidebar-scroll {
    position: sticky;
    top: var(--sgpt-sticky-top);
    max-height: calc(100vh - var(--sgpt-sticky-top) - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cfcfcf transparent;
}

.sgpt-sidebar-scroll::-webkit-scrollbar {
    width: 6px;
}

.sgpt-sidebar-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #cfcfcf;
}

/* Gallery */
.sgpt-gallery {
    display: grid;
    grid-template-columns: var(--sgpt-thumb-w) minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.sgpt-thumbnails {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sgpt-thumb-gap);
    height: var(--sgpt-gallery-height);
    overflow: hidden;
}

.sgpt-thumbnail,
.sgpt-thumbnail-count {
    position: relative;
    flex: 0 0 var(--sgpt-thumb-h);
    width: var(--sgpt-thumb-w);
    height: var(--sgpt-thumb-h);
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: var(--sgpt-thumb-border-w) solid var(--sgpt-thumb-border);
    border-radius: var(--sgpt-thumb-radius);
    background: #fff;
    cursor: pointer;
}

.sgpt-thumbnail:nth-of-type(n+8) {
    display: none;
}

.sgpt-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sgpt-thumbnail.is-active {
    border: var(--sgpt-thumb-active-w) solid var(--sgpt-thumb-active);
}

.sgpt-thumbnail-count {
    display: grid;
    place-items: center;
    color: var(--sgpt-link);
    font-size: 21px;
    font-weight: 400;
}

.sgpt-gallery-stage {
    position: relative;
    width: 100%;
    height: var(--sgpt-gallery-height);
    min-width: 0;
    overflow: hidden;
    border-radius: var(--sgpt-gallery-radius);
    background: var(--sgpt-gallery-bg);
}

.sgpt-gallery-image-button {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.sgpt-gallery-image-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--sgpt-gallery-fit, contain);
    object-position: center center;
    user-select: none;
    -webkit-user-drag: none;
}

.sgpt-image-counter,
.sgpt-gallery-favorite-mobile,
.sgpt-gallery-share-mobile,
.sgpt-mobile-dots {
    display: none;
}

.sgpt-empty-gallery {
    grid-column: 1 / -1;
    display: grid;
    place-items: center;
    min-height: var(--sgpt-gallery-height);
    border: 1px solid var(--sgpt-border);
    background: var(--sgpt-gallery-bg);
    color: var(--sgpt-muted);
}

/* Desktop offer panel */
.sgpt-offer-card,
.sgpt-side-card {
    position: relative;
    width: 100%;
    border: var(--sgpt-panel-border-w) solid var(--sgpt-panel-border);
    border-radius: var(--sgpt-panel-radius);
    background: var(--sgpt-panel-bg);
    box-shadow: var(--sgpt-panel-shadow);
}

.sgpt-offer-card {
    padding: var(--sgpt-panel-pad);
}

.sgpt-side-card {
    margin-top: 16px;
    overflow: hidden;
}

.sgpt-panel-favorite {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}

.sgpt-favorite,
.sgpt-share {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--sgpt-gallery-icon-color);
    cursor: pointer;
}

.sgpt-favorite .es-icon {
    display: none !important;
}

.sgpt-favorite .sgpt-icon,
.sgpt-share .sgpt-icon {
    display: block;
    width: 25px;
    height: 25px;
}

.sgpt-favorite--panel {
    display: grid;
    place-items: center;
    width: var(--sgpt-panel-fav-size);
    height: var(--sgpt-panel-fav-size);
    border-radius: 50%;
}

.sgpt-favorite:hover,
.sgpt-share:hover,
.sgpt-favorite.is-saved,
.sgpt-favorite[aria-pressed="true"] {
    color: var(--sgpt-link-hover);
}

.sgpt-favorite.is-saved .sgpt-icon path,
.sgpt-favorite[aria-pressed="true"] .sgpt-icon path {
    fill: currentColor;
}

.sgpt-panel-block {
    width: 100%;
}

.sgpt-panel-block + .sgpt-panel-block {
    margin-top: 10px;
}

.sgpt-panel-block--title {
    display: block;
    min-width: 0;
    padding-right: calc(var(--sgpt-panel-fav-size) + 12px);
}

.sgpt-status-text {
    color: var(--sgpt-muted);
    font-size: var(--sgpt-small-size);
    line-height: 1.35;
}

.sgpt-property-title,
.sgpt-offer-card .sgpt-property-title {
    position: static !important;
    inset: auto !important;
    display: block !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    white-space: normal !important;
    color: var(--sgpt-text) !important;
    font-family: var(--sgpt-font) !important;
    font-size: var(--sgpt-title-size) !important;
    font-style: normal !important;
    font-weight: var(--sgpt-title-weight) !important;
    line-height: var(--sgpt-title-lh, 1.2) !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
    text-transform: none !important;
    overflow: visible !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto;
}

.sgpt-panel-block--title + .sgpt-panel-block--price {
    margin-top: 14px !important;
}

.sgpt-agency-line,
.sgpt-type-line,
.sgpt-panel-address {
    color: var(--sgpt-muted);
    font-size: var(--sgpt-small-size);
}

.sgpt-agency-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.sgpt-agency-line span {
    color: var(--sgpt-link);
}

.sgpt-verified-icon {
    width: 18px !important;
    height: 18px !important;
    color: var(--sgpt-link);
    vertical-align: middle;
}

.sgpt-panel-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sgpt-panel-address .sgpt-icon {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin-top: 2px;
}

.sgpt-panel-block--price {
    margin-top: 22px !important;
}

.sgpt-price-prefix {
    margin-bottom: 2px;
    color: var(--sgpt-muted);
    font-size: var(--sgpt-small-size);
}

.sgpt-main-price {
    color: var(--sgpt-text);
    font-size: var(--sgpt-price-size);
    font-weight: var(--sgpt-price-weight);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.sgpt-secondary-price {
    margin-top: 3px;
    color: var(--sgpt-muted);
    font-size: var(--sgpt-small-size);
}

.sgpt-panel-block--facts {
    margin-top: 24px !important;
}

.sgpt-facts {
    display: grid;
    gap: var(--sgpt-fact-gap);
}

.sgpt-fact {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--sgpt-text);
    line-height: 1.25;
}

.sgpt-fact .sgpt-icon {
    flex: 0 0 var(--sgpt-fact-icon);
    width: var(--sgpt-fact-icon);
    height: var(--sgpt-fact-icon);
    color: #444;
}

.sgpt-fact strong {
    font-weight: 400;
}

.sgpt-panel-block--whatsapp {
    margin-top: 26px !important;
}

.sgpt-panel-block--reserve {
    margin-top: var(--sgpt-button-gap) !important;
}

.sgpt-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: var(--sgpt-button-height);
    margin: 0;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: var(--sgpt-button-radius);
    cursor: pointer;
    font-size: var(--sgpt-button-font);
    font-weight: var(--sgpt-button-weight);
    line-height: 1.15;
    text-align: center;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.sgpt-action .sgpt-icon {
    width: 22px;
    height: 22px;
}

.sgpt-action--whatsapp {
    border-color: var(--sgpt-wa-border);
    background: var(--sgpt-wa-bg);
    color: var(--sgpt-wa-text) !important;
}

.sgpt-action--whatsapp:hover {
    border-color: var(--sgpt-wa-hover);
    background: var(--sgpt-wa-hover);
    color: var(--sgpt-wa-text) !important;
}

.sgpt-action--reserve {
    border-color: var(--sgpt-reserve-border);
    background: var(--sgpt-reserve-bg);
    color: var(--sgpt-reserve-text);
}

.sgpt-action--reserve:hover {
    border-color: var(--sgpt-reserve-hover);
    background: var(--sgpt-reserve-hover);
    color: var(--sgpt-reserve-text);
}

.sgpt-action--custom {
    border-color: var(--sgpt-link);
    background: #fff;
    color: var(--sgpt-link);
}

.sgpt-reserve-hint {
    position: relative;
    margin-top: 14px;
    padding: var(--sgpt-hint-pad);
    border-radius: var(--sgpt-hint-radius);
    background: var(--sgpt-hint-bg);
    box-shadow: var(--sgpt-hint-shadow);
    color: var(--sgpt-hint-text);
    font-size: 15px;
    line-height: 1.45;
}

.sgpt-reserve-hint__arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--sgpt-hint-bg);
}

.sgpt-panel-divider {
    height: 1px;
    margin: 18px 0;
    border: 0;
    background: var(--sgpt-border);
}

.sgpt-custom-label {
    display: block;
    margin-bottom: 5px;
}

.sgpt-mobile-control-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    padding: 18px 0 2px;
    color: var(--sgpt-link);
}

.sgpt-mobile-favorite-wrap,
.sgpt-share--text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sgpt-link);
}

.sgpt-favorite--text {
    display: inline-grid;
    place-items: center;
}

.sgpt-share--text {
    border: 0;
    background: transparent;
    cursor: pointer;
}

/* Side cards */
.sgpt-side-card > h2 {
    margin: 0;
    padding: 22px 20px 15px;
    color: var(--sgpt-text);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
}

.sgpt-agency-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px 24px;
}

.sgpt-agency-logo {
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 7px;
    background: #f5f5f5;
}

.sgpt-agency-logo img {
    display: block;
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
}

.sgpt-agency-name {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: var(--sgpt-text);
    font-size: 16px;
}

.sgpt-property-code {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-top: 1px solid var(--sgpt-border);
}

.sgpt-property-code > .sgpt-icon {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
}

.sgpt-property-code span {
    display: grid;
    gap: 2px;
}

.sgpt-property-code strong {
    font-size: 15px;
    font-weight: 400;
}

.sgpt-property-code small {
    color: var(--sgpt-muted);
    font-size: 13px;
}

.sgpt-security-card ul {
    margin: 0;
    padding: 8px 29px 22px 39px;
}

.sgpt-security-card li {
    margin: 0 0 13px;
    padding-left: 2px;
    color: var(--sgpt-text);
    font-size: 14px;
    line-height: 1.45;
}

.sgpt-security-card li:last-child {
    margin-bottom: 0;
}

/* Main property content */
.sgpt-property-content {
    margin-left: calc(var(--sgpt-thumb-w) + 14px);
}

.sgpt-section {
    padding: var(--sgpt-section-space) 0;
    border-bottom: 1px solid var(--sgpt-border);
}

.sgpt-section:first-child {
    margin-top: 8px;
}

.sgpt-section h2,
.sgpt-related-section h2 {
    margin: 0 0 26px;
    color: var(--sgpt-text);
    font-size: var(--sgpt-section-title-size);
    font-weight: var(--sgpt-section-title-weight);
    line-height: 1.22;
    letter-spacing: -0.01em;
}

.sgpt-location-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--sgpt-text);
    font-size: 16px;
}

.sgpt-location-address .sgpt-icon {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    margin-top: 2px;
}

.sgpt-zone-link {
    display: inline-block;
    margin: 0 0 18px 31px;
    font-size: 14px;
}

.sgpt-map {
    display: block;
    width: 100%;
    height: 330px;
    border: 0;
    background: #eceff1;
}

.sgpt-characteristics-table {
    overflow: hidden;
    border: 1px solid var(--sgpt-border);
    border-radius: var(--sgpt-card-radius);
}

.sgpt-characteristics-table > div {
    display: grid;
    grid-template-columns: 38% 1fr;
    min-height: var(--sgpt-table-row-h);
}

.sgpt-characteristics-table > div + div {
    border-top: 1px solid rgba(0,0,0,.025);
}

.sgpt-characteristics-table strong,
.sgpt-characteristics-table span {
    display: flex;
    align-items: center;
    padding: 14px 18px;
}

.sgpt-characteristics-table strong {
    background: var(--sgpt-table-label);
    font-weight: 600;
}

.sgpt-characteristics-table span {
    background: var(--sgpt-table-value);
}

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

.sgpt-amenities span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.sgpt-more-button {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    margin-top: 26px;
    padding: 12px 18px;
    border: 1px solid var(--sgpt-border);
    border-radius: var(--sgpt-card-radius);
    background: #fff;
    color: var(--sgpt-link);
    cursor: pointer;
    text-align: left;
}

.sgpt-more-button .sgpt-icon {
    width: 20px;
    height: 20px;
    transition: transform .2s ease;
}

.sgpt-more-button.is-open .sgpt-icon {
    transform: rotate(90deg);
}

.sgpt-description {
    color: var(--sgpt-muted);
    font-size: 16px;
    line-height: 1.55;
}

.sgpt-description > :first-child {
    margin-top: 0;
}

.sgpt-description > :last-child {
    margin-bottom: 0;
}

.sgpt-description h1,
.sgpt-description h2,
.sgpt-description h3,
.sgpt-description h4 {
    color: var(--sgpt-text);
    font-size: 1.15em;
    font-weight: 600;
}

.sgpt-description img {
    max-width: 100%;
    height: auto;
}

/* Estatik form restyling */
.sgpt-estatik-form .es-request-form,
.sgpt-estatik-form .es-request-form--section,
.sgpt-estatik-form .es-component,
.sgpt-estatik-form .es-request-form__fields {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.sgpt-estatik-form .es-field {
    margin-bottom: 16px !important;
}

.sgpt-estatik-form .es-field__label {
    display: block;
    margin-bottom: 7px;
    color: var(--sgpt-text) !important;
    font-weight: 500;
}

.sgpt-estatik-form input.es-field__input,
.sgpt-estatik-form textarea.es-field__input,
.sgpt-estatik-form select.es-field__input,
.sgpt-estatik-form .select2-selection {
    width: 100% !important;
    min-height: 48px !important;
    padding: 10px 13px !important;
    border: 1px solid var(--sgpt-border) !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: var(--sgpt-text) !important;
    box-shadow: none !important;
}

.sgpt-estatik-form textarea.es-field__input {
    min-height: 120px !important;
    resize: vertical;
}

.sgpt-estatik-form .es-btn-wrapper {
    margin-top: 16px !important;
}

.sgpt-estatik-form .js-es-request-form-submit,
.sgpt-estatik-form button[type="submit"] {
    width: 100% !important;
    min-height: var(--sgpt-button-height) !important;
    border: 1px solid var(--sgpt-wa-border) !important;
    border-radius: var(--sgpt-button-radius) !important;
    background: var(--sgpt-wa-bg) !important;
    color: var(--sgpt-wa-text) !important;
    font-size: var(--sgpt-button-font) !important;
    font-weight: var(--sgpt-button-weight) !important;
}

.sgpt-estatik-form .es-terms-text,
.sgpt-estatik-form .es-privacy-policy-container {
    color: var(--sgpt-muted) !important;
    font-size: 12px !important;
}

.sgpt-admin-warning {
    padding: 16px;
    border: 1px solid #e7bf5d;
    border-radius: 6px;
    background: #fff7dd;
    color: #5f4b15;
}

/* Related cards */
.sgpt-related-section {
    margin: 34px calc(-1 * var(--sgpt-outer-pad)) 0;
    padding: 36px var(--sgpt-outer-pad) 54px;
    background: var(--sgpt-related-bg);
}

.sgpt-related-section h2 {
    margin-bottom: 26px;
}

.sgpt-related-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.sgpt-related-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--sgpt-border);
    border-radius: var(--sgpt-card-radius);
    background: #fff;
    box-shadow: var(--sgpt-card-shadow);
    color: var(--sgpt-text) !important;
}

.sgpt-related-image {
    width: 100%;
    height: var(--sgpt-related-image-h);
    overflow: hidden;
    background: #eee;
}

.sgpt-related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.sgpt-related-card:hover .sgpt-related-image img {
    transform: scale(1.025);
}

.sgpt-related-body {
    padding: 14px;
}

.sgpt-related-body small {
    display: block;
    margin-bottom: 3px;
    color: var(--sgpt-link);
    font-size: 10px;
    font-weight: 600;
}

.sgpt-related-body h3 {
    min-height: 38px;
    margin: 0 0 7px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
}

.sgpt-related-price {
    display: block;
    margin-bottom: 7px;
    font-size: 17px;
}

.sgpt-related-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    color: var(--sgpt-text);
    font-size: 11px;
}

.sgpt-related-meta span + span::before {
    content: "|";
    margin-right: 8px;
    color: #b0b0b0;
}

.sgpt-related-body p {
    margin: 7px 0 0;
    color: var(--sgpt-muted);
    font-size: 11px;
    line-height: 1.3;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Lightbox */
.sgpt-lightbox,
.sgpt-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
}

.sgpt-modal[hidden] {
    display: none !important;
}

.sgpt-lightbox,
.sgpt-lightbox * {
    box-sizing: border-box;
}

.sgpt-lightbox {
    display: none;
    place-items: stretch;
    color: #fff;
    isolation: isolate;
    background: transparent;
    pointer-events: none;
}

.sgpt-lightbox.is-open,
.sgpt-lightbox[aria-hidden="false"] {
    display: grid !important;
    pointer-events: auto;
}

.sgpt-lightbox[aria-hidden="true"] {
    display: none !important;
}

body.sgpt-lightbox-open {
    overflow: hidden !important;
}

.sgpt-lightbox-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: var(--sgpt-lightbox-bg, rgba(0,0,0,.94));
    -webkit-backdrop-filter: blur(var(--sgpt-lightbox-blur, 4px));
    backdrop-filter: blur(var(--sgpt-lightbox-blur, 4px));
    cursor: zoom-out;
}

.sgpt-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: 68px minmax(0, 1fr) auto;
    overflow: hidden;
}

.sgpt-lightbox-toolbar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 22px;
}

.sgpt-lightbox-counter {
    min-width: 64px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
}

.sgpt-lightbox-close {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border: 1px solid var(--sgpt-lightbox-close-border, #ffffff);
    border-radius: 999px;
    background: var(--sgpt-lightbox-close-bg, #ffffff);
    color: var(--sgpt-lightbox-close-text, #222222);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,.22);
    transition: transform .18s ease, opacity .18s ease, background-color .18s ease;
}

.sgpt-lightbox-close:hover {
    transform: translateY(-1px);
    opacity: .92;
}

.sgpt-lightbox-close:focus-visible,
.sgpt-lightbox-arrow:focus-visible,
.sgpt-lightbox-thumbs button:focus-visible {
    outline: 3px solid rgba(255,255,255,.8);
    outline-offset: 3px;
}

.sgpt-lightbox-close .sgpt-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.sgpt-lightbox-viewer {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 76px;
    align-items: stretch;
}

.sgpt-lightbox-stage {
    min-width: 0;
    min-height: 0;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 8px 12px 14px;
    overflow: hidden;
    touch-action: pan-y;
}

.sgpt-lightbox-stage img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
}

.sgpt-lightbox-arrow {
    align-self: center;
    width: 52px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    padding: 0 0 7px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    background: rgba(0,0,0,.32);
    color: #fff;
    font: inherit;
    font-size: 52px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.sgpt-lightbox-arrow:hover {
    background: rgba(0,0,0,.58);
    transform: scale(1.04);
}

.sgpt-lightbox-thumbs {
    position: relative;
    z-index: 3;
    width: min(100%, 1160px);
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 auto;
    padding: 13px 22px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.55) rgba(255,255,255,.12);
}

.sgpt-lightbox-thumbs::-webkit-scrollbar {
    height: 7px;
}

.sgpt-lightbox-thumbs::-webkit-scrollbar-track {
    background: rgba(255,255,255,.12);
    border-radius: 999px;
}

.sgpt-lightbox-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.55);
    border-radius: 999px;
}

.sgpt-lightbox-thumbs button {
    flex: 0 0 auto;
    width: calc(var(--sgpt-lightbox-thumb-height, 66px) * 1.34);
    height: var(--sgpt-lightbox-thumb-height, 66px);
    display: block;
    padding: 3px;
    overflow: hidden;
    scroll-snap-align: center;
    border: 2px solid transparent;
    border-radius: 7px;
    background: var(--sgpt-lightbox-thumb-bg, #151515);
    opacity: .62;
    cursor: pointer;
    transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}

.sgpt-lightbox-thumbs button:hover {
    opacity: .9;
}

.sgpt-lightbox-thumbs button.is-active {
    border-color: var(--sgpt-lightbox-thumb-active, #ffffff);
    opacity: 1;
    transform: translateY(-2px);
}

.sgpt-lightbox-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: contain;
    object-position: center;
    background: #111;
    pointer-events: none;
}

/* Modal */
.sgpt-modal {
    display: grid;
    place-items: center;
    overflow-y: auto;
    padding: 24px;
    background: var(--sgpt-modal-bg);
}

.sgpt-modal-card {
    position: relative;
    width: min(100%, var(--sgpt-modal-width));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 30px;
    border-radius: var(--sgpt-modal-radius);
    background: var(--sgpt-modal-card-bg, #ffffff) !important;
    color: var(--sgpt-text);
    box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.sgpt-modal-card .sgpt-estatik-form,
.sgpt-modal-card .es-property-section__content,
.sgpt-modal-card .es-request-form,
.sgpt-modal-card .es-request-form--section,
.sgpt-modal-card .es-component,
.sgpt-modal-card form {
    background-color: var(--sgpt-modal-card-bg, #ffffff) !important;
}

.sgpt-modal-card > h2 {
    margin: 0 48px 24px 0;
    font-size: 26px;
    font-weight: 500;
}

.sgpt-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: var(--sgpt-text);
    cursor: pointer;
}

.sgpt-modal-close .sgpt-icon {
    width: 22px;
    height: 22px;
}

.sgpt-mobile-heading,
.sgpt-mobile-panel {
    display: none;
}

/* JS-controlled responsive layout. This allows the breakpoint to be customized. */
.sgpt-page.sgpt-mobile-layout {
    padding: 0 0 52px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-shell {
    max-width: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-cover {
    height: var(--sgpt-mobile-cover-height);
    margin: 0;
    border-radius: 0;
}

.sgpt-page.sgpt-mobile-layout .sgpt-toolbar {
    display: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-main-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sgpt-page.sgpt-mobile-layout .sgpt-primary-column,
.sgpt-page.sgpt-mobile-layout .sgpt-sidebar {
    width: 100%;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-heading,
.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel {
    display: block;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-heading {
    padding: 28px var(--sgpt-mobile-pad) 22px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-heading .sgpt-panel-block + .sgpt-panel-block {
    margin-top: 7px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-heading .sgpt-property-title {
    padding: 0;
    font-size: var(--sgpt-mobile-title-size);
    font-weight: 400;
    line-height: 1.18 !important;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-heading .sgpt-status-text {
    font-size: 16px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-heading .sgpt-agency-line {
    font-size: 16px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-gallery {
    display: block;
    width: auto;
    margin: 0 var(--sgpt-mobile-gallery-margin);
}

.sgpt-page.sgpt-mobile-layout .sgpt-thumbnails {
    display: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-gallery-stage {
    width: 100%;
    height: auto;
    aspect-ratio: var(--sgpt-mobile-gallery-ratio);
    border-radius: 0;
    touch-action: pan-y;
}

.sgpt-page.sgpt-mobile-layout .sgpt-gallery-image-button {
    cursor: zoom-in;
}

.sgpt-page.sgpt-mobile-layout .sgpt-image-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-width: 64px;
    min-height: 46px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--sgpt-counter-bg);
    color: var(--sgpt-counter-text);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.sgpt-page.sgpt-mobile-layout .sgpt-gallery-favorite-mobile,
.sgpt-page.sgpt-mobile-layout .sgpt-gallery-share-mobile {
    position: absolute;
    right: 28px;
    z-index: 3;
    display: block;
}

.sgpt-page.sgpt-mobile-layout .sgpt-gallery-favorite-mobile {
    top: 30px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-gallery-share-mobile {
    bottom: 28px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-favorite--floating,
.sgpt-page.sgpt-mobile-layout .sgpt-share--floating {
    display: grid;
    place-items: center;
    width: var(--sgpt-gallery-icon-size);
    height: var(--sgpt-gallery-icon-size);
    border: 0;
    border-radius: 50%;
    background: var(--sgpt-gallery-icon-bg);
    color: var(--sgpt-gallery-icon-color);
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.sgpt-page.sgpt-mobile-layout .sgpt-favorite--floating .sgpt-icon,
.sgpt-page.sgpt-mobile-layout .sgpt-share--floating .sgpt-icon {
    width: 27px;
    height: 27px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-dots button {
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #dedede;
    cursor: pointer;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-dots button.is-active {
    background: var(--sgpt-link);
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel {
    padding: 24px var(--sgpt-mobile-pad) 30px;
    border-bottom: 1px solid var(--sgpt-border);
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-panel-block + .sgpt-panel-block {
    margin-top: 16px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-panel-block--price {
    margin-top: 0 !important;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-price-prefix {
    margin-bottom: 8px;
    font-size: 17px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-main-price {
    font-size: var(--sgpt-mobile-price-size);
    font-weight: var(--sgpt-price-weight);
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-secondary-price {
    margin-top: 8px;
    font-size: 18px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-panel-block--facts {
    margin-top: 32px !important;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-facts {
    gap: 24px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-fact {
    gap: 17px;
    font-size: 18px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-fact .sgpt-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-panel-block--whatsapp {
    margin-top: 34px !important;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-action {
    min-height: 58px;
    border-radius: 9px;
    font-size: 18px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-mobile-panel .sgpt-reserve-hint {
    margin-top: 18px;
    padding: 22px;
    font-size: 17px;
    line-height: 1.45;
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-content {
    margin-left: 0;
}

.sgpt-page.sgpt-mobile-layout .sgpt-section {
    padding: var(--sgpt-mobile-section-space) var(--sgpt-mobile-pad);
}

.sgpt-page.sgpt-mobile-layout .sgpt-section:first-child {
    margin-top: 0;
}

.sgpt-page.sgpt-mobile-layout .sgpt-section h2,
.sgpt-page.sgpt-mobile-layout .sgpt-related-section h2 {
    margin-bottom: 30px;
    font-size: var(--sgpt-mobile-section-title);
    font-weight: var(--sgpt-section-title-weight);
}

.sgpt-page.sgpt-mobile-layout .sgpt-location-address {
    gap: 18px;
    margin-bottom: 22px;
    font-size: 19px;
    line-height: 1.35;
}

.sgpt-page.sgpt-mobile-layout .sgpt-location-address .sgpt-icon {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-zone-link {
    margin: 0 0 28px 43px;
    font-size: 17px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-map {
    height: auto;
    aspect-ratio: 1.45 / 1;
}

.sgpt-page.sgpt-mobile-layout .sgpt-characteristics-table > div {
    grid-template-columns: 40% 60%;
    min-height: 70px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-characteristics-table strong,
.sgpt-page.sgpt-mobile-layout .sgpt-characteristics-table span {
    padding: 18px 20px;
    font-size: 17px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-amenities {
    display: block;
}

.sgpt-page.sgpt-mobile-layout .sgpt-amenities span {
    display: block;
    margin-bottom: 22px;
    font-size: 18px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-amenities span[data-index]:nth-child(n+4) {
    display: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-amenities.is-open span[data-index] {
    display: block;
}

.sgpt-page.sgpt-mobile-layout .sgpt-more-button {
    display: flex;
    min-height: 58px;
    margin-top: 28px;
    padding: 14px 20px;
    font-size: 17px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-description {
    font-size: 18px;
    line-height: 1.48;
}

.sgpt-page.sgpt-mobile-layout .sgpt-sidebar-scroll {
    position: static;
    max-height: none;
    overflow: visible;
}

.sgpt-page.sgpt-mobile-layout .sgpt-offer-card {
    display: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-side-card {
    margin: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-side-card > h2 {
    padding: 36px var(--sgpt-mobile-pad) 22px;
    font-size: var(--sgpt-mobile-section-title);
}

.sgpt-page.sgpt-mobile-layout .sgpt-agency-row {
    padding: 18px var(--sgpt-mobile-pad) 34px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-agency-logo {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-agency-name {
    font-size: 18px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-code {
    gap: 22px;
    padding: 30px var(--sgpt-mobile-pad);
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-code > .sgpt-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-code strong {
    font-size: 18px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-code small {
    font-size: 16px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-security-card ul {
    padding: 10px calc(var(--sgpt-mobile-pad) + 18px) 28px calc(var(--sgpt-mobile-pad) + 32px);
}

.sgpt-page.sgpt-mobile-layout .sgpt-security-card li {
    margin-bottom: 22px;
    padding-left: 5px;
    font-size: 18px;
    line-height: 1.45;
}

.sgpt-page.sgpt-mobile-layout .sgpt-security-card li[data-index] {
    display: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-security-card li.is-initial,
.sgpt-page.sgpt-mobile-layout .sgpt-security-card.is-open li[data-index] {
    display: list-item;
}

.sgpt-page.sgpt-mobile-layout .sgpt-security-card .sgpt-more-button {
    width: auto;
    margin: 0 var(--sgpt-mobile-pad) 30px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-related-section {
    margin: 0;
    padding: 36px 0 48px;
}

.sgpt-page.sgpt-mobile-layout .sgpt-related-section h2 {
    padding: 0 var(--sgpt-mobile-pad);
}

.sgpt-page.sgpt-mobile-layout .sgpt-related-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 var(--sgpt-mobile-pad) 12px;
    scrollbar-width: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-related-track::-webkit-scrollbar {
    display: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-related-card {
    flex: 0 0 var(--sgpt-related-card-w);
    scroll-snap-align: start;
}

.sgpt-page.sgpt-mobile-layout .sgpt-related-body h3 {
    min-height: 0;
}

.sgpt-page.sgpt-mobile-layout .sgpt-inline-form {
    padding-bottom: 50px;
}

.sgpt-mobile-document .sgpt-modal {
    align-items: end;
    padding: 0;
}

.sgpt-mobile-document .sgpt-modal-card {
    width: 100%;
    max-height: 92vh;
    padding: 28px var(--sgpt-mobile-pad) 36px;
    border-radius: var(--sgpt-modal-radius) var(--sgpt-modal-radius) 0 0;
}

.sgpt-mobile-document .sgpt-modal-card > h2 {
    font-size: 25px;
}

/* Fallback if JavaScript is delayed or disabled. */
@media (max-width: 980px) {
    .sgpt-page:not(.sgpt-desktop-layout) {
        padding: 0 0 52px;
    }
    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-cover {
        height: var(--sgpt-mobile-cover-height);
        margin: 0;
        border-radius: 0;
    }
    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-toolbar {
        display: none;
    }
    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-main-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-mobile-heading,
    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-mobile-panel {
        display: block;
    }
    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-offer-card {
        display: none;
    }
}

@media (max-width: 560px) {
    .sgpt-preview-bar {
        display: block;
        font-size: 12px;
    }
    .sgpt-preview-bar span {
        display: block;
        margin-top: 2px;
    }
    .sgpt-lightbox-dialog {
        grid-template-rows: 60px minmax(0, 1fr) auto;
    }
    .sgpt-lightbox-toolbar {
        padding: 8px 12px;
    }
    .sgpt-lightbox-close {
        min-height: 40px;
        padding: 0 14px;
        font-size: 14px;
    }
    .sgpt-lightbox-viewer {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }
    .sgpt-lightbox-stage {
        padding: 4px 4px 10px;
    }
    .sgpt-lightbox-arrow {
        width: 38px;
        height: 54px;
        padding-bottom: 5px;
        font-size: 39px;
    }
    .sgpt-lightbox-thumbs {
        gap: 7px;
        padding: 10px 12px 14px;
    }
    .sgpt-lightbox-thumbs button {
        width: calc(var(--sgpt-lightbox-thumb-height, 66px) * 1.18);
    }
}


/* v2.4: full-bleed cover with the complete property sheet floating over it. */
.sgpt-page.sgpt-page--has-cover {
    padding-top: 0;
}

.sgpt-page--has-cover .sgpt-cover {
    position: relative;
    z-index: 0;
    width: 100vw;
    max-width: none;
    height: var(--sgpt-cover-height);
    margin: 0 0 0 calc(50% - 50vw);
    border-radius: 0;
}

.sgpt-property-shell {
    position: relative;
    z-index: 2;
}

.sgpt-page--has-cover .sgpt-property-shell {
    margin-top: calc(-1 * var(--sgpt-cover-overlap));
}

.sgpt-property-frame {
    width: 100%;
    min-width: 0;
    border-radius: var(--sgpt-frame-radius);
    background: var(--sgpt-content-bg);
    box-shadow: var(--sgpt-frame-shadow);
}

.sgpt-property-frame__body {
    padding: var(--sgpt-frame-pad);
}

.sgpt-property-frame > .sgpt-toolbar {
    min-height: 60px;
    margin: 0;
    padding: 0 var(--sgpt-frame-pad);
    border-radius: var(--sgpt-frame-radius) var(--sgpt-frame-radius) 0 0;
    border-bottom: 1px solid var(--sgpt-border);
    background: var(--sgpt-toolbar-bg);
}

.sgpt-property-frame .sgpt-toolbar + .sgpt-property-frame__body {
    padding-top: var(--sgpt-frame-pad);
}

/* The mobile reference remains a single vertical flow instead of a floating card. */
.sgpt-page.sgpt-mobile-layout .sgpt-property-shell {
    margin-top: 0;
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-frame {
    border-radius: 0;
    box-shadow: none;
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-frame__body {
    padding: 0;
}

.sgpt-page.sgpt-mobile-layout .sgpt-property-frame > .sgpt-toolbar {
    border-radius: 0;
}

@media (max-width: 980px) {
    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-property-shell {
        margin-top: 0;
    }

    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-property-frame {
        border-radius: 0;
        box-shadow: none;
    }

    .sgpt-page:not(.sgpt-desktop-layout) .sgpt-property-frame__body {
        padding: 0;
    }
}

@media print {
    .sgpt-preview-bar,
    .sgpt-toolbar-actions,
    .sgpt-panel-favorite,
    .sgpt-gallery-favorite-mobile,
    .sgpt-gallery-share-mobile,
    .sgpt-action,
    .sgpt-more-button,
    .sgpt-related-section,
    .sgpt-modal,
    .sgpt-lightbox {
        display: none !important;
    }
    .sgpt-page {
        padding: 0;
    }
    .sgpt-sidebar-scroll {
        position: static;
        max-height: none;
        overflow: visible;
    }
}


/* 2.5: related listings are rendered by an administrator-defined shortcode. */
.sgpt-related-shortcode {
    width: 100%;
    min-width: 0;
}
.sgpt-related-shortcode > :first-child {
    margin-top: 0;
}
.sgpt-related-shortcode > :last-child {
    margin-bottom: 0;
}

/* ========================================================================
   2.9.1 — UF Y GASTOS COMUNES
   ======================================================================== */

.sgpt-secondary-price--uf,
.sgpt-secondary-price--common_expenses {
    display: block;
    margin-top: 4px;
    color: var(--sgpt-muted);
    font-size: var(--sgpt-small-size);
    font-weight: 400;
    line-height: 1.35;
}

.sgpt-price-source {
    display: block;
    margin-top: 2px;
    color: color-mix(in srgb, var(--sgpt-muted) 82%, transparent);
    font-size: max(10px, calc(var(--sgpt-small-size) - 2px));
    font-weight: 400;
    line-height: 1.35;
}

.sgpt-price-source a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.sgpt-price-source a:hover,
.sgpt-price-source a:focus-visible {
    color: var(--sgpt-text);
}

/* ========================================================================
   2.9.2 — PRECIO SECUNDARIO UF / GASTOS COMUNES
   ======================================================================== */

.sgpt-panel-block--price
.sgpt-secondary-price--uf,
.sgpt-panel-block--price
.sgpt-secondary-price--common_expenses {
    display: block !important;

    margin: 5px 0 0 !important;
    padding: 0 !important;

    color: var(--sgpt-muted) !important;
    background: transparent !important;

    border: 0 !important;
    box-shadow: none !important;

    font-size: var(--sgpt-small-size) !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
}

.sgpt-panel-block--price
.sgpt-price-source {
    display: block !important;

    margin: 3px 0 0 !important;
    padding: 0 !important;

    color: var(--sgpt-muted) !important;
    opacity: 0.78;

    font-size: max(
        10px,
        calc(var(--sgpt-small-size) - 2px)
    ) !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
}



/* ========================================================================
   2.9.3 — TEXTO EXACTO Y PERSONALIZABLE BAJO EL PRECIO
   ======================================================================== */

.sgpt-panel-block--price
.sgpt-secondary-price,
.sgpt-panel-block--price
.sgpt-secondary-price--uf,
.sgpt-panel-block--price
.sgpt-secondary-price--common_expenses,
.sgpt-page.sgpt-mobile-layout
.sgpt-mobile-panel
.sgpt-secondary-price {
    display: block !important;

    margin: 5px 0 0 !important;
    padding: 0 !important;

    color: var(--sgpt-secondary-price-color) !important;
    background: transparent !important;

    border: 0 !important;
    box-shadow: none !important;

    font-family: var(--sgpt-font) !important;
    font-size: var(--sgpt-secondary-price-size) !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
}

/* La fuente va en la misma línea; nunca se genera una tercera línea. */
.sgpt-panel-block--price
.sgpt-price-source {
    display: none !important;
}

/* ========================================================================
   2.9.4 — TODAS LAS FOTOGRAFÍAS DE LA PROPIEDAD
   ======================================================================== */

/*
 * La columna de miniaturas ya no oculta fotografías después de la séptima.
 * Todas se muestran dentro de una lista vertical desplazable.
 */
.sgpt-thumbnails {
    overflow-x: hidden !important;
    overflow-y: auto !important;

    padding-right: 4px !important;

    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color:
        var(--sgpt-thumb-active)
        transparent;
}

.sgpt-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.sgpt-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.sgpt-thumbnails::-webkit-scrollbar-thumb {
    background:
        var(--sgpt-thumb-active);
    border-radius: 999px;
}

.sgpt-thumbnail:nth-of-type(n+8) {
    display: block !important;
}

/*
 * El antiguo contador "+N" deja de participar en el diseño porque cada
 * fotografía posee ahora su propia miniatura.
 */
.sgpt-thumbnail-count {
    display: none !important;
}

/* ========================================================================
   2.9.9 — PRECIO POR PIE CUADRADO
   ======================================================================== */

.sgpt-price-per-sqft {
    display: block !important;

    margin: 4px 0 0 !important;

    color: var(--sgpt-secondary-price-color) !important;

    font-family: inherit !important;
    font-size: var(--sgpt-secondary-price-size) !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
}

/* ========================================================================
   2.9.12 — TAG AUTOMÁTICO EN VENTA / SE ARRIENDA
   ======================================================================== */

.sgpt-listing-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;

    width: max-content !important;
    max-width: 100% !important;
    min-height: 30px !important;

    padding: 6px 11px 6px 9px !important;
    margin: 0 !important;

    border: 1px solid transparent !important;
    border-radius: 999px !important;

    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;

    font-family: var(--sgpt-font) !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.015em !important;
    text-transform: none !important;
    white-space: normal !important;

    box-sizing: border-box !important;
}

.sgpt-listing-tag__dot {
    display: block !important;
    flex: 0 0 7px !important;

    width: 7px !important;
    height: 7px !important;

    background: currentColor !important;
    border-radius: 50% !important;

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.62) !important;
}

/* En venta: verde sobrio. */

.sgpt-listing-tag--sale {
    color: #067647 !important;
    background:
        linear-gradient(
            180deg,
            #f0fdf4 0%,
            #ecfdf3 100%
        ) !important;
    border-color: #abefc6 !important;
}

/* Se arrienda: azul inmobiliario limpio. */

.sgpt-listing-tag--rent {
    color: #175cd3 !important;
    background:
        linear-gradient(
            180deg,
            #f5faff 0%,
            #eff8ff 100%
        ) !important;
    border-color: #b2ddff !important;
}

/*
 * When the status block is disabled and the tag is injected into the title
 * block, keep a precise separation from the property name.
 */
.sgpt-panel-block--title
.sgpt-listing-tag {
    margin-bottom: 10px !important;
}

/*
 * When the status block is present, the normal block spacing places the title
 * immediately below the tag.
 */
.sgpt-panel-block--status
+ .sgpt-panel-block--title {
    margin-top: 8px !important;
}

.sgpt-page.sgpt-mobile-layout
.sgpt-mobile-heading
.sgpt-listing-tag {
    min-height: 32px !important;

    padding: 7px 11px 7px 10px !important;

    font-size: 13px !important;
    line-height: 1.2 !important;
}

.sgpt-page.sgpt-mobile-layout
.sgpt-mobile-heading
.sgpt-panel-block--title
.sgpt-listing-tag {
    margin-bottom: 11px !important;
}

/* ========================================================================
   2.9.13 — FORMULARIO DEL MODAL CLARO Y VISIBLE
   ======================================================================== */

.sgpt-modal {
    padding: 24px !important;

    background:
        rgba(15, 23, 42, 0.68) !important;

    -webkit-backdrop-filter:
        blur(5px) !important;
    backdrop-filter:
        blur(5px) !important;
}

.sgpt-modal-card {
    width:
        min(
            100%,
            620px
        ) !important;
    max-height:
        calc(
            100dvh -
            48px
        ) !important;

    padding:
        34px
        36px
        36px !important;

    overflow-x:
        hidden !important;
    overflow-y:
        auto !important;

    border:
        1px solid
        rgba(
            15,
            23,
            42,
            0.08
        ) !important;
    border-radius:
        18px !important;

    background:
        #ffffff !important;
    color:
        #1f2937 !important;

    box-shadow:
        0 28px 85px
        rgba(
            15,
            23,
            42,
            0.30
        ) !important;

    box-sizing:
        border-box !important;
}

.sgpt-modal-card,
.sgpt-modal-card * {
    box-sizing:
        border-box !important;
}

.sgpt-modal-header {
    display:
        block !important;

    padding:
        0
        48px
        22px
        0 !important;
    margin:
        0
        0
        24px !important;

    border-bottom:
        1px solid
        #e5e7eb !important;
}

.sgpt-modal-eyebrow {
    display:
        inline-flex !important;
    align-items:
        center !important;

    min-height:
        25px !important;

    padding:
        4px
        9px !important;
    margin:
        0
        0
        10px !important;

    border:
        1px solid
        #bfdbfe !important;
    border-radius:
        999px !important;

    background:
        #eff6ff !important;
    color:
        #1d4ed8 !important;

    font-size:
        11px !important;
    font-weight:
        750 !important;
    line-height:
        1.2 !important;
    letter-spacing:
        0.035em !important;
    text-transform:
        uppercase !important;
}

.sgpt-modal-header > h2,
.sgpt-modal-card > h2 {
    margin:
        0
        0
        8px !important;

    color:
        #111827 !important;

    font-size:
        clamp(
            24px,
            4vw,
            30px
        ) !important;
    font-weight:
        700 !important;
    line-height:
        1.16 !important;
    letter-spacing:
        -0.025em !important;
}

.sgpt-modal-header > p {
    margin:
        0 !important;

    color:
        #5f6b7a !important;

    font-size:
        14px !important;
    line-height:
        1.55 !important;
}

.sgpt-modal-header
.sgpt-modal-required-note {
    margin-top:
        10px !important;

    color:
        #6b7280 !important;

    font-size:
        12px !important;
}

.sgpt-modal-required-note
span {
    color:
        #dc2626 !important;
    font-weight:
        800 !important;
}

.sgpt-modal-close {
    z-index:
        5 !important;

    top:
        16px !important;
    right:
        16px !important;

    width:
        42px !important;
    height:
        42px !important;

    border:
        1px solid
        #e5e7eb !important;
    border-radius:
        999px !important;

    background:
        #f8fafc !important;
    color:
        #334155 !important;

    box-shadow:
        0 1px 2px
        rgba(
            15,
            23,
            42,
            0.06
        ) !important;

    transition:
        background-color
        160ms ease,
        border-color
        160ms ease,
        transform
        160ms ease !important;
}

.sgpt-modal-close:hover {
    border-color:
        #cbd5e1 !important;

    background:
        #eef2f7 !important;

    transform:
        translateY(
            -1px
        ) !important;
}

.sgpt-modal-card
.sgpt-estatik-form,
.sgpt-modal-card
.sgpt-estatik-form
form,
.sgpt-modal-card
.es-request-form,
.sgpt-modal-card
.es-request-form--section,
.sgpt-modal-card
.es-request-form__fields,
.sgpt-modal-card
.es-property-section__content,
.sgpt-modal-card
.es-component {
    display:
        block !important;

    width:
        100% !important;
    max-width:
        none !important;

    padding:
        0 !important;
    margin:
        0 !important;

    background:
        transparent !important;

    border:
        0 !important;
    box-shadow:
        none !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.es-field,
.sgpt-modal-card
.sgpt-estatik-form
[class*="es-field"] {
    position:
        relative !important;

    display:
        block !important;

    width:
        100% !important;
    max-width:
        none !important;
    min-height:
        0 !important;

    padding:
        0 !important;
    margin:
        0
        0
        18px !important;

    background:
        transparent !important;

    border:
        0 !important;
    box-shadow:
        none !important;
}

.sgpt-modal-card
.sgpt-estatik-form
label,
.sgpt-modal-card
.sgpt-estatik-form
.es-field__label {
    display:
        block !important;

    width:
        100% !important;

    padding:
        0 !important;
    margin:
        0
        0
        7px !important;

    color:
        #25313d !important;

    font-family:
        inherit !important;
    font-size:
        13px !important;
    font-weight:
        700 !important;
    line-height:
        1.35 !important;
    letter-spacing:
        0 !important;
}

.sgpt-modal-card
.sgpt-estatik-form
label
abbr,
.sgpt-modal-card
.sgpt-estatik-form
label
.required,
.sgpt-modal-card
.sgpt-estatik-form
.es-field__label
span[aria-hidden="true"] {
    color:
        #dc2626 !important;
}

/*
 * Estatik versions do not always place the class es-field__input directly on
 * the native input. These selectors cover both the old and current markup.
 */
.sgpt-modal-card
.sgpt-estatik-form
input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.sgpt-modal-card
.sgpt-estatik-form
textarea,
.sgpt-modal-card
.sgpt-estatik-form
select,
.sgpt-modal-card
.sgpt-estatik-form
input.es-field__input,
.sgpt-modal-card
.sgpt-estatik-form
textarea.es-field__input,
.sgpt-modal-card
.sgpt-estatik-form
select.es-field__input,
.sgpt-modal-card
.sgpt-estatik-form
.es-field__input
input,
.sgpt-modal-card
.sgpt-estatik-form
.es-field__input
textarea,
.sgpt-modal-card
.sgpt-estatik-form
.es-field__input
select,
.sgpt-modal-card
.sgpt-estatik-form
.form-control {
    display:
        block !important;

    width:
        100% !important;
    max-width:
        none !important;
    min-width:
        0 !important;
    min-height:
        50px !important;
    height:
        auto !important;

    padding:
        12px
        14px !important;
    margin:
        0 !important;

    opacity:
        1 !important;
    visibility:
        visible !important;

    border:
        1px solid
        #cbd5e1 !important;
    border-radius:
        9px !important;

    outline:
        0 !important;

    background:
        #ffffff !important;
    color:
        #111827 !important;
    caret-color:
        #111827 !important;

    -webkit-text-fill-color:
        #111827 !important;

    box-shadow:
        0 1px 2px
        rgba(
            15,
            23,
            42,
            0.04
        ) !important;

    font-family:
        inherit !important;
    font-size:
        15px !important;
    font-weight:
        400 !important;
    line-height:
        1.35 !important;

    appearance:
        auto !important;

    transition:
        border-color
        150ms ease,
        box-shadow
        150ms ease,
        background-color
        150ms ease !important;
}

.sgpt-modal-card
.sgpt-estatik-form
textarea,
.sgpt-modal-card
.sgpt-estatik-form
textarea.es-field__input,
.sgpt-modal-card
.sgpt-estatik-form
.es-field__input
textarea {
    min-height:
        132px !important;

    resize:
        vertical !important;
}

.sgpt-modal-card
.sgpt-estatik-form
input::placeholder,
.sgpt-modal-card
.sgpt-estatik-form
textarea::placeholder {
    color:
        #94a3b8 !important;

    opacity:
        1 !important;
}

.sgpt-modal-card
.sgpt-estatik-form
input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):hover,
.sgpt-modal-card
.sgpt-estatik-form
textarea:hover,
.sgpt-modal-card
.sgpt-estatik-form
select:hover {
    border-color:
        #94a3b8 !important;
}

.sgpt-modal-card
.sgpt-estatik-form
input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):focus,
.sgpt-modal-card
.sgpt-estatik-form
textarea:focus,
.sgpt-modal-card
.sgpt-estatik-form
select:focus {
    border-color:
        #2563eb !important;

    background:
        #ffffff !important;

    box-shadow:
        0 0 0 3px
        rgba(
            37,
            99,
            235,
            0.14
        ) !important;
}

.sgpt-modal-card
.sgpt-estatik-form
input[aria-invalid="true"],
.sgpt-modal-card
.sgpt-estatik-form
textarea[aria-invalid="true"],
.sgpt-modal-card
.sgpt-estatik-form
select[aria-invalid="true"],
.sgpt-modal-card
.sgpt-estatik-form
.is-invalid {
    border-color:
        #dc2626 !important;

    box-shadow:
        0 0 0 3px
        rgba(
            220,
            38,
            38,
            0.11
        ) !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.es-btn-wrapper,
.sgpt-modal-card
.sgpt-estatik-form
[class*="btn-wrapper"] {
    display:
        block !important;

    width:
        100% !important;

    padding:
        0 !important;
    margin:
        20px
        0
        0 !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.js-es-request-form-submit,
.sgpt-modal-card
.sgpt-estatik-form
button[type="submit"],
.sgpt-modal-card
.sgpt-estatik-form
input[type="submit"] {
    display:
        inline-flex !important;
    align-items:
        center !important;
    justify-content:
        center !important;

    width:
        100% !important;
    min-height:
        52px !important;

    padding:
        12px
        18px !important;
    margin:
        0 !important;

    border:
        1px solid
        #1d4ed8 !important;
    border-radius:
        9px !important;

    background:
        #2563eb !important;
    color:
        #ffffff !important;

    box-shadow:
        0 8px 18px
        rgba(
            37,
            99,
            235,
            0.20
        ) !important;

    font-family:
        inherit !important;
    font-size:
        14px !important;
    font-weight:
        750 !important;
    line-height:
        1.2 !important;
    letter-spacing:
        0.015em !important;

    cursor:
        pointer !important;

    transition:
        background-color
        150ms ease,
        border-color
        150ms ease,
        box-shadow
        150ms ease,
        transform
        150ms ease !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.js-es-request-form-submit:hover,
.sgpt-modal-card
.sgpt-estatik-form
button[type="submit"]:hover,
.sgpt-modal-card
.sgpt-estatik-form
input[type="submit"]:hover {
    border-color:
        #1e40af !important;

    background:
        #1d4ed8 !important;

    box-shadow:
        0 10px 24px
        rgba(
            37,
            99,
            235,
            0.26
        ) !important;

    transform:
        translateY(
            -1px
        ) !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.js-es-request-form-submit:focus-visible,
.sgpt-modal-card
.sgpt-estatik-form
button[type="submit"]:focus-visible,
.sgpt-modal-card
.sgpt-estatik-form
input[type="submit"]:focus-visible {
    outline:
        3px solid
        rgba(
            37,
            99,
            235,
            0.24
        ) !important;
    outline-offset:
        3px !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.js-es-request-form-submit[disabled],
.sgpt-modal-card
.sgpt-estatik-form
button[type="submit"][disabled],
.sgpt-modal-card
.sgpt-estatik-form
input[type="submit"][disabled],
.sgpt-modal-card
.sgpt-estatik-form
.is-submitting {
    opacity:
        0.68 !important;

    cursor:
        not-allowed !important;

    transform:
        none !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.es-terms-text,
.sgpt-modal-card
.sgpt-estatik-form
.es-privacy-policy-container,
.sgpt-modal-card
.sgpt-estatik-form
[class*="privacy"],
.sgpt-modal-card
.sgpt-estatik-form
[class*="terms"] {
    margin:
        16px
        0
        0 !important;

    color:
        #64748b !important;

    font-size:
        11px !important;
    line-height:
        1.55 !important;
}

.sgpt-modal-card
.sgpt-estatik-form
.es-terms-text
a,
.sgpt-modal-card
.sgpt-estatik-form
.es-privacy-policy-container
a,
.sgpt-modal-card
.sgpt-estatik-form
[class*="privacy"]
a,
.sgpt-modal-card
.sgpt-estatik-form
[class*="terms"]
a {
    color:
        #1d4ed8 !important;
    text-decoration:
        underline !important;
    text-underline-offset:
        2px !important;
}

.sgpt-modal-sending {
    display:
        none !important;
    align-items:
        center !important;
    justify-content:
        center !important;
    gap:
        10px !important;

    min-height:
        52px !important;

    padding:
        12px
        16px !important;
    margin:
        18px
        0
        0 !important;

    border:
        1px solid
        #bfdbfe !important;
    border-radius:
        9px !important;

    background:
        #eff6ff !important;
    color:
        #1e40af !important;

    font-size:
        13px !important;
    font-weight:
        700 !important;
}

.sgpt-modal-card.is-submitting
.sgpt-modal-sending:not([hidden]) {
    display:
        flex !important;
}

.sgpt-modal-spinner {
    width:
        17px !important;
    height:
        17px !important;

    border:
        2px solid
        rgba(
            37,
            99,
            235,
            0.24
        ) !important;
    border-top-color:
        #2563eb !important;
    border-radius:
        50% !important;

    animation:
        sgpt-modal-spin
        700ms
        linear
        infinite !important;
}

@keyframes sgpt-modal-spin {
    to {
        transform:
            rotate(
                360deg
            );
    }
}

.sgpt-modal-card.is-submitting
.sgpt-estatik-form {
    pointer-events:
        none !important;
}

@media (max-width: 640px) {
    .sgpt-modal {
        place-items:
            end center !important;

        padding:
            12px
            10px
            0 !important;
    }

    .sgpt-modal-card {
        width:
            100% !important;
        max-height:
            calc(
                100dvh -
                12px
            ) !important;

        padding:
            28px
            20px
            24px !important;

        border-radius:
            18px
            18px
            0
            0 !important;
    }

    .sgpt-modal-header {
        padding-right:
            40px !important;
    }

    .sgpt-modal-header > h2 {
        font-size:
            24px !important;
    }

    .sgpt-modal-close {
        top:
            12px !important;
        right:
            12px !important;

        width:
            40px !important;
        height:
            40px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sgpt-modal-spinner {
        animation-duration:
            1400ms !important;
    }
}

/* ========================================================================
   2.9.14 — DESCRIPCIÓN COMPLETA A 14 PX
   ======================================================================== */

/*
 * Solo normaliza el tamaño tipográfico. No modifica peso, cursiva, color,
 * subrayado, listas, enlaces, alineación ni otros estilos del contenido.
 *
 * Se incluyen elementos con estilos inline para neutralizar tamaños pegados
 * desde Word, Elementor u otros editores.
 */
.sgpt-description,
.sgpt-description *,
.sgpt-property-description,
.sgpt-property-description *,
.sgpt-description-content,
.sgpt-description-content *,
.sgpt-panel-block--description,
.sgpt-panel-block--description *,
.sgpt-description-text,
.sgpt-description-text * {
    font-size: 14px !important;
}

/*
 * Mantiene la legibilidad sin cambiar el estilo visual de cada elemento.
 */
.sgpt-description,
.sgpt-property-description,
.sgpt-description-content,
.sgpt-panel-block--description,
.sgpt-description-text {
    line-height: 1.6 !important;
}

/* ========================================================================
   2.9.15 — UNA SOLA INSTANCIA DEL FORMULARIO ESTATIK
   ======================================================================== */

.sgpt-request-form-slot {
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    box-sizing: border-box !important;
}

.sgpt-request-form-slot > .sgpt-estatik-form {
    width: 100% !important;
    max-width: none !important;
}

.sgpt-request-form-slot--modal:empty {
    display: none !important;
}

