/* Checkout v2 — Unit-inspired minimal layout */

.cv2-page .simple-content {
  padding-bottom: 4rem;
}

.cv2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34rem;
  gap: 2rem;
  align-items: start;
}

.cv2-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 1.2rem;
  padding: 2.4rem;
  margin-bottom: 1.6rem;
}

.cv2-card:last-child {
  margin-bottom: 0;
}

.cv2-page .simple-content .cv2-card > h2.cv2-card__title {
  display: block;
  margin: 0 0 1.2rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #86868b;
  text-align: left;
}

/* ── Tabs (физ / юр) ── */

.checkout-v2-test-tabs {
  display: flex;
  gap: 2.4rem;
  margin: 0 0 1.6rem;
  padding: 0;
  border-bottom: 1px solid #e8e8e8;
}

.checkout-v2-test-tabs__btn {
  margin: 0;
  padding: 0 0 1.2rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #888;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.checkout-v2-test-tabs__btn.is-active {
  color: #111;
  font-weight: 600;
  border-bottom-color: #111;
}

/* ── Form grid ── */

.cv2-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 2rem;
}

.cv2-form-grid__full {
  grid-column: 1 / -1;
}

.cv2-form-grid .form-group {
  margin-bottom: 0;
}

.cv2-form-grid .form-group label {
  display: block !important;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: #444;
}

.cv2-form-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #888;
}

.cv2-form-label-with-hint {
  display: block !important;
}

.cv2-form-label-with-hint__title {
  display: block;
}

.cv2-form-label-with-hint__note {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #888;
}

#checkout-v2 .form-control {
  display: block;
  width: 100%;
  height: 4.4rem;
  min-height: 4.4rem;
  padding: 0.8rem 1.2rem;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #111;
  background: #f5f5f7;
  border: 1px solid #f0f0f2;
  border-radius: 0.6rem;
  box-shadow: none;
  margin-bottom: 0 !important;
}

.checkout-v2-test-comment .form-control {
  height: auto;
  min-height: 8rem;
}

.checkout-v2-test-fields.is-hidden,
.checkout-v2-test-price-notice.is-hidden {
  display: none !important;
}

/* ── Products block ── */

.cv2-products {
  padding: 0;
  overflow: hidden;
}

.cv2-products__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv2-product {
  padding: 0;
  border-bottom: 1px solid #efefef;
}

.cv2-product:last-child {
  border-bottom: none;
}

.cv2-product {
  --cv2-thumb: 14rem;
  --cv2-grid-gap: 2rem;
  --cv2-grid-pad: 2.4rem;
  --cv2-row-gap: 1.2rem;
}

.cv2-product__grid {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "thumb head"
    "thumb extras";
  align-items: stretch;
  gap: var(--cv2-row-gap) var(--cv2-grid-gap);
  padding: var(--cv2-grid-pad);
}

.cv2-product__grid--no-extras {
  grid-template-rows: auto;
  grid-template-areas: "thumb head";
}

.cv2-product__thumb-wrap {
  display: contents;
}

.cv2-product__thumb {
  grid-area: thumb;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  justify-self: start;
  width: auto;
  min-width: var(--cv2-thumb);
  aspect-ratio: 1 / 1;
  border: 1px solid #ececec;
  border-radius: 0.8rem;
  background: #fafafa;
  padding: 0.4rem;
  overflow: hidden;
  box-sizing: border-box;
  text-decoration: none;
}

.cv2-product__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cv2-product__head {
  grid-area: head;
  min-width: 0;
}

.cv2-product__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name price"
    "sku price"
    "buy price";
  column-gap: 2rem;
  align-items: start;
  min-width: 0;
}

.cv2-product__name {
  grid-area: name;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.cv2-product__name:hover {
  color: #000;
  text-decoration: none;
}

.cv2-product__sku {
  grid-area: sku;
  font-size: 1.2rem;
  color: #aaa;
  margin: 0 0 0.8rem;
}

.cv2-product__buy-row {
  grid-area: buy;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  min-width: 0;
}

.cv2-product__controls {
  display: flex;
  align-items: center;
  min-height: 3.2rem;
}

.cv2-product__cashback {
  display: inline-block;
  margin: 0;
  padding: 0.2rem 0.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 0.4rem;
}

.cv2-product__price {
  grid-area: price;
  text-align: right;
  align-self: start;
  padding-top: 0.2rem;
  white-space: nowrap;
}

.cv2-product__price-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  font-variant-numeric: tabular-nums;
}

