.cart-page__hero {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.cart-page__body {
  padding-bottom: clamp(48px, 8vw, 80px);
}

.cart-page__loading {
  padding: 32px 0;
  color: rgba(26, 46, 61, 0.6);
  font-size: 15px;
}

.cart-page__loading[hidden],
.cart-page__empty[hidden],
.cart-page__content[hidden] {
  display: none !important;
}

.cart-page.is-empty .cart-page__content {
  display: none !important;
}

.cart-page:not(.is-empty) .cart-page__empty {
  display: none !important;
}

.cart-page__empty {
  text-align: center;
  padding: clamp(40px, 8vw, 72px) 16px;
}

.cart-page__empty-text {
  margin: 0 0 16px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #1a2e3d;
}

.cart-page__empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4a9fd4, #5ec9a8);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.cart-page__content {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

@media (min-width: 900px) {
  .cart-page__content {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    align-items: start;
  }

  .cart-page__content > .cart-summary {
    position: sticky;
    top: calc(var(--sticky-offset, 128px) + 16px);
    align-self: start;
  }

  .order-page__grid > .cart-summary {
    position: sticky;
    top: calc(var(--sticky-offset, 128px) + 16px);
    align-self: start;
  }
}

.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.cart-item {
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.92) 100%);
  border: 1px solid rgba(197, 224, 245, 0.85);
  box-shadow:
    0 14px 36px rgba(74, 159, 212, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.cart-item__main {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 18px 16px;
}

.cart-item__media {
  display: block;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef7fc 0%, #f3fbf7 100%);
  border: 1px solid rgba(197, 224, 245, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cart-item__media:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 8px 20px rgba(74, 159, 212, 0.12);
}

.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__image--placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e3f0fa, #edf9f3);
}

.cart-item__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-item__titles {
  min-width: 0;
}

.cart-item__badge {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2d7fa8;
  background: rgba(75, 162, 184, 0.14);
}

.cart-item__name {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.35;
  color: #1a2e3d;
}

.cart-item__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cart-item__name a:hover {
  color: #4ba2b8;
}

.cart-item__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(26, 46, 61, 0.48);
}

.cart-item__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.cart-item__unit-price {
  font-size: 13px;
  color: rgba(26, 46, 61, 0.5);
}

.cart-item__line-total {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  line-height: 1;
  color: #4ba2b8;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.cart-item__bundle {
  margin: 0 18px 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(240, 248, 255, 0.72);
  border: 1px solid rgba(197, 224, 245, 0.7);
}

.cart-item__bundle-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 46, 61, 0.52);
}

.cart-item__bundle-title span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(26, 46, 61, 0.42);
}

.cart-item__bundle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.cart-item__bundle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.35;
  border-top: 1px solid rgba(197, 224, 245, 0.55);
}

.cart-item__bundle-row:first-child {
  border-top: none;
  padding-top: 0;
}

.cart-item__bundle-row:last-child {
  padding-bottom: 0;
}

.cart-item__bundle-name {
  min-width: 0;
  color: #1a2e3d;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cart-item__bundle-name:hover {
  color: #4ba2b8;
}

.cart-item__bundle-price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
  color: #4ba2b8;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.cart-item__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(197, 224, 245, 0.95);
  box-shadow: 0 4px 14px rgba(74, 159, 212, 0.06);
}

.cart-qty__btn {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #4ba2b8;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-qty__btn:hover {
  background: rgba(75, 162, 184, 0.12);
  color: #2d7fa8;
}

.cart-qty__value {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: #1a2e3d;
}

.cart-item__remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px;
  border: none;
  background: none;
  color: rgba(26, 46, 61, 0.42);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s ease;
}

.cart-item__remove svg {
  width: 15px;
  height: 15px;
}

.cart-item__remove:hover {
  color: #c45c7a;
}

@media (max-width: 720px) {
  .cart-item__main {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 14px 12px;
  }

  .cart-item__head {
    flex-direction: column;
    gap: 12px;
  }

  .cart-item__controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .cart-item__bundle {
    margin: 0 14px 14px;
    padding: 12px 14px;
  }
}

.cart-summary {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.9) 100%);
  border: 1px solid rgba(197, 224, 245, 0.85);
  box-shadow:
    0 14px 36px rgba(74, 159, 212, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(26, 46, 61, 0.72);
}

.cart-summary__row--total {
  margin: 16px 0 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 224, 245, 0.8);
  font-size: 18px;
  color: #1a2e3d;
}

.cart-summary__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #4a9fd4, #5ec9a8);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.cart-summary__checkout[hidden] {
  display: none;
}

.cart-summary__checkout:hover {
  filter: brightness(1.03);
}

.order-page__body {
  padding-bottom: clamp(48px, 8vw, 80px);
}

.order-success-page {
  width: 100%;
  max-width: none;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  padding: 10px 10px clamp(48px, 8vw, 80px);
}

.order-success-banner {
  width: 100%;
  padding: clamp(22px, 3.5vw, 32px) clamp(16px, 3vw, 24px);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(237, 249, 243, 0.98) 0%, rgba(240, 249, 255, 1) 100%);
  border: 1px solid rgba(94, 201, 168, 0.35);
  border-top: 4px solid #3dcc9f;
  box-shadow: 0 10px 32px rgba(74, 159, 212, 0.08);
}

