:root {
  --go-bg: #f8fafc;
  --go-card: #ffffff;
  --go-text: #0f172a;
  --go-muted: #64748b;
  --go-line: #e2e8f0;
  --go-brand: #cbd5f5;
  --go-brand-2: #3b82f6;
  --go-brand-soft: #eff6ff;
  --go-success: #16a34a;
  --go-danger: #dc2626;
  --go-warning: #f59e0b;
  --go-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  --go-dark-card: #0b2344;
  --go-dark-card-2: #102b52;
  --go-dark-card-3: #16355f;
  --go-dark-line: rgba(255, 255, 255, .14);
  --go-dark-text: #ffffff;
  --go-dark-muted: rgba(255, 255, 255, .74);
  --go-dark-soft: rgba(255, 255, 255, .08);
  --go-tooltip-bg: rgba(7, 18, 37, .98);
  --go-tooltip-line: rgba(255, 255, 255, .08);
}

.go-offer-builder {
  font-family: Arial, sans-serif;
  color: var(--go-text);
}

.go-section-head h2,
.go-section-head h3 {
  margin: 0 0 8px;
}

.go-section-head p {
  margin: 0;
  color: var(--go-muted);
}

.go-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--go-brand);
  margin-bottom: 8px;
}

.go-offer-builder__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 20px;
  align-items: start;
}

.go-offer-builder__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.go-summary-sticky {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.go-builder-card,
.go-summary-box {
  background: var(--go-card);
  border: 1px solid var(--go-line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--go-shadow);
}

.go-builder-card--soft {
  background: #fff;
}

.go-section-head--tight h3 {
  margin-bottom: 4px;
}

.go-field {
  margin-top: 18px;
}

.go-field:first-child {
  margin-top: 0;
}

.go-field--last {
  margin-bottom: 0;
}

.go-field>label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.go-product-list,
.go-addon-list,
.go-benefit-list,
.go-variant-groups {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   PRODUKTY / DODATKI / WIERSZE
   ========================= */

.go-product-item,
.go-addon-item,
.go-contract-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--go-dark-line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--go-dark-card), var(--go-dark-card-2));
  color: var(--go-dark-text);
  box-sizing: border-box;
  transition:
    border-color .22s ease,
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    opacity .22s ease;
}

.go-product-item,
.go-contract-item {
  justify-content: space-between;
  padding: 16px 18px;
}

.go-addon-item {
  flex-direction: column;
  align-items: stretch;
  padding: 16px 18px;
}

.go-product-item {
  cursor: pointer;
}

.go-product-item:hover,
.go-addon-item:hover,
.go-contract-item:hover {
  border-color: rgba(121, 168, 255, .36);
  box-shadow:
    0 10px 30px rgba(2, 8, 23, .22),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  transform: translateY(-1px);
}

.go-product-check {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  flex: 0 0 auto;
}

.go-product-item input,
.go-addon-item input,
.go-contract-item input {
  margin: 0;
}

/* =========================
   INPUTY - checkbox jak radio
   ========================= */

.go-product-check input[type="checkbox"],
.go-product-check input[type="radio"],
.go-addon-checkbox-inline input[type="checkbox"],
.go-addon-checkbox-inline input[type="radio"],
.go-contract-item input[type="radio"],
.go-contract-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .42);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .03) 58%, rgba(255, 255, 255, .01) 100%);
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .06),
    0 1px 3px rgba(0, 0, 0, .18);
}

/* wszystkie checkboxy stylizowane jak radio */
.go-product-check input[type="checkbox"],
.go-addon-checkbox-inline input[type="checkbox"] {
  border-radius: 999px;
}

.go-product-check input:hover,
.go-addon-checkbox-inline input:hover,
.go-contract-item input:hover {
  border-color: rgba(121, 168, 255, .9);
  transform: scale(1.04);
}

.go-product-check input[type="checkbox"]:checked,
.go-product-check input[type="radio"]:checked,
.go-addon-checkbox-inline input[type="checkbox"]:checked,
.go-addon-checkbox-inline input[type="radio"]:checked,
.go-contract-item input[type="radio"]:checked,
.go-contract-item input[type="checkbox"]:checked {
  border-color: #8ab4ff;
  background:
    radial-gradient(circle at 50% 50%, rgba(138, 180, 255, .24) 0, rgba(65, 117, 255, .14) 65%, rgba(255, 255, 255, .03) 100%);
  box-shadow:
    0 0 0 4px rgba(77, 130, 255, .16),
    inset 0 1px 1px rgba(255, 255, 255, .08),
    0 4px 10px rgba(32, 76, 173, .25);
}

.go-product-check input[type="checkbox"]::after,
.go-product-check input[type="radio"]::after,
.go-addon-checkbox-inline input[type="checkbox"]::after,
.go-addon-checkbox-inline input[type="radio"]::after,
.go-contract-item input[type="radio"]::after,
.go-contract-item input[type="checkbox"]::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #dbeafe 0, #8ab4ff 45%, #4f8cff 100%);
  transform: scale(.25);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
  box-shadow: 0 0 12px rgba(79, 140, 255, .5);
}

.go-product-check input[type="checkbox"]:checked::after,
.go-product-check input[type="radio"]:checked::after,
.go-addon-checkbox-inline input[type="checkbox"]:checked::after,
.go-addon-checkbox-inline input[type="radio"]:checked::after,
.go-contract-item input[type="radio"]:checked::after,
.go-contract-item input[type="checkbox"]:checked::after {
  transform: scale(1);
  opacity: 1;
}

/* focus */
.go-product-check input:focus,
.go-addon-checkbox-inline input:focus,
.go-contract-item input:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(79, 140, 255, .22),
    0 4px 10px rgba(32, 76, 173, .2);
}

.go-product-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.go-product-title,
.go-addon-name,
.go-variant-group label .go-label-with-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.go-addon-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.go-addon-checkbox-inline{
  display:flex;
  align-items:flex-start;
  gap:16px;
  min-width:0;
  flex:1 1 auto;
}

.go-addon-name{
  display:flex;
  flex-direction:column;
  min-width:0;
  flex:1 1 auto;
}

.go-product-price,
.go-addon-price {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
  text-align: right;
  color: #fff;
  flex: 0 0 auto;
}

.go-price-old,
.go-inline-old,
.go-summary-old-value {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 400;
  margin-right: 8px;
}

.go-price-current {
  color: inherit;
}

.go-list-muted {
  font-size: 13px;
  color: var(--go-muted);
}

.go-addon-desc,
.go-variant-desc {
  display: none !important;
}

.go-product-desc {
  display: block !important;
}

.go-product-note {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .78);
  max-width: 420px;
}

.go-product-item.is-disabled .go-product-note {
  color: rgba(255, 255, 255, .86);
}

.go-variant-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.go-variant-group select,
.go-contact-grid input,
.go-contact-grid textarea,
#go-builder-contract {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}

.go-contact-grid textarea {
  resize: vertical;
}

.go-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.go-contact-grid__full {
  grid-column: 1/-1;
}

.go-contact-note {
  margin: 10px 0 0;
  color: var(--go-muted);
  font-size: 13px;
}

