/* Estilos del checkout personalizado: estructura, pasos, formularios, mensajes y sidebar. */
.checkoutseinto {
  margin: 0 auto;
  padding: 0px;
  font-family: 'Montserrat', sans-serif;
  color: #222;
}



.checkoutseinto .page-content,
.checkoutseinto .block-category,
.checkoutseinto .card,
.checkoutseinto .block {
  background: transparent;
  box-shadow: none;
}

.checkoutseinto-steps {
  display: none;
}

.checkoutseinto-page-intro {
  margin: 0 0 24px;
  padding: 4px 0 0;
}

.checkoutseinto-page-intro h1 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  text-align: left;
}

.checkoutseinto-page-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #5f6b76;
  text-align: left;
}

.checkoutseinto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 24px;
  align-items: start;
}

.checkoutseinto__main,
.checkoutseinto__sidebar {
  min-width: 0;
}

.checkoutseinto__sidebar.is-sticky {
  position: sticky;
  top: 20px;
  align-self: start;
}

.checkoutseinto-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkoutseinto-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  padding: 18px 18px 16px;
  margin-bottom: 16px;
  box-shadow: none;
  border-radius: 10px;
}

.checkoutseinto-card--submit {
  padding-top: 18px;
}

.checkoutseinto-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.checkoutseinto-card__header h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
  color: #1d1d1d;
}

.checkoutseinto-alert {
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
}

.checkoutseinto-alert--error {
  background: #fff4f4;
  border: 1px solid #efc6c6;
  color: #9f1d1d;
}

.checkoutseinto-inline-message {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.checkoutseinto-inline-message--error {
  background: #fff3f3;
  border: 1px solid #ffb8b8;
  color: #d91f26;
}

.checkoutseinto-inline-message--success {
  background: #effaf2;
  border: 1px solid #b8e0c2;
  color: #0d7a32;
}

#checkoutseinto-customer .checkoutseinto-card__header h2,
#checkoutseinto-address .checkoutseinto-card__header h2,
#checkoutseinto-carriers .checkoutseinto-card__header h2,
#checkoutseinto-payments .checkoutseinto-card__header h2,
#checkoutseinto-cart .checkoutseinto-card__header h2,
#checkoutseinto-summary .checkoutseinto-card__header h2,
#checkoutseinto-legals .checkoutseinto-card__header h2 {
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
  text-transform: none;
}

#checkoutseinto-address h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

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

.checkoutseinto-form-grid .full {
  grid-column: 1 / -1;
}

.checkoutseinto-form-grid > div,
#customer_password_wrap,
.checkoutseinto-checkbox {
  position: relative;
}

.checkoutseinto-form-grid label,
#customer_password_wrap label,
.checkoutseinto-checkbox label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: black;
  text-align: left;
}

.checkoutseinto-form-grid input,
.checkoutseinto-form-grid select,
.checkoutseinto-form-grid textarea,
.checkoutseinto-discount input,
#customer_password_wrap input {
  width: 100%;
  height: 32px;
  border: 1px solid #d8dee6;
  box-sizing: border-box;
  font-size: 15px;
  background: #fff;
  border-radius: 11px;
  padding: 25px 16px;
  color: #222;
  box-shadow: none;
  outline: none;
}

.checkoutseinto-form-grid input:focus,
.checkoutseinto-form-grid select:focus,
.checkoutseinto-form-grid textarea:focus,
.checkoutseinto-discount input:focus,
#customer_password_wrap input:focus {
  border-color: #8bbf4d;
}

.checkoutseinto-form-grid input.is-invalid,
.checkoutseinto-form-grid select.is-invalid,
.checkoutseinto-form-grid textarea.is-invalid,
#customer_password_wrap input.is-invalid,
.checkoutseinto-checkbox input.is-invalid {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, .08);
}

.checkoutseinto-field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #d91f26;
  font-size: 13px;
  line-height: 1.4;
}

.checkoutseinto-field-error__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d91f26;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}

.checkoutseinto-checkbox {
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkoutseinto-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  color: #2f2f2f;
}

.checkoutseinto-checkbox input[type="checkbox"],
.checkoutseinto-option input[type="radio"] {
  margin-top: 2px;
  accent-color: #43a047;
}

.checkoutseinto-actions,
.checkoutseinto-line__actions,
.checkoutseinto-discount__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.checkoutseinto-btn,
.checkoutseinto .btn,
.checkoutseinto button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s ease;
  box-shadow: none;
	    border-radius: 10px;
}

.checkoutseinto-form-grid select {
  width: 100%;
  height: 52px;
  padding: 8px 12px;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  background: #eef4ff;
  font-size: 14px;
  color: #1f1f1f;
  outline: none;
}

.checkoutseinto-btn:hover,
.checkoutseinto .btn:hover,
.checkoutseinto button.btn:hover {
  opacity: .92;
}

.checkoutseinto-btn--primary,
.checkoutseinto .btn-primary {
  background: #02794b;
  color: #fff;
	    border-radius: 10px;
}

.checkoutseinto .btn-outline-secondary,
.checkoutseinto .btn-outline-danger,
.checkoutseinto .btn-outline-primary {
  background: #222;
  color: #fff;
  border: 0;
}

.checkoutseinto__submit {
  width: 100%;
  min-height: 42px;
  font-size: 13px;
  font-weight: 700;
  background: #02794b;
  color: #fff;
}

.checkoutseinto-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.checkoutseinto-line:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.checkoutseinto-line__image img {
  width: 72px;
  height: auto;
  display: block;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.checkoutseinto-line__content h3 {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  color: #1f1f1f;
}

.checkoutseinto-line__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
  font-size: 11px;
  color: #444;
}

.checkoutseinto-line__prices strong {
  font-size: 12px;
  color: #111;
}

