.mwm-sv__grid {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 32px;
  padding-bottom: 48px;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .mwm-sv__grid {
    grid-template-columns: 1fr 320px;
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media (min-width: 991px) {
  .mwm-sv__grid {
    grid-template-columns: 1fr 380px;
    gap: 60px;
    padding-bottom: 12.5rem;
  }
}

.mwm-sv__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 0;
}
@media (min-width: 768px) {
  .mwm-sv__main {
    gap: 48px;
    padding-top: 48px;
  }
}

.mwm-sv__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mwm-sv__meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--fj-font);
  font-size: 14px;
  color: var(--fj-dark-brown-3);
}

.mwm-sv__meta-loc {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mwm-sv__meta-sep {
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--fj-light-brown-1);
  flex-shrink: 0;
}

.mwm-sv__title {
  font-family: var(--fj-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--fj-dark-brown-1);
  margin: 0;
}
@media (min-width: 768px) {
  .mwm-sv__title {
    font-size: 40px;
  }
}
@media (min-width: 991px) {
  .mwm-sv__title {
    font-size: 50px;
  }
}

.mwm-sv__price {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.mwm-sv__price-total {
  font-family: var(--fj-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--fj-dark-brown-2);
}
@media (min-width: 768px) {
  .mwm-sv__price-total {
    font-size: 18px;
  }
}

.mwm-sv__price-m2 {
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fj-dark-brown-3);
}

.mwm-sv__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  align-items: center;
  max-width: max-content;
}

.mwm-sv__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 60px;
}

.mwm-sv__feature-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mwm-sv__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.mwm-sv__feature-value {
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fj-dark-brown-2);
}

.mwm-sv__feature-label {
  font-family: var(--fj-font);
  font-size: 12px;
  color: var(--fj-dark-brown-3);
  text-align: center;
}

.mwm-sv__gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mwm-sv__main-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.mwm-sv__main-photo {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .mwm-sv__main-photo {
    height: auto;
    aspect-ratio: 740/493;
  }
}

.mwm-sv__expand {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.mwm-sv__expand:hover {
  background: rgba(255, 255, 255, 0.85);
}

.mwm-sv__thumbs-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 8px;
}

.mwm-sv__thumbs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--fj-dark-brown-1);
  transition: background 0.2s;
}
.mwm-sv__thumbs-btn:hover {
  background: var(--fj-light-brown-2);
}
.mwm-sv__thumbs-btn svg {
  display: block;
}

.mwm-sv__thumbs-viewport {
  overflow: hidden;
  width: 100%;
}

.mwm-sv__thumbs-track {
  display: flex;
  gap: 8px;
  transition: transform 0.3s ease;
}

.mwm-sv__thumb {
  flex: 0 0 calc(25% - 6px);
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 0 0 2px transparent;
}
.mwm-sv__thumb--active {
  opacity: 1;
  box-shadow: inset 0 0 0 2px var(--fj-orange);
}
.mwm-sv__thumb img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .mwm-sv__thumb img {
    height: auto;
    aspect-ratio: 170/113;
  }
}

.mwm-sv__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mwm-sv__section-title {
  font-family: var(--fj-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--fj-dark-brown-1);
  margin: 0;
}

.mwm-sv__description-body {
  columns: 1;
  column-gap: 32px;
  font-family: var(--fj-font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--fj-dark-brown-2);
}
.mwm-sv__description-body p {
  margin: 0 0 1em;
  break-inside: avoid;
}
@media (min-width: 768px) {
  .mwm-sv__description-body {
    columns: 2;
  }
}

.mwm-sv__ficha-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .mwm-sv__ficha-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mwm-sv__ficha-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mwm-sv__ficha-group-title {
  font-family: var(--fj-font);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fj-dark-brown-3);
  padding: 0 10px;
}

.mwm-sv__ficha-table {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mwm-sv__ficha-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f3f1ed;
}
.mwm-sv__ficha-row:last-child {
  border-bottom: none;
}

.mwm-sv__ficha-label {
  font-family: var(--fj-font);
  font-size: 12px;
  color: var(--fj-dark-brown-2);
}

