.cw-po-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 4px;
  width: -moz-fit-content;
  width: fit-content;
}

.cw-po-tab {
  padding: 7px 16px;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s;
}
.cw-po-tab:hover {
  color: #111827;
}
.cw-po-tab.active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cw-po-count {
  font-size: 13px;
  color: #6b7280;
  margin: 20px 0 16px;
}

.cw-po-grid {
  display: grid;
  grid-template-columns: repeat(var(--cw-po-cols, 3), 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .cw-po-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cw-po-grid {
    grid-template-columns: 1fr;
  }
}

.cw-po-card-wrap {
  display: flex;
}

.cw-po-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: box-shadow 0.2s;
}
.cw-po-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cw-po-card-hero {
  height: 160px;
  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: #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: 9999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
}
.cw-po-badge--physical {
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
  border-color: rgba(17, 24, 39, 0.12);
}
.cw-po-badge--digital {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.15);
}
.cw-po-badge--event {
  background: rgba(244, 63, 94, 0.08);
  color: #be123c;
  border-color: rgba(244, 63, 94, 0.15);
}
.cw-po-badge--room {
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.15);
}
.cw-po-badge--timeslot {
  background: rgba(245, 158, 11, 0.08);
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.15);
}

.cw-po-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cw-po-card-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.cw-po-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cw-po-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cw-po-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 4px 8px;
}
.cw-po-chip svg {
  width: 12px;
  height: 12px;
}

.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;
  color: #6b7280;
}
.cw-po-pros-cons-item img,
.cw-po-pros-cons-item svg {
  flex-shrink: 0;
}

.cw-po-card-price {
  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;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cw-po-card .cw-ro-seasonal .cw-ro-seasonal-row {
  display: flex;
  justify-content: space-between;
  color: #6b7280;
  margin-bottom: 2px;
}
.cw-po-card .cw-ro-seasonal .cw-ro-seasonal-badge {
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 1px 6px;
  font-size: 10px;
}

.cw-po-card-footer {
  padding: 0 20px 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 */