.go-field-invalid {
  border-color: var(--go-danger) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .08);
}

.go-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--go-brand-soft);
  color: #000;
  font-size: 11px;
  font-weight: 700;
}

.go-badge--muted {
  background: #f1f5f9;
  color: #475569;
}

.go-status {
  min-height: 24px;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--go-success);
}

.go-status.is-error {
  color: var(--go-danger);
}

.go-summary-box {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.go-summary-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

.go-detail-section h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--go-muted);
}

.go-inline-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.go-summary-line-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
}

.go-summary-line-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.go-summary-line-price {
  text-align: right;
  white-space: nowrap;
}

.go-summary-totals {
  border-top: 1px solid var(--go-line);
  padding-top: 18px;
}

.go-summary-price-line,
.go-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.go-summary-price-line+.go-summary-price-line,
.go-summary-row+.go-summary-row {
  margin-top: 14px;
}

.go-summary-price-line--emphasis .go-summary-current {
  font-size: 28px;
}

.go-summary-values {
  text-align: right;
}

.go-summary-current {
  display: block;
}

.go-summary-row--total {
  padding-top: 14px;
  border-top: 1px solid var(--go-line);
  font-size: 20px;
}

.go-builder-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.go-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  border: 0;
  background: var(--go-dark-card);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.go-button[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

.go-button--secondary {
  background: #0f172a;
}

.go-button--ghost {
  background: #fff;
  color: var(--go-text);
  border: 1px solid var(--go-line);
}

.go-generated-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.go-link-success {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.go-link-success span {
  color: #166534;
  font-size: 13px;
}

.go-link-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.go-link-url {
  font-size: 13px;
  color: var(--go-muted);
  word-break: break-all;
}

.go-builder-debug {
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  padding: 14px 16px;
}

.go-builder-debug summary {
  cursor: pointer;
  font-weight: 700;
}

.go-builder-debug pre {
  overflow: auto;
  font-size: 12px;
  line-height: 1.45;
}

.go-empty {
  padding: 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px dashed var(--go-line);
  color: var(--go-muted);
}

.go-list {
  margin: 0;
  padding-left: 20px;
}

/* =========================
   KONTRAKTY
   ========================= */

.go-contract-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.go-contract-item {
  width: 100%;
  min-height: 72px;
  gap: 14px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding: 18px 20px;
}

.go-contract-item.is-active {
  border-color: #79a8ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #12315b, #163967);
  box-shadow:
    0 0 0 1px rgba(121, 168, 255, .25) inset,
    0 12px 28px rgba(16, 43, 82, .22);
}

.go-contract-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
}

.go-contract-item__name {
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: left;
}

.go-contract-item__price {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .72);
  text-align: left;
}

/* =========================
   PRODUKTY WYKLUCZONE
   ========================= */

.go-product-item.is-disabled,
.go-addon-item.is-locked {
  opacity: 1 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #0f2747, #123154) !important;
  border-color: rgba(255, 255, 255, .1) !important;
}

.go-product-item.is-disabled {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.go-product-item.is-disabled .go-product-price,
.go-product-item.is-disabled .go-product-check,
.go-addon-item.is-locked .go-addon-topline,
.go-addon-item.is-locked .go-addon-price {
  opacity: .92;
}

.go-product-item.is-disabled .go-product-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  min-width: 0;
}

.go-product-item.is-disabled .go-product-title {
  margin: 0;
}

.go-product-item.is-disabled .go-price-current {
  color: #f8fafc;
  font-size: 13px;
  line-height: 1.35;
}

.go-product-item.is-disabled .go-product-price {
  justify-content: flex-end;
  align-self: center;
  padding-left: 12px;
  max-width: 240px;
}


.go-product-item.is-disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .16) !important;
  box-shadow:
    0 8px 22px rgba(2, 8, 23, .18),
    inset 0 1px 0 rgba(255, 255, 255, .03);
}

.go-product-item[data-swap-product="1"] {
  cursor: pointer;
}

.go-product-item[data-swap-product="1"] input {
  pointer-events: none;
}

.go-product-item.is-disabled .go-product-note {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  max-width: 100%;
}

.go-product-item.is-disabled .go-product-note::before {
  content: "Wyklucza się z: " attr(data-conflict-with);
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .28);
  color: #fcd34d;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: .01em;
  white-space: normal;
}

/* =========================
   TV
   ========================= */

.go-tv-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.go-tv-count {
  font-size: 13px;
  color: var(--go-muted);
}

.go-tv-link {
  appearance: none;
  border: 0;
  background: none;
  color: var(--go-brand);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.go-tv-link[href] {
  text-decoration: none;
}

.go-summary-tv {
  margin-top: 6px;
  font-size: 13px;
  color: var(--go-muted);
}

.go-summary-tv .go-tv-link {
  margin-left: 6px;
}

.go-tv-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.go-tv-modal[hidden] {
  display: none;
}

.go-tv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
}

.go-tv-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--go-shadow);
}

.go-tv-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--go-line);
}

.go-tv-modal__head h3 {
  margin: 0;
}

.go-tv-modal__close {
  appearance: none;
  border: 0;
  background: #f8fafc;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.go-tv-modal__body {
  padding: 20px;
}

.go-tv-channel-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.go-tv-channel-pill {
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--go-line);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.go-tv-channel-pill span {
  font-size: 12px;
  color: var(--go-muted);
}

.go-tv-count strong {
  color: var(--go-text);
}

.go-tv-iframe {
  width: 100%;
  min-height: 65vh;
  border: 1px solid var(--go-line);
  border-radius: 18px;
  background: #fff;
}

.go-tv-modal__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.go-tv-external-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.go-tv-modal-open {
  overflow: hidden;
}

.go-tv-channel-pill__logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--go-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.go-tv-channel-pill__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.go-tv-channel-pill__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

/* =========================
   INFO DOT / TOOLTIP
   ========================= */

.go-label-with-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.go-info-dot,
.go-product-item .go-info-dot,
.go-product-item.is-disabled .go-info-dot,
.go-addon-item .go-info-dot,
.go-addon-item.is-disabled .go-info-dot,
.go-addon-item.is-locked .go-info-dot,
.go-variant-item .go-info-dot,
.go-configurator .go-info-dot {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  margin-left: 4px !important;
  border-radius: 999px !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  cursor: pointer !important;
  flex: 0 0 20px !important;
  color: #ffffff !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08)) !important;
  border: 1px solid rgba(255, 255, 255, .34) !important;
  text-indent: 0 !important;
  overflow: visible !important;
  opacity: 1 !important;
  filter: none !important;
  z-index: 0;
  font-size: 11px !important;
  font-weight: 700 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 4px 10px rgba(0, 0, 0, .18);
  transition:
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    border-color .18s ease !important;
}

.go-info-dot:hover,
.go-info-dot:focus {
  transform: translateY(-1px) scale(1.06) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .12)) !important;
  border-color: rgba(255, 255, 255, .5) !important;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, .25),
    0 0 0 4px rgba(255, 255, 255, .06) !important;
}

.go-info-dot__icon,
.go-info-dot svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  pointer-events: none !important;
}