.mwm-sv__ficha-value {
  font-family: var(--fj-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--fj-dark-brown-1);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mwm-sv__ficha-value--yes {
  color: #4a7c30;
}
.mwm-sv__ficha-value--no {
  color: #cb3a46;
}

.mwm-sv__legal {
  font-family: var(--fj-font);
  font-size: 12px;
  color: var(--fj-dark-brown-3);
  margin: 0;
}
.mwm-sv__legal a {
  color: var(--fj-orange);
  text-decoration: none;
}
.mwm-sv__legal a:hover {
  text-decoration: underline;
}

.mwm-sv__extras-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mwm-sv__extra-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 10px;
  font-family: var(--fj-font);
  font-size: 12px;
  color: var(--fj-dark-brown-2);
}

.mwm-sv__extra-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.mwm-sv__map-embed {
  border-radius: 24px;
  overflow: hidden;
}
.mwm-sv__map-embed iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.mwm-sv__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border-radius: 24px;
  padding: 48px 24px;
  text-align: center;
}
.mwm-sv__map-placeholder p {
  font-family: var(--fj-font);
  font-size: 14px;
  color: var(--fj-dark-brown-3);
  margin: 0;
}

.mwm-sv__sidebar {
  position: static;
  order: -1;
}
@media (min-width: 768px) {
  .mwm-sv__sidebar {
    position: sticky;
    top: calc((var(--wp-admin--admin-bar--height)) + var(--header-height, 80px) + 1rem);
    order: unset;
  }
}

.mwm-sv__form-box {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 20px 0 rgba(16, 13, 10, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mwm-sv__form-title {
  font-family: var(--fj-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--fj-dark-brown-1);
  line-height: 1.2;
  margin: 0;
}

.mwm-sv__form-property {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mwm-sv__form-property-title {
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--fj-dark-brown-1);
  margin: 0;
  line-height: 1.4;
}

.mwm-sv__form-property-meta {
  display: flex;
  align-items: center;
  margin-top: 0.625rem;
  flex-wrap: wrap;
  gap: 4px 6px;
  justify-content: space-between;
  font-family: var(--fj-font);
  font-size: 12px;
  color: var(--fj-dark-brown-3);
}

.mwm-sv__form-property-loc {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mwm-sv__form-property-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fj-light-brown-1);
  flex-shrink: 0;
}

.mwm-sv__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mwm-sv__form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mwm-sv__form-label {
  font-family: var(--fj-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fj-dark-brown-3);
  padding: 0 10px;
}

.mwm-sv__form-input,
.mwm-sv__form-textarea {
  background: #fff;
  border: 1px solid var(--fj-light-brown-1);
  border-radius: 12px;
  padding: 10px 20px;
  font-family: var(--fj-font);
  font-size: 14px;
  color: var(--fj-dark-brown-2);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.mwm-sv__form-input::placeholder,
.mwm-sv__form-textarea::placeholder {
  color: var(--fj-dark-brown-2);
  opacity: 0.4;
}
.mwm-sv__form-input:focus,
.mwm-sv__form-textarea:focus {
  border-color: var(--faj-accent);
}

.mwm-sv__form-textarea {
  resize: vertical;
  min-height: 100px;
}

.mwm-sv__form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mwm-sv__form-checkbox {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--faj-accent);
  cursor: pointer;
}

.mwm-sv__form-check-label {
  font-family: var(--fj-font);
  font-size: 12px;
  color: var(--fj-dark-brown-2);
  opacity: 0.8;
  cursor: pointer;
}

.mwm-sv__form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px 20px;
  background: var(--faj-accent);
  color: var(--faj-light);
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  border: 1px solid var(--faj-accent);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.mwm-sv__form-submit:hover {
  background: var(--fj-dark-brown-1);
  border-color: var(--fj-dark-brown-1);
}

.mwm-sv__form-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--fj-dark-brown-2);
  color: var(--fj-dark-brown-2);
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mwm-sv__form-whatsapp:hover {
  background: var(--fj-dark-brown-2);
  color: #fff;
}

.mwm-sv__breadcrumb {
  background: var(--fj-light-brown-2);
  border-radius: 0 0 20px 20px;
  padding: 5px 20px;
}
.mwm-sv__breadcrumb-nav {
  max-width: 105.5rem;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-family: var(--faj-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fj-dark-brown-3);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .mwm-sv__breadcrumb-nav {
    padding: 0 40px;
  }
}
.mwm-sv__breadcrumb a {
  color: var(--fj-dark-brown-2);
  text-decoration: none;
}
.mwm-sv__breadcrumb a:hover {
  color: var(--faj-accent);
}
.mwm-sv__breadcrumb span:last-child {
  color: var(--fj-dark-brown-3);
}