.cv2-product__price-old {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  color: #bbb;
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.cv2-product__extras {
  grid-area: extras;
  margin: 0;
  max-width: none;
  min-width: 0;
  padding: 1rem 1.2rem;
  border: 1px solid #ececec;
  border-radius: 0.8rem;
  background: #fafafa;
}

.cv2-product__extras .extra-services-cart__item,
.cv2-product__extras .extra-services__item {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.cv2-product__extras .extra-services-cart__label,
.cv2-product__extras .extra-services__label {
  font-size: 1.3rem;
  line-height: 1.3;
}

.checkout-v2-order__qty-wrap {
  display: inline-flex;
  align-items: center;
  height: 3.2rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.6rem;
  overflow: hidden;
  background: #fff;
}

.checkout-v2-order__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 100%;
  padding: 0;
  border: none;
  background: #fafafa;
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
  cursor: pointer;
}

.checkout-v2-order__qty-btn:hover {
  background: #f0f0f0;
}

.checkout-v2-order__qty-val {
  min-width: 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  font-variant-numeric: tabular-nums;
}

/* ── Sidebar summary ── */

.cv2-aside__sticky {
  position: sticky;
  top: 2rem;
}

.cv2-summary {
  margin-bottom: 0;
}

.cv2-summary__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.cv2-summary__head-label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111;
}

.cv2-summary__head-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cv2-summary__lines {
  margin: 0 0 1.6rem;
  padding: 0 0 1.6rem;
  border-bottom: 1px solid #efefef;
}

.cv2-summary__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #666;
}

.cv2-summary__line:last-child {
  margin-bottom: 0;
}

.cv2-summary__line dt,
.cv2-summary__line dd {
  margin: 0;
}

.cv2-summary__line dd {
  font-weight: 500;
  color: #111;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cv2-summary__free {
  color: #16a34a !important;
  font-weight: 500;
}

.cv2-summary__line--cashback {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.cv2-summary__line--cashback dd {
  color: #007aff;
  font-size: 1.3rem;
  font-weight: 600;
}

.cv2-summary__meta {
  margin-bottom: 1.6rem;
}

.cv2-summary__meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0 0 0.6rem;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4;
  cursor: pointer;
}

.cv2-summary__meta-row:last-child {
  margin-bottom: 0;
}

.cv2-summary__meta-label {
  color: #888;
  flex-shrink: 0;
}

.cv2-summary__meta-value {
  color: #2563eb;
  font-weight: 500;
  text-align: right;
}

.cv2-summary__meta-row:hover .cv2-summary__meta-value {
  text-decoration: underline;
}

.cv2-summary__agree {
  margin: 1.4rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid #ececec;
}

#checkout-v2-agree .cv2-summary__agree-label {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: 0 1rem;
  align-items: start;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #555;
  cursor: pointer;
}

#checkout-v2-agree input[type="checkbox"] {
  position: static;
  opacity: 1;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0.1rem 0 0;
  padding: 0;
  accent-color: #111;
  cursor: pointer;
}

#checkout-v2-agree .cv2-summary__agree-text {
  display: block;
  min-width: 0;
}

#checkout-v2-agree .cv2-summary__agree-text a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

#checkout-v2-agree .cv2-summary__agree-text a:hover {
  color: #111;
}

.cv2-summary__submit {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1.4rem 2rem;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.cv2-summary__submit:hover {
  background: #000;
}

.cv2-summary__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cv2-summary__note {
  margin: 0.8rem 0 0;
  font-size: 1.2rem;
  line-height: 1.45;
  color: #aaa;
  text-align: center;
}

.cv2-summary__note a {
  color: #007aff;
}

.cv2-summary__error {
  margin-top: 1rem;
  text-align: center;
}

/* ── Docs, prefix, contact ── */

.checkout-v2-test-input-prefix {
  display: flex;
  align-items: center;
  height: 4.6rem;
  background: #f5f5f7;
  border: 1px solid #f0f0f2;
  border-radius: 0.6rem;
  overflow: hidden;
}

.checkout-v2-test-input-prefix__mark {
  padding: 0 0 0 1.4rem;
  font-size: 1.5rem;
  color: #888;
}

.checkout-v2-test-input-prefix .form-control {
  border: none;
  background: transparent;
  padding-left: 0.4rem;
}

.checkout-v2-test-docs {
  margin-top: 0.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid #efefef;
}

#checkout-v2 .checkout-v2-test-docs__heading {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #111;
  margin: 0 0 0.6rem;
}