.order-success-banner--pending {
  background: linear-gradient(135deg, rgba(240, 249, 255, 1) 0%, rgba(245, 250, 253, 1) 100%);
  border-color: rgba(74, 159, 212, 0.35);
  border-top-color: #4a9fd4;
}

.order-success-banner__inner {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 24px);
}

.order-success-banner__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(56px, 8vw, 68px);
  height: clamp(56px, 8vw, 68px);
  border-radius: 50%;
  color: #2a9a72;
  background: linear-gradient(145deg, rgba(61, 204, 159, 0.18), rgba(74, 159, 212, 0.12));
  border: 1px solid rgba(61, 204, 159, 0.35);
  box-shadow: 0 10px 24px rgba(61, 204, 159, 0.18);
}

.order-success-banner--pending .order-success-banner__icon {
  color: #2d7eb5;
  background: linear-gradient(145deg, rgba(74, 159, 212, 0.16), rgba(126, 184, 232, 0.14));
  border-color: rgba(74, 159, 212, 0.35);
  box-shadow: 0 10px 24px rgba(74, 159, 212, 0.14);
}

.order-success-banner__text {
  min-width: 0;
  flex: 1;
  padding-top: 4px;
}

.order-success-banner__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #23966f;
}

.order-success-banner--pending .order-success-banner__title {
  color: #2d7eb5;
}

.order-success-banner__sub {
  margin: 0;
  max-width: none;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  color: rgba(26, 46, 61, 0.78);
}

.order-success-card {
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(197, 224, 245, 0.9);
  box-shadow: 0 10px 32px rgba(74, 159, 212, 0.08);
  overflow: hidden;
}

.order-success-card__inner {
  width: 100%;
  max-width: none;
  padding: clamp(22px, 3.5vw, 32px) clamp(16px, 3vw, 24px);
}

.order-page__loading {
  padding: 32px 0;
  color: rgba(26, 46, 61, 0.6);
}

.order-page__loading[hidden],
.order-page__empty[hidden],
.order-page__grid[hidden] {
  display: none !important;
}

.order-page.is-empty .order-page__grid {
  display: none !important;
}

.order-page:not(.is-empty) .order-page__empty {
  display: none !important;
}

.order-page__grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

@media (min-width: 900px) {
  .order-page__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    align-items: start;
  }
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(197, 224, 245, 0.85);
}

.order-form__field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: rgba(26, 46, 61, 0.78);
}

.order-form__field input,
.order-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(197, 224, 245, 0.95);
  border-radius: 12px;
  font: inherit;
  color: #1a2e3d;
  background: #fff;
}

.order-form__field input:focus,
.order-form__field textarea:focus {
  outline: 2px solid rgba(74, 159, 212, 0.35);
  border-color: #4a9fd4;
}

.order-form__submit {
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #4a9fd4, #5ec9a8);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.order-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.order-form__error {
  margin: 0;
  color: #c45c7a;
  font-size: 14px;
}

.order-form__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(26, 46, 61, 0.5);
}

.order-form__promo-row {
  display: flex;
  gap: 8px;
}

.order-form__promo-row input {
  flex: 1;
}

.order-form__promo-btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(74, 159, 212, 0.35);
  border-radius: 12px;
  background: #fff;
  color: #2d7eb5;
  font-weight: 700;
  cursor: pointer;
}

.order-form__promo-note {
  margin: 0;
  font-size: 13px;
  color: #2a8fa8;
}

.order-form__promo-note--error {
  color: #c45c7a;
}

.order-summary__title {
  margin: 0 0 14px;
  font-size: 18px;
  color: #1a2e3d;
}

.order-summary__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.order-summary__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(26, 46, 61, 0.78);
}

.order-summary__item--rich {
  align-items: flex-start;
}

.order-summary__item-main {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.order-summary__thumb,
.order-summary__bundle-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(197, 224, 245, 0.8);
  background: #fff;
  display: block;
}

.order-summary__bundle-thumb {
  width: 40px;
  height: 40px;
}

.order-summary__thumb img,
.order-summary__bundle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-summary__thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e3f0fa, #edf9f3);
}

.order-summary__thumb-placeholder--sm {
  min-height: 40px;
}

.order-summary__item-body {
  flex: 1;
  min-width: 0;
}

.order-summary__item-name {
  display: block;
  font-weight: 600;
  color: #1a2e3d;
  text-decoration: none;
  line-height: 1.35;
}

.order-summary__item-name:hover {
  color: #4ba2b8;
}

.order-summary__item-price {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 14px;
  color: #1a2e3d;
}

.order-summary__bundle {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-summary__bundle-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.order-summary__bundle-name {
  color: rgba(26, 46, 61, 0.65);
  text-decoration: none;
}

.order-summary__bundle-name:hover {
  color: #4ba2b8;
}

.order-success-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: clamp(20px, 3vw, 28px);
  padding-bottom: clamp(16px, 2.5vw, 22px);
  border-bottom: 1px solid rgba(197, 224, 245, 0.85);
}

