@charset "UTF-8";
/**
 * BuddyBoss vendor Store tab styling.
 *
 * The Store tab reuses BuddyBoss's native profile-widget markup
 * (.bb-rl-profile-panel / .bb-rl-profile-widget / .bb-rl-profile-widget-field),
 * so the panel, widget headers and stat field rows inherit the platform's own
 * styling. This stylesheet only covers the pieces BuddyBoss has no equivalent
 * for: the Visit Store button, product grid, review list and star rating.
 * Everything is scoped under .wcv-bb-store.
 *
 * Source: includes/buddyboss/assets/src/css/store.scss
 * Built to: includes/buddyboss/assets/css/store.css (gulp compileStyles)
 *
 * @since 2.0.9
 */
.wcv-bb-store {
  --wcv-bb-accent: #4f46e5;
  --wcv-bb-accent-hover: #4338ca;
  --wcv-bb-star: #f5a623;
  --wcv-bb-border: rgba(17, 24, 39, 0.08);
  --wcv-bb-label: #4b5563;
  /* --- Header ----------------------------------------------------------- */
  /*
   * Stat-field labels inherit BuddyBoss ReadyLaunch's muted grey
   * (--bb-rl-text-tertiary-color), which falls below the WCAG 2.1 AA 4.5:1
   * contrast ratio on the widget's light background. Override with a darker
   * grey (#4b5563 on white ≈ 7.5:1). BuddyBoss's own rule is
   * `.bb-rl-profile-widget .bb-rl-profile-widget-label` (two classes), so this
   * mirrors that structure under .wcv-bb-store to win on specificity rather
   * than relying on stylesheet load order.
   */
  /* --- Products --------------------------------------------------------- */
  /* --- Reviews ---------------------------------------------------------- */
  /* --- Rating ----------------------------------------------------------- */
  /* --- Empty state ------------------------------------------------------ */
  /* --- Small screens ---------------------------------------------------- */
}
.wcv-bb-store__header .bb-rl-profile-widget-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.wcv-bb-store .bb-rl-profile-widget .bb-rl-profile-widget-label {
  color: var(--wcv-bb-label);
}
.wcv-bb-store__title {
  flex: 1 1 auto;
  min-width: 0;
}
.wcv-bb-store__header-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.wcv-bb-store__visit {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--wcv-bb-accent);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.wcv-bb-store__visit:hover, .wcv-bb-store__visit:focus {
  background: var(--wcv-bb-accent-hover);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}
.wcv-bb-store__products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wcv-bb-store__product a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--wcv-bb-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wcv-bb-store__product a:hover, .wcv-bb-store__product a:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.1);
}
.wcv-bb-store__product img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.wcv-bb-store__product-title {
  padding: 10px 12px 2px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
}
.wcv-bb-store__product-price {
  padding: 0 12px 12px;
  font-size: 0.875rem;
  line-height: 1.3;
}
.wcv-bb-store__product-price del {
  margin-right: 4px;
  opacity: 0.55;
}
.wcv-bb-store__product-price ins {
  text-decoration: none;
  font-weight: 600;
}
.wcv-bb-store__reviews-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wcv-bb-store__review {
  padding: 16px 0;
  border-top: 1px solid var(--wcv-bb-border);
}
.wcv-bb-store__review:first-child {
  padding-top: 0;
  border-top: 0;
}
.wcv-bb-store__review:last-child {
  padding-bottom: 0;
}
.wcv-bb-store__review-title {
  margin: 8px 0 4px;
  font-weight: 600;
}
.wcv-bb-store__review-comment {
  margin: 0 0 6px;
}
.wcv-bb-store__review-meta {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.65;
}
.wcv-bb-store__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wcv-bb-store__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--wcv-bb-star);
  line-height: 1;
}
.wcv-bb-store__stars .wcv-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.wcv-bb-store__rating-count {
  font-size: 0.85rem;
  opacity: 0.65;
}
.wcv-bb-store__empty {
  margin: 0;
  opacity: 0.65;
}
@media (max-width: 600px) {
  .wcv-bb-store__visit {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}
/*# sourceMappingURL=store.css.map */
