.bsb-club-frontend-wrapper {
  font-family: inherit;
  color: #333;
  max-width: 800px;
}

.bsb-club-header {
  margin-bottom: 30px;
}

.bsb-club-title {
  font-size: 2.5em;
  color: #631926; /* Bordeaux */
  margin-bottom: 5px;
  font-family: "Playfair Display", serif; /* Or similar serif */
  font-weight: 600;
}

.bsb-club-subtitle {
  color: #8c9398;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.bsb-club-description p {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #555;
}

/* Tiers List */
.bsb-club-tier-card {
  border: 1px solid #ccc;
  padding: 20px 25px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.tier-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-right: 20px;
}

.tier-name {
  color: #aa9c84; /* Soft gold/tan */
  font-size: 0.8em;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.tier-pts-desc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tier-pts-desc strong {
  color: #631926;
  font-size: 1.1em;
  font-family: "Playfair Display", serif;
}

.current-pts {
  color: #8b2538;
}

.total-pts {
  color: #6a747b;
  font-size: 0.85em;
}

.tier-desc {
  color: #8c9398;
  font-size: 0.9em;
}

.bsb-club-tier-progress-wrap {
  background-color: #e5e5e5;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

.bsb-club-tier-progress-fill {
  background-color: #8b2538;
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease-in-out;
}

.tier-action {
  flex-shrink: 0;
}

.tier-action .button.bsb-club-btn {
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.8em;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
}

.tier-action .active-btn {
  background-color: #631926;
  color: #fff;
  cursor: pointer;
}

.tier-action .active-btn:hover {
  background-color: #4a121c;
}

.tier-action .disabled-btn {
  background-color: #8c9398;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  .bsb-club-tier-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .tier-info {
    width: 100%;
    margin-right: 0;
  }
  .tier-pts-desc {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .tier-action {
    width: 100%;
  }
  .tier-action button {
    width: 100%;
  }
}

/* ==========================================================================
   Single Product Popover
   ========================================================================== */
.bsb-info-icon-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 5px;
}

.bsb-info-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  color: #aa9c84;
  transition: color 0.3s;
}

.bsb-info-icon-wrapper:hover .bsb-info-icon {
  color: #631926;
}

.bsb-club-popover {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 380px;
  background: #fff;
  border: 1px solid var(--e-global-color-3d017ca);
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.15);
  padding: 0;
  z-index: 9999;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
  text-align: left;
  font-family: inherit;
  cursor: default;
  border-radius: 4px;
}

/* Popover Arrow */
.bsb-club-popover::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: var(--popover-arrow-left, 50%);
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.bsb-club-popover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: var(--popover-arrow-left, 50%);
  margin-left: -9px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #eaeaea transparent;
}

.bsb-club-popover-title {
  color: var(--e-global-color-408f40e);
  font-size: 13px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: var(--e-global-typography-text-font-family);
  padding: 16px 16px 0;
  line-height: 30px;
}

.bsb-club-popover-desc {
  font-size: 13px;
  color: var(--e-global-color-67833de);
  line-height: 20.15px;
  margin-bottom: 20px;
  padding: 0 14px;
}

.bsb-club-popover-tiers {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  font-size: 13px;
  padding: 0 14px;
}

.bsb-club-popover-tiers li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.4;
}

.bsb-club-popover-tiers li strong {
  color: #333;
}

.bsb-club-popover-multiplier {
  font-size: 13px;
  color: var(--e-global-color-67833de);
  margin-bottom: 0 !important;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--e-global-color-3d017ca);
}

.bsb-club-popover .bsb-club-popover-footer a {
  display: inline-block;
  color: var(--e-global-color-408f40e);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
  padding: 16px;
}

.bsb-club-popover-footer a:hover {
  color: var(--e-global-color-408f40e);
}