.checkoutseinto-line__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.checkoutseinto-line__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d8dee6;
  border-radius: 10px;
  background: #fff;
  color: #7f2525;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  flex: 0 0 auto;
}

.checkoutseinto-line__remove:hover {
  background: #fff4f4;
  border-color: #e2b2b2;
  color: #b3261e;
}

.checkoutseinto-social-login {
  margin-top: 18px;
}

.checkoutseinto-social-login__separator {
  position: relative;
  margin-bottom: 14px;
  text-align: center;
}

.checkoutseinto-social-login__separator::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #e5e5e5;
}

.checkoutseinto-social-login__separator span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  background: #fff;
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 600;
}

.checkoutseinto-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #d8dee6;
  border-radius: 12px;
  background: #fff;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.checkoutseinto-google-btn:hover {
  border-color: #c4ccd6;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
  color: #1f1f1f;
  text-decoration: none;
  transform: translateY(-1px);
}

.checkoutseinto-google-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.checkoutseinto-google-btn__text {
  line-height: 1;
}

.js-checkoutseinto-qty {
  width: 62px !important;
  height: 32px;
  padding: 4px 8px;
  border: 1px solid #cfcfcf;
}

.checkoutseinto-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 14px 12px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s ease, background .2s ease;
}

.checkoutseinto-option:hover {
  border-color: #bdbdbd;
}

.checkoutseinto-option input {
  flex: 0 0 auto;
}

.checkoutseinto-option > div {
  flex: 1 1 auto;
  min-width: 0;
}

.checkoutseinto-option strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-align: left;
}

.checkoutseinto-option p {

  text-align: left;
}

.checkoutseinto-option .muted {
  margin-top: 2px;
  font-size: 14px;
  color: #7b7b7b;
   text-align: left;
}

.checkoutseinto-option .price {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
   text-align: left;
}

.payment-option img {
  display: inline-block;
  max-height: 22px;
  max-width: 64px;
  margin-top: 6px;
}

.checkoutseinto-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #2c2c2c;
}

.checkoutseinto-summary .summary-row strong {
  font-size: 12px;
  color: #111;
}

.checkoutseinto-summary .summary-row.total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #dcdcdc;
  font-size: 14px;
  font-weight: 700;
}

.checkoutseinto-summary .summary-row.total strong {
  font-size: 22px;
  font-weight: 700;
}

.checkoutseinto-discount {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
}

.checkoutseinto-discount h3,
.checkoutseinto-discount strong {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.checkoutseinto-terms-note {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: #5c5c5c;
}

.checkoutseinto-terms-note a,
.checkoutseinto-checkbox a {
  color: #222;
  text-decoration: underline;
}

.checkoutseinto-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,.82);
}

.checkoutseinto-loader.hidden,
.hidden {
  display: none !important;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #d8d8d8;
  border-top-color: #02794b;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.muted {
  color: #7d7d7d;
  font-size: 11px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .checkoutseinto__grid {
    grid-template-columns: 1fr;
  }

  .checkoutseinto__sidebar.is-sticky {
    position: static;
    top: auto;
  }
}

@media (max-width: 767px) {
  .checkoutseinto {
    padding: 16px 12px 32px;
  }

  .checkoutseinto-page-intro {
    margin-bottom: 18px;
  }

  .checkoutseinto-page-intro h1 {
    font-size: 28px;
  }

  .checkoutseinto-page-intro p {
    font-size: 14px;
  }

  .checkoutseinto-form-grid {
    grid-template-columns: 1fr;
  }

  .checkoutseinto-line {
    grid-template-columns: 1fr;
  }

  .checkoutseinto-line__image img {
    width: 100px;
  }

  .checkoutseinto-card {
    padding: 14px;
  }

  .checkoutseinto__submit {
    width: 100%;
  }
}

.checkout-step {
  background: #fff;
  border: 1px solid #e3e3e3;
  margin-bottom: 18px;
  border-radius: 10px;
}

.checkout-step__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid #ececec;
	    border-radius: 10px;
}

.checkout-step__header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1f1f1f;
}

.checkout-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #02794b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.checkout-step__body {
  padding: 18px;
}

.checkout-step:not(.is-active) .checkout-step__body {
  display: none;
}

.checkout-step.is-locked .checkout-step__body {
  display: none;
}

.checkout-step.is-locked .checkout-step__header {
  opacity: .55;
  cursor: not-allowed;
}

.checkout-step.is-active {
  border-color: #02794b;
  border-radius: 10px;
}

.checkout-step.is-done .checkout-step__number {
  background: #222;
}

.checkout-step__actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.checkout-step.is-locked .checkout-step__number {
  background: #bdbdbd;
}

#checkoutseinto-finalize:disabled {
  opacity: .5;
  pointer-events: none;
}


.checkout-step {
  background: #fff;
  border: 1px solid #e3e3e3;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
}

.checkout-step__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid #ececec;
}

.checkout-step__header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1f1f1f;
}

.checkout-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #02794b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.checkout-step__body {
  padding: 18px;
}

.checkout-step:not(.is-active) .checkout-step__body {
  display: none;
}

.checkout-step.is-locked .checkout-step__body {
  display: none;
}

.checkout-step.is-locked .checkout-step__header {
  opacity: .55;
}

.checkout-step.is-active {
  border-color: #02794b;
}

.checkout-step.is-done .checkout-step__number {
  background: #222;
}

.checkout-step__actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

#checkoutseinto-finalize:disabled {
  opacity: .5;
  pointer-events: none;
}

/* ==========================================================
   Checkout Seinto - Rediseño corporativo Desguaces Pedrós
   ========================================================== */
