/* public/assets/anzeigenmarkt/css/listing-detail.css */
.listing-detail-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .listing-detail-container {
    grid-template-columns: 1fr;
  }
}
.listing-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}
.listing-title {
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 1.3;
  color: #1f1f1f;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.listing-status-badge {
  background: #6b7280;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.listing-header .am-fav {
  position: absolute;
  top: 0;
  right: 0;
}
.listing-gallery {
  margin-bottom: 24px;
}
.gallery-main {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.gallery-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.gallery-thumb {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.gallery-thumb:hover {
  border-color: var(--brand);
  box-shadow: 0 2px 8px rgba(110, 201, 133, 0.2);
}
.gallery-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.thumb-actions {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.gallery-placeholder {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  color: #6b7280;
}
.listing-price-section {
  background:
    linear-gradient(
      135deg,
      #f0fdf4 0%,
      #dcfce7 100%);
  border: 2px solid var(--brand);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: center;
}
.listing-price {
  font-size: 36px;
  font-weight: 800;
  color: #166534;
  letter-spacing: -1px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.listing-price-note {
  font-size: 14px;
  color: #4b5563;
  margin-top: 4px;
  font-weight: 500;
}
.listing-key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.key-fact {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.key-fact-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.key-fact-value {
  font-size: 16px;
  color: #1f1f1f;
  font-weight: 600;
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand);
}
.listing-description {
  line-height: 1.7;
  color: #4b5563;
  font-size: 15px;
}
.data-grid {
  display: grid;
  gap: 12px;
}
.data-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}
.data-row:last-child {
  border-bottom: none;
}
.data-label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}
.data-value {
  color: #1f1f1f;
  font-size: 14px;
}
.listing-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.sidebar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 16px 0;
}
.contact-form .form-group {
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
}
.contact-form .form-control,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.contact-form .form-control:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(110, 201, 133, 0.15);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .am-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
}
.listing-map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  margin-top: 16px;
}
.listing-location-info {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 12px;
}
.listing-location-info i {
  color: var(--brand);
  font-size: 18px;
  margin-top: 2px;
}
.listing-location-text {
  flex: 1;
}
.listing-location-text strong {
  display: block;
  color: #1f1f1f;
  font-weight: 600;
  margin-bottom: 4px;
}
.listing-location-text span {
  color: #6b7280;
  font-size: 14px;
}
.seller-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.seller-avatar.has-logo {
  background: #fff;
  border: 1px solid #e5e7eb;
}
.seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-name {
  flex: 1;
}
.seller-name h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1f1f1f;
}
.seller-name span {
  font-size: 13px;
  color: #6b7280;
}
.seller-stats {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.seller-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}
.seller-stat:last-child {
  border-bottom: none;
}
.seller-stat-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}
.seller-stat-value {
  font-size: 14px;
  color: #1f1f1f;
  font-weight: 600;
}
.seller-profile-link {
  display: block;
  text-align: center;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.seller-profile-link:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  text-decoration: none;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 24px;
}
.spec-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}
.spec-item:last-child {
  border-bottom: none;
}
.spec-label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}
.spec-value {
  color: #1f1f1f;
  font-size: 14px;
}
.owner-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .listing-sidebar {
    position: static;
  }
  .listing-title {
    font-size: 24px;
  }
  .listing-price {
    font-size: 30px;
  }
  .listing-key-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .listing-key-facts {
    grid-template-columns: 1fr;
  }
  .data-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .spec-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .gallery-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }
}
.am-btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
}
.am-btn-danger {
  background: #dc3545;
  border-color: #dc3545;
}
.am-btn-danger:hover {
  background: #c82333;
  border-color: #bd2130;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-30 {
  margin-bottom: 30px;
}
/*# sourceMappingURL=am-listing-detail-37OYPXNE.css.map */