#checkout-v2 label.checkout-v2-test-docs__row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin: 0 0 0.5rem !important;
  padding: 0;
  font-weight: 400;
  cursor: pointer;
}

#checkout-v2 label.checkout-v2-test-docs__row:last-child {
  margin-bottom: 0 !important;
}

#checkout-v2 .checkout-v2-test-docs__label {
  flex: 1;
  min-width: 0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.35;
  color: #444;
}

.checkout-v2-test-switch-ui {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 4rem;
  height: 2.2rem;
}

.checkout-v2-test-switch-ui input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkout-v2-test-switch-ui__slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 2.4rem;
}

.checkout-v2-test-switch-ui__slider::before {
  content: '';
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  left: 0.2rem;
  top: 0.2rem;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.checkout-v2-test-switch-ui input:checked + .checkout-v2-test-switch-ui__slider {
  background: #111;
}

.checkout-v2-test-switch-ui input:checked + .checkout-v2-test-switch-ui__slider::before {
  transform: translateX(1.8rem);
}

.checkout-v2-test-cdek-mode {
  margin: 0 0 1.6rem;
}

.checkout-v2-test-cdek-mode.is-hidden {
  display: none !important;
}

.checkout-v2-test-cdek-mode__title {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #444;
}

.checkout-v2-test-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-v2-test-contact__option {
  margin: 0;
  cursor: pointer;
}

.checkout-v2-test-contact__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-v2-test-contact__btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 100%;
  padding: 1.2rem 1.4rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  color: #333;
  background: #fff;
}

.checkout-v2-test-contact__option input:checked + .checkout-v2-test-contact__btn {
  border-color: #111;
  background: #fafafa;
}

.checkout-v2-test-price-notice {
  margin: 0 0 1.6rem;
  padding: 1.2rem 1.4rem;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #555;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.8rem;
}

.checkout-v2-test-pay-group {
  margin-bottom: 1.6rem;
}

.checkout-v2-test-pay-group__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #333;
}

.checkout-v2-test-pay-group[hidden] {
  display: none !important;
}

.checkout-v2-test-delivery-address {
  margin-top: 1.2rem;
}

.checkout-v2-test-delivery-address .form-group {
  margin-bottom: 0;
}

.checkout-v2-test-delivery-address .control-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

#checkout_v2_payment .radio,
#checkout_v2_delivery .radio {
  margin: 0 0 1rem;
  padding: 0;
}

#checkout_v2_payment .radio:last-child,
#checkout_v2_delivery .radio:last-child {
  margin-bottom: 0;
}

#checkout_v2_payment .ui-check,
#checkout_v2_delivery .ui-check {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

#checkout_v2_payment .ui-check__input,
#checkout_v2_delivery .ui-check__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#checkout_v2_payment .ui-check__btn,
#checkout_v2_delivery .ui-check__btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  box-sizing: border-box;
}

#checkout_v2_payment .ui-check__btn-radio,
#checkout_v2_delivery .ui-check__btn-radio {
  margin-top: 0;
  flex-shrink: 0;
}

#checkout_v2_payment .ui-check__btn-desc,
#checkout_v2_delivery .ui-check__btn-desc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

#checkout_v2_payment .ui-check__btn-text,
#checkout_v2_delivery .ui-check__btn-text {
  font-size: 1.3rem;
  color: #888;
  margin: 0;
  line-height: 1.4;
  text-wrap: pretty;
}

#checkout_v2_payment .radio.is-disabled .ui-check__btn {
  opacity: 0.55;
  cursor: not-allowed;
}

#checkout_v2_payment .ui-check__btn-text--muted {
  color: #b35c00;
}

