#section-6 {
  border-bottom: 15px solid white;
}

.google-map {
  width: 100%;
  border-radius: 25px;
}

/* Nearby Items Component */
.nearby-items-wrapper {
  background: var(--secondary-col);
  padding: 30px 30px 5px 30px;
  border-radius: 12px;
}

.nearby-items-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  border: none;
}

.nearby-items-tabs .nav-link {
  background-color: var(--fourth-col);
  color: var(--secondary-col);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: small;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nearby-items-tabs .nav-link:hover {
  background-color: var(--teritary-col);
}

.nearby-items-tabs .nav-link.active {
  background: var(--teritary-col);
  color: var(--fourth-col);
}

.nearby-content {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

.nearby-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px;
  border-bottom: 1px solid #f0f0f0;
  gap: 10px;
}

.item-info h5 {
  margin: 0 0 2px 0;
  font-size: small;
  font-weight: bold;
  color: var(--fourth-col);
}

.item-info p {
  margin: 0;
  font-size: smaller;
  color: var(--teritary-col);
  line-height: 1.4;
}

.item-distance {
  background: var(--teritary-col);
  color: var(--fourth-col);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: x-small;
}

.btn-download {
  background: linear-gradient(
    135deg,
    var(--primary-col) 0%,
    var(--teritary-col) 100%
  );
  color: var(--fourth-col);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 122, 0.2);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 122, 0.3);
}

.nearby-description {
  font-size: 13px;
  color: var(--fourth-col);
  line-height: 1.6;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 576px) {
  .map-nearby-con {
    flex-direction: column;
    gap: 10px;
  }

  .nearby-items-tabs .nav-link {
    font-size: x-small;
  }

  .nearby-content {
    font-size: small;
  }

  .nearby-item {
    align-items: center;
  }

  .item-distance {
    padding: 4px 8px;
  }
  .btn-download {
    font-size: small;
  }
}
