.cw-po-wrap.uk-light,
.cw-rp-slider.uk-light {
  color: #fff;
}

.cw-po-wrap.uk-dark,
.cw-rp-slider.uk-dark {
  color: #333;
}

.cw-po-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--cw-po-tabs-bg, var(--cw-fw-muted-background, #f3f4f6));
  border-radius: var(--cw-po-tabs-radius, 10px);
  padding: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.cw-po-tab {
  padding: 7px 16px;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--cw-po-tab-color, var(--cw-po-card-text-color, var(--cw-fw-text-color, #6b7280)));
  cursor: pointer;
  transition: all 0.15s;
}
.cw-po-tab:hover {
  color: var(--cw-po-tab-active-color, var(--cw-fw-heading-color, #111827));
}
.cw-po-tab.active {
  background: var(--cw-po-tab-active-bg, var(--cw-po-card-bg, var(--cw-fw-card-background, #ffffff)));
  color: var(--cw-po-tab-active-color, var(--cw-fw-heading-color, #111827));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cw-po-wrap.uk-light .cw-po-tabs,
.cw-po-wrap.uk-dark .cw-po-tabs {
  background: color-mix(in srgb, currentColor 8%, transparent);
}
.cw-po-wrap.uk-light .cw-po-tab,
.cw-po-wrap.uk-dark .cw-po-tab {
  color: inherit;
  opacity: 0.7;
}
.cw-po-wrap.uk-light .cw-po-tab:hover, .cw-po-wrap.uk-light .cw-po-tab.active,
.cw-po-wrap.uk-dark .cw-po-tab:hover,
.cw-po-wrap.uk-dark .cw-po-tab.active {
  opacity: 1;
}

.cw-po-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.cw-po-filter-bar--left {
  justify-content: flex-start;
}
.cw-po-filter-bar--center {
  justify-content: center;
}
.cw-po-filter-bar--right {
  justify-content: flex-end;
}
.cw-po-filter-bar .cw-po-filter-btn {
  opacity: var(--cw-po-filter-inactive-opacity, 0.55);
  transition: opacity 0.15s;
}
.cw-po-filter-bar .cw-po-filter-btn:hover, .cw-po-filter-bar .cw-po-filter-btn--active {
  opacity: 1;
}
.cw-po-filter-bar .cw-po-filter-btn--active {
  font-weight: 700;
}

.cw-po-count {
  font-size: 13px;
  color: var(--cw-po-count-color, var(--cw-po-card-text-color, var(--cw-fw-text-color, #6b7280)));
  margin: 20px 0 16px;
}

.cw-po-wrap.uk-light .cw-po-count,
.cw-po-wrap.uk-dark .cw-po-count {
  color: inherit;
}

.cw-po-grid {
  display: grid;
  grid-template-columns: repeat(var(--cw-po-cols, 1), minmax(0, 1fr));
  -moz-column-gap: var(--cw-po-column-gap, 24px);
       column-gap: var(--cw-po-column-gap, 24px);
  row-gap: var(--cw-po-row-gap, 24px);
}

@media (min-width: 640px) {
  .cw-po-grid {
    grid-template-columns: repeat(var(--cw-po-cols-s, var(--cw-po-cols, 1)), minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .cw-po-grid {
    grid-template-columns: repeat(var(--cw-po-cols-m, var(--cw-po-cols, 1)), minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .cw-po-grid {
    grid-template-columns: repeat(var(--cw-po-cols-l, var(--cw-po-cols, 1)), minmax(0, 1fr));
  }
}
@media (min-width: 1600px) {
  .cw-po-grid {
    grid-template-columns: repeat(var(--cw-po-cols-xl, var(--cw-po-cols, 1)), minmax(0, 1fr));
  }
}
.cw-po-card-wrap {
  display: flex;
}

.cw-po-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: box-shadow 0.2s;
}

.cw-po-card--panel.uk-tile {
  padding: 0;
}

.cw-po-card:not(.cw-po-card--panel) {
  background: var(--cw-po-card-bg, var(--cw-fw-card-background, #ffffff));
  border: var(--cw-po-card-border-width, 1px) solid var(--cw-po-card-border, var(--cw-fw-border-color, #e5e7eb));
  border-radius: var(--cw-po-card-border-radius, var(--cw-fw-border-radius, 12px));
}
.cw-po-card:not(.cw-po-card--panel):hover {
  box-shadow: var(--cw-po-card-hover-shadow, 0 8px 24px rgba(0, 0, 0, 0.08));
}
.cw-po-card:not(.cw-po-card--panel) .cw-po-card-title {
  color: var(--cw-po-card-title-color, var(--cw-fw-heading-color, inherit));
}
.cw-po-card:not(.cw-po-card--panel) .cw-po-card-price {
  color: var(--cw-po-card-price-color, var(--cw-fw-heading-color, inherit));
}
.cw-po-card:not(.cw-po-card--panel) .cw-po-card-desc,
.cw-po-card:not(.cw-po-card--panel) .cw-po-chip,
.cw-po-card:not(.cw-po-card--panel) .cw-po-pros-cons-item,
.cw-po-card:not(.cw-po-card--panel) .cw-ro-seasonal-title,
.cw-po-card:not(.cw-po-card--panel) .cw-ro-seasonal-row {
  color: var(--cw-po-card-text-color, var(--cw-fw-text-color, #6b7280));
}

.cw-po-card--featured:not(.cw-po-card--panel) {
  background: var(--cw-po-featured-bg, var(--cw-po-card-bg, var(--cw-fw-card-background, #ffffff)));
  border-width: var(--cw-po-featured-border-width, var(--cw-po-card-border-width, 1px));
  border-color: var(--cw-po-featured-border, var(--cw-po-card-border, var(--cw-fw-border-color, #e5e7eb)));
  border-radius: var(--cw-po-featured-border-radius, var(--cw-po-card-border-radius, var(--cw-fw-border-radius, 12px)));
}
.cw-po-card--featured:not(.cw-po-card--panel) .cw-po-card-title {
  color: var(--cw-po-featured-title-color, var(--cw-po-card-title-color, var(--cw-fw-heading-color, inherit)));
}
.cw-po-card--featured:not(.cw-po-card--panel) .cw-po-card-price {
  color: var(--cw-po-featured-price-color, var(--cw-po-card-price-color, var(--cw-fw-heading-color, inherit)));
}
.cw-po-card--featured:not(.cw-po-card--panel) .cw-po-card-desc,
.cw-po-card--featured:not(.cw-po-card--panel) .cw-po-chip,
.cw-po-card--featured:not(.cw-po-card--panel) .cw-po-pros-cons-item,
.cw-po-card--featured:not(.cw-po-card--panel) .cw-ro-seasonal-title,
.cw-po-card--featured:not(.cw-po-card--panel) .cw-ro-seasonal-row {
  color: var(--cw-po-featured-text-color, var(--cw-po-card-text-color, var(--cw-fw-text-color, #6b7280)));
}

.cw-po-featured-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: var(--cw-po-badge-radius, 9999px);
  font-size: 11px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--cw-po-featured-tag-bg, var(--cw-fw-heading-color, #111827));
  color: var(--cw-po-featured-tag-color, #fff);
}

.cw-po-card-hero {
  height: auto;
  aspect-ratio: var(--cw-fw-image-aspect-ratio, 1.5);
  background: var(--cw-po-hero-bg, var(--cw-fw-muted-background, #f3f4f6));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cw-po-card-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cw-po-card-icon {
  width: 48px;
  height: 48px;
  color: var(--cw-po-hero-icon-color, var(--cw-fw-border-color, #d1d5db));
  transition: transform 0.2s;
}
.cw-po-card:hover .cw-po-card-icon {
  transform: scale(1.1);
}
.cw-po-card-icon svg {
  width: 100%;
  height: 100%;
}

.cw-po-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  border-radius: var(--cw-po-badge-radius, 9999px);
  font-size: 11px;
  font-weight: 600;
  border: 1px solid transparent;
}
.cw-po-badge--physical {
  background: var(--cw-po-badge-physical-bg, rgba(17, 24, 39, 0.06));
  color: var(--cw-po-badge-physical-color, #111827);
  border-color: var(--cw-po-badge-physical-border, rgba(17, 24, 39, 0.12));
}
.cw-po-badge--digital {
  background: var(--cw-po-badge-digital-bg, rgba(16, 185, 129, 0.08));
  color: var(--cw-po-badge-digital-color, #047857);
  border-color: var(--cw-po-badge-digital-border, rgba(16, 185, 129, 0.15));
}
.cw-po-badge--event {
  background: var(--cw-po-badge-event-bg, rgba(244, 63, 94, 0.08));
  color: var(--cw-po-badge-event-color, #be123c);
  border-color: var(--cw-po-badge-event-border, rgba(244, 63, 94, 0.15));
}
.cw-po-badge--room {
  background: var(--cw-po-badge-room-bg, rgba(34, 197, 94, 0.08));
  color: var(--cw-po-badge-room-color, #15803d);
  border-color: var(--cw-po-badge-room-border, rgba(34, 197, 94, 0.15));
}
.cw-po-badge--timeslot {
  background: var(--cw-po-badge-timeslot-bg, rgba(245, 158, 11, 0.08));
  color: var(--cw-po-badge-timeslot-color, #b45309);
  border-color: var(--cw-po-badge-timeslot-border, rgba(245, 158, 11, 0.15));
}

.cw-po-card-body {
  padding: var(--cw-po-card-padding, 20px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cw-po-card-body > * {
  margin-top: 0;
  margin-bottom: 0;
}

:where(.cw-po-card:not(.cw-po-card--panel)) :where(.cw-po-card-cats) {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cw-po-card-text-color, var(--cw-fw-text-color, #6b7280));
}

:where(.cw-po-card--featured:not(.cw-po-card--panel)) :where(.cw-po-card-cats) {
  color: var(--cw-po-featured-text-color, var(--cw-po-card-text-color, var(--cw-fw-text-color, #6b7280)));
}

.cw-po-card-cats {
  line-height: 1.4;
}
.cw-po-card-cats.cw-po-card-cats--before {
  margin-bottom: -8px;
}
.cw-po-card-cats.cw-po-card-cats--after {
  margin-top: -8px;
}

.cw-po-card-title:not(.cw-po-card-title--uk) {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.cw-po-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cw-po-card-desc:not(.cw-po-card-desc--uk) {
  font-size: 13px;
  line-height: 1.5;
}

.cw-po-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cw-po-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  background: var(--cw-po-chip-bg, var(--cw-fw-muted-background, #f3f4f6));
  color: var(--cw-po-chip-color, var(--cw-po-card-text-color, var(--cw-fw-text-color, #6b7280)));
  border-radius: var(--cw-po-chip-radius, var(--cw-fw-border-radius-sm, 6px));
  padding: 4px 8px;
}
.cw-po-chip svg {
  width: 12px;
  height: 12px;
}

.cw-po-card--panel .cw-po-chip {
  background: color-mix(in srgb, currentColor 8%, transparent);
  color: inherit;
}

.cw-po-pros-cons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cw-po-pros-cons-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.cw-po-pros-cons-item img,
.cw-po-pros-cons-item svg {
  flex-shrink: 0;
}

.cw-po-card-price:not(.cw-po-card-price--uk) {
  font-size: 22px;
  font-weight: 700;
}

.cw-po-card .cw-ro-seasonal {
  font-size: 12px;
}
.cw-po-card .cw-ro-seasonal .cw-ro-seasonal-title {
  margin: 0 0 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cw-po-card .cw-ro-seasonal .cw-ro-seasonal-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}
.cw-po-card .cw-ro-seasonal .cw-ro-seasonal-badge {
  border: 1px solid currentColor;
  border-radius: 9999px;
  padding: 1px 6px;
  font-size: 10px;
  opacity: 0.7;
}

.cw-po-card-footer {
  padding: 0 var(--cw-po-card-padding, 20px) var(--cw-po-card-padding, 20px);
  margin-top: auto;
}

.cw-po-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}/*# sourceMappingURL=product-overview.css.map */