.checkoutseinto--pedros,
.checkoutseinto {
  --sa-pedros-primary: #bd3a2b;
  --sa-pedros-primary-dark: #962d22;
  --sa-pedros-primary-soft: #fbf1f0;
  --sa-pedros-accent: #111111;
  --sa-pedros-accent-dark: #000000;
  --sa-pedros-text: #171717;
  --sa-pedros-muted: #667085;
  --sa-pedros-border: #e5e7eb;
  --sa-pedros-surface: #ffffff;
  --sa-pedros-bg: #f7f7f8;
  --sa-price-slider-color: #bd3a2b;
  --pedros-primary: #bd3a2b;
  --pedros-primary-hover: #962d22;
  --pedros-primary-soft: #fbf1f0;
  --pedros-accent: #111111;
  --pedros-accent-hover: #000000;
  --pedros-bg: #f7f7f8;
  --pedros-surface: #ffffff;
  --pedros-text: #171717;
  --pedros-text-muted: #667085;
  --pedros-border: #e5e7eb;
  --sale-badge-background: #bd3a2b;

  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 48px;
  padding: 22px 0 0;
  color: var(--pedros-text);
  font-family: inherit;
}

body:has(.checkoutseinto--pedros) {
  background: var(--pedros-bg);
}

.checkoutseinto--pedros * {
  box-sizing: border-box;
}

.checkoutseinto--pedros .checkoutseinto-page-intro {
  margin: 0 0 24px;
}

.checkoutseinto--pedros .checkoutseinto-page-intro h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  color: var(--pedros-accent);
  letter-spacing: -.03em;
}

.checkoutseinto--pedros .checkoutseinto-page-intro p {
  margin-top: 8px;
  color: var(--pedros-text-muted);
  font-size: 15px;
}

.checkoutseinto-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 32px;
  padding: 0 12px;
}

.checkoutseinto-progress::before {
  content: '';
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 21px;
  height: 2px;
  background: var(--pedros-border);
}

.checkoutseinto-progress__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--pedros-text-muted);
  text-align: center;
}

.checkoutseinto-progress__item::before {
  content: '';
  position: absolute;
  top: 21px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: var(--pedros-primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s ease;
}

.checkoutseinto-progress__item:first-child::before {
  display: none;
}

.checkoutseinto-progress__item.is-done::before,
.checkoutseinto-progress__item.is-active::before {
  transform: scaleX(1);
}

.checkoutseinto-progress__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--pedros-border);
  border-radius: 50%;
  background: var(--pedros-surface);
  color: #9ca3af;
  box-shadow: 0 0 0 6px var(--pedros-bg);
  transition: all .2s ease;
}

.checkoutseinto-progress__item.is-active .checkoutseinto-progress__icon,
.checkoutseinto-progress__item.is-done .checkoutseinto-progress__icon {
  border-color: var(--pedros-primary);
  background: var(--pedros-primary);
  color: #fff;
}

.checkoutseinto-progress__item.is-active .checkoutseinto-progress__icon {
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--pedros-primary-soft);
}

.checkoutseinto-progress__label {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  color: inherit;
}

.checkoutseinto-progress__item.is-active .checkoutseinto-progress__label,
.checkoutseinto-progress__item.is-done .checkoutseinto-progress__label {
  color: var(--pedros-accent);
}

.checkoutseinto--pedros .checkoutseinto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: 22px;
  align-items: start;
}

.checkoutseinto--pedros .checkoutseinto__sidebar.is-sticky {
  top: 18px;
}

.checkoutseinto--pedros .checkout-step,
.checkoutseinto--pedros .checkoutseinto-card {
  overflow: hidden;
  margin-bottom: 18px;
  padding: 0;
  background: var(--pedros-surface);
  border: 1px solid var(--pedros-border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, .055);
}

.checkoutseinto--pedros .checkout-step.is-active {
  border-color: rgba(189, 58, 43, .36);
  box-shadow: 0 18px 46px rgba(189, 58, 43, .10);
}

.checkoutseinto--pedros .checkout-step.is-done {
  border-color: #dedede;
}

.checkoutseinto--pedros .checkout-step.is-locked {
  opacity: .72;
}

.checkoutseinto--pedros .checkout-step__header {
  padding: 18px 20px;
  gap: 12px;
  border-bottom: 1px solid var(--pedros-border);
  background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
}

.checkoutseinto--pedros .checkout-step__header h2,
.checkoutseinto--pedros .checkoutseinto-card__header h2,
.checkoutseinto--pedros #checkoutseinto-customer .checkoutseinto-card__header h2,
.checkoutseinto--pedros #checkoutseinto-address .checkoutseinto-card__header h2,
.checkoutseinto--pedros #checkoutseinto-carriers .checkoutseinto-card__header h2,
.checkoutseinto--pedros #checkoutseinto-payments .checkoutseinto-card__header h2,
.checkoutseinto--pedros #checkoutseinto-cart .checkoutseinto-card__header h2,
.checkoutseinto--pedros #checkoutseinto-summary .checkoutseinto-card__header h2,
.checkoutseinto--pedros #checkoutseinto-legals .checkoutseinto-card__header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--pedros-accent);
}

.checkoutseinto--pedros .checkout-step__number {
  width: 34px;
  height: 34px;
  background: var(--pedros-primary);
  color: #fff;
  box-shadow: 0 0 0 5px var(--pedros-primary-soft);
}

.checkoutseinto--pedros .checkout-step.is-done .checkout-step__number {
  background: var(--pedros-accent);
  box-shadow: 0 0 0 5px #f1f1f1;
}

.checkoutseinto--pedros .checkout-step.is-locked .checkout-step__number {
  background: #c9c9c9;
  box-shadow: 0 0 0 5px #f0f0f0;
}

.checkoutseinto--pedros .checkout-step__body,
.checkoutseinto--pedros .checkoutseinto-card:not(.checkoutseinto-card--submit) {
  padding: 20px;
}