.order-success-card__number {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: #4ba2b8;
  letter-spacing: -0.02em;
}

.order-success-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(94, 201, 168, 0.14);
  border: 1px solid rgba(94, 201, 168, 0.35);
  font-size: 13px;
  font-weight: 700;
  color: #2a8fa8;
}

.order-success-card__status--pending {
  background: rgba(74, 159, 212, 0.12);
  border-color: rgba(74, 159, 212, 0.35);
  color: #2d7eb5;
}

.order-success-card__meta {
  display: grid;
  gap: 14px;
  margin: 0 0 clamp(20px, 3vw, 28px);
}

@media (min-width: 640px) {
  .order-success-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .order-success-card__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.order-success-card__meta div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(245, 250, 253, 0.95);
  border: 1px solid rgba(197, 224, 245, 0.75);
}

.order-success-card__meta dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(26, 46, 61, 0.5);
}

.order-success-card__meta dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a2e3d;
  word-break: break-word;
}

.order-success-card__meta a {
  color: inherit;
  text-decoration: none;
}

.order-success-card__meta a:hover {
  color: #4a9fd4;
}

.order-success-card__section-title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(26, 46, 61, 0.52);
}

.order-success-card__items {
  margin-bottom: 0;
  padding-top: 0;
  border-top: none;
}

.order-success-card__items .order-summary__item {
  padding: clamp(14px, 2.5vw, 18px);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(242, 249, 253, 0.95) 100%);
  border: 1px solid rgba(197, 224, 245, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.order-success-card__items .order-summary__thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
}

.order-success-card__items .order-summary__item-name {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.4;
  margin-bottom: 2px;
}

.order-success-card__items .order-summary__item--rich {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "main price"
    "bundle bundle";
  align-items: start;
  gap: 14px 18px;
}

.order-success-card__items .order-summary__item-main {
  grid-area: main;
}

.order-success-card__items .order-summary__item-price {
  grid-area: price;
  align-self: start;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 800;
  color: #4ba2b8;
}

.order-success-card__items .order-summary__bundle {
  grid-area: bundle;
  margin-top: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(197, 224, 245, 0.8);
  gap: 0;
}

.order-success-card__items .order-summary__bundle::before {
  content: "В набор входит";
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(26, 46, 61, 0.48);
}

.order-success-card__items .order-summary__bundle-item {
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(197, 224, 245, 0.65);
}

.order-success-card__items .order-summary__bundle-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.order-success-card__items .order-summary__bundle-item:first-of-type {
  padding-top: 0;
}

.order-success-card__items .order-summary__bundle-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.order-success-card__items .order-summary__bundle-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(26, 46, 61, 0.8);
  word-break: break-word;
}

@media (min-width: 720px) {
  .order-success-card__items .order-summary__bundle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  .order-success-card__items .order-summary__bundle::before {
    grid-column: 1 / -1;
  }

  .order-success-card__items .order-summary__bundle-item {
    border-bottom: none;
    padding: 8px 0;
  }
}

.order-success-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: clamp(18px, 2.5vw, 24px);
  border-top: 1px solid rgba(197, 224, 245, 0.85);
}

.order-success-card__total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  padding-top: 0;
  border-top: none;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #1a2e3d;
}

.order-success-card__total strong {
  font-size: clamp(22px, 2.8vw, 28px);
  color: #4ba2b8;
}

.order-success-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-success-card__pay {
  margin: 0;
  flex: 1 1 280px;
}

.order-success-card__pay-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.order-success-card__paid {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #2a8fa8;
}

.order-success-card__support {
  width: 100%;
  margin: clamp(20px, 3vw, 28px) 0 0;
  padding-top: clamp(18px, 2.5vw, 24px);
  border-top: 1px solid rgba(197, 224, 245, 0.85);
}

.order-success-card__continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(74, 159, 212, 0.35);
  background: #fff;
  color: #2d7eb5;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.order-success-card__continue:hover {
  background: rgba(74, 159, 212, 0.08);
}

@media (max-width: 720px) {
  .order-success-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-success-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .order-success-card__actions {
    width: 100%;
    flex-direction: column;
  }

  .order-success-card__pay,
  .order-success-card__continue {
    width: 100%;
  }

  .order-success-card__items .order-summary__item--rich {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "price"
      "bundle";
  }

  .order-success-card__items .order-summary__item-price {
    justify-self: end;
    padding-top: 4px;
    border-top: 1px solid rgba(197, 224, 245, 0.75);
    width: 100%;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .order-success-card__meta div {
    padding: 12px 14px;
  }

  .order-success-card__items .order-summary__item {
    padding: 12px 14px;
  }

  .order-success-card__items .order-summary__item-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-summary__thumb {
    width: 72px;
    height: 72px;
  }
}

.order-success-card__support .bundle-support {
  max-width: none;
}

.order-success-card__support .bundle-support__text {
  margin-bottom: 12px;
}

.cart-summary__continue {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #4a9fd4;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1200;
  transform: translateX(-50%) translateY(12px);
  max-width: min(92vw, 420px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(26, 46, 61, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
