/* Общие стили для списка */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.beverage-item {
  display: block;
  padding: 4px 0;
  list-style: none;
}

/* Nested list for menu items */
.nested-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Reset nested-list li styles for beverage items with new card design */
.nested-list .beverage-item {
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}

.nested-list .beverage-item .menu-hoppwme-item {
  margin: 0;
}

.venue-profile-image {
  display: flex;
  align-items: flex-start; /* Выравниваем элементы по верхнему краю */
  gap: 20px; /* Расстояние между элементами */
  padding: 15px;
  border-bottom: 1px solid var(--color-bg-input); /* Разделитель между элементами */
  justify-content: center;
}

.venue-profile-avatar {
    width: 100%;
    border-radius: var(--radius-lg);
}

.object-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  object-fit: cover;
}

.object-info {
  flex-grow: 1; /* Занимает все доступное пространство */
}

.object-info h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: var(--color-text-primary);
}

.object-info p {
  margin: 5px 0;
  font-size: 14px;
  color: var(--color-text-tertiary);
}

.price-info {
  text-align: right; /* Выравниваем текст по правому краю */
  white-space: nowrap; /* Предотвращаем перенос строк */
  font-size: 14px;
  color: var(--color-text-primary);
}

.price-info p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .venue-profile-image {
    flex-direction: row;
    gap: 10px;
  }

  .venue-profile-avatar {
      width: 40%;
      border-radius: var(--radius-lg);
  }

  .beverage-item {
    padding: 2px 0;
  }
}

#map {  
        /* configure the size of the map */
  position: relative;
  width: 100%;
  height: 200px;
}

.mt-6 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}

