@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

.nrp-properties-widget {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #222;
  padding: 32px 20px;
}

.nrp-container {
  max-width: 1100px;
  margin: 0 auto;
}

.nrp-header {
  margin-bottom: 24px;
}

.nrp-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.nrp-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.nrp-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 28px;
}

.nrp-filter-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  color: #333;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.15s;
  white-space: nowrap;
}

.nrp-filter-btn:hover { background: #f0f0f0; }

.nrp-filter-btn svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.nrp-filters-divider { flex: 1; }

.nrp-view-toggles {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.nrp-view-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #888;
  transition: color 0.15s;
  display: flex;
  align-items: center;
}

.nrp-view-btn.active { color: #2563eb; }
.nrp-view-btn:hover { color: #2563eb; }

.nrp-properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .nrp-properties-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .nrp-properties-grid { grid-template-columns: 1fr; }
}

.nrp-properties-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nrp-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #e8e8e8;
}

.nrp-card--clickable {
  cursor: pointer;
}

.nrp-card--clickable:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

.nrp-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #ccc;
}

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

.nrp-card-image .nrp-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.nrp-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #1a6faf;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nrp-card-body {
  padding: 14px 14px 0;
}

.nrp-card-code {
  font-size: 0.74rem;
  color: #777;
  margin-bottom: 5px;
}

.nrp-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.nrp-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a8fc1;
}

.nrp-card-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a8fc1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nrp-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nrp-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #555;
  margin-bottom: 12px;
}

.nrp-card-location svg {
  width: 13px;
  height: 13px;
  color: #888;
  flex-shrink: 0;
}

.nrp-card-meta {
  display: flex;
  align-items: center;
  border-top: 1px solid #efefef;
  padding: 10px 0;
  margin: 0 0;
}

.nrp-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: #444;
  flex: 1;
  justify-content: center;
}

.nrp-meta-item:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}

.nrp-meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.65;
  flex-shrink: 0;
}

.nrp-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
  justify-content: flex-start;
}

.nrp-page-btn {
  min-width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  padding: 0 8px;
}

.nrp-page-btn:hover { background: #f0f0f0; }
.nrp-page-btn.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.nrp-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nrp-loading,
.nrp-error {
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.nrp-error {
  color: #dc2626;
  background: #fef2f2;
  border-color: #fecaca;
}

.nrp-no-results {
  padding: 3rem;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  color: #666;
}

.nrp-count {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
}

.nrp-sidebar-filters {
  background: #fff;
  border: 1px solid #dde0e3;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 24px;
}

.nrp-sidebar-filters h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.nrp-filter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nrp-filter-form .nrp-field label {
  display: block;
  font-size: 0.85rem;
  color: #3c4b5c;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.nrp-filter-form .nrp-field select,
.nrp-filter-form .nrp-field input[type="text"],
.nrp-filter-form .nrp-field input[type="number"] {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

.nrp-filter-form .nrp-field select:focus,
.nrp-filter-form .nrp-field input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.nrp-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  overflow: hidden;
}

.nrp-toggle__item {
  padding: 0.6rem 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #445569;
  font-family: inherit;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}

.nrp-toggle__item.active,
.nrp-toggle__item:hover {
  background: #2563eb;
  color: #fff;
}

.nrp-price-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nrp-price-row input {
  flex: 1;
}

.nrp-price-sep {
  color: #b0b9c2;
}

.nrp-currency-select {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

.nrp-button-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.nrp-button {
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  padding: 0.5rem;
  background: #fff;
  color: #33475b;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.15s;
}

.nrp-button.active,
.nrp-button:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.nrp-field-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #3c4b5c;
  font-weight: 500;
}

.nrp-submit {
  width: 100%;
  background: #2563eb;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.nrp-submit:hover {
  background: #1d4ed8;
}

.nrp-reset-btn {
  width: 100%;
  background: transparent;
  color: #666;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.nrp-reset-btn:hover {
  background: #f5f5f5;
  color: #333;
}

.nrp-list-view .nrp-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.nrp-list-view .nrp-card-image {
  height: 200px;
}

.nrp-list-view .nrp-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.nrp-list-view .nrp-card-title {
  -webkit-line-clamp: 1;
}

@media (max-width: 600px) {
  .nrp-list-view .nrp-card {
    grid-template-columns: 1fr;
  }
  
  .nrp-list-view .nrp-card-image {
    height: 160px;
  }
}

.nrp-filter-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.nrp-filter-modal.active {
  opacity: 1;
  visibility: visible;
}

.nrp-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.nrp-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.nrp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.nrp-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

.nrp-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #888;
  font-size: 1.5rem;
  line-height: 1;
}

.nrp-modal-close:hover {
  color: #333;
}

.nrp-modal-content {
  margin-bottom: 20px;
}

.nrp-modal-select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccd0d4;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 12px;
}

.nrp-modal-select:last-child {
  margin-bottom: 0;
}

.nrp-modal-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.nrp-modal-actions {
  display: flex;
  gap: 12px;
}

.nrp-modal-actions .nrp-submit {
  flex: 1;
}

.nrp-modal-actions .nrp-reset-btn {
  flex: 1;
}

.nrp-price-filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nrp-filter-form-inline {
  display: none;
}

:root {
  --nrp-blue: #1a6faf;
  --nrp-blue-dark: #145a8e;
  --nrp-teal: #1a9f7a;
  --nrp-red: #d93a2b;
  --nrp-gray-50: #f8f9fa;
  --nrp-gray-100: #f1f3f5;
  --nrp-gray-200: #e8eaed;
  --nrp-gray-400: #9aa0a6;
  --nrp-gray-600: #5f6368;
  --nrp-gray-900: #1a1a1a;
  --nrp-shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --nrp-shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --nrp-radius: 12px;
}

.nrp-detail-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
  font-family: 'DM Sans', sans-serif;
  background: var(--nrp-gray-50);
}