.checkoutseinto--pedros .checkout-step__body > .checkoutseinto-card {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.checkoutseinto--pedros .checkoutseinto-card__header {
  margin: 0 0 16px;
  padding: 0;
}

.checkoutseinto--pedros #checkoutseinto-address h3 {
  margin: 20px 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--pedros-accent);
}

.checkoutseinto--pedros #checkoutseinto-address h3:first-of-type {
  margin-top: 0;
}

.checkoutseinto--pedros .checkoutseinto-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.checkoutseinto--pedros .checkoutseinto-form-grid label,
.checkoutseinto--pedros #customer_password_wrap label,
.checkoutseinto--pedros .checkoutseinto-checkbox label {
  color: var(--pedros-accent);
  font-size: 13px;
  font-weight: 700;
}

.checkoutseinto--pedros .checkoutseinto-form-grid input,
.checkoutseinto--pedros .checkoutseinto-form-grid select,
.checkoutseinto--pedros .checkoutseinto-form-grid textarea,
.checkoutseinto--pedros .checkoutseinto-discount input,
.checkoutseinto--pedros #customer_password_wrap input {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: var(--pedros-text);
  font-size: 14px;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.checkoutseinto--pedros .checkoutseinto-form-grid textarea {
  height: auto;
  min-height: 96px;
  padding-top: 12px;
}

.checkoutseinto--pedros .checkoutseinto-form-grid select {
  cursor: pointer;
  appearance: auto;
}

.checkoutseinto--pedros .checkoutseinto-form-grid input:focus,
.checkoutseinto--pedros .checkoutseinto-form-grid select:focus,
.checkoutseinto--pedros .checkoutseinto-form-grid textarea:focus,
.checkoutseinto--pedros .checkoutseinto-discount input:focus,
.checkoutseinto--pedros #customer_password_wrap input:focus {
  border-color: var(--pedros-primary);
  box-shadow: 0 0 0 3px rgba(189, 58, 43, .12);
  outline: none;
}

.checkoutseinto--pedros .checkoutseinto-checkbox {
  margin: 16px 0;
}

.checkoutseinto--pedros .checkoutseinto-checkbox label {
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.checkoutseinto--pedros input[type="checkbox"],
.checkoutseinto--pedros input[type="radio"] {
  accent-color: var(--pedros-primary);
}

.checkoutseinto--pedros .checkoutseinto-btn,
.checkoutseinto--pedros .btn,
.checkoutseinto--pedros button.btn {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.checkoutseinto--pedros .checkoutseinto-btn:hover,
.checkoutseinto--pedros .btn:hover,
.checkoutseinto--pedros button.btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.checkoutseinto--pedros .checkoutseinto-btn--primary,
.checkoutseinto--pedros .btn-primary,
.checkoutseinto--pedros .checkoutseinto__submit {
  background: var(--pedros-primary) !important;
  border-color: var(--pedros-primary) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(189, 58, 43, .18);
}

.checkoutseinto--pedros .checkoutseinto-btn--primary:hover,
.checkoutseinto--pedros .btn-primary:hover,
.checkoutseinto--pedros .checkoutseinto__submit:hover {
  background: var(--pedros-primary-hover) !important;
  border-color: var(--pedros-primary-hover) !important;
}

.checkoutseinto--pedros .checkoutseinto-btn--secondary,
.checkoutseinto--pedros .btn-outline-secondary,
.checkoutseinto--pedros .btn-outline-danger,
.checkoutseinto--pedros .btn-outline-primary,
.checkoutseinto--pedros .checkoutseinto-btn:not(.checkoutseinto-btn--primary) {
  background: #fff !important;
  color: var(--pedros-accent) !important;
  border-color: var(--pedros-border) !important;
  box-shadow: none;
}

.checkoutseinto--pedros .checkoutseinto-btn--secondary:hover,
.checkoutseinto--pedros .btn-outline-secondary:hover,
.checkoutseinto--pedros .btn-outline-danger:hover,
.checkoutseinto--pedros .btn-outline-primary:hover,
.checkoutseinto--pedros .checkoutseinto-btn:not(.checkoutseinto-btn--primary):hover {
  border-color: var(--pedros-primary) !important;
  color: var(--pedros-primary) !important;
  background: var(--pedros-primary-soft) !important;
}

.checkoutseinto--pedros .checkout-step__actions,
.checkoutseinto--pedros .checkoutseinto-actions,
.checkoutseinto--pedros .checkoutseinto-line__actions,
.checkoutseinto--pedros .checkoutseinto-discount__form {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.checkoutseinto--pedros .checkout-step__actions .checkoutseinto-btn--primary {
  min-width: 230px;
}

.checkoutseinto--pedros .checkoutseinto-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--pedros-border);
  border-bottom-width: 0;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.checkoutseinto--pedros .checkoutseinto-option:first-child {
  border-radius: 8px 8px 0 0;
}

.checkoutseinto--pedros .checkoutseinto-option:last-child {
  border-bottom-width: 1px;
  border-radius: 0 0 8px 8px;
}

.checkoutseinto--pedros .checkoutseinto-option:hover,
.checkoutseinto--pedros .checkoutseinto-option:has(input:checked) {
  background: var(--pedros-primary-soft);
  border-color: rgba(189, 58, 43, .32);
  box-shadow: inset 3px 0 0 var(--pedros-primary);
}

.checkoutseinto--pedros .checkoutseinto-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.checkoutseinto--pedros .checkoutseinto-option strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--pedros-accent);
}

.checkoutseinto--pedros .checkoutseinto-option .muted {
  margin-top: 3px;
  color: var(--pedros-text-muted);
  font-size: 13px;
}

.checkoutseinto--pedros .checkoutseinto-option .price {
  justify-self: end;
  margin: 0;
  font-size: 14px;
  color: var(--pedros-accent);
  font-weight: 900;
}

.checkoutseinto--pedros .payment-option img {
  max-height: 30px;
  max-width: 110px;
  object-fit: contain;
}

