/* GoGroupBuy Pricing — AU retail compare box (math / markup hooks unchanged) */
.ggb-pricing-box {
  margin: 0.75rem 0 1rem;
  padding: 0.9rem 0.95rem 0.85rem;
  border: 1px solid #d8dee8;
  border-top: 4px solid #0a3a7a;
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
}

.ggb-pricing-box__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0a3a7a;
  border-bottom: 1px solid #d8dee8;
  padding-bottom: 0.45rem;
  text-transform: none;
}

.ggb-retailers {
  list-style: none;
  margin: 0 0 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.ggb-retailers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0;
  background: transparent;
  border-bottom: 1px solid #eef1f6;
  font-size: 0.88rem;
}

.ggb-retailers li:last-child {
  border-bottom: 0;
}

.ggb-retailers__label {
  color: #4b5563;
  font-weight: 600;
}

.ggb-retailers__price {
  font-weight: 700;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: #9ca3af;
  text-decoration-thickness: 2px;
}

.ggb-benchmark-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.7rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.88rem;
  border: 1px dashed #b8c0d0;
  background: #f4f6f9;
  border-radius: 2px;
}

.ggb-benchmark-row strong {
  font-size: 1.05rem;
  color: #111827;
  font-weight: 800;
}

.ggb-dual-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

@media (max-width: 560px) {
  .ggb-dual-prices {
    grid-template-columns: 1fr;
  }
}

.ggb-dual-prices__card {
  padding: 0.7rem 0.65rem;
  border-radius: 3px;
  border: 1px solid #d8dee8;
  background: #f4f6f9;
  transition: border-color 0.12s ease;
  position: relative;
}

.ggb-dual-prices__card.is-active {
  border-color: #0a3a7a;
  border-width: 2px;
  background: #fff;
  box-shadow: none;
  padding: calc(0.7rem - 1px) calc(0.65rem - 1px);
}

.ggb-dual-prices__card--member {
  background: #e8f0fe;
}

.ggb-dual-prices__card--member.is-active {
  background: #fff;
  border-color: #0a3a7a;
}

.ggb-dual-prices__badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b5563;
  margin-bottom: 0.28rem;
  background: #e5e7eb;
  padding: 0.12rem 0.35rem;
  border-radius: 2px;
}

.ggb-dual-prices__card--member .ggb-dual-prices__badge {
  color: #072a5a;
  background: #ffd200;
}

.ggb-dual-prices__amount {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #0a3a7a;
}

.ggb-dual-prices__card.is-active .ggb-dual-prices__amount {
  font-size: 1.75rem;
}

.ggb-dual-prices__save {
  display: inline-block;
  margin: 0.4rem 0 0.2rem;
  color: #fff;
  background: #ea580c;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.ggb-dual-prices__note {
  margin: 0.25rem 0 0;
  color: #6b7280;
  font-size: 0.7rem;
  line-height: 1.35;
}

.ggb-savings-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin-bottom: 0.7rem;
  padding: 0.55rem 0.6rem;
  border-radius: 3px;
  background: #fff7ed;
  border: 1px solid #f5c2c9;
}

.ggb-savings-callout strong {
  font-size: 0.72rem;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.ggb-savings-callout span {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ea580c;
  letter-spacing: -0.02em;
}

.ggb-savings-callout small {
  flex: 1 1 100%;
  color: #6b7280;
  font-size: 0.74rem;
}

.ggb-fulfillment {
  margin-bottom: 0.7rem;
}

.ggb-fulfillment__label {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: #111827;
}

.ggb-fulfillment__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.6rem;
  margin-bottom: 0.3rem;
  border: 1px solid #d8dee8;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.ggb-fulfillment__option:has(input:checked) {
  border-color: #0a3a7a;
  background: #e8f0fe;
  border-width: 2px;
  padding: calc(0.55rem - 1px) calc(0.6rem - 1px);
}

.ggb-fulfillment__option span:first-of-type {
  flex: 1;
  font-weight: 700;
  font-size: 0.88rem;
}

.ggb-fulfillment__fee {
  font-weight: 900;
  color: #0a3a7a;
  font-size: 0.88rem;
}

.ggb-order-total-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.1rem 0.65rem;
  align-items: end;
  padding: 0.7rem 0.65rem;
  border: 2px solid #0a3a7a;
  background: #f4f6f9;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.ggb-order-total-preview > span {
  font-weight: 700;
  color: #374151;
  font-size: 0.88rem;
}

