
h2 {
  font-size: 1.3rem;
  /*margin: 1.25rem 0rem 0rem 0rem;*/
}

h3 {
  font-size: 1rem;
  /*margin: 1.25rem 0rem 0rem 0rem;*/
}

.container-joinflow {
  max-width: 1280px;
  margin: 20px auto;
  padding: 5px;
  background-color: white;
  display: flex;
  gap: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.left,
.right {
  padding: 10px;
  box-sizing: border-box;
}

/* Swapped proportions */
.left {
  flex: 3; /* 30% of 10 total */
  max-width: 420px;
}

.right {
  flex: 7; /* 70% of 10 total */
  max-width: 850px;
  background-color: #e8f4ff;
  padding: 5px;
  border-radius: 10px;
}

.right h2 {
  font-weight: 600;
  margin-top: 0;
  color: #000000;
}

/*Banner - left side*/

.banner-image {
  width: 390px;
  height: 80px;
}

.banner-box {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 25px;
  gap: 15px;
}

/*Signup Form*/

.join-border {
  border: 1px solid #ccc;
  padding: 20px 15px 30px 15px;
}

/*left part forms - 390px*/
.join-container {
  background: #b4b0b0;
  padding: 10px;
  border-radius: 10px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.join-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  color: #333;
  transition: background-color 0.2s ease;

}

.social-button:hover {
  background-color: #f0f0f0;
}

.social-button img {
  width: 20px;
  height: 20px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: #999;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ccc;
}

.divider::before {
  left: 0;
}
.divider::after {
  right: 0;
}

/*Email */

.password-inline-form {
  margin-top: 30px;
}

.password-inline-form form {
  display: flex;
  align-items: center;
  gap: 0;
}

.password-inline-form input[type="password"] {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
}

.password-inline-form button {
  padding: 10px 20px;
  background-color: #d9d9d9;
  color: white;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.password-inline-form button:hover {
  background-color: #bebcbc;
}

.email-wrapper {
  position: relative;
}

.email-wrapper input[type="email"] {
  width: 100%;
  padding: 10px 50px 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.email-wrapper input::placeholder {
  color: #515050f0;
}

.email-icon {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background: #d9d9d9;
  width: 60px;
  height: 99%;
  border-radius: 0 6px 6px 0;
}

.email-wrapper:hover .email-icon {
  background-color: none;
}

/*Primary member Registration Form*/

.form-wrapper {
  width: 330px;
  background-color: #fff;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 15px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  font-size: 0.875em;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

input[type="date"] {
  padding: 10px;
  border: none;
  margin-bottom: 0px;
  font-size: 1em;
  color: black;
}
.form-item--floater .form-control{
    width: 100%;
    padding: 10px;
    font-size: 0.875em;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}
input[type="date"]:focus {
  outline: none;
} /*delete focus border on date*/

.form-item--error-message {
    font-size: 12px;
    margin: 4px 0;
    color: #cc000082;
    line-height: 1.2;
}
.dob {
  width: 98%;
  padding-left: 0px;
  padding: 2px 0px 2px 6px;
  margin: 0px;
  border-radius: 6px;
  font-size: 0.875rem;
  border: 1px solid #ccc;
  background-color: #ffffff;
  color: grey;
}

.dob:active {
  border: 2px solid black;
}

.row {
  display: flex;
  gap: 10px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin: 15px 0;
}


.submit {
  margin-top: 15px;
  padding: 12px;
  background-color: #d8242a;
  color: white;
  border: none;
  width: 100%;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}
/* Toggle checkbox hidden */
input[type="checkbox"].family-toggle {
  display: none;
}

/* Add Family memeber section */
.family-section {
  display: none;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 15px;
  position: relative;
}

/* Show family section when checked */
input.family-toggle:checked ~ .family-section {
  display: block;
}

.description {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  padding: 12px 0px 0px 0px;
}

.submit-button {
  margin-top: 15px;
  padding: 12px;
  background-color: #d8242a;
  color: white;
  border: none;
  width: 100%;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

/*new toggle family*/
.toggle-link {
  color: #0056cc;
  font-weight: bold;
  cursor: pointer;
  margin: 10px 0;
  display: inline-block;
  font-size: 14px;
}

.family-form {
  margin-top: 10px;
  border: 2px solid #0056cc;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.family-form.locked {
  border-color: #ccc;
  background-color: #f9f9f9;
  box-shadow: inset 0 0 5px #ccc;
}

.done-btn,
.remove-btn {
  background-color: #d8242a;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
}

.remove-btn {
  background-color: #999;
  margin-left: 10px;
}

.add-link-container {
  margin-top: 15px;
}

.action-row {
  display: flex;
  justify-content: flex-start;
}

/*breadcrumb line*/

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.step {
  width: 30px;
  height: 30px;
  background-color: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.step.completed {
  background-color: #00539b;
  color: #fff;
}

.step.active {
  border: 2px solid #00539b;
  background-color: #fff;
  color: #00539b;
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: #ddd;
}

/*Right - Signup - Promotions section -820px*/

.promotions-section {
  background-color: #630f00de;
  padding: 5px;
  border-radius: 10px;
  color: white;
  max-width: 820px;
  margin: 10px auto 10px auto;
}

.promotions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  max-width: 800px;
  margin: auto;
  padding: 5px;
}

.main-banner {
  width: 460;
  height: 300;
  object-fit: cover;
  border-radius: 0px;
}

.side-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.side-banners img {
  width: 146px;
  height: 146px;
}

.left-promo {
  width: 461px;
  height: 302px;
}

.right-promo {
  width: 146px;
  height: 146px;
}

.hide-on-mobile-right {
  display: block;
}

/*Favorites - circles*/

.favorites-section {
  background-color: #00539b;
  padding: 20px 10px 20px 10px;
  border-radius: 10px;
  color: white;
  max-width: 800px;
  margin: auto;
}

.favorites-section h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: flex-start;
}

.logo-grid img {
  width: 53px;
  height: 53px;
  object-fit: contain;
  border-radius: 50%;
  background-color: white;
  padding: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.logo-grid img:hover {
  transform: scale(1.05);
}

.more-link {
  display: inline-block;
  margin-top: 15px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}

/*Shopping Promos*/

.promo-section {
  background-color: #f3d2e2;
  padding: 0.3rem 1rem 1.6rem 1rem;
  border-radius: 10px;
  color: white;
  max-width:800px;
  margin: 10px auto 10px auto;
}

.category {
  margin-bottom: 30px;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-card {
  width: 145px;
  height: 145px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  text-align: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.promo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-image {
  width: 100%;
  height: 100px;
  object-fit: contain;
  padding-bottom: 2.1rem;
  /*padding-left: 1rem;*/
}

.promo-text {
  font-size: 1em;
  color: #000;
  padding-top: 10px; /* Space above text */
  margin-top: -40px; /* Raise it visually above bottom */
  text-decoration: none;
  margin-left: 5px;
}

.see-more {
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
  margin-top: -15px;
  margin-bottom: 10px;
  padding-right: 4rem;
}

.see-more a {
  color: #00539b;
  text-decoration: none;
  font-weight: bold;
}

.see-more a:hover {
  text-decoration: none;
}

.promo-text:hover {
  text-decoration: none;
}

/*FAQ*/

.faq-section {
  background-color: #a1a2a7;
  padding: 0.3rem 1.6rem 1.6rem 1.6rem;
  border-radius: 10px;
  color: #000000;
  max-width: 800px;
  margin: 10px auto 10px auto;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-input {
  display: none;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9f9f9;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.faq-label::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-input:checked + .faq-label::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  font-size: 0.95rem;
  color: #333;
}

.faq-input:checked ~ .faq-content {
  display: block;
}

/*Pay(new) - Pay(new) left section - 410px*/

.pay-container {
  background: #b4b0b0;
  padding: 0.3rem;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.pay-border {
  border: 1px solid #ccc;
  padding: 0.1rem;
}

.payment-container {
  width: 350px;
  font-family: Arial, sans-serif;
  margin: auto;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
}

.card-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

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

.summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.summary-list .total {
  font-weight: bold;
  border-top: 1px solid #ccc;
  margin-top: 5px;
  padding-top: 5px;
}

.promo {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.promo input {
  flex: 1;
  padding: 5px;
}

.apply-btn {
  background-color: #0071ce;
  color: #fff;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.payment-options {
  margin-top: 15px;
}

.payment-options label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.subtext {
  font-size: 12px;
  color: #555;
  display: block;
  margin-left: 20px;
}

.breakdown {
  color: red;
}

.terms {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

.terms a {
  color: #0071ce;
  text-decoration: underline;
  display: block;
  margin-top: 4px;
}

.pay-methods {
  margin-top: 20px;
}

.method-btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

.or {
  text-align: center;
  margin: 10px 0;
  font-size: 14px;
  color: #888;
}

.pay-methods input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.card-details {
  display: flex;
  gap: 8px;
}

.card-details input {
  flex: 1;
}

.pay-btn {
  width: 100%;
  padding: 10px;
  background-color: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

/*Pay(new) - Roadside Assistance section - 1*/

.roadside-section {
  background-color: #630f00de;
  padding: 0.3rem 1.6rem 1.6rem 1.6rem;
  border-radius: 10px;
  color: #000000;
  max-width: 800px;
  margin: 0.63rem auto 0.63rem auto;
}

/*Pay(new) - Membersip Plan section - 2*/

.membersip-plan-section {
  background-color: #00539b;
  padding: 0.3rem 1.6rem 1.6rem 1.6rem;
  border-radius: 10px;
  color: #000000;
  max-width: 800px;
  margin: 0.63rem auto 0.63rem auto;
}

/*Pay(new) - Discounts & Savings section - 3*/
.discounts-section {
  background-color: #f3d2e2;
  padding: 0.3rem 1.6rem 1.6rem 1.6rem;
  border-radius: 10px;
  color: #000000;
  max-width: 800px;
  margin: 0.63rem auto 0.63rem auto;
}

/*Pay(new) - Travel & Trip Protection section - 4*/
.travel-trip-section {
  background-color: #a1a2a7;
  padding: 0.3rem 1.6rem 1.6rem 1.6rem;
  border-radius: 10px;
  color: #000000;
  max-width: 800px;
  margin: 0.63rem auto 0.63rem auto;
}

/*.side-container {
  width: 820px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}*/

.section {
  margin-bottom: 40px;
}

/* SERVICE ICONS */
.services-grid h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.service-box {
  text-align: center;
  background: #f9f9f9;
  padding: 5px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: default;
}

.service-box img {
  display: block;
  margin: 0 auto 5px;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: bounceIn 0.6s ease-out;
}

.service-box:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.2);
}

.service-box p {
  font-size: 14px;
  margin: 0;
}

/* MEMBERSHIP PLANS */
.membership h2 {
  margin-bottom: 20px;
}

.plan-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.plan-card {
  width: 180px;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  background: #fafafa;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.plan-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plan-card.active {
  border: 2px solid red;
  background: #fff;
  transform: scale(1.07);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.plan-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* DISCOUNTS */
.discounts-flex h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.discounts-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.discount-box {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.discount-box img {
  width: 48px;
  height: 48px;
  margin-right: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: bounceIn 0.6s ease-out;
}

.discount-box:hover img {
  transform: scale(1.15) rotate(-5deg);
  filter: brightness(1.2);
}

.discount-box p {
  margin: 0;
  font-size: 14px;
}

/* TRAVEL PROTECTION */
.protection-fixed h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.protection-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.trip-box {
  width: calc(33.333% - 13.33px); /* 3 boxes per row with spacing */
  background: #f9f9f9;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.trip-box img {
  display: block;
  margin: 0 auto 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: bounceIn 0.6s ease-out;
}

.trip-box:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.2);
}

.trip-box p {
  font-size: 14px;
  margin: 0;
}

/* ICON ENTRY ANIMATION */
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Reset styles */
.plan-grid input[type="radio"] {
  display: none;
}

/* Default card style */
.plan-card {
  width: 180px;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  background: #fafafa;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.plan-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Active style when input is checked */
input[type="radio"]:checked + .plan-card {
  border: 2px solid red;
  background: #fff;
  transform: scale(1.07);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

/*Responsive Design - Shopping Promo squares*/

@media (max-width: 768px) {
  .promo-card {
    width: calc(33.33% - 10px);
  }
}

@media (max-width: 480px) {
  .promo-card {
    width: calc(50% - 10px);
  }
}

/*Responsive Design - Top Promos*/
@media (max-width: 768px) {
  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .side-banners {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: auto;
  }

  .left-promo {
    margin: auto;
  }

  .hide-on-mobile-right {
    display: none;
  }

  .main-banner {
    width: 358;
    height: 179;
    object-fit: cover;
    border-radius: 0px;
  }
}

@media (max-width: 480px) {
  .side-banners img {
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: auto;
    padding: 5px;
  }
}

/* Mobile Favorites - Hide circles 19-36 on mobile */

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }

  .logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    justify-items: center;
  }
}

@media (max-width: 400px) {
  .container-joinflow {
    flex-direction: column;
  }

  .left {
    width: 400px;
    padding-left: 0px;
  }

  .right {
    width: 400px;
    margin-top: 20px;
  }

  .banner-image {
    margin-left: auto;
  }
  /*.left {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
  }*/
}

.password-confirm, .password-field, .password-strength, .password-confirm-match {
    width: 100%!important;
}
.add-btn
{
    border: 0px!important;
    color: #0056cc!important;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0;
    display: inline-block;
    font-size: 14px!important;
    background: white!important;
}

.add-btn:hover,
.add-btn:focus {
  border: 0 !important;
  color: #0056cc !important;
  font-weight: bold;
  background: white !important;
  text-decoration: underline; /* Optional: shows hover effect */
}


/* Success page */
.checkout-success h1 {
  margin: 0 0 15px;
  font-weight: 600;
}

.checkout-success .checkout-complete__details {
  margin: 0 0 20px;
  padding: 20px 24px;
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  line-height: 1.4;
}

.checkout-success h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.checkout-success h3 {
  font-size: 1rem;
  margin: 6px 0;
  font-weight: 500;
}

/* Red brand color for inline icons/text fragments on the success page */
.checkout-success .new-checkout-icons {
  color: #d8242a;
}




/* Success page: fixed size login button (override any global .submit-button rules) */
.checkout-success a.submit-button,
.checkout-success a.submit-button:link,
.checkout-success a.submit-button:visited {
  width: 115px !important;
  height: 54px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 16px !important;
  padding: 0 !important; /* fixed height handles vertical */
  background-color: #d8242a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.08);
}
.checkout-success a.submit-button:hover,
.checkout-success a.submit-button:focus,
.checkout-success a.submit-button:active {
  background-color: #c52127 !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.12);
}


/* Success page: align icons and sentence starts */
.checkout-success .checkout-complete__details h2,
.checkout-success .checkout-complete__details h3 {
  display: flex;
  align-items: center; /* vertically center icon with text */
  column-gap: 8px;
  margin: 8px 0;
}
.checkout-success .checkout-complete__details h2 > span:first-child,
.checkout-success .checkout-complete__details h3 > span:first-child {
  width: 22px; 
  display: inline-flex;
  justify-content: center;
}
/* Normalize icon size/line-height so they sit evenly */
.checkout-success .checkout-complete__details i {
  font-size: 18px;
  line-height: 1;
}

/* Ensure success page sentences wrap as a single block next to the icon */
.checkout-success .checkout-complete__details .line-text {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  white-space: normal;
}

/* Tweak typography on small screens */
@media (max-width: 600px) {
  .checkout-success h2 { font-size: 1.25rem; }
  .checkout-success h3 { font-size: 0.95rem; }
  .checkout-success .checkout-complete__details i { font-size: 16px; }
}

