.shop-pay-page {
  --shop-ink: #20242c;
  --shop-muted: #667085;
  --shop-line: #e4e7ec;
  --shop-soft: #f6f7f9;
  --shop-yellow: #f6b91a;
  --shop-yellow-dark: #df9f00;
  --shop-red: #a6242f;
  color: var(--shop-ink);
  background: #fff;
}

.shop-pay-page * {
  box-sizing: border-box;
}

.shop-pay-hero {
  padding: 64px 0 54px;
  border-bottom: 1px solid var(--shop-line);
  background:
    radial-gradient(circle at 88% 22%, rgba(246, 185, 26, .18), transparent 25%),
    linear-gradient(135deg, #fff 0%, #faf7ef 100%);
}

.shop-pay-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
}

.shop-pay-hero-copy {
  max-width: 760px;
}

.shop-pay-kicker,
.shop-pay-heading > div > span,
.shop-cart-title span,
.shop-checkout-summary > span {
  display: block;
  margin-bottom: 8px;
  color: var(--shop-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-pay-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.shop-pay-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--shop-muted);
  font-size: 1.02rem;
}

.shop-pay-steps {
  display: grid;
  min-width: 430px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-pay-steps li {
  position: relative;
  display: grid;
  min-width: 130px;
  gap: 2px;
  padding: 0 14px 0 42px;
}

.shop-pay-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: -6px;
  width: 18px;
  height: 1px;
  background: #cdd1d8;
}

.shop-pay-steps li > span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #cdd1d8;
  border-radius: 50%;
  color: var(--shop-muted);
  background: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.shop-pay-steps li.active > span {
  border-color: var(--shop-yellow);
  color: #2b2108;
  background: var(--shop-yellow);
}

.shop-pay-steps strong {
  font-size: .78rem;
}

.shop-pay-steps small {
  color: var(--shop-muted);
  font-size: .64rem;
  line-height: 1.35;
}

.shop-pay-store {
  padding: 42px 0 90px;
  background: var(--shop-soft);
}

.shop-pay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 30px;
  align-items: start;
}

.shop-pay-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
  padding: 7px;
  border: 1px solid var(--shop-line);
  border-radius: 12px;
  background: #fff;
}

.shop-pay-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  color: var(--shop-ink);
  font-size: .82rem;
  font-weight: 750;
}

.shop-pay-tabs a:first-child {
  color: #2b2108;
  background: #fff2c6;
}

.shop-pay-tabs a:hover,
.shop-pay-tabs a:focus-visible {
  background: #f0f2f5;
}

.shop-pay-tabs span {
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: var(--shop-red);
  font-size: .62rem;
}

.shop-pay-group + .shop-pay-group {
  margin-top: 68px;
  padding-top: 62px;
  border-top: 1px solid #dfe2e7;
}

.shop-pay-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 23px;
}

.shop-pay-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -.04em;
}