.ggb-order-total-preview strong {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #0a3a7a;
}

.ggb-order-total-preview small {
  grid-column: 1 / -1;
  color: #6b7280;
  font-size: 0.74rem;
}

.ggb-price-tip {
  margin-top: 0.45rem;
  border-top: 1px dashed #b8c0d0;
  padding-top: 0.55rem;
}

.ggb-price-tip summary {
  cursor: pointer;
  font-weight: 800;
  color: #0a3a7a;
  font-size: 0.86rem;
}

.ggb-price-tip__form {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.ggb-price-tip__form label {
  display: grid;
  gap: 0.18rem;
  font-size: 0.8rem;
}

.ggb-price-tip__form input,
.ggb-price-tip__form textarea {
  width: 100%;
  padding: 0.45rem 0.5rem;
  border: 1px solid #b8c0d0;
  border-radius: 3px;
  font-family: inherit;
}

.ggb-price-tip__form .button {
  justify-self: start;
  background: #0a3a7a !important;
  color: #fff !important;
  border: 2px solid #072a5a;
  border-radius: 3px;
  padding: 0.5rem 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.ggb-membership-teaser {
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.ggb-membership-teaser h3 {
  margin-top: 0;
  color: #0a3a7a;
}

.ggb-membership-teaser__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0;
  font-size: 0.88rem;
}

.ggb-membership-teaser__table th,
.ggb-membership-teaser__table td {
  border: 1px solid #d8dee8;
  padding: 0.5rem 0.55rem;
  text-align: left;
}

.ggb-membership-teaser__table th {
  background: #0a3a7a;
  color: #fff;
  font-weight: 800;
}

.ggb-membership-teaser__table tr:nth-child(even) td {
  background: #f4f6f9;
}

.ggb-membership-teaser__note {
  color: #6b7280;
  font-size: 0.8rem;
}

.ggb-price-html .ggb-price-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  font-weight: 800;
}


/* Promo pass v1.3.1 — louder SAVE / strike-through (math hooks untouched) */
.ggb-retailers__price {
  color: #4b5563 !important;
  text-decoration: line-through !important;
  text-decoration-color: #ea580c !important;
  text-decoration-thickness: 2.5px !important;
  font-size: 0.95rem;
  font-weight: 700;
}

.ggb-benchmark-row {
  border: 2px dashed #ea580c !important;
  background: #fff7f8 !important;
  padding: 0.5rem 0.6rem !important;
}

.ggb-benchmark-row strong {
  text-decoration: line-through;
  text-decoration-color: #ea580c;
  text-decoration-thickness: 2.5px;
  color: #6b7280 !important;
  font-size: 1.15rem !important;
}

.ggb-dual-prices__amount {
  font-size: 1.75rem !important;
}

.ggb-dual-prices__card.is-active .ggb-dual-prices__amount {
  font-size: 2rem !important;
}

.ggb-dual-prices__save {
  font-size: 0.95rem !important;
  padding: 0.35rem 0.55rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 0 #8a0b1f;
  margin: 0.5rem 0 0.25rem !important;
}

.ggb-dual-prices__badge {
  font-size: 0.72rem !important;
  padding: 0.18rem 0.4rem !important;
}

.ggb-dual-prices__card--member .ggb-dual-prices__badge {
  background: #ffd200 !important;
  color: #111827 !important;
  font-weight: 900;
}

.ggb-savings-callout {
  background: #ea580c !important;
  border: 2px solid #8a0b1f !important;
  padding: 0.7rem 0.75rem !important;
  gap: 0.45rem 0.65rem;
}

.ggb-savings-callout strong {
  color: #ffd200 !important;
  font-size: 0.8rem !important;
}

.ggb-savings-callout span {
  color: #fff !important;
  font-size: 1.55rem !important;
}

.ggb-savings-callout small {
  color: #ffe4e8 !important;
}

.ggb-pricing-box {
  border-top: 5px solid #ffd200 !important;
  border-color: #0a3a7a;
  box-shadow: 0 4px 0 rgba(10, 58, 122, 0.08);
}

.ggb-pricing-box__title {
  font-size: 1.05rem !important;
}

.ggb-order-total-preview {
  border-width: 3px !important;
  background: #e8f0fe !important;
}

.ggb-order-total-preview strong {
  font-size: 1.75rem !important;
}