#checkout_v2_payment .ui-check__btn-title,
#checkout_v2_delivery .ui-check__btn-title {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.3;
}

#checkout_v2_payment .cv2-icon {
  align-self: center;
  flex-shrink: 0;
}

.cv2-delivery-icon {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  min-width: 3.6rem;
  min-height: 3.6rem;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center center;
  padding: 0.4rem;
  box-sizing: border-box;
  background: #f5f5f5;
  border-radius: 0.8rem;
}

#checkout_v2_delivery .ui-check__btn-desc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

#checkout_v2_delivery .ui-check__btn-title {
  overflow-wrap: anywhere;
  word-break: normal;
}

#checkout_v2_delivery .cv2-delivery-title-free {
  white-space: nowrap;
}

#checkout_v2_delivery .ui-check__btn-text {
  overflow-wrap: anywhere;
  word-break: normal;
}

#checkout_v2_delivery .cv2-delivery-desc__main {
  white-space: pre-line;
  display: block;
}

.cv2-tip {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
  flex-shrink: 0;
  white-space: normal;
}

.cv2-tip__btn {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.cv2-tip__btn:hover,
.cv2-tip__btn:focus-visible {
  border-color: #9ca3af;
  color: #374151;
  outline: none;
}

.cv2-tip__popup {
  display: none;
  position: fixed;
  z-index: 1000;
  box-sizing: border-box;
  width: min(26rem, calc(100vw - 2.4rem));
  max-width: min(26rem, calc(100vw - 2.4rem));
  padding: 0.8rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  line-height: 1.45;
  color: #555;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: pretty;
}

.cv2-tip.is-open .cv2-tip__popup {
  display: block;
}

/* ── Icons ── */

.cv2-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  flex-shrink: 0;
  border-radius: 0.8rem;
  background-color: #f3f4f6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem 2rem;
}

