.info-banner--product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 16px;
  min-width: 0;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 253, 0.94));
  border-color: rgba(92, 96, 142, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 24px rgba(45, 48, 82, 0.06);
}

.info-banner--product.is-tier-plus {
  border-color: rgba(180, 137, 52, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(253, 249, 240, 0.96));
}

.info-banner--product.is-tier-pro {
  border-color: rgba(151, 126, 75, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(249, 247, 242, 0.96));
}

.info-banner--product .product-notice-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 5px 12px;
  min-width: 0;
}

.info-banner--product .product-notice-label {
  grid-column: 1;
  min-width: 0;
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #787d93;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.info-banner--product .product-notice-label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  margin-left: 12px;
  vertical-align: -1px;
  background: rgba(112, 116, 144, 0.22);
}

.info-banner--product .product-notice-text {
  grid-column: 2;
  min-width: 0;
  color: #22283b;
  font-size: 14px;
  font-weight: 580;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.product-tier-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 30px;
  padding: 6px 12px 5px 26px;
  overflow: hidden;
  border: 1px solid #c9a04d;
  border-radius: 8px;
  color: #6f5018;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 237, 213, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(148, 105, 25, 0.08),
    0 4px 10px rgba(123, 91, 30, 0.10);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.11em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.product-tier-badge::before {
  content: "✦";
  position: absolute;
  left: 10px;
  top: 50%;
  color: #a97920;
  font-size: 9px;
  line-height: 1;
  transform: translateY(-50%);
}

.product-tier-badge::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
}

.product-tier-badge--pro,
.product-tier-badge--pro5,
.product-tier-badge--pro20 {
  min-width: 82px;
  border-color: #c9aa68;
  color: #f0d69d;
  background:
    linear-gradient(145deg, #2a2721 0%, #0a0a09 58%, #1a1712 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 221, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.62),
    0 5px 12px rgba(20, 17, 12, 0.18);
}

.product-tier-badge--pro::before,
.product-tier-badge--pro5::before,
.product-tier-badge--pro20::before {
  color: #e1c27f;
}

.product-tier-badge--pro20 {
  border-color: #ddbd78;
  color: #f5dda8;
  background:
    linear-gradient(145deg, #302b22 0%, #070706 56%, #201a12 100%);
}

.product-tier-badge[hidden] {
  display: none !important;
}

@media (max-width: 620px) {
  .info-banner--product {
    grid-template-columns: 1fr;
    gap: 10px 12px;
    padding: 14px;
  }

  .info-banner--product .product-notice-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .info-banner--product:not(.has-product-tier) .product-notice-copy {
    grid-row: 1;
  }

  .info-banner--product .product-notice-label {
    grid-column: 1;
  }

  .info-banner--product .product-notice-label::after {
    display: none;
  }

  .info-banner--product .product-notice-text {
    grid-column: 1;
    font-size: 13.5px;
  }

  .product-tier-badge {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-height: 28px;
    padding-top: 5px;
    padding-bottom: 4px;
  }
}

@media (forced-colors: active) {
  .product-tier-badge {
    border: 1px solid ButtonText;
    color: ButtonText;
    background: Canvas;
    box-shadow: none;
  }
}
