/**
 * Side-Walk ExploreWines – Frontend Skip Months UI
 * Styles buttons replacing default checkboxes
 */

.wcsmd-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.wcsmd-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.wcsmd-toggle input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.wcsmd-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #C2CCA7;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.05s ease;
}

.wcsmd-pill:active {
  transform: scale(0.98);
}

.wcsmd-toggle input:checked + .wcsmd-pill {
  background: #6E2835;
  color: #fff;
  border-color: #6E2835;
}