.checkoutseinto--pedros #checkoutseinto-cart,
.checkoutseinto--pedros #checkoutseinto-summary,
.checkoutseinto--pedros #checkoutseinto-legals,
.checkoutseinto--pedros .checkoutseinto-card--submit {
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(17, 17, 17, .05);
}

.checkoutseinto--pedros .checkoutseinto-line {
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-color: var(--pedros-border);
}

.checkoutseinto--pedros .checkoutseinto-line__image img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--pedros-border);
  border-radius: 8px;
  background: #fff;
}

.checkoutseinto--pedros .checkoutseinto-line__content h3 {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--pedros-accent);
}

.checkoutseinto--pedros .checkoutseinto-line__remove {
  width: 30px;
  height: 30px;
  border: 0;
  color: var(--pedros-primary);
  background: transparent;
}

.checkoutseinto--pedros .checkoutseinto-line__remove:hover {
  background: var(--pedros-primary-soft);
  color: var(--pedros-primary-hover);
}

.checkoutseinto--pedros .muted,
.checkoutseinto--pedros .checkoutseinto-line__prices {
  color: var(--pedros-text-muted);
  font-size: 12px;
}

.checkoutseinto--pedros .checkoutseinto-summary .summary-row {
  margin-bottom: 11px;
  font-size: 13px;
  color: var(--pedros-text-muted);
}

.checkoutseinto--pedros .checkoutseinto-summary .summary-row strong {
  color: var(--pedros-accent);
  font-weight: 800;
}

.checkoutseinto--pedros .checkoutseinto-summary .summary-row.total {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--pedros-border);
  color: var(--pedros-accent);
  font-size: 15px;
}

.checkoutseinto--pedros .checkoutseinto-summary .summary-row.total strong {
  font-size: 24px;
  color: var(--pedros-primary);
}

.checkoutseinto--pedros .checkoutseinto-discount {
  margin-top: 18px;
  padding-top: 16px;
  border-color: var(--pedros-border);
}

.checkoutseinto--pedros .checkoutseinto-discount h3,
.checkoutseinto--pedros .checkoutseinto-discount strong {
  color: var(--pedros-accent);
  font-size: 14px;
  font-weight: 800;
}

.checkoutseinto--pedros .checkoutseinto-checkbox a,
.checkoutseinto--pedros .checkoutseinto-terms-note a {
  color: var(--pedros-primary);
  font-weight: 700;
}

.checkoutseinto--pedros .checkoutseinto-card--submit {
  padding: 18px;
}

.checkoutseinto--pedros .checkoutseinto__submit {
  width: 100%;
  min-height: 48px;
  font-size: 14px;
}

.checkoutseinto--pedros #checkoutseinto-finalize:disabled,
.checkoutseinto--pedros .checkoutseinto__submit:disabled {
  background: #e5e7eb !important;
  border-color: #e5e7eb !important;
  color: #a1a1aa !important;
  box-shadow: none;
  cursor: not-allowed;
}

.checkoutseinto--pedros .checkoutseinto-alert--error,
.checkoutseinto--pedros .checkoutseinto-inline-message--error {
  background: #fff4f2;
  border-color: #fecaca;
  color: #991b1b;
}

.checkoutseinto--pedros .checkoutseinto-inline-message--success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.checkoutseinto--pedros .checkoutseinto-field-error__icon,
.checkoutseinto--pedros .spinner {
  border-top-color: var(--pedros-primary);
}

.checkoutseinto--pedros .checkoutseinto-field-error__icon {
  background: var(--pedros-primary);
}

.checkoutseinto--pedros .checkoutseinto-form-grid input.is-invalid,
.checkoutseinto--pedros .checkoutseinto-form-grid select.is-invalid,
.checkoutseinto--pedros .checkoutseinto-form-grid textarea.is-invalid,
.checkoutseinto--pedros #customer_password_wrap input.is-invalid,
.checkoutseinto--pedros .checkoutseinto-checkbox input.is-invalid {
  border-color: var(--pedros-primary) !important;
  box-shadow: 0 0 0 3px rgba(189, 58, 43, .14);
}

@media (max-width: 1100px) {
  .checkoutseinto--pedros,
  .checkoutseinto {
    width: min(100% - 32px, 920px);
  }

  .checkoutseinto--pedros .checkoutseinto__grid {
    grid-template-columns: 1fr;
  }

  .checkoutseinto--pedros .checkoutseinto__sidebar.is-sticky {
    position: static;
  }
}

