.back-link {
  margin: 1.5rem 0 1rem;
  font-size: 0.95rem;
}

.back-link a {
  color: #555;
  transition: color 0.2s;
}

.back-link a:hover {
  color: #0c84fe;
  text-decoration: none;
}

.back-link i {
  font-size: 0.8rem;
}

.host-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.host-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid #f0f4ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-name {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.3rem;
}

.host-location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.host-location i {
  color: #0c84fe;
}

.host-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stars {
  color: #ff9800;
  margin-right: 0.5rem;
}

.rating-value {
  font-weight: 600;
  margin-right: 0.3rem;
}

.reviews-count {
  color: #666;
  font-size: 0.9rem;
}

.host-details {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.detail-label {
  color: #666;
  font-size: 0.95rem;
}

.detail-value {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.host-languages {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.host-languages h4,
.host-statistics h4,
.host-description h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.languages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.language {
  background-color: #f0f4ff;
  color: #0c84fe;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
}

.host-statistics {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  flex: 1;
}

.stat-box {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #0c84fe;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0c84fe;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.rating-summary {
  text-align: left;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}

.avg-rating-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #666;
}

.host-description {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  text-align: left;
}

.host-description p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.host-cars {
  padding-top: 1rem;
}

.host-cars h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.car-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.car-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f5f5f5;
}

.car-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.car-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.car-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.car-price {
  text-align: right;
}

.price {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0c84fe;
  display: block;
  line-height: 1;
}

.price-period {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  color: #666;
  font-weight: 400;
}

.car-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.feature {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  color: #555;
}

.feature i {
  margin-right: 0.4rem;
  color: #666;
}

.car-tags {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: #f5f7fa;
  color: #555;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.tag i {
  margin-right: 0.3rem;
  font-size: 0.7rem;
  color: #666;
}

.btn-view-details {
  background-color: #0c84fe;
  border-color: #0c84fe;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-top: auto;
  transition: all 0.2s ease;
}

.btn-view-details:hover {
  background-color: #0069d9;
  border-color: #0062cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(12, 132, 254, 0.3);
}

.about-me-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.about-me-section h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.about-me-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.hosting-stats-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.hosting-stats-section h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.hosting-stats-summary {
  padding: 0.5rem 0;
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0c84fe;
}

.stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.rating-summary {
  text-align: left;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}

.avg-rating {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ff9800;
  margin-right: 0.8rem;
}

.avg-rating-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #666;
}

.host-profile-section {
  padding-bottom: 0;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .cars-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 991px) {
  .host-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .stat-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .host-card {
    padding: 1.5rem;
  }

  .host-avatar {
    width: 100px;
    height: 100px;
  }

  .host-name {
    font-size: 1.5rem;
  }

  .stat-box {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 992px) {
  .hosting-stats-section,
  .about-me-section {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 1.8rem;
  }

  .avg-rating {
    font-size: 2rem;
  }
}