.shop-pay-heading > p {
  margin: 0 0 4px;
  color: var(--shop-muted);
  font-size: .78rem;
  white-space: nowrap;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-product-card {
  overflow: hidden;
  border: 1px solid var(--shop-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(16, 24, 40, .045);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.shop-product-card:hover {
  border-color: #c8cdd5;
  box-shadow: 0 14px 32px rgba(16, 24, 40, .09);
  transform: translateY(-3px);
}

.shop-product-card.ready-to-buy {
  border-color: rgba(246, 185, 26, .75);
}

.shop-product-media {
  position: relative;
  height: 185px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 25px;
  border-bottom: 1px solid #eceef1;
  background: linear-gradient(145deg, #f8f5ee, #f2f3f5);
}

.service-card-shop .shop-product-media {
  background: linear-gradient(145deg, #f6f2ea, #f0ece5);
}

.shop-product-media img {
  max-width: 80%;
  max-height: 130px;
  object-fit: contain;
}

.shop-product-monogram {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--shop-red), #731620);
  font: italic 3.2rem Georgia, serif;
}

.shop-product-type {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(32, 36, 44, .09);
  border-radius: 999px;
  color: #555d69;
  background: rgba(255, 255, 255, .88);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.shop-product-body {
  padding: 22px;
}

.shop-product-body h3 {
  min-height: 48px;
  margin: 0 0 9px;
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.shop-product-body > p {
  min-height: 65px;
  margin: 0;
  color: var(--shop-muted);
  font-size: .78rem;
  line-height: 1.55;
}

.shop-product-buy {
  display: grid;
  min-height: 89px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid #eceef1;
}

.shop-product-price {
  display: grid;
  gap: 2px;
}

.shop-product-price small {
  color: var(--shop-muted);
  font-size: .62rem;
  text-transform: uppercase;
}

.shop-product-price strong {
  max-width: 210px;
  font-size: .88rem;
  line-height: 1.35;
}

.shop-add-button,
.shop-checkout-button,
.shop-pay-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--shop-yellow-dark);
  border-radius: 7px;
  color: #241b07;
  background: var(--shop-yellow);
  font-size: .76rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(223, 159, 0, .17);
  transition: background .2s ease, transform .2s ease;
}

.shop-add-button:hover,
.shop-add-button:focus-visible,
.shop-checkout-button:hover,
.shop-checkout-button:focus-visible,
.shop-pay-button:hover,
.shop-pay-button:focus-visible {
  color: #181205;
  background: #ffc62e;
  transform: translateY(-1px);
}

.shop-price-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 2px;
  color: var(--shop-red);
  font-size: .74rem;
  font-weight: 800;
}

.shop-price-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shop-cart {
  position: sticky;
  top: 105px;
  padding: 25px;
  border: 1px solid var(--shop-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 24, 40, .08);
}

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

.shop-cart-title span {
  margin: 0 0 3px;
}

.shop-cart-title h2 {
  margin: 0;
  font-size: 1.45rem;
}

.shop-cart-title > strong {
  display: grid;
  min-width: 37px;
  height: 37px;
  place-items: center;
  padding: 0 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--shop-red);
  font-size: .8rem;
}

.shop-cart-lines {
  display: grid;
}

.shop-cart-line {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 30px 18px 0;
  border-bottom: 1px solid var(--shop-line);
}

.shop-cart-thumb {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  padding: 5px;
  border-radius: 8px;
  background: var(--shop-soft);
}

.shop-cart-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shop-cart-thumb span {
  color: var(--shop-red);
  font: italic 1.8rem Georgia, serif;
}

.shop-cart-copy small {
  color: var(--shop-red);
  font-size: .56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-cart-copy h3 {
  margin: 2px 0 3px;
  font-size: .82rem;
  line-height: 1.25;
}

.shop-cart-copy > strong {
  font-size: .74rem;
}

.shop-cart-remove {
  position: absolute;
  top: 15px;
  right: 0;
}

.shop-cart-remove button {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  padding: 0;
  border: 1px solid #f0d8db;
  border-radius: 50%;
  color: var(--shop-red);
  background: #fff8f8;
  cursor: pointer;
}

.shop-cart-quantity {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
}

.shop-cart-quantity label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.shop-cart-quantity input {
  width: 50px;
  height: 32px;
  padding: 4px 7px;
  border: 1px solid #d6dae0;
  border-radius: 6px;
  background: #fff;
  font-size: .72rem;
}

.shop-cart-quantity button {
  padding: 4px;
  border: 0;
  color: var(--shop-red);
  background: transparent;
  font-size: .67rem;
  font-weight: 800;
  cursor: pointer;
}

.shop-cart-total {
  display: grid;
  gap: 9px;
  padding: 19px 0;
}

.shop-cart-total > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--shop-muted);
  font-size: .78rem;
}

.shop-cart-total > div:nth-child(2) {
  color: var(--shop-ink);
  font-size: .98rem;
}

.shop-cart-total > div:nth-child(2) strong {
  font-size: 1.3rem;
}

.shop-cart-total small {
  color: var(--shop-muted);
  font-size: .62rem;
}

.shop-checkout-button {
  width: 100%;
}

.shop-cart-empty {
  padding: 34px 8px;
  text-align: center;
}

.shop-cart-empty > span {
  display: block;
  margin-bottom: 11px;
  font-size: 2rem;
}

.shop-cart-empty h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.shop-cart-empty p {
  margin: 0;
  color: var(--shop-muted);
  font-size: .72rem;
}

.shop-cart-security {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 13px;
  border-radius: 9px;
  background: #f3f8f5;
}

.shop-cart-security > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #21865b;
  font-size: .65rem;
}

.shop-cart-security p {
  margin: 0;
  color: #53615a;
  font-size: .63rem;
  line-height: 1.45;
}

.shop-cart-security strong {
  color: #214c38;
}