@media (max-width: 767px) {
  .checkoutseinto--pedros,
  .checkoutseinto {
    width: 100%;
    padding: 14px 12px 30px;
    margin-bottom: 24px;
  }

  .checkoutseinto-progress {
    margin-bottom: 24px;
    padding: 0;
  }

  .checkoutseinto-progress::before {
    left: 11%;
    right: 11%;
    top: 18px;
  }

  .checkoutseinto-progress__icon {
    width: 36px;
    height: 36px;
    box-shadow: 0 0 0 4px var(--pedros-bg);
  }

  .checkoutseinto-progress__label {
    font-size: 10px;
  }

  .checkoutseinto--pedros .checkoutseinto-page-intro h1 {
    font-size: 25px;
  }

  .checkoutseinto--pedros .checkout-step__header,
  .checkoutseinto--pedros .checkout-step__body,
  .checkoutseinto--pedros .checkoutseinto-card:not(.checkoutseinto-card--submit) {
    padding: 16px;
  }

  .checkoutseinto--pedros .checkout-step__header h2,
  .checkoutseinto--pedros .checkoutseinto-card__header h2,
  .checkoutseinto--pedros #checkoutseinto-customer .checkoutseinto-card__header h2,
  .checkoutseinto--pedros #checkoutseinto-address .checkoutseinto-card__header h2,
  .checkoutseinto--pedros #checkoutseinto-carriers .checkoutseinto-card__header h2,
  .checkoutseinto--pedros #checkoutseinto-payments .checkoutseinto-card__header h2,
  .checkoutseinto--pedros #checkoutseinto-cart .checkoutseinto-card__header h2,
  .checkoutseinto--pedros #checkoutseinto-summary .checkoutseinto-card__header h2,
  .checkoutseinto--pedros #checkoutseinto-legals .checkoutseinto-card__header h2 {
    font-size: 18px;
  }

  .checkoutseinto--pedros .checkoutseinto-form-grid {
    grid-template-columns: 1fr;
  }

  .checkoutseinto--pedros .checkout-step__actions,
  .checkoutseinto--pedros .checkoutseinto-actions,
  .checkoutseinto--pedros .checkoutseinto-discount__form {
    flex-direction: column;
  }

  .checkoutseinto--pedros .checkout-step__actions .checkoutseinto-btn,
  .checkoutseinto--pedros .checkoutseinto-actions .btn,
  .checkoutseinto--pedros .checkoutseinto-discount__form .btn,
  .checkoutseinto--pedros .checkout-step__actions .checkoutseinto-btn--primary {
    width: 100%;
    min-width: 0;
  }

  .checkoutseinto--pedros .checkoutseinto-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checkoutseinto--pedros .checkoutseinto-option .price {
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
  }

  .checkoutseinto--pedros .checkoutseinto-line {
    grid-template-columns: 64px 1fr;
  }

  .checkoutseinto--pedros .checkoutseinto-line__image img {
    width: 64px;
    height: 64px;
  }
}

.checkoutseinto-customer-hidden {
  display: none !important;
}

.checkoutseinto-field-help {
  display: block;
  margin-top: 6px;
  color: var(--pedros-text-muted, #667085);
  font-size: 12px;
  line-height: 1.35;
}

/* ==========================================================
   Checkout Seinto - Layout tipo Shopify/Gymshark
   Mantiene la lógica AJAX, localStorage, pasos, carrito, cupón,
   transportistas y pagos de PrestaShop.
   ========================================================== */
body:has(.checkoutseinto--gym) {
  background: #ffffff !important;
}

body:has(.checkoutseinto--gym) #wrapper,
body:has(.checkoutseinto--gym) .page-content,
body:has(.checkoutseinto--gym) #content {
  background: #ffffff !important;
  box-shadow: none !important;
}

.checkoutseinto--gym.checkoutseinto,
.checkoutseinto--gym.checkoutseinto--pedros {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  color: #111111;
  --gym-border: #dedede;
  --gym-border-dark: #c8c8c8;
  --gym-muted: #6f6f6f;
  --gym-bg: #f5f5f5;
  --gym-black: #111111;
  --gym-focus: #111111;
}

.checkoutseinto--gym .checkoutseinto-progress {
  display: none !important;
}

.checkoutseinto--gym .checkoutseinto__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 56%) minmax(410px, 44%) !important;
  gap: 0 !important;
  align-items: stretch !important;
  min-height: 760px;
  border-top: 1px solid #e2e2e2;
}

.checkoutseinto--gym .checkoutseinto__main {
  width: min(760px, calc(100% - 80px));
  margin-left: auto;
  padding: 62px 44px 70px 0;
  min-width: 0;
}

.checkoutseinto--gym .checkoutseinto__sidebar {
  position: relative !important;
  top: auto !important;
  min-width: 0;
  background: var(--gym-bg);
  border-left: 1px solid #dddddd;
  padding: 54px 0 70px 44px;
}

.checkoutseinto--gym .checkoutseinto-sidebar-stack {
  width: min(540px, calc(100% - 64px));
  gap: 0;
  position: sticky;
  top: 24px;
}

.checkoutseinto--gym .checkoutseinto-express {
  margin: 0 0 28px;
}

.checkoutseinto--gym .checkoutseinto-express__title {
  margin: 0 0 18px;
  text-align: center;
  color: #696969;
  font-size: 16px;
  font-weight: 400;
}

.checkoutseinto--gym .checkoutseinto-express__buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkoutseinto--gym .checkoutseinto-express__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 58px;
  border: 0;
  border-radius: 28px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  transition: transform .16s ease, opacity .16s ease;
}

.checkoutseinto--gym .checkoutseinto-express__btn:hover {
  transform: translateY(-1px);
  opacity: .94;
}

.checkoutseinto--gym .checkoutseinto-express__btn--shop {
  background: #5a31f4;
  color: #fff;
  letter-spacing: -.03em;
}

.checkoutseinto--gym .checkoutseinto-express__btn--shop strong {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 5px;
  border-radius: 4px;
  background: #fff;
  color: #5a31f4;
  font-size: 16px;
}

.checkoutseinto--gym .checkoutseinto-express__btn--paypal {
  background: #ffc439;
  color: #003087;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}

.checkoutseinto--gym .checkoutseinto-express__btn--gpay {
  background: #000;
  color: #fff;
  font-weight: 500;
}

.checkoutseinto--gym .checkoutseinto-express__btn--gpay .g {
  font-weight: 800;
}

.checkoutseinto--gym .checkoutseinto-express__separator {
  position: relative;
  margin: 28px 0 0;
  text-align: center;
  color: #777;
  font-size: 13px;
}

.checkoutseinto--gym .checkoutseinto-express__separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid #e1e1e1;
}

.checkoutseinto--gym .checkoutseinto-express__separator span {
  position: relative;
  display: inline-flex;
  padding: 0 18px;
  background: #fff;
}