.go-info-dot__icon circle,
.go-info-dot svg circle {
  fill: rgba(255, 255, 255, .08) !important;
  stroke: rgba(255, 255, 255, .9) !important;
  stroke-width: 1.2 !important;
}

.go-info-dot__icon path,
.go-info-dot svg path {
  fill: #ffffff !important;
}

.go-info-dot::after,
.go-product-item .go-info-dot::after,
.go-addon-item .go-info-dot::after,
.go-variant-item .go-info-dot::after {
  content: attr(data-tooltip) !important;
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 14px) !important;
  transform: translateX(-50%) translateY(8px) scale(.98) !important;
  width: max-content !important;
  min-width: 220px !important;
  max-width: 320px !important;
  padding: 14px 15px !important;
  border-radius: 16px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0)),
    var(--go-tooltip-bg) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  text-align: left !important;
  white-space: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow:
    0 18px 50px rgba(2, 8, 23, .42),
    0 0 0 1px var(--go-tooltip-line) inset !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease !important;
}

.go-info-dot::before,
.go-product-item .go-info-dot::before,
.go-addon-item .go-info-dot::before,
.go-variant-item .go-info-dot::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 8px) !important;
  transform: translateX(-50%) translateY(8px) rotate(45deg) !important;
  width: 12px !important;
  height: 12px !important;
  background: var(--go-tooltip-bg) !important;
  border-right: 1px solid var(--go-tooltip-line);
  border-bottom: 1px solid var(--go-tooltip-line);
  z-index: 9998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease !important;
}

/* desktop */
.go-info-dot:hover::after,
.go-info-dot:focus::after,
.go-info-dot:hover::before,
.go-info-dot:focus::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* mobile sterowany klasą */
.go-info-dot.is-open::after,
.go-info-dot.is-open::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* mobile override */
@media (max-width: 767px) {
  .go-info-dot.is-open::after,
  .go-info-dot.is-open::before {
    transform: translateX(0) translateY(0) scale(1) !important;
  }
}

.go-product-item.is-disabled .go-info-dot,
.go-product-item.is-disabled .go-info-dot::before,
.go-product-item.is-disabled .go-info-dot::after,
.go-addon-item.is-locked .go-info-dot,
.go-addon-item.is-locked .go-info-dot::before,
.go-addon-item.is-locked .go-info-dot::after {
  opacity: 1 !important;
  filter: none !important;
}

/* pomoc przy wariantach */
.go-variant-help {
  margin-top: 8px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .go-offer-builder__grid {
    grid-template-columns: 1fr;
  }

  .go-summary-sticky {
    position: static;
  }
}

