.belles-wrapper {
  margin: 1.5rem 0;
}

.belles-trail-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.belles-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.belles-prof {
  width: 100%;
  height: 190px;
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.belles-infobar {
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, #1f3b24, #345c35);
  color: #f5f7f4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.86rem;
}

.belles-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.belles-info-row-secondary {
  opacity: 0.9;
}

.belles-info-item {
  display: flex;
  align-items: center;
  min-width: 120px;
}

.belles-info-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(245,247,244,0.4);
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,247,244,0.08);
}

.belles-info-icon::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
}

/* Simple icon shapes */
.belles-icon-distance::before {
  border-radius: 3px;
  border-left: 2px solid #f7f7f7;
  border-right: 2px solid #f7f7f7;
  border-bottom: 2px solid #f7f7f7;
  transform: translateY(-1px);
}

.belles-icon-elevation::before {
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 4px solid #f7f7f7;
  box-shadow: 0 -4px 0 0 rgba(247,247,247,0.5);
}

.belles-icon-difficulty::before {
  border-radius: 999px;
  border: 2px solid #f7f7f7;
  border-top-color: transparent;
  transform: rotate(45deg);
}

.belles-icon-duration::before {
  border-radius: 999px;
  border: 2px solid #f7f7f7;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.belles-icon-duration {
  position: relative;
}
.belles-icon-duration::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 7px;
  background: #f7f7f7;
  top: 6px;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(35deg);
}

.belles-icon-season::before {
  border-radius: 0 10px 10px 10px;
  border: 2px solid #f7f7f7;
  border-top-left-radius: 2px;
}

.belles-info-text {
  display: flex;
  flex-direction: column;
}

.belles-info-label {
  opacity: 0.75;
  font-size: 0.74rem;
}

.belles-info-value {
  font-weight: 600;
  line-height: 1.2;
}

.belles-diff {
  margin-bottom: 3px;
}

.belles-diff-bar {
  display: block;
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.belles-diff-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: inherit;
  transition: width 0.3s ease;
}

.belles-diff-easy::after {
  width: 33%;
  background: #7cd37c;
}

.belles-diff-medium::after {
  width: 66%;
  background: #ffd56e;
}

.belles-diff-hard::after {
  width: 100%;
  background: #ff6b6b;
}

@media (max-width: 768px) {
  .belles-map {
    height: 320px !important;
  }
  .belles-info-item {
    min-width: 48%;
  }
}