.checkoutseinto--gym .checkoutseinto-express__note {
  margin: 10px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.checkoutseinto--gym .checkout-step,
.checkoutseinto--gym .checkoutseinto-card,
.checkoutseinto--gym .checkout-step.is-active,
.checkoutseinto--gym #checkoutseinto-cart,
.checkoutseinto--gym #checkoutseinto-summary,
.checkoutseinto--gym #checkoutseinto-legals,
.checkoutseinto--gym .checkoutseinto-card--submit {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}

.checkoutseinto--gym .checkout-step {
  padding-bottom: 28px !important;
}

.checkoutseinto--gym .checkout-step__header,
.checkoutseinto--gym .checkoutseinto-card__header,
.checkoutseinto--gym .checkout-step__body,
.checkoutseinto--gym .checkoutseinto-card:not(.checkoutseinto-card--submit) {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.checkoutseinto--gym .checkout-step__header {
  margin: 0 0 16px;
}

.checkoutseinto--gym .checkout-step__number {
  display: none !important;
}

.checkoutseinto--gym .checkout-step__header h2,
.checkoutseinto--gym .checkoutseinto-card__header h2,
.checkoutseinto--gym #checkoutseinto-customer .checkoutseinto-card__header h2,
.checkoutseinto--gym #checkoutseinto-address .checkoutseinto-card__header h2,
.checkoutseinto--gym #checkoutseinto-carriers .checkoutseinto-card__header h2,
.checkoutseinto--gym #checkoutseinto-payments .checkoutseinto-card__header h2,
.checkoutseinto--gym #checkoutseinto-cart .checkoutseinto-card__header h2,
.checkoutseinto--gym #checkoutseinto-summary .checkoutseinto-card__header h2,
.checkoutseinto--gym #checkoutseinto-legals .checkoutseinto-card__header h2 {
  margin: 0 !important;
  font-size: 21px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
  color: #000 !important;
  text-transform: uppercase;
}

.checkoutseinto--gym .checkoutseinto-card__header--with-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 16px;
}

.checkoutseinto--gym .checkoutseinto-login-link {
  color: #111;
  font-size: 14px;
  text-decoration: underline;
}

.checkoutseinto--gym .checkoutseinto-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px 16px !important;
}

.checkoutseinto--gym .checkoutseinto-form-grid .full {
  grid-column: 1 / -1;
}

.checkoutseinto--gym .checkoutseinto-form-grid label,
.checkoutseinto--gym #customer_password_wrap label,
.checkoutseinto--gym .checkoutseinto-checkbox label {
  display: block;
  margin: 0 0 6px;
  color: #5f6368 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

.checkoutseinto--gym .checkoutseinto-form-grid input,
.checkoutseinto--gym .checkoutseinto-form-grid select,
.checkoutseinto--gym .checkoutseinto-form-grid textarea,
.checkoutseinto--gym .checkoutseinto-discount input,
.checkoutseinto--gym #customer_password_wrap input {
  width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 11px 13px !important;
  border: 1px solid #d7d7d7 !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  outline: none !important;
}

.checkoutseinto--gym .checkoutseinto-form-grid input:focus,
.checkoutseinto--gym .checkoutseinto-form-grid select:focus,
.checkoutseinto--gym .checkoutseinto-form-grid textarea:focus,
.checkoutseinto--gym .checkoutseinto-discount input:focus,
.checkoutseinto--gym #customer_password_wrap input:focus {
  border-color: #111 !important;
  box-shadow: 0 0 0 1px #111 !important;
}

.checkoutseinto--gym #checkoutseinto-address h3 {
  margin: 0 0 16px !important;
  font-size: 21px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  color: #000 !important;
}

.checkoutseinto--gym #invoice_company_wrap,
.checkoutseinto--gym #delivery_address_wrap {
  margin-top: 18px;
}

.checkoutseinto--gym .checkoutseinto-checkbox {
  margin: 16px 0 !important;
}

.checkoutseinto--gym .checkoutseinto-checkbox label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: #333 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.checkoutseinto--gym input[type="checkbox"],
.checkoutseinto--gym input[type="radio"] {
  accent-color: #111 !important;
}

.checkoutseinto--gym .checkoutseinto-actions,
.checkoutseinto--gym .checkout-step__actions {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  margin: 18px 0 0 !important;
}

.checkoutseinto--gym .checkoutseinto-btn,
.checkoutseinto--gym .btn,
.checkoutseinto--gym button.btn,
.checkoutseinto--gym .checkoutseinto__submit {
  min-height: 54px !important;
  padding: 0 28px !important;
  border: 1px solid #111 !important;
  border-radius: 5px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  box-shadow: none !important;
  text-transform: uppercase;
  transition: background .16s ease, border-color .16s ease, opacity .16s ease !important;
}

.checkoutseinto--gym .checkoutseinto-btn:hover,
.checkoutseinto--gym .btn:hover,
.checkoutseinto--gym button.btn:hover,
.checkoutseinto--gym .checkoutseinto__submit:hover {
  background: #333 !important;
  border-color: #333 !important;
  transform: none !important;
}

.checkoutseinto--gym .checkoutseinto-btn--secondary,
.checkoutseinto--gym .btn-outline-secondary,
.checkoutseinto--gym .btn-outline-danger,
.checkoutseinto--gym .btn-outline-primary,
.checkoutseinto--gym .checkoutseinto-btn:not(.checkoutseinto-btn--primary) {
  background: #fff !important;
  color: #111 !important;
  border-color: #d5d5d5 !important;
}

.checkoutseinto--gym .checkoutseinto-btn--secondary:hover,
.checkoutseinto--gym .btn-outline-secondary:hover,
.checkoutseinto--gym .btn-outline-danger:hover,
.checkoutseinto--gym .btn-outline-primary:hover,
.checkoutseinto--gym .checkoutseinto-btn:not(.checkoutseinto-btn--primary):hover {
  background: #f2f2f2 !important;
  color: #111 !important;
  border-color: #111 !important;
}

.checkoutseinto--gym .checkout-step__actions .checkoutseinto-btn--primary {
  min-width: 220px;
}