.shop-pay-empty {
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px dashed #cbd0d8;
  border-radius: 14px;
  text-align: center;
  background: #fff;
}

.shop-checkout {
  padding: 85px 0 105px;
  border-top: 1px solid var(--shop-line);
  background: #fff;
}

.shop-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 55px;
  align-items: start;
}

.checkout-heading {
  margin-bottom: 30px;
}

.shop-billing-form {
  display: grid;
  gap: 24px;
}

.shop-billing-form fieldset {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
}

.shop-billing-form legend {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  font-size: .9rem;
  font-weight: 800;
}

.shop-billing-form legend span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #2b2108;
  background: var(--shop-yellow);
  font-size: .68rem;
}

.shop-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.shop-form-grid .wide {
  grid-column: 1 / -1;
}

.shop-form-grid label {
  display: block;
  margin-bottom: 6px;
  color: #414955;
  font-size: .69rem;
  font-weight: 750;
}

.shop-form-grid input,
.shop-form-grid textarea,
.shop-form-grid select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d4d8df;
  border-radius: 8px;
  color: var(--shop-ink);
  background: #fff;
  font-size: .8rem;
  outline: none;
}

.shop-form-grid textarea {
  min-height: 90px;
  resize: vertical;
}

.shop-form-grid input[readonly] {
  color: #616874;
  background: #f4f5f7;
}

.shop-form-grid input:focus,
.shop-form-grid textarea:focus,
.shop-form-grid select:focus {
  border-color: #d8a315;
  box-shadow: 0 0 0 3px rgba(246, 185, 26, .15);
}

.shop-billing-form .errorlist {
  margin: 5px 0 0;
  padding: 0;
  color: #b42318;
  font-size: .67rem;
  list-style: none;
}

.shop-pay-button {
  width: 100%;
  min-height: 54px;
  font-size: .84rem;
}

.shop-pay-button:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
}

.shop-payment-note {
  margin: -14px 0 0;
  text-align: center;
  color: var(--shop-muted);
  font-size: .65rem;
}

.shop-checkout-summary {
  position: sticky;
  top: 105px;
  padding: 28px;
  border-radius: 16px;
  color: #fff;
  background: var(--shop-ink);
  box-shadow: 0 18px 44px rgba(16, 24, 40, .16);
}

.shop-checkout-summary > span {
  color: #f1c966;
}

.shop-checkout-summary > strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1.1;
}

.shop-checkout-summary > p {
  margin: 7px 0 22px;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
}

.shop-checkout-summary ul {
  margin: 0;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  list-style: none;
}

.shop-checkout-summary li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 7px 0;
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
}

.shop-checkout-summary li strong {
  color: #fff;
  white-space: nowrap;
}

.shop-checkout-trust {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: flex-start;
}

.shop-checkout-trust > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--shop-ink);
  background: #e9c164;
  font-size: .67rem;
}

.shop-checkout-trust p {
  margin: 0;
  color: #fff;
  font-size: .7rem;
  line-height: 1.4;
}

.shop-checkout-trust small {
  color: rgba(255, 255, 255, .55);
}