.cv2-icon--cash { background-color: #ecfdf5; background-image: url("../image/checkout-v2/cash.svg"); }
.cv2-icon--transfer { background-color: #eff6ff; background-image: url("../image/checkout-v2/transfer.svg"); }
.cv2-icon--bank_transfer {
  background-color: transparent;
  background-image: url("../image/checkout-v2/bank-transfer.png");
  background-size: 2.4rem auto;
  background-position: center;
}
.cv2-icon--sbp {
  background-color: transparent;
  background-image: url("../image/checkout-v2/sbp.png");
  background-size: 3.6rem auto;
  background-position: center;
}
.cv2-icon--card {
  background-color: transparent;
  background-image: url("../image/checkout-v2/bank-transfer.png");
  background-size: 2.4rem auto;
  background-position: center;
}
.cv2-icon--sber { background-color: #fff; background-image: url("../image/checkout-v2/sber.svg"); background-size: 2.6rem 2.6rem; }
.cv2-icon--sber_parts {
  background-color: transparent;
  background-image: url("../image/checkout-v2/sber-parts.png?v=5");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.cv2-icon--tbank {
  background-color: transparent;
  background-image: url("../image/checkout-v2/tbank.png");
  background-size: 2.6rem auto;
  background-position: center;
}
.cv2-icon--dolyami {
  background-color: transparent;
  background-image: url("../image/checkout-v2/dolyami.png");
  background-size: 3rem auto;
  background-position: center;
}
.cv2-icon--yandex {
  background-color: transparent;
  background-image: url("../image/checkout-v2/yandex-split.png?v=2");
  background-size: 3.2rem auto;
  background-position: center;
}
.cv2-icon--pickup {
  background-color: #f5f5f5;
  background-image: url("../image/checkout-v2/pickup.png");
}
.cv2-icon--courier {
  background-color: #f5f5f5;
  background-image: url("../image/checkout-v2/courier-moscow.png");
}
.cv2-icon--russia {
  background-color: #f5f5f5;
  background-image: url("../image/checkout-v2/russia-delivery.png");
}
.cv2-icon--phone { background-color: #eff6ff; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E"); width: 2.4rem; height: 2.4rem; background-size: 1.4rem 1.4rem; border-radius: 50%; }
.cv2-icon--telegram {
  background-color: transparent;
  background-image: url("../images/icons/social/telegram.svg");
  width: 2.4rem;
  height: 2.4rem;
  background-size: 2.4rem 2.4rem;
  border-radius: 50%;
}

/* ── Success ── */

.checkout-v2-success {
  text-align: center;
  padding: 4rem 1.5rem;
}

.checkout-v2-success__title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

/* ── Responsive ── */

@media (max-width: 1199px) {
  .cv2-layout {
    grid-template-columns: 1fr;
  }

  .cv2-aside__sticky {
    position: static;
  }

  .cv2-main {
    order: 1;
  }

  .cv2-aside {
    order: 2;
  }

  .cv2-product {
    --cv2-thumb: 10rem;
    --cv2-grid-pad: 1.6rem;
    --cv2-grid-gap: 1.6rem;
  }

  .cv2-product__grid {
    grid-template-columns: max-content minmax(0, 1fr);
    grid-template-areas:
      "thumb head"
      "thumb extras";
    padding: 1.4rem var(--cv2-grid-pad);
  }

  .cv2-product__grid--no-extras {
    grid-template-areas: "thumb head";
  }
}

@media (max-width: 767px) {
  .cv2-page .container-fluid > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .cv2-page .container-fluid > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .cv2-page .simple-content {
    padding-left: 0;
    padding-right: 0;
  }

  .cv2-card {
    padding: 1.6rem;
    border: 1px solid #ebebeb;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }

  .cv2-card:last-child {
    margin-bottom: 0;
  }

  .cv2-page .simple-content .cv2-card > h2.cv2-card__title {
    font-size: 12px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }

  .checkout-v2-test-tabs {
    gap: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .checkout-v2-test-tabs__btn {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }

  .cv2-product {
    --cv2-thumb: 11.2rem;
    --cv2-grid-pad: 0;
    --cv2-grid-gap: 1.2rem;
    --cv2-row-gap: 0.6rem;
  }

  .cv2-product__grid {
    grid-template-columns: var(--cv2-thumb) minmax(0, 1fr);
    grid-template-areas:
      "thumb head"
      "extras extras";
    column-gap: var(--cv2-grid-gap);
    row-gap: var(--cv2-row-gap);
    padding: 1.2rem 0;
    align-items: start;
  }

  .cv2-product__grid--no-extras {
    grid-template-areas: "thumb head";
  }

  .cv2-product__thumb {
    grid-area: thumb;
    grid-row: auto;
    width: var(--cv2-thumb);
    height: var(--cv2-thumb);
    min-width: var(--cv2-thumb);
    aspect-ratio: 1 / 1;
    align-self: start;
    padding: 0.35rem;
  }

  .cv2-product__body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "name name"
      "sku sku"
      "qty price"
      ". cashback";
    column-gap: 1rem;
    row-gap: 0.35rem;
    align-items: center;
  }

  .cv2-product__name {
    grid-area: name;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .cv2-product__sku {
    grid-area: sku;
    margin-bottom: 0;
  }

  .cv2-product__buy-row {
    display: contents;
  }

  .cv2-product__controls {
    grid-area: qty;
    align-self: center;
    min-height: 0;
  }

  .cv2-product__cashback {
    grid-area: cashback;
    align-self: start;
    justify-self: end;
  }

  .cv2-product__price {
    grid-area: price;
    align-self: center;
    justify-self: end;
    text-align: right;
    padding: 0;
  }

  .cv2-product__price-val {
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .cv2-product__price-old {
    display: block;
    margin: 0.2rem 0 0;
    font-size: 1.2rem;
  }

  .cv2-product__extras {
    margin-top: 0.8rem;
  }

  .cv2-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #checkout-v2 .form-control {
    height: 4.2rem;
    min-height: 4.2rem;
    padding: 0.7rem 1.2rem;
    font-size: 1.6rem;
  }

  .cv2-form-grid .form-group label {
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
  }

  #checkout-v2 .checkout-v2-test-docs__heading {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  #checkout-v2 .checkout-v2-test-docs__label {
    font-size: 1.2rem;
  }

  .checkout-v2-test-contact {
    grid-template-columns: 1fr;
  }

  .cv2-summary__head-value {
    font-size: 2rem;
  }
}