.checkoutseinto--gym .checkoutseinto-option {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 13px !important;
  align-items: flex-start !important;
  margin: 0 0 10px !important;
  padding: 16px !important;
  border: 1px solid #d7d7d7 !important;
  border-radius: 5px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.checkoutseinto--gym .checkoutseinto-option:hover,
.checkoutseinto--gym .checkoutseinto-option:has(input:checked) {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px #111 !important;
}

.checkoutseinto--gym .checkoutseinto-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.checkoutseinto--gym .checkoutseinto-option strong {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111 !important;
}

.checkoutseinto--gym .checkoutseinto-option .muted,
.checkoutseinto--gym .muted {
  color: #6f6f6f !important;
  font-size: 13px !important;
}

.checkoutseinto--gym .checkoutseinto-option .price {
  margin: 7px 0 0 !important;
  color: #111 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.checkoutseinto--gym .checkoutseinto-line {
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr) !important;
  gap: 16px !important;
  padding: 0 0 16px !important;
  margin: 0 0 16px !important;
  border-bottom: 0 !important;
}

.checkoutseinto--gym .checkoutseinto-line__image {
  position: relative;
}

.checkoutseinto--gym .checkoutseinto-line__image::after {
  content: attr(data-qty);
}

.checkoutseinto--gym .checkoutseinto-line__image img {
  width: 74px !important;
  height: 74px !important;
  object-fit: cover !important;
  padding: 0 !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 5px !important;
  background: #fff !important;
}

.checkoutseinto--gym .checkoutseinto-line__content {
  min-width: 0;
}

.checkoutseinto--gym .checkoutseinto-line__top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  gap: 10px !important;
  align-items: start !important;
}

.checkoutseinto--gym .checkoutseinto-line__content h3 {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  color: #111 !important;
}

.checkoutseinto--gym .checkoutseinto-line__price {
  color: #111;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.checkoutseinto--gym .checkoutseinto-line__remove {
  width: 28px !important;
  height: 28px !important;
  color: #777 !important;
  border: 0 !important;
  background: transparent !important;
}

.checkoutseinto--gym .checkoutseinto-discount {
  margin: 22px 0 20px !important;
  padding: 0 !important;
  border: 0 !important;
}

.checkoutseinto--gym .checkoutseinto-discount h3,
.checkoutseinto--gym .checkoutseinto-discount strong {
  display: none;
}

.checkoutseinto--gym .checkoutseinto-discount__form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 108px !important;
  gap: 12px !important;
  margin: 0 !important;
}

.checkoutseinto--gym .checkoutseinto-discount input {
  height: 58px !important;
  border-radius: 5px !important;
  background: #fff !important;
}

.checkoutseinto--gym #checkoutseinto-apply-coupon {
  min-height: 58px !important;
  padding: 0 18px !important;
  border-radius: 29px !important;
  border-color: #e1e1e1 !important;
  background: #eeeeee !important;
  color: #6d6d6d !important;
}

.checkoutseinto--gym .checkoutseinto-summary {
  margin-top: 20px !important;
}

.checkoutseinto--gym #checkoutseinto-cart .checkoutseinto-card__header,
.checkoutseinto--gym #checkoutseinto-summary .checkoutseinto-card__header {
  display: none !important;
}

.checkoutseinto--gym .checkoutseinto-summary .summary-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: 20px !important;
  margin: 0 0 14px !important;
  color: #333 !important;
  font-size: 15px !important;
}

.checkoutseinto--gym .checkoutseinto-summary .summary-row strong {
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.checkoutseinto--gym .checkoutseinto-summary .summary-row.total {
  margin: 22px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #111 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
}

.checkoutseinto--gym .checkoutseinto-summary .summary-row.total strong {
  color: #111 !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

.checkoutseinto--gym #checkoutseinto-legals {
  margin-top: 22px !important;
}

.checkoutseinto--gym .checkoutseinto-card--submit {
  margin-top: 18px !important;
}

.checkoutseinto--gym .checkoutseinto__submit {
  width: 100% !important;
}

.checkoutseinto--gym #checkoutseinto-finalize:disabled,
.checkoutseinto--gym .checkoutseinto__submit:disabled {
  background: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
  color: #999 !important;
}

@media (max-width: 1100px) {
  .checkoutseinto--gym .checkoutseinto__grid {
    grid-template-columns: 1fr !important;
  }

  .checkoutseinto--gym .checkoutseinto__main,
  .checkoutseinto--gym .checkoutseinto__sidebar {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 !important;
    border-left: 0;
  }

  .checkoutseinto--gym .checkoutseinto__sidebar {
    background: #f5f5f5;
    width: 100%;
  }

  .checkoutseinto--gym .checkoutseinto-sidebar-stack {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    position: static;
  }
}

@media (max-width: 767px) {
  .checkoutseinto--gym .checkoutseinto__main {
    width: calc(100% - 28px);
    padding-top: 24px !important;
  }

  .checkoutseinto--gym .checkoutseinto-express__buttons {
    grid-template-columns: 1fr;
  }

  .checkoutseinto--gym .checkoutseinto-form-grid {
    grid-template-columns: 1fr !important;
  }

  .checkoutseinto--gym .checkoutseinto-actions,
  .checkoutseinto--gym .checkout-step__actions,
  .checkoutseinto--gym .checkoutseinto-discount__form {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }

  .checkoutseinto--gym .checkoutseinto-actions .btn,
  .checkoutseinto--gym .checkout-step__actions .checkoutseinto-btn,
  .checkoutseinto--gym .checkout-step__actions .checkoutseinto-btn--primary {
    width: 100% !important;
    min-width: 0 !important;
  }

  .checkoutseinto--gym .checkoutseinto-line__top {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .checkoutseinto--gym .checkoutseinto-line__remove {
    grid-column: 2;
  }
}
