/* ION Shop — CSS custom properties for water/bike theming */

:root {
  --brand-color: #E8CF1D;      /* bike default */
  --brand-color-dark: #c9b200;
  --brand-text: #000000;
}

.line-water {
  --brand-color: #009DE0;
  --brand-color-dark: #007bb5;
  --brand-text: #ffffff;
}

.line-bike {
  --brand-color: #E8CF1D;
  --brand-color-dark: #c9b200;
  --brand-text: #000000;
}

/* Product card hover accent */
.product-card:hover .product-card-accent {
  background-color: var(--brand-color);
}

/* Availability badge */
.badge-available    { @apply bg-green-100 text-green-800; }
.badge-unavailable  { @apply bg-red-100 text-red-800; }

/* Filter sidebar active state */
.filter-active {
  color: var(--brand-color);
  font-weight: 600;
}
