

/* ==================================================
   CCK – Wein UI / Sensorik
   - Geschmacksprofil als Slider-/Dot-Visualisierung
   - Aromen als Tags
   - Typografie/Farben an bestehendes Theme angelehnt
================================================== */

.cck-wein-sensory {
  margin: 10px 0 30px 0;
}

.cck-wein-sensory.is-empty {
  display: none !important;
}

.cck-wein-sensory-title {
  font-size: 17px;
  line-height: 1.1em;
  margin: 0 0 16px 0;
  color: var(--enfold-main-color-secondary);
  font-weight: 500;
}

.cck-wein-geschmack-bars {
  margin: 0 0 22px 0;
}

.cck-wein-geschmack-row {
  margin: 0 0 18px 0;
}

.cck-wein-geschmack-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.3em;
  color: #666666;
}

.cck-wein-geschmack-labels span:first-child,
.cck-wein-geschmack-labels span:last-child {
  display: inline-block;
}

.cck-wein-geschmack-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--enfold-main-color-border);
  overflow: visible;
}

.cck-wein-geschmack-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--enfold-main-color-secondary);
  border: 2px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transform: translate(-50%, -50%);
}

.cck-wein-aromen-wrap {
  margin-top: 18px;
}

.cck-wein-aromen-title {
  font-size: 15px;
  line-height: 1.2em;
  margin: 0 0 10px 0;
  color: var(--enfold-main-color-secondary);
  font-weight: 500;
}

.cck-wein-aromen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cck-wein-aroma-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 30px;
  background: var(--enfold-main-color-bg2);
  border: 1px solid var(--enfold-main-color-border);
  color: #666666;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .cck-wein-sensory {
    margin: 8px 0 24px 0;
  }

  .cck-wein-sensory-title {
    margin-bottom: 14px;
  }

  .cck-wein-geschmack-row {
    margin-bottom: 16px;
  }

  .cck-wein-geschmack-labels {
    font-size: 13px;
    gap: 8px;
  }

  .cck-wein-aromen-tags {
    gap: 8px;
  }

  .cck-wein-aroma-tag {
    font-size: 13px;
    padding: 7px 10px;
  }
}
.cck-wein-geschmack-track {
  position: relative;
  height: 4px;
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
  margin: 8px 0 16px;
}

.cck-wein-geschmack-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #3a7d2c;
  border-radius: 50%;
}

.cck-wein-aroma-tag {
  display: inline-block;
  padding: 4px 10px;
  margin: 4px 6px 0 0;
  background: #f2f2f2;
  border-radius: 16px;
  font-size: 13px;
}