@charset "UTF-8";
/* CSS Document */

:root {
  --bg: #f7f7f7;
  --card-bg: #ffffff;
  --accent: #339900;
  --accent-hover: #2d8500;
  --accent-soft: #e6f5e0;
  --border: #DDDDDD;
  --border-light: #EBEBEB;
  --text: #222222;
  --text-light: #717171;
  --muted: #717171;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-hover: 0 2px 4px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  box-shadow: none;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg);
  transform: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 22px;
  transition: all 0.2s ease;
}

.nav-menu a:hover {
  background: var(--bg);
}

.nav-menu a.active {
  background: var(--text);
  color: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 16px;
    border-radius: 8px;
  }
}

/* ==============================================
   CAROUSEL STYLES
   ============================================== */

.carousel-container {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 600px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-btn-prev {
  left: 24px;
}

.carousel-btn-next {
  right: 24px;
}

.carousel-btn svg {
  color: var(--text);
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dots .dot.active {
  background: white;
  width: 10px;
  height: 10px;
}

/* Carousel Counter */
.carousel-counter {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .carousel-track {
    height: 400px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn-prev {
    left: 12px;
  }
  
  .carousel-btn-next {
    right: 12px;
  }
  
  .carousel-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .carousel-dots {
    bottom: 16px;
  }
  
  .carousel-counter {
    top: 16px;
    right: 16px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ==============================================
   SHOWCASE PAGE STYLES (Airbnb-inspired)
   ============================================== */

/* Hero Gallery */
.showcase-hero {
  margin: -40px -24px 40px;
  padding: 0;
}

@media (max-width: 768px) {
  .showcase-hero {
    margin: -40px -24px 24px;
  }
}

/* Showcase Container */
.showcase-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.showcase-main {
  max-width: 720px;
}

/* Property Header */
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.property-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.property-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  flex-wrap: wrap;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.rating svg {
  color: var(--text);
}

.separator {
  color: var(--text-light);
}

.reviews {
  color: var(--text);
  text-decoration: underline;
  cursor: pointer;
}

.location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  text-decoration: underline;
  cursor: pointer;
}

.share-button {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-button:hover {
  background: var(--bg);
  transform: scale(1.02);
}

/* Section Title */
.section-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Features Section */
.features-section {
  margin-bottom: 48px;
}

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

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 32px;
  line-height: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* Description Section */
.description-section {
  margin-bottom: 48px;
}

.description-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
}

.show-more-button {
  background: none;
  border: none;
  padding: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.show-more-button:hover {
  background: none;
  transform: none;
  box-shadow: none;
  color: var(--text);
}

/* Sleep Section */
.sleep-section {
  margin-bottom: 48px;
}

.sleep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .sleep-grid {
    grid-template-columns: 1fr;
  }
}

.sleep-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.sleep-card:hover {
  border-color: var(--text);
  box-shadow: var(--shadow);
}

.sleep-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.sleep-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sleep-desc {
  font-size: 14px;
  color: var(--text-light);
}

/* Amenities Section */
.amenities-section {
  margin-bottom: 48px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--text);
}

.amenity-item svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: var(--text);
}

.show-all-amenities {
  background: white;
  border: 1px solid var(--text);
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.show-all-amenities:hover {
  background: var(--bg);
  transform: scale(1.02);
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

@media (max-width: 1024px) {
  .booking-sidebar {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

.booking-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-hover);
}

.booking-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

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

.price {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.price-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

.rating-small {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.rating-small svg {
  width: 14px;
  height: 14px;
}

.review-count {
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
}

/* Booking Dates */
.booking-dates {
  margin-bottom: 16px;
}

.date-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}

.date-input {
  padding: 12px;
  border-right: 1px solid var(--border);
}

.date-input:last-child {
  border-right: none;
}

.date-input label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.date-input input {
  border: none;
  padding: 0;
  font-size: 14px;
  width: 100%;
  background: transparent;
}

.date-input input:focus {
  outline: none;
  box-shadow: none;
}

.guests-input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-top: 0;
}

.guests-input label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.guests-input select {
  border: none;
  padding: 0;
  font-size: 14px;
  width: 100%;
  background: transparent;
}

.guests-input select:focus {
  outline: none;
  box-shadow: none;
}

/* Reserve Button */
.reserve-button {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.reserve-button:hover {
  background: var(--accent-hover);
  transform: scale(1.01);
}

.no-charge-text {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin: 0 0 24px;
}

/* Price Breakdown */
.price-breakdown {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text);
}

.price-breakdown .price-row:last-child {
  margin-bottom: 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* Reviews Section */
.reviews-section {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 24px 80px;
}

.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .rating-breakdown {
    grid-template-columns: 1fr;
  }
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-item span:first-child {
  font-size: 14px;
  min-width: 120px;
}

.rating-bar {
  flex: 1;
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: var(--text);
  border-radius: 2px;
}

.rating-item span:last-child {
  font-size: 12px;
  font-weight: 600;
  min-width: 30px;
  text-align: right;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.review-date {
  font-size: 14px;
  color: var(--text-light);
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.show-all-reviews {
  background: white;
  border: 1px solid var(--text);
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.show-all-reviews:hover {
  background: var(--bg);
  transform: scale(1.02);
}

/* Location Section */
.location-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.map-placeholder {
  margin: 24px 0;
}

.location-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* ==============================================
   END OF SHOWCASE STYLES
   ============================================== */

/* Main Content */
.app { 
  width: 100%; 
  max-width: 1280px; 
  margin: 0 auto;
  padding: 40px 24px 80px;
  flex: 1;
}

/* Hero Section - Airbnb Style */
.hero-section {
  margin-bottom: 48px;
  text-align: center;
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Airbnb Cards */
.airbnb-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease;
}

.airbnb-card.elevated {
  box-shadow: var(--shadow-hover);
}

.airbnb-card:hover {
  box-shadow: var(--shadow-hover);
}

.card-header {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.card-header h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.card-header h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.card-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.info-icon {
  font-size: 32px;
  line-height: 1;
}

/* Forms - Airbnb Style */
.airbnb-form {
  margin: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-select {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}

.form-input:hover, .form-select:hover {
  border-color: #B0B0B0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Property Info Box */
.property-info-box {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.property-icon {
  font-size: 48px;
  line-height: 1;
}

.property-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.property-details {
  font-size: 14px;
  color: var(--text-light);
}

/* Checkbox Container */
.checkbox-container {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--text);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label {
  flex: 1;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkbox-label strong {
  color: var(--text);
  font-weight: 600;
}

.checkbox-help {
  color: var(--text-light);
  font-size: 13px;
}

/* Guest Grid */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

@media (max-width: 1024px) {
  .guest-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 768px) {
  .guest-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guest-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guest-day-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guest-input {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  font-size: 16px;
  text-align: center;
  color: var(--text);
  font-family: inherit;
  transition: all 0.2s ease;
}

.guest-input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}

.guest-week-label {
  font-size: 10px;
  color: var(--text-light);
  text-align: center;
}

/* Primary Button - Airbnb Style */
.btn-primary {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: none;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.01);
  box-shadow: var(--shadow);
}

.btn-primary:active {
  transform: scale(0.99);
}

.btn-primary svg {
  flex-shrink: 0;
}

/* Stock Grid */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .stock-grid {
    grid-template-columns: 1fr;
  }
}

.stock-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.stock-icon {
  font-size: 32px;
  line-height: 1;
}

.stock-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stock-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stock-value {
  font-size: 14px;
  color: var(--text-light);
}

/* Results Section */
.results-section {
  margin-top: 48px;
}

.results-header {
  text-align: center;
  margin-bottom: 32px;
}

.results-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.results-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.results-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

.results-subtitle strong {
  color: var(--accent);
  font-weight: 600;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.result-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.result-icon {
  font-size: 28px;
  line-height: 1;
}

.result-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.result-row:last-child {
  border-bottom: none;
}

.result-row.highlight {
  background: var(--bg);
  padding: 12px 16px;
  margin: 0 -16px;
  border-radius: 8px;
  border-bottom: none;
}

.result-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.result-badge {
  background: var(--bg);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

.result-badge.active {
  background: var(--accent);
  color: white;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: var(--card-bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  margin: 40px 0;
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Info Card */
.info-card .card-header {
  align-items: center;
}

/* Legacy Styles for Other Pages */
header {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  gap: 16px; 
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.title { display: flex; flex-direction: column; gap: 6px; }

h1 { 
  margin: 0; 
  font-size: 28px; 
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  margin: 0 0 6px; 
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 6px; 
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.subtitle { 
  font-size: 14px; 
  color: var(--muted); 
  font-weight: 400;
}

.badge {
  font-size: 12px; 
  font-weight: 600;
  padding: 6px 14px; 
  border-radius: 999px;
  background: var(--accent-soft); 
  color: var(--accent);
  letter-spacing: 0.02em;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.card:hover {
  box-shadow: var(--shadow-hover);
}

.card-inner { position: relative; }

.card h2 {
  margin: 0 0 6px; 
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.card-caption { 
  font-size: 13px; 
  color: var(--muted); 
  margin-bottom: 20px;
  line-height: 1.5;
}

form { margin: 0; }

.field {
  display: flex; 
  flex-direction: column;
  gap: 6px; 
  margin-bottom: 14px;
}

label {
  font-size: 13px; 
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

input, select, textarea {
  background: var(--bg); 
  border-radius: 8px;
  border: 1px solid var(--border); 
  padding: 10px 12px;
  font-size: 14px; 
  color: var(--text);
  outline: none; 
  transition: all 0.2s ease;
  font-family: inherit;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: var(--card-bg);
}

input:hover, select:hover, textarea:hover {
  border-color: var(--muted);
}

.inline-grid { 
  display: grid; 
  grid-template-columns: repeat(2, minmax(0, 1fr)); 
  gap: 12px; 
}

.inline-grid-3 { 
  display: grid; 
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
  gap: 12px; 
}

.inline-grid-4 { 
  display: grid; 
  grid-template-columns: repeat(4, minmax(0, 1fr)); 
  gap: 12px; 
}

.inline-grid-7 { 
  display: grid; 
  grid-template-columns: repeat(7, minmax(0, 1fr)); 
  gap: 8px; 
}

@media (max-width: 768px) {
  .inline-grid, .inline-grid-3, .inline-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .inline-grid-7 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.btn-row { 
  display: flex; 
  justify-content: flex-end; 
  margin-top: 16px; 
  gap: 10px;
  flex-wrap: wrap;
}

button {
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: var(--accent);
  color: #ffffff !important;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
}

button:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

button.secondary {
  background: var(--bg);
  color: var(--text) !important;
  border: 1px solid var(--border);
}

button.secondary:hover {
  background: var(--card-bg);
  border-color: var(--accent);
}

button.danger {
  background: #E31C5F;
  color: #ffffff !important;
}

button.danger:hover {
  background: #C13454;
}

button span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
}

.pill {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 6px 12px; 
  border-radius: 999px;
  background: var(--accent-soft); 
  border: 1px solid var(--border);
  font-size: 13px; 
  font-weight: 500;
  color: var(--accent);
}

/* Ensure anchor-wrapped buttons and button-like links don't show underlines */
/* Ensure anchor-wrapped buttons and button-like links don't show underlines */
a > button,
.btn-row a,
.image-actions a {
  text-decoration: none !important;
  color: inherit;
  display: inline-block;
}

/* Anchor-wrapped buttons should inherit button styles and not show text decoration */
a > button {
  text-decoration: none !important;
  color: inherit !important;
}

/* Aggressive rule to catch page-specific anchors used as buttons (set main/hero/edit/delete) */
a > button,
.btn-row a,
.image-actions a,
.image-actions a button,
.card .image-actions a,
.card a button,
a.button,
a.btn {
  text-decoration: none !important;
  color: inherit !important;
}

/* Also clear text-decoration on any child elements inside those anchors */
.btn-row a *,
.image-actions a *,
.card a * {
  text-decoration: none !important;
  color: inherit !important;
}

.pill span.dot {
  width: 6px; 
  height: 6px; 
  border-radius: 999px; 
  background: var(--accent);
}

table {
  width: 100%; 
  border-collapse: collapse; 
  margin-top: 8px; 
  font-size: 13px;
  overflow-x: auto;
  display: block;
}

@media (min-width: 768px) {
  table {
    display: table;
  }
}

th, td {
  padding: 12px 10px; 
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-size: 12px; 
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  letter-spacing: -0.01em;
}

tr:last-child td { border-bottom: none; }

tr:hover td {
  background: var(--bg);
}

.property-list {
  display: grid;
  gap: 12px;
}

.property-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.property-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.property-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.property-info p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.property-actions {
  display: flex;
  gap: 8px;
}

/* Footer */
.main-footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  margin: 4px 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-meta {
  font-size: 12px !important;
}

/* Alert Messages */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.alert-info {
  background: var(--accent-soft);
  color: var(--accent-hover);
  border: 1px solid var(--accent);
}

.toggle-row { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-top: 6px; 
}

.toggle-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

.toggle-row label {
  width: auto; 
  font-size: 13px; 
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  letter-spacing: -0.01em;
}

.muted { 
  color: var(--muted); 
  font-size: 13px;
  line-height: 1.5;
}

.login-btn {
  background: var(--accent) !important;
  color: white !important;
}

.login-btn:hover {
  background: var(--accent-hover) !important;
}
