/* Realizari (portfolio) + Inchiriere — builds on loftrek.css tokens */
.realizari-head { display: flex; flex-direction: column; gap: 12px; padding: 8px 0 18px; max-width: 760px; }

/* Rental promo banner on the index */
.rental-banner { display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap; margin: 4px 0 22px; padding: 16px 22px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-600), var(--green-700)); color: #fff; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s; }
.rental-banner:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.rental-banner strong { display: block; font-size: 1.05rem; font-weight: 600; }
.rental-banner span { font-size: 0.9rem; opacity: 0.92; }
.rental-banner-cta { white-space: nowrap; font-weight: 600; background: rgba(255,255,255,0.16);
  padding: 9px 16px; border-radius: var(--radius-md); }

/* Country filter chips */
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.chip { font-size: 0.82rem; font-weight: 500; padding: 7px 14px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s; }
.chip:hover { border-color: var(--green-400); color: var(--green-600); }
.chip.active { background: var(--green-600); border-color: var(--green-600); color: #fff; }

/* Realizare card: country badge on the thumbnail */
.real-card .card-thumb { position: relative; }
.real-country { position: absolute; top: 10px; left: 10px; font-size: 0.7rem; font-weight: 600;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); color: #fff; padding: 4px 10px;
  border-radius: 100px; letter-spacing: 0.02em; }

/* Inchiriere perks */
.rental-perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
  margin: 8px 0 28px; }
.perk { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 16px 18px; font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }
.perk strong { display: block; color: var(--text); font-size: 0.98rem; font-weight: 600; margin-bottom: 5px; }
