.rental-section {
  padding: 100px 5%;
  background: var(--bg-0, #0a0a0a);
  min-height: 100vh;
}

.filter-section {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-group select {
  padding: 12px 22px;
  border: 1px solid var(--w-20, rgba(255,255,255,0.16));
  border-radius: 30px;
  font-size: 0.9rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: var(--w-85, rgba(255,255,255,0.85));
  background: var(--bg-1, #131313);
  min-width: 200px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.filter-group select option {
  background: var(--bg-1, #131313);
  color: #fff;
}

.filter-group select:hover,
.filter-group select:focus {
  border-color: var(--gold, #D4AF37);
  outline: none;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.rental-card {
  background: var(--bg-1, #131313);
  border-radius: var(--r-card, 16px);
  overflow: hidden;
  border: 1px solid var(--w-10, rgba(255,255,255,0.08));
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  display: block;
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  border-color: var(--g-div, rgba(212,175,55,0.3));
}

.rental-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-2, #1c1c1c);
}

.rental-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rental-card:hover .rental-image img {
  transform: scale(1.05);
}

.rental-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  color: #fff;
  background: #2e7d32;
}

.rental-tag.reserved {
  background: #f59e0b;
}

.rental-tag.maintenance {
  background: #6b7280;
}

.rental-features-mini {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.rental-features-mini span {
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid var(--g-div, rgba(212,175,55,0.3));
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #D4AF37);
  font-size: 0.85rem;
}

.rental-content {
  padding: 24px;
}

.rental-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-weight: 700;
}

.rental-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--w-65, rgba(255,255,255,0.65));
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.rental-location i {
  color: var(--gold, #D4AF37);
}

.rental-features {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--w-10, rgba(255,255,255,0.08));
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--w-65, rgba(255,255,255,0.65));
  font-size: 0.85rem;
}

.feature i {
  color: var(--gold, #D4AF37);
}

.rental-price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--w-10, rgba(255,255,255,0.08));
  color: var(--w-65, rgba(255,255,255,0.65));
  font-size: 0.85rem;
}

.rental-price strong {
  color: var(--gold, #D4AF37);
  font-size: 1.2rem;
  font-family: var(--font-display, 'Playfair Display', serif);
}

.no-results {
  text-align: center;
  padding: 50px;
  background: var(--bg-1, #131313);
  border: 1px solid var(--w-10, rgba(255,255,255,0.08));
  border-radius: var(--r-card, 16px);
  grid-column: 1 / -1;
}

.no-results p {
  color: var(--w-65, rgba(255,255,255,0.65));
  font-size: 1rem;
  margin: 0;
}

.segment-banner {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
  border-bottom-right-radius: 14px;
}

.segment-standart {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.segment-premium {
  background: linear-gradient(135deg, #b8860b, #8a6508);
}

.segment-ultra {
  background: linear-gradient(135deg, #b45309, #78350f);
}

.segment-vip {
  background: linear-gradient(135deg, var(--gold, #D4AF37), var(--gold-dark, #9c7f23));
  color: #0a0a0a;
}

.rental-card:hover .segment-banner {
  padding-right: 22px;
  transition: padding 0.3s ease;
}

@media (max-width: 768px) {
  .rental-section {
    padding: 56px 20px;
  }

  .filter-group select {
    width: 100%;
    min-width: 0;
  }

  .rental-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rental-image {
    height: 200px;
  }

  .rental-features {
    flex-wrap: wrap;
  }
}
