:root {
    --page: #f4f4f6;
    --card: #fff;
    --ink: #25263c;
    --muted: #686b82;
    --line: #d9d9df;
    --accent: #ef4a22;
    --blue: #172eff;
    --green: #12a530;
    --yellow: #fff200;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: #1f36bc;
  }
  
  .checkout-alert {
    max-width: 1010px;
    margin: 10px auto;
    padding: 10px 14px;
    background: #fff0f0;
    border: 1px solid #df9a9a;
    color: #8d1515;
    font-weight: 700;
  }
  
  .checkout-top {
    max-width: 1010px;
    margin: 0 auto;
    background: #fff;
    padding-bottom: 35px;
  }
  
  .checkout-banner img {
    width: 100%;
    height: auto;
  }
  
  .reserved-bar {
    background: #ededf1;
    color: #111;
    text-align: center;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .reserved-bar strong {
    color: #e51d23;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .5px;
  }
  
  .secure-bar {
    /* margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw); */
    background: #dedee2;
    text-align: center;
    padding: 10px 12px;
    color: #393a55;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    left: 0;
    right: 0;
  }
  
  .secure-lock {
    display: inline-block;
    width: 15px;
    height: 12px;
    margin-right: 9px;
    background: #4a4868;
    position: relative;
    vertical-align: -2px;
    border-radius: 2px;
  }
  
  .secure-lock:before {
    content: "";
    position: absolute;
    left: 3px;
    top: -5px;
    width: 6px;
    height: 7px;
    border: 2px solid #4a4868;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
  }
  
  .secure-lock:after,
  .input-lock-icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 48%;
    width: 3px;
    height: 4px;
    background: #dedee2;
    border-radius: 2px;
    transform: translate(-50%, -20%);
  }
  
  .checkout-shell {
    max-width: 1010px;
    margin: 0 auto;
    padding: 8px 0 18px;
  }
  
  .checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 14px;
    align-items: start;
  }
  
  .error-summary {
    grid-column: 1 / -1;
    background: #fff0f0;
    border: 1px solid #d98989;
    padding: 12px 14px;
    color: #8d1515;
  }
  
  .checkout-card,
  .summary-card,
  .guarantee-card {
    background: var(--card);
    box-shadow: 0 2px 10px rgba(29, 31, 48, .14);
  }
  
  .checkout-card {
    padding: 18px 20px;
    margin-bottom: 14px;
  }
  
  .checkout-submit-card {
    padding-top: 12px;
    padding-bottom: 14px;
  }
  
  .mobile-submit-card {
    display: none;
  }
  
  .desktop-submit-block {
    display: block;
  }
  
  .checkout-card h2,
  .summary-card h2 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #333;
  }
  
  .section-note {
    margin: 5px 0px 14px;
    color: var(--muted);
    font-size: 14px;
  }

  .field-note {
    margin: 5px 10px 14px;
    color: var(--muted);
    font-size: 14px;
  }
  
  .field {
    position: relative;
    margin-bottom: 14px;
  }
  
  .field label {
    position: absolute;
    top: 9px;
    left: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
  }
  
  .field input,
  .field select {
    width: 100%;
    min-height: 50px;
    padding: 27px 12px 7px;
    border: 1px solid #a9a9b2;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    background: #fff;
  }
  
  .field input:focus {
    outline: 2px solid rgba(23, 46, 255, .15);
    border-color: var(--blue);
  }
  
  .phone-field label {
    z-index: 2;
  }
  
  .cb-input-group input {
    transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out, background-color .2s ease-in-out;
  }
  
  .cb-input-group input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, .25);
  }
  
  .field input[readonly] {
    background: #fbfbfc;
  }
  
  .field.has-error input,
  .cb-input-group.has-error input {
    border-color: #d9534f;
    background-color: #fff6f6;
  }
  
  .field-error {
    color: #d9534f;
    font-size: 12px;
    font-weight: 400;
    margin: 5px 2px 0;
  }
  
  .cb-error-message {
    color: #d9534f;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
    animation: fadeIn .3s ease;
  }
  
  .cb-error-message[hidden] {
    display: none;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .two-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .three-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
  
  .paypal-row {
    display: none;
  }
  
  .credit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0 -20px 16px;
    padding: 14px 20px;
  }
  
  .credit-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
  }
  
  .credit-row input[type="radio"] {
    width: 19px;
    height: 19px;
    accent-color: var(--blue);
  }
  
  .card-icons {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  
  .card-icons img {
    height: 20px;
    width: auto;
  }
  
  .input-lock-icon {
    position: absolute;
    right: 14px;
    top: 20px;
    width: 17px;
    height: 13px;
    background: #4d4d67;
    border-radius: 2px;
    pointer-events: none;
  }
  
  .input-lock-icon:before {
    content: "";
    position: absolute;
    left: 3px;
    top: -7px;
    width: 8px;
    height: 9px;
    border: 2px solid #4d4d67;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    z-index: 1;
  }
  
  .input-lock-icon:after {
    background: #fff;
  }
  
  .cvv-help-trigger {
    position: absolute;
    right: 12px;
    top: 17px;
    width: 19px;
    height: 19px;
    border: 2px solid #4d4d67;
    border-radius: 50%;
    background: #fff;
    color: #4d4d67;
    cursor: pointer;
    padding: 0;
  }
  
  .cvv-help-trigger:after {
    content: "i";
    position: absolute;
    inset: -1px 0 0;
    text-align: center;
    line-height: 16px;
    font-weight: 800;
  }
  
  .cvv-help-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(520px, calc(100vw - 32px));
    background: #fff;
    color: #000;
    padding: 22px 15px 18px;
    border: 1px solid #d6d6dc;
    border-radius: 2px;
    box-shadow: 0 12px 30px rgba(22, 24, 36, .2);
    z-index: 20;
  }
  
  .cvv-help-panel[hidden] {
    display: none;
  }
  
  .cvv-help-panel p {
    margin: 0 0 26px;
    font-size: 21px;
    line-height: 1.45;
    color: #000;
    font-weight: 400;
  }
  
  .cvv-card {
    position: relative;
    width: 192px;
    height: 103px;
    margin: 0 auto 26px;
    background: #e8e9fb;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(54, 54, 90, .18);
    font-family: "Courier New", monospace;
  }
  
  .cvv-card-top {
    height: 20px;
    background: #0a082a;
    border-radius: 8px 8px 0 0;
    transform: translateY(18px);
  }
  
  .cvv-card-number {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 48px;
    height: 24px;
    padding: 5px 6px;
    background: #fff;
    border: 1px solid #c9c9d5;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .cvv-card-number span,
  .cvv-amex-code {
    display: inline-block;
    border: 1px solid #ff2b63;
    padding: 1px 4px;
    background: #fff;
  }
  
  .cvv-card-back:after,
  .cvv-card-front:after {
    content: "";
    position: absolute;
    width: 1px;
    background: #ff2b63;
  }
  
  .cvv-card-back:after {
    right: 14px;
    top: 70px;
    height: 40px;
  }
  
  .cvv-card i {
    position: absolute;
    left: -6px;
    bottom: -25px;
    width: 250px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    white-space: nowrap;
  }
  
  .cvv-card-front {
    margin-top: 6px;
  }
  
  .cvv-amex-code {
    position: absolute;
    right: 8px;
    top: 32px;
    font-size: 11px;
    font-weight: 700;
  }
  
  .cvv-amex-number {
    position: absolute;
    left: 14px;
    top: 50px;
    font-size: 11px;
    font-weight: 700;
  }
  
  .cvv-amex-name {
    position: absolute;
    left: 14px;
    top: 78px;
    font-size: 9px;
    font-weight: 700;
  }
  
  .cvv-card-front:after {
    right: 14px;
    top: 48px;
    height: 55px;
  }
  
  .check-line {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 15px;
    color: #50536a;
  }
  
  .check-line input {
    accent-color: #4a4668;
    width: 16px;
    height: 16px;
  }
  
  .sms-alerts-block {
    margin: -4px 10px 8px;
    color: #54516d;
  }
  
  .sms-alerts-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    font-size: 16px;
    line-height: 1.24;
  }
  
  .sms-alerts-line input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    flex: 0 0 auto;
    accent-color: #5a5775;
  }
  
  .sms-alerts-line strong {
    font-weight: 700;
  }
  
  .sms-alerts-block p {
    margin: 5px 0 0 26px;
    color: #76728b;
    font-size: 14px;
    line-height: 1.25;
  }
  
  .billing-fields {
    margin-top: 14px;
  }
  
  .billing-fields[hidden] {
    display: none;
  }
  
  .summary-card {
    padding: 14px 20px 20px;
  }
  
  .online-now {
    margin: 0 0 10px;
    text-align: center;
    color: #008ec6;
    font-size: 17px;
    font-weight: 700;
  }
  
  .online-now:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 11px;
    margin-right: 6px;
    background: radial-gradient(circle at 50% 50%, #fff 0 2px, #008ec6 2.5px 100%);
    border-radius: 50% / 58%;
    vertical-align: -1px;
    clip-path: ellipse(50% 43% at 50% 50%);
  }
  
  .summary-product {
    width: 320px;
    height: 245px;
    object-fit: contain;
    margin: 0 auto 6px;
  }
  
  .summary-card h2,
  .summary-card h3 {
    text-align: center;
    color: #111;
  }
  
  .summary-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
  }
  
  .rating {
    text-align: center;
    margin: 0 0 18px;
    color: #168320;
    font-size: 14px;
    font-weight: 700;
  }
  
  .rating span {
    background: #11a332;
    color: #fff;
    border-radius: 2px;
    padding: 2px 4px;
  }
  
  .price-lines {
    padding-bottom: 7px;
    border-bottom: 1px solid #9b9b9b;
  }
  
  .price-lines div,
  .today-row,
  .detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.35;
  }
  
  .price-lines strong {
    color: #111;
  }
  
  .strike {
    color: #2e3046;
    text-decoration: line-through;
    text-decoration-color: #e61c20;
    font-weight: 800;
  }
  
  .green,
  .coupon-percent {
    color: #15b400;
    font-weight: 800;
  }
  
  .today-row {
    margin: 7px 0 12px;
    color: #1b1b1b;
    font-size: 20px;
  }
  
  .today-row strong:last-child {
    color: #35384f;
  }
  
  .detail-row {
    color: #5b5e73;
    font-size: 15px;
  }
  
  .vip-bump {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 12px 0 18px;
    padding: 22px 14px 16px;
    border: 2px solid #3d3d3d;
    border-radius: 8px;
    background: #fff5d8;
    box-shadow: 0 0 0 10px #ffe9a9;
    font-size: 14px;
    font-weight: 700;
    -webkit-animation: floatOrderBump 1.8s ease-in-out infinite;
    animation: floatOrderBump 1.8s ease-in-out infinite;
  }
  
  .vip-bump input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }
  
  .bump-label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #ff9f00;
    color: #fff;
    border-radius: 3px;
    padding: 3px 9px;
    font-size: 11px;
    text-transform: uppercase;
  }
  
  @-webkit-keyframes floatOrderBump {
  
    0%,
    100% {
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      transform: translateY(0px);
      box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7);
    }
  
    50% {
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      transform: translateY(-5px);
      box-shadow: 0 0 0 12px rgba(255, 153, 0, 0);
    }
  }
  
  @keyframes floatOrderBump {
  
    0%,
    100% {
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      transform: translateY(0px);
      box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7);
    }
  
    50% {
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      transform: translateY(-5px);
      box-shadow: 0 0 0 12px rgba(255, 153, 0, 0);
    }
  }
  
  .terms {
    margin: 18px 0 8px;
    padding-top: 0;
    text-align: center;
    font-size: 12px;
    color: #777a8c;
  }
  
  .pay-now {
    width: 100%;
    min-height: 50px;
    border: 3px solid var(--blue);
    border-radius: 6px;
    background: var(--yellow);
    color: #050505;
    font-size: 25px;
    font-weight: 900;
    cursor: pointer;
  }
  
  .trust-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 12px 0 18px;
    color: #050505;
    font-size: 14px;
    line-height: 3.2;
  }
  
  .trust-row span:before {
    content: "✓";
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-right: 5px;
    border: 3px solid #050505;
    border-radius: 50%;
    vertical-align: -5px;
    font-size: 22px;
    font-weight: 900;
    line-height: 16px;
    text-align: center;
  }
  
  .safe-discreet-image {
    width: min(100%, 390px);
    height: auto;
    margin: 12px auto 18px;
  }
  
  .security-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 14px 0 16px;
  }
  
  .security-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  
  .digicert-container,
  .digicert-seal {
    display: block;
    line-height: 1;
  }
  
  .digicert-seal img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 112px;
    margin: 0 auto;
    cursor: pointer;
  }
  
  .bbb-anchor {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    height: 50px;
  }
  
  .bbb-anchor img {
    width: auto;
    height: 50px;
  }
  
  .trusted-site-logo {
    width: 90px;
    height: 37px;
    display: inline-block;
    background-image: url("security-logos/trusted-site-212.svg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  
  .choice-copy {
    text-align: center;
    color: #111;
    font-size: 16px;
    line-height: 1.35;
    margin: 17px 0 0;
  }
  
  .choice-copy strong {
    color: #0092c9;
  }
  
  .mobile-footer-choice {
    display: none;
    max-width: 1010px;
    margin: 0 auto;
    padding: 16px 20px;
    background: #fff;
  }
  
  .guarantee-card {
    margin-top: 16px;
    overflow: hidden;
  }
  
  .normal-guarantee-image {
    width: 100%;
    height: auto;
  }
  
  .guarantee-head {
    display: flex;
    align-items: center;
    gap: 22px;
    background: linear-gradient(135deg, #ea8d66, var(--accent));
    padding: 22px 28px;
    color: #fff;
  }
  
  .guarantee-head img {
    width: 116px;
    flex: 0 0 auto;
  }
  
  .guarantee-head strong {
    display: block;
    font-size: 40px;
    line-height: 1;
  }
  
  .guarantee-head span {
    font-size: 32px;
    line-height: 1.08;
  }
  
  .guarantee-body {
    padding: 24px 24px 26px;
    color: #222;
  }
  
  .guarantee-body h2 {
    margin: 0 0 12px;
    color: #050505;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1.12;
  }
  
  .guarantee-body .lead {
    margin: 0 0 22px;
    color: #26284f;
    text-align: center;
    font-size: 23px;
    line-height: 1.18;
    font-weight: 800;
  }
  
  .guarantee-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .guarantee-body li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    margin: 18px 0;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.15;
  }
  
  .guarantee-body li b {
    display: grid;
    place-items: center;
    width: 46px;
    height: 54px;
    border-radius: 5px;
    background: #282955;
    color: #fff;
    font-size: 33px;
  }
  
  .guarantee-body li span:before {
    content: "";
    display: inline-block;
    width: 29px;
    height: 29px;
    margin-right: 9px;
    background: radial-gradient(circle at 50% 50%, #6ee196 0 45%, #19ad55 46% 100%);
    border-radius: 50%;
    vertical-align: -6px;
  }
  
  .guarantee-close {
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 900;
  }
  
  .result-card {
    background: #fff;
    padding: 0;
    border: 0;
  }
  
  .result-card .risk-free-guarantee-image {
    width: 100%;
    height: auto;
    margin: 0;
  }
  
  .mobile-footer-guarantee {
    display: none;
    max-width: 1010px;
    margin: 0 auto;
    background: #fff;
  }
  
  .mobile-footer-guarantee .risk-free-guarantee-image,
  .mobile-footer-guarantee .normal-guarantee-image {
    width: 100%;
    height: auto;
    margin: 0;
  }
  
  .result-card img {
    width: 116px;
    margin: 0 auto -4px;
    position: relative;
    z-index: 2;
  }
  
  .result-card h2,
  .result-card h3,
  .result-card p {
    background: #fff;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .result-card h2 {
    padding-top: 18px;
    border-radius: 8px 8px 0 0;
    color: #f40000;
    text-align: center;
    font-size: 23px;
  }
  
  .result-card h3 {
    color: #000;
    text-align: center;
    font-size: 17px;
  }
  
  .result-card p {
    padding-top: 7px;
    padding-bottom: 18px;
    border-radius: 0 0 8px 8px;
    color: #111;
    font-size: 15px;
    line-height: 1.35;
  }
  
  .checkout-footer {
    margin-top: 12px;
    color: #fff;
  }
  
  .checkout-footer-main {
    width: 100%;
    background: #403f60;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }
  
  .checkout-footer-inner {
    max-width: 1010px;
    margin: 0 auto;
    padding: 18px 20px 4px;
    display: grid;
    grid-template-columns: 1.15fr .9fr 1.05fr;
    gap: 54px;
  }
  
  .checkout-footer h3 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 800;
  }
  
  .checkout-footer p {
    margin: 0 0 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 400;
  }
  
  .checkout-footer a {
    color: #fff;
    text-decoration: underline;
  }
  
  .language-line {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .globe-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
  }
  
  .globe-icon:before,
  .globe-icon:after {
    content: "";
    position: absolute;
    border-color: #fff;
  }
  
  .globe-icon:before {
    left: 3px;
    right: 3px;
    top: 7px;
    border-top: 2px solid #fff;
  }
  
  .globe-icon:after {
    top: 2px;
    bottom: 2px;
    left: 7px;
    border-left: 2px solid #fff;
  }
  
  .checkout-footer-bottom {
    width: 100%;
    background: #09091d;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 14px 20px 16px;
  }
  
  .checkout-footer-bottom p {
    margin: 0 0 7px;
    font-size: 12px;
    line-height: 1.6;
  }
  
  @media (max-width: 900px) {
    .checkout-grid {
      grid-template-columns: 1fr;
      padding: 0 10px;
    }
  
    .summary-column {
      order: -1;
    }
  
    .mobile-submit-card {
      display: block;
    }
  
    .desktop-submit-block {
      display: none;
    }
  
    .summary-card>.vip-bump {
      display: none;
    }
  
    .mobile-vip-bump {
      margin: 0 0 18px;
    }
  
    .summary-guarantee-card {
      display: none;
    }
  
    .mobile-footer-guarantee {
      display: block;
    }
  
    .summary-choice-copy {
      display: none;
    }
  
    .mobile-footer-choice {
      display: block;
    }
  
    .checkout-footer-inner {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 24px 20px 10px;
    }
  }
  
  @media (max-width: 640px) {
    .checkout-shell {
      padding-top: 0;
    }
  
    .checkout-grid {
      padding: 0;
      gap: 0;
    }
  
    .checkout-card,
    .summary-card,
    .guarantee-card {
      box-shadow: none;
      border-top: 1px solid var(--line);
    }
  
    .two-fields, .three-fields {
      grid-template-columns: 1fr;
      gap: 0;
    }
  
    .trust-row {
      flex-direction: column;
      gap: 8px;
      align-items: center;
      font-size: 16px;
    }
  
    .guarantee-head {
      padding: 18px 14px;
      gap: 12px;
    }
  
    .guarantee-head img {
      width: 84px;
    }
  
    .guarantee-head strong {
      font-size: 30px;
    }
  
    .guarantee-head span {
      font-size: 24px;
    }
  
    .guarantee-body h2 {
      font-size: 20px;
    }
  
    .guarantee-body .lead {
      font-size: 20px;
    }
  
    .guarantee-body li {
      font-size: 18px;
      grid-template-columns: 46px 1fr;
      gap: 10px;
    }
  
    .summary-product {
      height: 205px;
    }
  }
  
  /* Checkout banner and warranty placement update */
  .checkout-banner img {
    width: 100%;
    height: auto;
  }
  
  @media (max-width: 767px) {
    .checkout-banner {
      display: block;
    }
  
    .checkout-banner img {
      width: 100%;
      height: auto;
    }
  }
  
  .summary-guarantee-card {
    display: block;
    margin-top: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  
  .checkout-warranty-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .mobile-footer-guarantee {
    display: none;
  }
  
  @media (max-width: 900px) {
    .summary-guarantee-card {
      display: none;
    }
  
    .mobile-footer-guarantee {
      display: block;
      max-width: 1010px;
      margin: 0 auto;
      padding: 0 10px 16px;
      background: #fff;
    }
  }
  