/** Shopify CDN: Minification failed

Line 115:0 Expected "}" to go with "{"

**/
/* SEIZOENEN WRAPPER */
@media screen and (min-width: 1025px) {
.seizoenen-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 750px;
  margin: 50px auto;
}

.seizoenen-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ICON STYLING */
.seizoen-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}
.seizoen-icon:hover {
  transform: scale(1.07);
}

/* LABEL */
.seizoen-label {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  line-height: 1.25;
  background: none !important;
  color: #1a1a1a;
}

/* BALK WRAPPER */
.seizoen-bar-wrapper {
  background: #eee;
  border-radius: 20px;
  height: 10px;
  margin: 0 auto;
  width: 110px;
  overflow: hidden;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.08);
}

/* BALK */
.seizoen-bar {
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

/* 🎨 Luxe linear-gradients met iets meer contrast */
.lente-label { color: #6D7C66; }
.lente-bar {
  background: linear-gradient(to right, #B7DBA3, #D1EDC1);
}

.zomer-label { color: #8A7D67; }
.zomer-bar {
  background: linear-gradient(to right, #F7E29D, #FFEFC4);
}

.herfst-label { color: #7A6854; }
.herfst-bar {
  background: linear-gradient(to right, #E2B68D, #F3D6BC);
}

.winter-label { color: #66758D; }
.winter-bar {
  background: linear-gradient(to right, #B3D4ED, #DAEAF8);
}

/* TOOLTIP */
.tooltip-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: help;
}
.seizoenen-wrapper .tooltip-wrapper:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.seizoenen-wrapper .tooltip {
  visibility: hidden;
  opacity: 0;
  width: 220px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 8px;
  position: absolute;
  z-index: 1;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  font-size: 14px;
  pointer-events: none;
}