@media (max-width: 767px) {

  .go-info-dot::after,
  .go-product-item .go-info-dot::after,
  .go-addon-item .go-info-dot::after,
  .go-variant-item .go-info-dot::after {
    left: 0 !important;
    right: auto !important;
    transform: translateX(0) translateY(8px) scale(.98) !important;
    min-width: 180px !important;
    max-width: min(280px, calc(100vw - 32px)) !important;
  }

  .go-info-dot::before,
  .go-product-item .go-info-dot::before,
  .go-addon-item .go-info-dot::before,
  .go-variant-item .go-info-dot::before {
    left: 14px !important;
    transform: translateX(0) translateY(8px) rotate(45deg) !important;
  }

  .go-info-dot:hover::after,
  .go-info-dot:focus::after,
  .go-info-dot:hover::before,
  .go-info-dot:focus::before {
    transform: translateX(0) translateY(0) scale(1) !important;
  }

  .go-product-item.is-disabled {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .go-product-item.is-disabled .go-product-price {
    grid-column: 2;
    padding-left: 0;
    max-width: none;
  }

  .go-product-item.is-disabled .go-product-note {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .go-contact-grid {
    grid-template-columns: 1fr;
  }

  .go-product-item,
  .go-summary-line-item,
  .go-summary-price-line,
  .go-summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .go-product-item.is-disabled {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .go-product-price,
  .go-summary-line-price,
  .go-summary-values {
    text-align: left;
    align-items: flex-start;
  }

  .go-addon-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .go-addon-price {
    text-align: left;
    align-items: flex-start;
  }

  .go-contract-list {
    grid-template-columns: 1fr;
  }

  .go-tv-modal {
    padding: 12px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .go-tv-modal__dialog {
    width: 100%;
    max-width: calc(100vw - 24px);
    max-height: 92vh;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .go-tv-modal__head {
    min-width: 0;
  }

  .go-tv-modal__body {
    width: 100%;
    min-width: 0;
    padding: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .go-tv-external-box {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .go-tv-iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 60vh;
    border: 0;
  }

  .go-tv-channel-list {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .go-tv-channel-pill,
  .go-tv-channel-pill__body {
    min-width: 0;
  }

  iframe {
    max-width: 100% !important;
  }
}

.go-offer-builder-page {
  --go-card: #071c3a;
  --go-bg: transparent;
  --go-line: rgba(93, 136, 214, .22);
  --go-text: #ffffff;
  --go-muted: rgba(255, 255, 255, .72);
  --go-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.go-offer-builder-page .go-builder-card,
.go-offer-builder-page .go-summary-box,
.go-offer-builder-page .go-builder-card--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #082044, #0a2142);
  border-color: rgba(93, 136, 214, .22);
  color: #fff;
}

.go-offer-builder-page .go-section-head p,
.go-offer-builder-page .go-list-muted,
.go-offer-builder-page .go-contact-note,
.go-offer-builder-page .go-detail-section h4,
.go-offer-builder-page .go-summary-tv,
.go-offer-builder-page .go-tv-count,
.go-offer-builder-page .go-empty {
  color: rgba(255, 255, 255, .72);
}

.go-offer-builder-page .go-empty {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(93, 136, 214, .18);
}

.go-offer-builder-page .go-summary-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #071b38, #081f40);
}

.go-offer-builder-page .go-summary-line-item,
.go-offer-builder-page .go-summary-totals,
.go-offer-builder-page .go-summary-row--total {
  border-color: rgba(255, 255, 255, .12);
}

.go-offer-builder-page .go-summary-current,
.go-offer-builder-page .go-summary-row strong,
.go-offer-builder-page .go-summary-price-line strong,
.go-offer-builder-page .go-summary-line-price strong {
  color: #fff;
}

.go-offer-builder-page .go-contact-grid input,
.go-offer-builder-page .go-contact-grid textarea,
.go-offer-builder-page .go-variant-group select,
.go-offer-builder-page #go-builder-contract {
  background: rgba(8, 31, 64, .72);
  border-color: rgba(186, 208, 255, .22);
  color: #fff;
}

.go-offer-builder-page .go-contact-grid input::placeholder,
.go-offer-builder-page .go-contact-grid textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.go-offer-builder-page .go-button--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
}

.go-offer-builder-page .go-link-success {
  background: rgba(22, 163, 74, .12);
  border-color: rgba(34, 197, 94, .22);
}

.go-offer-builder-page .go-link-success span {
  color: #bbf7d0;
}

body.go-tv-modal-open {
  overflow: hidden;
  touch-action: none;
}
.go-package-group {
  margin-bottom: 18px;
}

.go-package-group:last-child {
  margin-bottom: 0;
}

.go-package-group__head {
  margin-bottom: 10px;
}

/* pakiety startowe */





.go-package-desc,
.go-package-meta {
  display: none;
}

.go-package-group__desc {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
}




/* =========================================================
   GO OFFER BUILDER
   ========================================================= */

.page-template-page-go-offer-builder,
.page-template-page-go-offer-builder body {
	background: #061b36;
}

.page-template-page-go-offer-builder header {
	background: #061b36 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	height: 96px;
	padding-bottom: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.page-template-page-go-offer-builder header .logo img {
	width: 130px;
	margin-top: 10px;
}

.page-template-page-go-offer-builder header .header-txt {
	margin-top: 6px;
	margin-bottom: 0;
}

.page-template-page-go-offer-builder header .header-contact-bar {
	display: flex !important;
	justify-content: flex-end;
	align-items: center;
	gap: 22px;
	margin-top: 12px;
	margin-bottom: 8px;
	opacity: 1 !important;
	visibility: visible !important;
}

.page-template-page-go-offer-builder header nav,
.page-template-page-go-offer-builder header nav.collapse,
.page-template-page-go-offer-builder header .navbar-collapse,
.page-template-page-go-offer-builder header .navbar-collapse.collapse {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	overflow: visible !important;
}

.page-template-page-go-offer-builder header nav ul {
	text-align: right;
}

.page-template-page-go-offer-builder header nav ul li {
	display: inline-block !important;
}

.page-template-page-go-offer-builder header nav ul li a,
.page-template-page-go-offer-builder header .header-phone,
.page-template-page-go-offer-builder header .header-phone a,
.page-template-page-go-offer-builder header .header-social svg {
	color: #fff !important;
	fill: #fff !important;
}

.page-template-page-go-offer-builder .go-offer-builder-page {
	padding-top: 150px;
	padding-bottom: 80px;
	min-height: calc(100vh - 96px);
	background:
		radial-gradient(circle at top center, rgba(41, 100, 255, 0.18), transparent 35%),
		linear-gradient(180deg, #071a36 0%, #05152d 100%);
}

.page-template-page-go-offer-builder .go-offer-builder-page .container {
	position: relative;
	z-index: 2;
}

.page-template-page-go-offer-builder .go-offer-builder {
	color: #ffffff;
}

.page-template-page-go-offer-builder .go-builder-card,
.page-template-page-go-offer-builder .go-summary-box,
.page-template-page-go-offer-builder .go-builder-contact-block,
.page-template-page-go-offer-builder .go-builder-card--soft {
	background: rgba(10, 28, 58, 0.88) !important;
	border: 1px solid rgba(110, 147, 255, 0.22) !important;
	border-radius: 24px !important;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(4px);
}

.page-template-page-go-offer-builder .go-eyebrow,
.page-template-page-go-offer-builder .go-section-head label,
.page-template-page-go-offer-builder .go-field > label,
.page-template-page-go-offer-builder .go-detail-section h4 {
	color: #77a7ff !important;
}

.page-template-page-go-offer-builder .go-detail-section h4 {
	letter-spacing: 0.04em;
}

.page-template-page-go-offer-builder .go-section-head h3,
.page-template-page-go-offer-builder .go-summary-label,
.page-template-page-go-offer-builder .go-summary-row span,
.page-template-page-go-offer-builder .go-contact-note,
.page-template-page-go-offer-builder .go-product-name,
.page-template-page-go-offer-builder .go-addon-name,
.page-template-page-go-offer-builder .go-contract-item__name,
.page-template-page-go-offer-builder .go-summary-list,
.page-template-page-go-offer-builder .go-variant-groups,
.page-template-page-go-offer-builder .go-field,
.page-template-page-go-offer-builder .go-builder-card label,
.page-template-page-go-offer-builder .go-builder-contact-block h3,
.page-template-page-go-offer-builder .go-summary-line-item,
.page-template-page-go-offer-builder .go-summary-line-item span,
.page-template-page-go-offer-builder .go-summary-line-price,
.page-template-page-go-offer-builder .go-summary-line-price strong {
	color: #ffffff !important;
}

.page-template-page-go-offer-builder .go-summary-row strong,
.page-template-page-go-offer-builder .go-summary-current,
.page-template-page-go-offer-builder .go-product-item .go-product-price,
.page-template-page-go-offer-builder .go-product-price,
.page-template-page-go-offer-builder .go-product-item span:last-child,
.page-template-page-go-offer-builder .go-addon-price {
	color: #ffffff !important;
	opacity: 1 !important;
}

.page-template-page-go-offer-builder .go-summary-box hr,
.page-template-page-go-offer-builder .go-summary-totals,
.page-template-page-go-offer-builder .go-summary-price-line,
.page-template-page-go-offer-builder .go-summary-row {
	border-color: rgba(255, 255, 255, 0.12) !important;
}

.page-template-page-go-offer-builder .go-contract-item,
.page-template-page-go-offer-builder .go-product-item,
.page-template-page-go-offer-builder .go-addon-item,
.page-template-page-go-offer-builder .go-benefit-item,
.page-template-page-go-offer-builder select,
.page-template-page-go-offer-builder input,
.page-template-page-go-offer-builder textarea {
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(126, 160, 255, 0.22) !important;
	border-radius: 16px !important;
	color: #ffffff !important;
}

.page-template-page-go-offer-builder input::placeholder,
.page-template-page-go-offer-builder textarea::placeholder {
	color: rgba(255, 255, 255, 0.55) !important;
}

.page-template-page-go-offer-builder input:focus,
.page-template-page-go-offer-builder textarea:focus {
	background: rgba(255, 255, 255, 0.06) !important;
	color: #ffffff !important;
}

.page-template-page-go-offer-builder input:focus,
.page-template-page-go-offer-builder textarea:focus,
.page-template-page-go-offer-builder select:focus {
	border-color: #6ea3ff !important;
	box-shadow: 0 0 0 3px rgba(78, 128, 255, 0.16) !important;
	outline: none !important;
}

.page-template-page-go-offer-builder input:-webkit-autofill,
.page-template-page-go-offer-builder input:-webkit-autofill:focus,
.page-template-page-go-offer-builder textarea:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #0a1c3a inset !important;
	-webkit-text-fill-color: #ffffff !important;
}

.page-template-page-go-offer-builder select {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;

	display: block;
	width: 100%;
	padding: 12px 44px 12px 16px !important;

	background-color: rgba(10, 28, 58, 0.95) !important;
	color: #ffffff !important;
	border: 1px solid rgba(126, 160, 255, 0.25) !important;
	border-radius: 16px !important;

	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	background-size: 16px 16px !important;

	cursor: pointer;
}

.page-template-page-go-offer-builder select::-ms-expand {
	display: none;
}

.page-template-page-go-offer-builder select option {
	background: #0a1c3a !important;
	color: #ffffff !important;
}

.page-template-page-go-offer-builder .go-contract-item.is-active,
.page-template-page-go-offer-builder .go-product-item.is-active,
.page-template-page-go-offer-builder .go-addon-item.is-active,
.page-template-page-go-offer-builder .go-benefit-item.is-active {
	background: rgba(53, 102, 255, 0.14) !important;
	border-color: #3f6fff !important;
	box-shadow: 0 0 0 1px rgba(63, 111, 255, 0.22) inset;
}

.page-template-page-go-offer-builder .go-button {
	background: linear-gradient(180deg, #2d5fff 0%, #2148c0 100%) !important;
	border: 1px solid rgba(122, 155, 255, 0.28) !important;
	color: #ffffff !important;
	box-shadow: 0 16px 32px rgba(21, 56, 158, 0.28);
}

.page-template-page-go-offer-builder .go-button:hover,
.page-template-page-go-offer-builder .go-button--secondary:hover {
	transform: translateY(-1px);
}

.page-template-page-go-offer-builder .go-button[disabled],
.page-template-page-go-offer-builder .go-button:disabled {
	background: linear-gradient(180deg, #274aa8 0%, #1d377f 100%) !important;
	color: rgba(255, 255, 255, 0.72) !important;
	opacity: 1 !important;
	cursor: not-allowed;
}

.page-template-page-go-offer-builder .go-generated-link,
.page-template-page-go-offer-builder .go-status {
	color: #d9e6ff !important;
}

.page-template-page-go-offer-builder .go-product-meta,
.page-template-page-go-offer-builder .go-product-meta span,
.page-template-page-go-offer-builder .go-product-meta strong,
.page-template-page-go-offer-builder .go-product-meta a {
	color: #d6e4ff !important;
}

.page-template-page-go-offer-builder .go-product-meta strong {
	color: #ffffff !important;
}

.page-template-page-go-offer-builder .go-product-meta a:hover {
	color: #ffffff !important;
	text-decoration: underline;
}

.page-template-page-go-offer-builder .go-tv-inline,
.page-template-page-go-offer-builder .go-summary-tv {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(214, 228, 255, 0.78) !important;
}

.page-template-page-go-offer-builder .go-tv-count,
.page-template-page-go-offer-builder .go-summary-tv {
	color: rgba(214, 228, 255, 0.78) !important;
}

.page-template-page-go-offer-builder .go-tv-count strong,
.page-template-page-go-offer-builder .go-summary-tv strong {
	color: #ffffff !important;
	font-weight: 700;
}

.page-template-page-go-offer-builder .go-tv-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 8px;
	padding: 0;
	background: transparent !important;
	border: 0 !important;
	color: #6ea3ff !important;
	font-weight: 600;
	text-decoration: none;
	opacity: 1 !important;
	box-shadow: none !important;
}

.page-template-page-go-offer-builder .go-tv-link:hover {
	color: #ffffff !important;
	text-decoration: underline;
}

.page-template-page-go-offer-builder .go-list-muted,
.page-template-page-go-offer-builder .go-inline-old,
.page-template-page-go-offer-builder .go-summary-old,
.page-template-page-go-offer-builder .go-summary-old-value {
	color: rgba(214, 228, 255, 0.55) !important;
}

.page-template-page-go-offer-builder input[type="checkbox"],
.page-template-page-go-offer-builder input[type="radio"] {
	accent-color: #4a7dff;
}

.page-template-page-go-offer-builder .go-tv-modal__dialog {
	background: #0a1c3a !important;
	border: 1px solid rgba(110, 147, 255, 0.22) !important;
	color: #ffffff !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.page-template-page-go-offer-builder .go-tv-modal__head {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.page-template-page-go-offer-builder .go-tv-modal__head h3,
.page-template-page-go-offer-builder .go-tv-modal__body {
	color: #ffffff !important;
}

.page-template-page-go-offer-builder .go-tv-modal__close {
	background: transparent !important;
	color: #ffffff !important;
	border: 0 !important;
}

.page-template-page-go-offer-builder .go-builder-debug {
	display: none !important;
}

.page-template-page-go-offer-builder .go-generated-link {
	margin-top: 20px;
}

.page-template-page-go-offer-builder .go-link-success {
	background: linear-gradient(180deg, rgba(20, 60, 120, 0.9), rgba(10, 28, 58, 0.95)) !important;
	border: 1px solid rgba(110, 147, 255, 0.25);
	border-radius: 18px;
	padding: 18px 20px;
	color: #ffffff !important;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.page-template-page-go-offer-builder .go-link-success strong {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
	color: #7fb0ff !important;
}

.page-template-page-go-offer-builder .go-link-success span {
	display: block;
	font-size: 14px;
	color: rgba(214, 228, 255, 0.8) !important;
}

.page-template-page-go-offer-builder .go-link-actions {
	margin-top: 16px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.page-template-page-go-offer-builder .go-button--secondary {
	background: linear-gradient(180deg, #2f6bff 0%, #224fc7 100%) !important;
	border: 1px solid rgba(122, 155, 255, 0.35) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 30px rgba(30, 70, 200, 0.35);
}

.page-template-page-go-offer-builder .go-button--ghost {
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(126, 160, 255, 0.25) !important;
	color: #dbe6ff !important;
}

.page-template-page-go-offer-builder .go-button--ghost:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	color: #ffffff !important;
}

@media (max-width: 768px) {
	.page-template-page-go-offer-builder header,
	.page-template-page-go-offer-builder header.header-scrolled {
		height: auto;
		padding-top: 0;
		padding-bottom: 12px;
	}

	.page-template-page-go-offer-builder header .logo img,
	.page-template-page-go-offer-builder header.header-scrolled .logo img {
		width: 128px;
		margin-top: 14px;
	}

	.page-template-page-go-offer-builder header .header-contact-bar {
		display: flex !important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-top: 12px;
		margin-bottom: 4px;
		text-align: center;
		font-size: 12px;
	}

	.page-template-page-go-offer-builder .go-offer-builder-page {
		padding-top: 180px;
		padding-bottom: 50px;
	}
}

/* =========================================================
   GO PUBLIC OFFER
   ========================================================= */

body.go-offer-public {
	background-color: #05152d;
	background-image:
		radial-gradient(circle at top center, rgba(41, 100, 255, 0.18), transparent 35%),
		linear-gradient(180deg, #071a36 0%, #05152d 38%, #05152d 100%);
	background-repeat: no-repeat;
	background-attachment: scroll;
	color: #ffffff;
	font-family: Arial, sans-serif;
	margin: 0;
}

body.go-offer-public .go-offer-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 42px 20px 60px;
}

body.go-offer-public .go-offer-stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

body.go-offer-public .go-offer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	gap: 20px;
}

body.go-offer-public .go-offer-card,
body.go-offer-public .go-summary-box,
body.go-offer-public .go-info-box,
body.go-offer-public .go-discount-box,
body.go-offer-public .go-tv-public-item {
	background: rgba(10, 28, 58, 0.88);
	border: 1px solid rgba(110, 147, 255, 0.22);
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(4px);
}

body.go-offer-public .go-offer-card {
	padding: 24px;
}

body.go-offer-public .go-hero {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: flex-start;
}

body.go-offer-public .go-title {
	margin: 0 0 6px;
	font-size: 40px;
	line-height: 1.05;
	color: #ffffff;
}

body.go-offer-public .go-sub,
body.go-offer-public .go-muted,
body.go-offer-public .go-line-meta,
body.go-offer-public .go-views {
	color: rgba(214, 228, 255, 0.75);
}

body.go-offer-public .go-sub--spaced {
	margin-top: 10px;
}

body.go-offer-public .go-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

body.go-offer-public .go-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(53, 102, 255, 0.12);
	border: 1px solid rgba(110, 147, 255, 0.22);
	color: #dbe6ff;
	font-size: 13px;
	font-weight: 700;
}

body.go-offer-public .go-hero-price {
	min-width: 320px;
}

body.go-offer-public .go-label {
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 700;
	color: #77a7ff;
	margin-bottom: 8px;
}

body.go-offer-public .go-label--top {
	margin-top: 18px;
}

body.go-offer-public .go-price-main {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.05;
	margin: 0;
	color: #ffffff;
}

body.go-offer-public .go-small-price {
	font-size: 28px;
	font-weight: 700;
	margin: 6px 0 0;
	color: #ffffff;
}

body.go-offer-public .go-old {
	color: rgba(214, 228, 255, 0.5);
	text-decoration: line-through;
	margin-right: 8px;
}

body.go-offer-public .go-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

body.go-offer-public .go-info-box,
body.go-offer-public .go-discount-box,
body.go-offer-public .go-tv-public-item {
	padding: 16px;
	border-radius: 18px;
}

body.go-offer-public .go-section-title {
	margin: 0 0 16px;
	font-size: 22px;
	color: #ffffff;
}

body.go-offer-public .go-doc-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

body.go-offer-public .go-doc-group h3 {
	margin: 0 0 12px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #77a7ff;
}

body.go-offer-public .go-line {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.go-offer-public .go-line:first-child {
	border-top: 0;
	padding-top: 0;
}

body.go-offer-public .go-line strong,
body.go-offer-public .go-line-price,
body.go-offer-public .go-summary-row strong,
body.go-offer-public .go-office strong,
body.go-offer-public .go-tv-public-head strong {
	color: #ffffff;
}

body.go-offer-public .go-line-price {
	text-align: right;
	white-space: nowrap;
}

body.go-offer-public .go-summary-box {
	background: rgba(255, 255, 255, 0.03);
	padding: 18px;
	border-radius: 20px;
}

body.go-offer-public .go-summary-row,
body.go-offer-public .go-hero-price .go-summary-row,
body.go-offer-public .go-offer-card .go-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}

body.go-offer-public .go-summary-row + .go-summary-row {
	margin-top: 14px;
}

body.go-offer-public .go-summary-row--total {
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 20px;
	margin-top: 10px;
}

body.go-offer-public .go-hero-price .go-summary-row > span,
body.go-offer-public .go-offer-card .go-summary-row > span {
	flex: 1 1 auto;
}

body.go-offer-public .go-hero-price .go-summary-row > strong,
body.go-offer-public .go-offer-card .go-summary-row > strong {
	flex: 0 0 auto;
	text-align: right;
	white-space: nowrap;
}

body.go-offer-public .go-office {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

body.go-offer-public .go-office a,
body.go-offer-public .go-tv-button {
	color: #6ea3ff;
	text-decoration: none;
	font-weight: 700;
}

body.go-offer-public .go-office a:hover,
body.go-offer-public .go-tv-button:hover {
	color: #ffffff;
	text-decoration: underline;
}

body.go-offer-public .go-tv-public-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.go-offer-public .go-tv-public-head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
}

body.go-offer-public .go-tv-public-actions {
	margin-top: 10px;
}

body.go-offer-public .go-tv-public-item {
	min-height: 96px;
}

body.go-offer-public .go-tv-button {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
}

body.go-offer-public .go-tv-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

body.go-offer-public .go-tv-modal[hidden] {
	display: none;
}

body.go-offer-public .go-tv-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.65);
}

body.go-offer-public .go-tv-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	max-height: min(88vh, 900px);
	overflow: auto;
	background: #0a1c3a;
	border: 1px solid rgba(110, 147, 255, 0.22);
	border-radius: 24px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

body.go-offer-public .go-tv-modal__head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	padding: 18px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.go-offer-public .go-tv-modal__head h3,
body.go-offer-public .go-tv-modal__body {
	color: #ffffff;
}

body.go-offer-public .go-tv-modal__close {
	appearance: none;
	border: 0;
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

body.go-offer-public .go-tv-modal__body {
	padding: 20px;
}

body.go-offer-public .go-tv-channel-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
}

body.go-offer-public .go-tv-channel-pill {
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(110, 147, 255, 0.22);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

body.go-offer-public .go-tv-channel-pill span {
	font-size: 12px;
	color: rgba(214, 228, 255, 0.75);
}

body.go-offer-public .go-tv-channel-pill__logo {
	max-width: 64px;
	max-height: 36px;
	object-fit: contain;
}

body.go-offer-public .go-views {
	margin-top: 14px;
	padding: 6px 2px 0;
}

body.go-offer-public .go-discount-box + .go-discount-box {
	margin-top: 12px;
}

body.go-offer-public .go-tv-modal-open {
	overflow: hidden;
}

@media (max-width: 900px) {
	body.go-offer-public .go-offer-grid {
		grid-template-columns: 1fr;
	}

	body.go-offer-public .go-hero {
		flex-direction: column;
	}

	body.go-offer-public .go-hero-price {
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 640px) {
	body.go-offer-public .go-offer-wrap {
		padding: 24px 14px 40px;
	}

	body.go-offer-public .go-info-grid {
		grid-template-columns: 1fr;
	}

	body.go-offer-public .go-line,
	body.go-offer-public .go-tv-public-head {
		flex-direction: column;
		align-items: flex-start;
	}

	body.go-offer-public .go-line-price {
		text-align: left;
	}

	body.go-offer-public .go-hero-price .go-summary-row,
	body.go-offer-public .go-offer-card .go-summary-row {
		flex-direction: row;
		align-items: flex-start;
	}

	body.go-offer-public .go-hero-price .go-summary-row > strong,
	body.go-offer-public .go-offer-card .go-summary-row > strong {
		text-align: right;
	}

	body.go-offer-public .go-tv-modal {
		padding: 12px;
	}

	body.go-offer-public .go-tv-channel-list {
		grid-template-columns: 1fr;
	}
}



.go-builder-card--steps{display:flex;flex-direction:column;gap:24px}
.go-step-nav{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.go-step-nav__item{appearance:none;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:inherit;border-radius:16px;padding:14px 16px;font:inherit;font-weight:600;cursor:pointer;transition:.2s}
.go-step-nav__item.is-active{border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.09)}
.go-step-panel[hidden]{display:none!important}
.go-step-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.go-step-actions .go-button {
  width: auto;
  flex: 0 0 auto;
}

.go-step-actions .go-button:first-child:not(:only-child) {
  margin-right: auto;
}
.go-option-description,.go-product-desc{display:block;margin-top:6px;line-height:1.5;font-size:13px;opacity:.76}
.go-product-item--variant{align-items:flex-start}
.go-package-group--variants{display:grid;gap:14px}
.go-variant-addon-box{margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,255,255,.08)}
.go-variant-addon-box__title{margin-bottom:10px;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;opacity:.72}
.go-activation-note{margin-top:12px;padding:14px 16px;border-radius:14px;background:rgba(255,255,255,.05);line-height:1.6}
.go-legal-check{display:block;width:100%}
.go-legal-check .go-addon-name{font-size:13px;line-height:1.55}
@media (max-width:860px){.go-step-nav{grid-template-columns:1fr 1fr}.go-step-actions{flex-direction:column-reverse}.go-step-actions .go-button{width:100%}}

.go-step-nav{display:none}
.go-step-actions .go-button[data-role="step-next"]{min-width:240px;box-shadow:0 10px 30px rgba(0,0,0,.22);font-weight:700}
.go-step-actions .go-button[data-role="step-next"]:not(:disabled){background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.08));border-color:rgba(255,255,255,.22)}
.go-variant-select-wrap{display:grid;gap:14px}
.go-variant-select-label{display:block;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;opacity:.72}
.go-select-shell{position:relative}
.go-modern-select{width:100%;appearance:none;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.05);color:inherit;border-radius:16px;padding:16px 48px 16px 18px;font:inherit;font-weight:600;outline:none;transition:.2s;box-shadow:inset 0 1px 0 rgba(255,255,255,.05)}
.go-modern-select:focus{border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.08)}
.go-select-shell::after{content:"";position:absolute;right:18px;top:50%;width:10px;height:10px;border-right:2px solid rgba(255,255,255,.72);border-bottom:2px solid rgba(255,255,255,.72);transform:translateY(-70%) rotate(45deg);pointer-events:none}
.go-selected-variant-desc{margin-top:-4px;padding:0 2px;font-size:14px;line-height:1.65;opacity:.86}
.go-selected-variant-price{margin-top:10px;font-size:16px}
.go-selected-variant-price strong{font-size:18px}
.go-activation-note-public{margin-top:18px;padding:14px 16px;border-radius:14px;background:rgba(255,255,255,.06);font-size:14px;line-height:1.65}


.go-product-desc,
.go-option-description{
  color: rgba(255,255,255,.8);
  max-width: 560px;
}
.go-step-actions .go-button[data-role="step-next"]{
  min-width: 260px;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.12);
}
.go-step-actions .go-button[data-role="step-next"]:hover{
  transform: translateY(-1px);
}
.go-activation-note[hidden],
[data-role="activation-row"][hidden]{display:none !important;}
.go-select-shell{position:relative;}
.go-select-shell::after{
  content:"";
  position:absolute;
  right:18px;
  top:50%;
  width:10px;
  height:10px;
  border-right:2px solid rgba(255,255,255,.72);
  border-bottom:2px solid rgba(255,255,255,.72);
  transform:translateY(-65%) rotate(45deg);
  pointer-events:none;
}
.go-modern-select{
  color-scheme: dark;
}
.go-modern-select option,
.go-modern-select optgroup{
  background:#17345f;
  color:#fff;
}
.go-selected-variant-desc{
  margin-top:12px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
}
.go-variant-addon-box--placeholder .go-empty{
  margin-top:0;
}