@media (max-width: 1080px) {
  .shop-pay-hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .shop-pay-steps {
    min-width: 0;
    max-width: 560px;
  }

  .shop-pay-layout,
  .shop-checkout-layout {
    grid-template-columns: 1fr;
  }

  .shop-cart,
  .shop-checkout-summary {
    position: static;
  }

  .shop-cart {
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .shop-pay-hero {
    padding: 45px 0 38px;
  }

  .shop-pay-hero h1 {
    font-size: 2.65rem;
  }

  .shop-pay-hero p {
    font-size: .9rem;
  }

  .shop-pay-steps {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .shop-pay-steps li {
    min-height: 34px;
  }

  .shop-pay-steps li:not(:last-child)::after {
    display: none;
  }

  .shop-pay-store {
    padding: 25px 0 60px;
  }

  .shop-pay-tabs {
    position: sticky;
    top: 70px;
    z-index: 5;
    overflow-x: auto;
  }

  .shop-pay-tabs a {
    flex: 1 0 auto;
    justify-content: center;
    padding-inline: 12px;
  }

  .shop-cart {
    padding: 20px;
  }

  .shop-pay-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .shop-product-grid,
  .shop-form-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-body h3,
  .shop-product-body > p {
    min-height: 0;
  }

  .shop-product-buy {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .shop-product-buy form,
  .shop-add-button {
    width: 100%;
  }

  .shop-form-grid .wide {
    grid-column: auto;
  }

  .shop-checkout {
    padding: 60px 0 75px;
  }

  .shop-billing-form fieldset {
    padding: 20px 16px;
  }
}

.upi-payment-page {
  --shop-ink: #20242c;
  --shop-muted: #667085;
  --shop-yellow: #f6b91a;
  --shop-yellow-dark: #df9f00;
  --shop-red: #a6242f;
  min-height: 760px;
  padding: 72px 0 100px;
  color: var(--shop-ink, #20242c);
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 185, 26, .14), transparent 26%),
    #f6f7f9;
}

.upi-payment-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.upi-success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #21865b;
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(33, 134, 91, .2);
}

.upi-payment-heading h1 {
  margin: 0 0 14px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  letter-spacing: -.055em;
}

.upi-payment-heading > p {
  max-width: 650px;
  margin: 0 auto;
  color: #667085;
}

.upi-reference {
  display: inline-grid;
  gap: 3px;
  margin-top: 22px;
  padding: 12px 20px;
  border: 1px solid #ebc45c;
  border-radius: 9px;
  background: #fff8df;
}

.upi-reference span {
  color: #80651c;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.upi-reference strong {
  color: #5c4610;
  letter-spacing: .04em;
}

.upi-payment-layout {
  display: grid;
  max-width: 950px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 28px;
  margin: 0 auto;
  align-items: start;
}

.upi-qr-card,
.upi-order-card {
  padding: 30px;
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 24, 40, .08);
}

.upi-amount {
  display: grid;
  margin-bottom: 24px;
  text-align: center;
}

.upi-amount span {
  color: #667085;
  font-size: .68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.upi-amount strong {
  margin: 3px 0;
  font-size: 2.45rem;
  line-height: 1.1;
}

.upi-amount small {
  color: #667085;
}

.upi-qr-frame {
  display: grid;
  width: min(320px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  padding: 15px;
  border: 1px solid #d9dde3;
  border-radius: 16px;
  background: #fff;
}

.upi-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.upi-qr-test {
  border-style: dashed;
  background: #fafafa;
}

.upi-test-label {
  margin: 12px auto 0;
  color: #8a6410;
  text-align: center;
  font-size: .68rem;
  line-height: 1.5;
}

.upi-account-details {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.upi-account-details > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f6f7f9;
}

.upi-account-details dt {
  color: #667085;
  font-size: .68rem;
}

.upi-account-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
  font-size: .75rem;
  font-weight: 800;
}

.upi-safe-note {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 13px;
  border-radius: 9px;
  background: #fff7e6;
}

.upi-safe-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b47b07;
  font-size: .68rem;
  font-weight: 900;
}

.upi-safe-note p {
  margin: 0;
  color: #6f561e;
  font-size: .67rem;
  line-height: 1.5;
}

.upi-order-card > h2 {
  margin: 0 0 18px;
  font-size: 1.75rem;
}

.upi-order-card ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e4e7ec;
  list-style: none;
}

.upi-order-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #e4e7ec;
}

.upi-order-card li div {
  display: grid;
}

.upi-order-card li strong {
  font-size: .78rem;
}

.upi-order-card li small {
  color: #667085;
  font-size: .65rem;
}

.upi-order-card li > span {
  font-size: .76rem;
  font-weight: 800;
  white-space: nowrap;
}

.upi-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.upi-order-total span {
  color: #667085;
  font-size: .76rem;
}

.upi-order-total strong {
  font-size: 1.45rem;
}

.upi-next-steps {
  margin-top: 8px;
  padding: 20px;
  border-radius: 12px;
  background: #f6f7f9;
}

.upi-next-steps h3 {
  margin: 0 0 11px;
  font-size: .95rem;
}

.upi-next-steps ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
  color: #5b6470;
  font-size: .7rem;
}

.upi-next-steps > p {
  margin: 14px 0 0;
  padding-top: 13px;
  border-top: 1px solid #dfe2e7;
  color: #5b6470;
  font-size: .7rem;
}

.upi-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.upi-secondary-link {
  display: block;
  padding: 9px;
  text-align: center;
  color: #a6242f;
  font-size: .72rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  .upi-payment-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .upi-payment-page {
    padding: 52px 0 72px;
  }

  .upi-qr-card,
  .upi-order-card {
    padding: 20px;
  }
}