@media (max-width: 860px) {
  .nrp-detail-wrap { grid-template-columns: 1fr; }
  .nrp-detail-right { position: static !important; }
}

.nrp-detail-left { display: flex; flex-direction: column; gap: 18px; }

.nrp-detail-card {
  background: #fff;
  border-radius: var(--nrp-radius);
  border: 1px solid var(--nrp-gray-200);
  box-shadow: var(--nrp-shadow-sm);
  overflow: hidden;
}

.nrp-detail-card-pad { padding: 20px 22px; }

.nrp-gallery { border-radius: var(--nrp-radius); overflow: hidden; background: #ddd; }

.nrp-gallery-main {
  position: relative;
  height: 360px;
  background: linear-gradient(135deg, #b8cdd6, #8fa8b8);
  overflow: hidden;
  cursor: pointer;
}

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

.nrp-gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #c5d8e8 0%, #8fb0cc 50%, #6090b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nrp-gallery-placeholder svg { width: 60px; height: 60px; color: rgba(255,255,255,0.5); }

.nrp-gallery-counter {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.nrp-gallery-expand {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 600;
  color: #333;
  transition: background 0.15s;
}

.nrp-gallery-expand:hover { background: #fff; }
.nrp-gallery-expand svg { width: 14px; height: 14px; }

.nrp-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 1.1rem;
  color: #333;
}

.nrp-gallery-nav:hover { background: #fff; }
.nrp-gallery-nav.prev { left: 12px; }
.nrp-gallery-nav.next { right: 12px; }

.nrp-gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: #fff;
  overflow-x: auto;
}

.nrp-thumb {
  flex: 1;
  min-width: 80px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.nrp-thumb:hover, .nrp-thumb.active { opacity: 1; }

.nrp-thumb-inner {
  width: 100%;
  height: 100%;
}

.nrp-prop-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--nrp-gray-900);
  margin-bottom: 6px;
  line-height: 1.3;
  text-transform: uppercase;
}

.nrp-prop-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--nrp-gray-600);
  margin-bottom: 10px;
}

.nrp-prop-location svg { width: 13px; height: 13px; color: var(--nrp-blue); flex-shrink: 0; }

.nrp-prop-code { font-size: 0.8rem; color: var(--nrp-gray-600); }

.nrp-section-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--nrp-blue);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--nrp-gray-100);
}

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

@media (max-width: 600px) {
  .nrp-summary-grid { grid-template-columns: repeat(2, 1fr); }
}

.nrp-summary-item label {
  display: block;
  font-size: 0.7rem;
  color: var(--nrp-gray-400);
  margin-bottom: 2px;
}

.nrp-summary-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nrp-gray-900);
}

.nrp-desc-heading {
  font-size: 0.78rem;
  color: var(--nrp-gray-600);
  margin-bottom: 4px;
  font-weight: 500;
}

.nrp-desc-body {
  font-size: 1.5rem;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 14px;
  color: var(--nrp-gray-900);
  line-height: 1.2;
}

.nrp-desc-text {
  font-size: 0.84rem;
  color: var(--nrp-gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.nrp-desc-list { padding-left: 18px; margin-bottom: 14px; }
.nrp-desc-list li { font-size: 0.82rem; color: var(--nrp-gray-600); margin-bottom: 3px; line-height: 1.5; }
.nrp-desc-list.sub { list-style-type: circle; margin-top: 4px; }
.nrp-desc-list li > .nrp-desc-list { margin-top: 4px; margin-bottom: 6px; }

.nrp-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 12px;
}

@media (max-width: 600px) {
  .nrp-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

.nrp-amenity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--nrp-gray-600);
}