.mwm-sv__breadcrumb-sep {
  color: var(--fj-light-brown-1);
}

.mwm-sv__relacionadas {
  width: 100%;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .mwm-sv__relacionadas {
    margin: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .mwm-sv__relacionadas {
    margin: 7.5rem 0;
  }
}

.mwm-sv__relacionadas-inner {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .mwm-sv__relacionadas-inner {
    gap: 48px;
  }
}

.mwm-sv__relacionadas-titulo {
  margin: 0;
  font-family: var(--fj-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--fj-dark-brown-1);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mwm-sv__relacionadas-titulo {
    font-size: 30px;
  }
}

.mwm-sv__relacionadas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .mwm-sv__relacionadas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 991px) {
  .mwm-sv__relacionadas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mwm-sv__rel-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 20px 0 rgba(16, 13, 10, 0.05);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.mwm-sv__rel-card-imagen {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.mwm-sv__rel-card-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mwm-sv__rel-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--fj-light-brown-2);
}

.mwm-sv__rel-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #ca3a46;
  border-radius: 10px;
  font-family: var(--fj-font);
  font-size: 12px;
  font-weight: 400;
  color: var(--fj-light-brown-4);
  line-height: 1.4;
}
.mwm-sv__rel-card-badge svg {
  flex-shrink: 0;
}

.mwm-sv__rel-card-ubicacion {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 10px;
  font-family: var(--fj-font);
  font-size: 12px;
  font-weight: 400;
  color: var(--fj-dark-brown-2);
  line-height: 1.4;
}
.mwm-sv__rel-card-ubicacion svg {
  flex-shrink: 0;
}

.mwm-sv__rel-card-cuerpo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  gap: 16px;
  background: #fff;
}

.mwm-sv__rel-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mwm-sv__rel-card-titulo {
  margin: 0;
  font-family: var(--fj-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--fj-dark-brown-1);
  line-height: 1.2;
}

.mwm-sv__rel-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mwm-sv__rel-card-precio {
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fj-dark-brown-3);
  white-space: nowrap;
}

.mwm-sv__rel-card-sep {
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--fj-light-brown-1);
  flex-shrink: 0;
}

.mwm-sv__rel-card-ref {
  font-family: var(--fj-font);
  font-size: 10px;
  font-weight: 400;
  color: var(--fj-dark-brown-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mwm-sv__rel-card-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mwm-sv__rel-card-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fj-dark-brown-2);
}
.mwm-sv__rel-card-stat svg {
  flex-shrink: 0;
}

.mwm-sv__rel-card-footer {
  display: flex;
  justify-content: flex-end;
}

.mwm-sv__rel-card-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--fj-dark-brown-2);
  border-radius: 10px;
  font-family: var(--fj-font);
  font-size: 12px;
  font-weight: 400;
  color: var(--fj-dark-brown-2);
  text-decoration: none;
  transition: opacity 0.2s;
}
.mwm-sv__rel-card-ver-mas svg {
  flex-shrink: 0;
}
.mwm-sv__rel-card-ver-mas:hover {
  opacity: 0.75;
}

.mwm-sv__relacionadas-cta {
  display: flex;
  justify-content: center;
}

.mwm-sv__relacionadas-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid var(--fj-dark-brown-2);
  border-radius: 10px;
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fj-dark-brown-2);
  text-decoration: none;
  transition: opacity 0.2s;
}
.mwm-sv__relacionadas-cta-btn svg {
  flex-shrink: 0;
}
.mwm-sv__relacionadas-cta-btn:hover {
  opacity: 0.75;
}

.mwm-sv__form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mwm-sv__form-aviso {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--faj-font);
  font-size: 14px;
  line-height: 1.45;
}
.mwm-sv__form-aviso--ok {
  background: #1f5133;
  color: #f2f8f4;
}
.mwm-sv__form-aviso--error {
  background: #7a2530;
  color: #fdf3f4;
}

.mwm-sv__form-check-label a {
  color: inherit;
  text-decoration: underline;
}

.mwm-sv__rel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
