/* ==========================================================================
   MEDIOS DE PAGO & FINANCIACIÓN
   ========================================================================== */
.payment-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.payment-left-col,
.payment-col-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.payment-right-col,
.payment-col-featured {
  display: flex;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.payment-card-featured {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(24, 34, 56, 0.9) 100%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.payment-cta-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
}

.payment-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-glass);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(11, 15, 25, 0.4);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.highlight-icon {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-top: 2px;
}

.highlight-item strong {
  color: var(--gold-light);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 2px;
}

.highlight-item p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.payment-card:hover {
  border-color: var(--border-glass);
  box-shadow: var(--shadow-md);
}

.payment-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.payment-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.payment-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.payment-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Calculator Card */
.calculator-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.input-with-symbol {
  position: relative;
  display: flex;
  align-items: center;
}

.input-symbol {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.input-field {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.2rem;
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.input-field:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.range-slider-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.custom-range {
  width: 100%;
  accent-color: var(--gold-primary);
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
}

.term-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.term-btn {
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.term-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Calculator Result Panel */
.calc-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.result-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.result-row.highlight {
  border-bottom: none;
  background: rgba(212, 175, 55, 0.08);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.result-row.highlight .result-label {
  color: var(--gold-light);
  font-weight: 600;
}

.result-row.highlight .result-value {
  font-size: 1.75rem;
  color: var(--gold-primary);
}

/* ==========================================================================
   CONTACTO (CONTACT) SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--border-glass);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

select.form-control option {
  background: #121829;
  color: var(--text-main);
  padding: 8px 12px;
}

/* ==========================================================================
   MODAL WINDOWS SYSTEM
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-md), 0 0 40px rgba(212, 175, 55, 0.15);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-backdrop.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-light);
}

.btn-modal-close {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-modal-close:hover {
  background: rgba(244, 63, 94, 0.2);
  color: #f43f5e;
}

.modal-body {
  padding: 1.75rem;
}

/* Translucent Watermark on Property Photos */
.watermark-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
  opacity: 0.52;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.watermark-logo {
  max-width: 150px;
  max-height: 95px;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.85)) brightness(1.15);
  user-select: none;
  -webkit-user-drag: none;
}

.hero-img-wrapper .watermark-logo {
  max-width: 190px;
  max-height: 120px;
}

.card-img-container .watermark-logo {
  max-width: 130px;
  max-height: 80px;
}

.modal-main-viewer .watermark-logo {
  max-width: 210px;
  max-height: 130px;
}

.lightbox-container .watermark-logo {
  max-width: 280px;
  max-height: 170px;
}

/* Details Modal Custom Styles & Gallery Presentation */
.modal-gallery-wrapper {
  margin-bottom: 1.5rem;
}

.modal-main-viewer {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 420px;
  background: #080c16;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glass);
  cursor: zoom-in;
}

.modal-detail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080c16;
  border-radius: var(--radius-md);
  margin-bottom: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-main-viewer:hover .modal-detail-img {
  transform: scale(1.015);
}

.gallery-zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-main-viewer:hover .gallery-zoom-hint {
  opacity: 1;
  color: #ffffff;
  border-color: var(--gold-primary);
  transform: scale(1.04);
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(11, 15, 25, 0.82);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
  z-index: 5;
}

.gallery-nav-btn:hover {
  background: var(--gold-primary);
  color: #0b0f19;
  box-shadow: var(--shadow-gold);
}

.gallery-nav-btn.prev {
  left: 12px;
}

.gallery-nav-btn.next {
  right: 12px;
}

.gallery-counter-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

/* Lightbox Modal (Zoom a Pantalla Completa) */
.lightbox-modal {
  z-index: 2500;
  background: rgba(5, 8, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-container {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.2);
  border: 1px solid var(--border-glass);
  animation: zoomFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 2600;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.lightbox-close-btn:hover {
  background: rgba(244, 63, 94, 0.9);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2600;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: #0b0f19;
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev {
  left: 24px;
}

.lightbox-nav-btn.next {
  right: 24px;
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 15, 25, 0.88);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  z-index: 2600;
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes zoomFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-thumbnails-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding: 4px 2px;
}

.modal-thumb-btn {
  width: 76px;
  height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.6;
  transition: var(--transition-fast);
  padding: 0;
}

.modal-thumb-btn:hover {
  opacity: 0.9;
  border-color: var(--border-glass);
}

.modal-thumb-btn.active {
  opacity: 1;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.modal-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Google Maps Embed & Location Badge */
.map-embed-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #080c16;
  border: 1px solid var(--border-glass);
}

.map-embed-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.btn-open-google-maps {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: #0b0f19;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
  z-index: 6;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-open-google-maps:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.thumb-map-btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12) !important;
  color: var(--gold-light) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  gap: 3px;
}

.thumb-map-btn i {
  font-size: 1.15rem;
  color: var(--gold-primary);
}

.thumb-map-btn.active {
  border-color: var(--gold-primary) !important;
  background: rgba(212, 175, 55, 0.22) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
  opacity: 1 !important;
}

.badge-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-fast);
  margin-left: 8px;
  vertical-align: middle;
}

.badge-maps-link:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: #60a5fa;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Admin Gallery Mini Previews */
.admin-gallery-item {
  position: relative;
  width: 96px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #080c16;
  box-shadow: var(--shadow-sm);
}

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

.admin-gallery-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: rgba(244, 63, 94, 0.95);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  z-index: 2;
}

.admin-gallery-remove:hover {
  transform: scale(1.15);
}

/* Custom Services Icon Picker */
.custom-icon-picker {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.icon-pick-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.icon-pick-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.icon-pick-btn.active {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.badge-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(30, 58, 138, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.badge-maps-link:hover {
  background: rgba(37, 99, 235, 0.6);
  border-color: #60a5fa;
  color: #ffffff;
}

.btn-detail-admin-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-detail-admin-edit:hover {
  background: var(--gold-gradient);
  color: #0b0f19;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.detail-specs-grid {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.detail-specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-spec-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-spec-price-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  text-align: right;
}

.detail-ars-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 6px;
  font-style: italic;
  line-height: 1.35;
}