.nrp-amenity-item svg { width: 14px; height: 14px; color: var(--nrp-teal); flex-shrink: 0; }

.nrp-detail-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}

.nrp-agent-card {
  background: #fff;
  border-radius: var(--nrp-radius);
  border: 1px solid var(--nrp-gray-200);
  box-shadow: var(--nrp-shadow-sm);
  padding: 18px;
}

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

.nrp-agent-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a3a5c, #1a6faf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.nrp-agent-info { flex: 1; }
.nrp-agent-name { font-weight: 700; font-size: 0.95rem; color: var(--nrp-gray-900); line-height: 1.2; }
.nrp-agent-role { font-size: 0.75rem; color: var(--nrp-gray-400); margin-top: 2px; }

.nrp-agent-contacts { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }

.nrp-agent-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--nrp-gray-600);
}

.nrp-agent-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.nrp-agent-contact-item span { color: var(--nrp-gray-400); font-size: 0.72rem; }
.nrp-agent-contact-item a { color: var(--nrp-blue); font-weight: 500; }
.nrp-agent-contact-item .whatsapp-icon { color: #25d366; }
.nrp-agent-contact-item .email-icon { color: var(--nrp-blue); }

.nrp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  margin-bottom: 8px;
  text-decoration: none;
}

.nrp-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.nrp-btn:last-child { margin-bottom: 0; }
.nrp-btn svg { width: 16px; height: 16px; }

.nrp-btn-dark { background: #2d3748; color: #fff; }
.nrp-btn-green { background: #25d366; color: #fff; }
.nrp-btn-red { background: var(--nrp-red); color: #fff; }

.nrp-contact-card {
  background: #fff;
  border-radius: var(--nrp-radius);
  border: 1px solid var(--nrp-gray-200);
  box-shadow: var(--nrp-shadow-sm);
  padding: 18px;
}

.nrp-contact-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--nrp-gray-900);
  margin-bottom: 16px;
}

.nrp-form-group { margin-bottom: 12px; }

.nrp-form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--nrp-gray-600);
  margin-bottom: 4px;
}

.nrp-form-label .req { color: var(--nrp-red); }

.nrp-form-input, .nrp-form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--nrp-gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--nrp-gray-900);
  outline: none;
  transition: border-color 0.15s;
  background: #fff;
}

.nrp-form-input:focus, .nrp-form-textarea:focus { border-color: var(--nrp-blue); }
.nrp-form-textarea { resize: vertical; min-height: 80px; }

.nrp-calc-card {
  background: #fff;
  border-radius: var(--nrp-radius);
  border: 1px solid var(--nrp-gray-200);
  box-shadow: var(--nrp-shadow-sm);
  padding: 18px;
}

.nrp-calc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--nrp-gray-900);
  margin-bottom: 16px;
}

.nrp-calc-title svg { width: 16px; height: 16px; color: var(--nrp-blue); }

.nrp-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.nrp-calc-field label {
  display: block;
  font-size: 0.7rem;
  color: var(--nrp-gray-400);
  margin-bottom: 3px;
}

.nrp-calc-field input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--nrp-gray-200);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--nrp-gray-900);
  outline: none;
  transition: border-color 0.15s;
}

.nrp-calc-field input:focus { border-color: var(--nrp-blue); }

.nrp-calc-result {
  text-align: center;
  padding: 12px;
  background: var(--nrp-gray-50);
  border-radius: 8px;
  margin-bottom: 10px;
}

.nrp-calc-result-label {
  font-size: 0.72rem;
  color: var(--nrp-gray-400);
  margin-bottom: 4px;
}

.nrp-calc-result-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--nrp-teal);
  font-family: 'DM Serif Display', serif;
}

.nrp-calc-details-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--nrp-blue);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  width: 100%;
  justify-content: space-between;
}

.nrp-calc-details-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nrp-calc-details-toggle.open svg { transform: rotate(180deg); }

.nrp-calc-details {
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
}

.nrp-calc-details.open { display: flex; }

.nrp-calc-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--nrp-gray-600);
  padding: 4px 0;
  border-bottom: 1px solid var(--nrp-gray-100);
}

.nrp-calc-detail-row:last-child { border-bottom: none; }
.nrp-calc-detail-row strong { color: var(--nrp-gray-900); }

.nrp-price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nrp-blue);
  margin-bottom: 8px;
}

.nrp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--nrp-gray-600);
  margin-bottom: 16px;
}

.nrp-back-link:hover { color: var(--nrp-blue); text-decoration: none; }
.nrp-back-link svg { width: 16px; height: 16px; }