.go-addon-groups{display:grid;gap:18px}
.go-package-group--addons .go-variant-addon-box{margin-top:0}
.go-builder-contact-block--step{padding:0;background:transparent;box-shadow:none;border:none}
.go-builder-actions--step{margin-top:20px}
.go-builder-actions--step .go-button{width:100%}
.go-builder-actions--step .go-generated-link{margin-top:16px}
.go-contact-grid .g-recaptcha{margin-top:8px}


.go-button--primary-strong{min-width:260px;font-size:20px;font-weight:800;box-shadow:0 18px 40px rgba(0,0,0,.25)}
.go-step-intro{margin:0 0 18px;font-size:15px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#d9e7ff}
.go-product-desc--step2,.go-option-description,.go-addon-desc-inline{display:block;font-size:14px;line-height:1.5;color:rgba(230,240,255,.72)}
.go-option-description,.go-addon-desc-inline{margin-top:8px}
.go-addon-name__title{display:block;font-weight:800}
.go-addon-item{align-items:flex-start}
.go-addon-topline{align-items:flex-start;gap:18px}
.go-addon-side{display:flex;flex-direction:column;align-items:flex-end;gap:10px;min-width:150px}
.go-addon-qty{display:flex;align-items:center;gap:10px}
.go-addon-qty__label{font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:rgba(230,240,255,.72)}
.go-addon-qty-input{width:76px;padding:8px 10px;border-radius:12px;border:1px solid rgba(255,255,255,.15);background:#102a52;color:#fff}
.go-addon-qty-input:disabled{opacity:.45}
.go-modern-select,.go-modern-select option{background:#102a52;color:#fff}
.go-builder-actions--step .go-button[data-role="save-offer"]{display:inline-flex;justify-content:center;width:100%}
.go-generated-link{margin-top:18px}


.go-step-feedback{
  margin: 2px 0 0;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(234,242,255,.86);
  font-size: 13px;
  line-height: 1.55;
}
.go-step-feedback.is-error{
  border-color: rgba(245,158,11,.28);
  background: rgba(245,158,11,.08);
  color: #ffe7b0;
}
.go-step-actions{
  align-items: center;
}
.go-step-actions .go-button[data-role="step-next"]{
  min-width: 280px;
}
.go-contract-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.go-contract-item{
  min-height: 96px;
  padding: 18px 20px;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.go-contract-item__content{
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  text-align: left;
}

.go-contract-item__name{
  line-height: 1.25;
}

.go-contract-item__price{
  line-height: 1.2;
}
@media (max-width: 900px){
  .go-contract-list{
    grid-template-columns: 1fr;
  }
}
.go-builder-actions--step .go-button[data-role="save-offer"]{
  min-height: 64px;
  font-size: 22px;
  font-weight: 800;
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  box-shadow: 0 18px 40px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
}
.go-builder-actions--step .go-button[data-role="save-offer"].is-pending{
  opacity: 1;
}
.go-builder-actions--step .go-button[data-role="save-offer"]:hover{
  transform: translateY(-1px);
}
.go-addon-desc-inline,
.go-product-desc--step2,
.go-option-description,
.go-selected-variant-desc{
  color: rgba(220,233,255,.74);
  font-size: 12.5px;
  line-height: 1.65;
  letter-spacing: .01em;
}
.go-addon-desc-inline{
  margin-top: 10px;
}
.go-addon-desc-inline span,
.go-product-desc--step2,
.go-option-description,
.go-selected-variant-desc{
  display:block;
  max-width: 52ch;
}
.go-addon-name{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
}
.go-addon-name__title{
  line-height: 1.35;
}
.go-addon-item{
  overflow:hidden;
}
.go-addon-topline{
  width:100%;
}
.go-step-panel[data-step-panel="6"] .go-step-feedback-main,
.go-step-panel[data-step-panel="6"] [data-role="step-feedback-main"]{
  display:none !important;
}

[hidden]{display:none !important;}


/* =========================
   GO compact UI overrides
   ========================= */
.go-builder-card--steps{
  gap: 18px;
}

.go-section-head{
  margin-bottom: 10px;
}

.go-start-package-list,
.go-contract-list{
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  align-items: stretch !important;
}

.go-start-package-list .go-contract-item,
.go-contract-list .go-contract-item{
  width: 100%;
  min-height: 68px;
  padding: 14px 18px;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 18px;
}

.go-start-package-list .go-contract-item__content,
.go-contract-list .go-contract-item__content{
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 3px;
}

.go-start-package-list .go-contract-item__name,
.go-contract-list .go-contract-item__name{
  line-height: 1.25;
  font-size: 15px;
}

.go-start-package-list .go-package-desc,
.go-start-package-list .go-package-meta,
.go-contract-list .go-contract-item__price{
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(220,233,255,.72);
}

.go-step-intro{
  margin: 0 0 8px;
  font-size: 13px;
}

.go-product-list,
.go-addon-groups,
.go-variant-groups{
  gap: 14px;
}

.go-product-item,
.go-addon-item{
  padding: 14px 16px;
  border-radius: 18px;
}

.go-product-item{
  min-height: 64px;
}

.go-package-group{
  margin-bottom: 14px;
}

.go-package-group__head{
  margin-bottom: 8px;
}

.go-variant-select-wrap{
  gap: 10px;
}

.go-modern-select{
  padding: 13px 44px 13px 16px;
  border-radius: 14px;
}

.go-selected-variant-desc,
.go-product-desc--step2,
.go-option-description,
.go-addon-desc-inline{
  font-size: 12px;
  line-height: 1.55;
}

.go-addon-topline{
  gap: 14px;
}

.go-addon-side{
  min-width: 128px;
  gap: 8px;
}

.go-addon-qty{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.go-addon-qty__label{
  font-size: 11px;
  letter-spacing: .05em;
}

.go-addon-qty-input{
  min-width: 70px;
  width: auto;
  height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #102a52;
  color: #fff;
}

.go-step-actions{
  gap: 10px;
  margin-top: 2px;
}

.go-step-actions .go-button{
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 15px;
}

.go-step-actions .go-button[data-role="step-next"]{
  min-width: 220px;
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.10);
}

.go-button--primary-strong{
  min-width: 220px;
  font-size: 15px;
  font-weight: 800;
}

.go-builder-actions--step{
  margin-top: 14px;
}

.go-builder-actions--step .go-button[data-role="save-offer"]{
  min-height: 56px;
  font-size: 17px;
}

.go-builder-contact-block--step .go-contact-grid{
  gap: 12px;
}

.go-tv-modal__dialog{
  max-height: min(86vh, 900px);
}

body.go-tv-modal-open{
  overflow: hidden;
}

@media (max-width: 860px){
  .go-step-actions .go-button[data-role="step-next"],
  .go-button--primary-strong{
    min-width: 100%;
  }

  .go-addon-topline{
    flex-direction: column;
    align-items: flex-start;
  }

  .go-addon-side{
    width: 100%;
    min-width: 0;
    align-items: flex-start;
  }
}

.go-addon-media{display:flex;flex-direction:column;gap:10px;margin-bottom:10px}
.go-addon-media__hero{display:flex;align-items:center;justify-content:flex-start;min-height:56px}
.go-addon-media__hero img{display:block;max-width:100px;max-height:30px;width:auto;height:auto;object-fit:contain}
.go-addon-media__logos{display:grid;grid-template-columns:repeat(auto-fit,minmax(44px,1fr));gap:8px;max-width:360px}
.go-addon-media__logo{display:flex;align-items:center;justify-content:left;min-height:44px;padding-right:3px;}
.go-addon-media__logo img{display:block;max-width:100%;max-height:28px;width:auto;height:auto;object-fit:contain}
.go-addon-visuals{display:flex;flex-direction:column;gap:12px;margin-bottom:12px}
.go-addon-visuals__hero{display:flex;align-items:center;min-height:58px}
.go-addon-visuals__hero img{display:block;max-width:180px;max-height:58px;width:auto;height:auto;object-fit:contain}
.go-addon-visuals__logos{display:grid;grid-template-columns:repeat(auto-fit,minmax(56px,1fr));gap:10px;max-width:420px}
.go-addon-visuals__logo{display:flex;align-items:center;justify-content:center;min-height:52px;padding:8px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.04)}
.go-addon-visuals__logo img{display:block;max-width:100%;max-height:30px;width:auto;height:auto;object-fit:contain}
@media (max-width: 767px){
  .go-addon-media__hero img,.go-addon-visuals__hero img{max-width:100px;max-height:30px}
  .go-addon-media__logos{grid-template-columns:repeat(auto-fit,minmax(40px,1fr))}
  .go-addon-visuals__logos{grid-template-columns:repeat(auto-fit,minmax(48px,1fr))}
}


.go-addon-head{display:flex;align-items:center;gap:18px;}
.go-addon-head__text{display:flex;flex-direction:column;justify-content:center;gap:8px;min-width:0}
.go-addon-gallery-wrap{margin-top:12px}
.go-addon-topline{align-items:flex-start;gap:18px}
.go-addon-media__hero{justify-content:center;min-height:30px;margin:0}
.go-addon-media__hero img{max-width:100px;max-height:30px}
.go-addon-media__logos{grid-template-columns:repeat(auto-fit,minmax(64px,1fr));gap:10px;max-width:420px}
.go-addon-media__logo{min-height:32px;padding:3px;}
.go-addon-media__logo img{max-height:30px}
.go-addon-visuals__hero{justify-content:center;min-width:140px;min-height:64px}
.go-addon-visuals__hero img{max-width:180px;max-height:64px}
.go-addon-visuals__logos{grid-template-columns:repeat(auto-fit,minmax(64px,1fr));gap:10px;max-width:420px;margin-top:12px}
.go-addon-visuals__logo{min-height:52px;padding:8px;border:1px solid rgba(15,23,42,.08);border-radius:12px;background:#fff;box-shadow:0 4px 14px rgba(15,23,42,.08)}
.go-addon-visuals__logo img{max-height:30px}
.go-addon-line-head{display:block}
.go-addon-line-head.has-hero{display:flex;align-items:center;gap:18px;min-height:64px;margin-bottom:0}
.go-addon-line-head__text{display:flex;flex-direction:column;justify-content:center;gap:8px;min-width:0}
@media (max-width: 767px){
  .go-addon-head,.go-addon-line-head.has-hero{gap:14px}
  .go-addon-media__hero,.go-addon-visuals__hero{min-width:auto;min-height:30px}
  .go-addon-media__hero img,.go-addon-visuals__hero img{max-width:100px;max-height:30px}
  .go-addon-media__logos,
  .go-addon-visuals__logos{
    grid-template-columns:repeat(3,minmax(0,1fr));
    max-width:none;
  }
  .go-addon-media__logo,
  .go-addon-visuals__logo{
    min-width:0;
  }
}

@media (max-width: 680px) {
  .go-summary-line-item,
  .go-summary-price-line,
  .go-summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .go-product-item {
    flex-direction: row;
    align-items: flex-start;
  }
}