/* AUTUNEO Checkout V2 */

/* 01 Progress */
body#checkout .autuneo-checkout-progress {
  display: block !important;
  max-width: 820px !important;
  margin: 26px auto 28px !important;
  padding: 0 16px !important;
  overflow: visible !important;
}

body#checkout .autuneo-checkout-progress__list {
  --steps: 3;
  display: grid !important;
  grid-template-columns: repeat(var(--steps), 1fr) !important;
  position: relative !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body#checkout .autuneo-checkout-progress--guest .autuneo-checkout-progress__list {
  --steps: 4;
}

body#checkout .autuneo-checkout-progress__list::before {
  content: "";
  position: absolute;
  left: calc(50% / var(--steps));
  right: calc(50% / var(--steps));
  top: 19px;
  height: 3px;
  border-radius: 999px;
  background: #d8dee6;
  z-index: 0;
}

body#checkout .autuneo-checkout-progress__step {
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
}

body#checkout .autuneo-checkout-progress__button {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 86px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
  color: #6f747a !important;
  font-weight: 900 !important;
}

body#checkout .autuneo-checkout-progress__marker {
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px !important;
  border: 2px solid #aeb6c0 !important;
  background: #fff !important;
  color: #6f747a !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body#checkout .autuneo-checkout-progress__label {
  color: #6f747a !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

body#checkout .autuneo-checkout-progress__car {
  display: none !important;
}

body#checkout .autuneo-checkout-progress__button.active .autuneo-checkout-progress__marker,
body#checkout .autuneo-checkout-progress__step:has(.active) .autuneo-checkout-progress__marker {
  width: 48px !important;
  height: 48px !important;
  margin-top: -4px !important;
  border-color: #B81A20 !important;
  border-width: 3px !important;
  background: #B81A20 !important;
  color: transparent !important;
  box-shadow: 0 8px 18px rgba(184,26,32,.16) !important;
}

body#checkout .autuneo-checkout-progress__button.active .autuneo-checkout-progress__label,
body#checkout .autuneo-checkout-progress__step:has(.active) .autuneo-checkout-progress__label {
  color: #B81A20 !important;
  font-size: 17px !important;
}

body#checkout .checkout-steps.autuneo-checkout-progress,
body#checkout .autuneo-checkout-progress.checkout-steps {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

/* 02 Delivery V3 */
body#checkout .autuneo-delivery-v3 {
  display: grid;
  gap: 14px;
}

body#checkout .autuneo-delivery-v3__address,
body#checkout .autuneo-delivery-v3__methods,
body#checkout .autuneo-delivery-v3__comment,
body#checkout .autuneo-delivery-v3__option {
  background: #fff;
  border: 1px solid rgba(26,26,26,.10);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(16,24,32,.05);
}

body#checkout .autuneo-delivery-v3__address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
}

body#checkout .autuneo-delivery-v3__address-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

body#checkout .autuneo-delivery-v3__address-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff0f0;
  color: #B81A20;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

body#checkout .autuneo-delivery-v3__eyebrow {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

body#checkout .autuneo-delivery-v3__address-title,
body#checkout .autuneo-delivery-v3__section-head h2 {
  margin: 0;
  color: #101820;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

body#checkout .autuneo-delivery-v3__address-text {
  margin: 5px 0 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.35;
}

body#checkout .autuneo-delivery-v3__change-address {
  border: 0;
  background: transparent;
  color: #B81A20;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  padding: 6px 0;
  white-space: nowrap;
}

body#checkout .autuneo-delivery-v3__methods {
  padding: 18px;
}

body#checkout .autuneo-delivery-v3__section-head {
  margin-bottom: 14px;
}

body#checkout .autuneo-delivery-v3__list {
  display: grid;
  gap: 12px;
}

body#checkout .autuneo-delivery-v3__option {
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

body#checkout .autuneo-delivery-v3__option.is-selected {
  border-color: #B81A20;
  background: linear-gradient(180deg, rgba(184,26,32,.035), #fff 78%);
  box-shadow: 0 16px 34px rgba(184,26,32,.10);
}

body#checkout .autuneo-delivery-v3__option-label {
  display: block;
  padding: 15px 16px;
  margin: 0;
  cursor: pointer;
}

body#checkout .autuneo-delivery-v3__option-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

body#checkout .autuneo-delivery-v3__option-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body#checkout .autuneo-delivery-v3__radio input {
  width: 18px;
  height: 18px;
  accent-color: #B81A20;
}

body#checkout .autuneo-delivery-v3__carrier {
  display: grid;
  gap: 4px;
  min-width: 0;
}

body#checkout .autuneo-delivery-v3__carrier-name {
  color: #101820;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

body#checkout .autuneo-delivery-v3__carrier-delay {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

body#checkout .autuneo-delivery-v3__carrier-price {
  color: #B81A20;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

body#checkout .autuneo-delivery-v3__extra {
  display: none;
  padding: 0 16px 16px 46px;
}

body#checkout .autuneo-delivery-v3__extra[data-active] {
  display: block;
}

body#checkout .autuneo-delivery-v3__extra-content {
  padding-top: 12px;
  border-top: 1px solid rgba(26,26,26,.08);
}

body#checkout .autuneo-delivery-v3__after-carrier {
  margin-top: 12px;
}

body#checkout .autuneo-delivery-v3__order-options {
  margin-top: 12px;
}

body#checkout .autuneo-delivery-v3__comment {
  padding: 14px 16px;
}

body#checkout .autuneo-delivery-v3__comment label {
  color: #101820;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

body#checkout .autuneo-delivery-v3__comment textarea {
  min-height: 54px;
  border-radius: 12px;
  font-size: 14px;
}

body#checkout .autuneo-delivery-v3__actions {
  margin-top: 14px !important;
}


/* 02.5 Logistics panels from autuneologistics */
body#checkout #hook-display-after-carrier > .autuneo-logistics-panels {
  display: none !important;
}

body#checkout .autuneo-logistics-panel {
  display: block;
  padding-top: 12px;
}

body#checkout .autuneo-logistics-panel[hidden],
body#checkout .autuneo-pickup-hour-card[hidden] {
  display: none !important;
}

body#checkout .autuneo-logistics-panel__head {
  margin-bottom: 12px;
}

body#checkout .autuneo-logistics-panel__title {
  color: #101820;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

body#checkout .autuneo-logistics-panel__subtitle {
  color: #667085;
  font-size: 13px;
  margin-top: 3px;
}

body#checkout .autuneo-logistics-panel__question,
body#checkout .autuneo-logistics-field-label {
  display: block;
  color: #101820;
  font-size: 14px;
  font-weight: 900;
  margin: 12px 0 8px;
}

body#checkout .autuneo-logistics-date-grid,
body#checkout .autuneo-logistics-hour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

body#checkout .autuneo-logistics-option-card {
  min-height: 58px;
  border: 1px solid #d8dde5;
  border-radius: 12px;
  background: #fff;
  padding: 9px 8px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

body#checkout .autuneo-logistics-option-card input {
  display: none;
}

body#checkout .autuneo-logistics-option-card strong {
  display: block;
  color: #101820;
  font-size: 13px;
  font-weight: 900;
}

body#checkout .autuneo-logistics-option-card small {
  display: block;
  color: #667085;
  font-size: 12px;
  margin-top: 2px;
}

body#checkout .autuneo-logistics-option-card:has(input:checked) {
  background: #B81A20;
  border-color: #B81A20;
  box-shadow: 0 8px 18px rgba(184,26,32,.14);
}

body#checkout .autuneo-logistics-option-card:has(input:checked) strong,
body#checkout .autuneo-logistics-option-card:has(input:checked) small {
  color: #fff;
}

body#checkout .autuneo-logistics-select {
  height: 42px;
  border-radius: 12px;
  border: 1px solid #d8dde5;
  margin-bottom: 12px;
}

body#checkout .autuneo-logistics-note {
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 12px;
  color: #475467;
  font-size: 13px;
  padding: 10px 12px;
}

body#checkout .autuneo-logistics-alert {
  grid-column: 1 / -1;
  margin: 0;
}

/* 03 Mobile */
@media (max-width: 575px) {
  body#checkout .autuneo-checkout-progress {
    max-width: 100% !important;
    margin: 18px auto 18px !important;
    padding: 0 8px !important;
  }

  body#checkout .autuneo-checkout-progress__button {
    min-width: 64px !important;
  }

  body#checkout .autuneo-checkout-progress__marker {
    width: 32px !important;
    height: 32px !important;
    font-size: 17px !important;
  }

  body#checkout .autuneo-checkout-progress__list::before {
    top: 15px !important;
  }

  body#checkout .autuneo-checkout-progress__label {
    font-size: 12px !important;
  }

  body#checkout .autuneo-checkout-progress__button.active .autuneo-checkout-progress__marker,
  body#checkout .autuneo-checkout-progress__step:has(.active) .autuneo-checkout-progress__marker {
    width: 38px !important;
    height: 38px !important;
  }

  body#checkout .autuneo-checkout-progress__button.active .autuneo-checkout-progress__label,
  body#checkout .autuneo-checkout-progress__step:has(.active) .autuneo-checkout-progress__label {
    font-size: 13px !important;
  }

  body#checkout .autuneo-delivery-v3__address {
    align-items: flex-start;
    padding: 15px;
  }

  body#checkout .autuneo-delivery-v3__address-title,
  body#checkout .autuneo-delivery-v3__section-head h2 {
    font-size: 16px;
  }

  body#checkout .autuneo-delivery-v3__change-address {
    font-size: 13px;
  }

  body#checkout .autuneo-delivery-v3__methods {
    padding: 14px;
  }

  body#checkout .autuneo-delivery-v3__option-label {
    padding: 13px;
  }

  body#checkout .autuneo-delivery-v3__option-top {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body#checkout .autuneo-delivery-v3__carrier-price {
    padding-left: 30px;
  }

  body#checkout .autuneo-delivery-v3__extra {
    padding: 0 13px 13px 42px;
  }

  body#checkout .autuneo-logistics-date-grid,
  body#checkout .autuneo-logistics-hour-grid {
    grid-template-columns: 1fr;
  }

}

/* AUTUNEO Delivery V5 - mover hook logístico dentro del carrier seleccionado */
body#checkout #hook-display-after-carrier {
  display: none !important;
}

body#checkout #autuneo-logistics-panel-depot {
  display: none !important;
}

body#checkout .autuneo-delivery-v3__extra[data-active] {
  display: block !important;
}

body#checkout .autuneo-delivery-v3__extra .autuneo-checkout-logistics {
  margin-top: 0 !important;
}

body#checkout .autuneo-delivery-v3__extra .autuneo-checkout-panel {
  display: block !important;
}

body#checkout .autuneo-delivery-v3__extra .autuneo-delivery-box {
  margin-top: 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(26,26,26,.08) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 16px 0 0 !important;
}

/* =====================================================
   AUTUNEO Checkout Summary V3.1 - Desktop only
   Patrón visual alineado con /carrito
   ===================================================== */
@media (min-width: 992px) {
  body#checkout .checkout__summary-accordion-header,
  body#checkout .autuneo-summary-card,
  body#checkout .autuneo-summary-card--accordion,
  body#checkout .autuneo-summary-card--checkout-v2,
  body#checkout .autuneo-checkout-summary-title {
    display: none !important;
  }

  body#checkout .checkout-grid__aside-wrapper {
    position: sticky;
    top: 110px;
  }

  body#checkout .autuneo-checkout-summary-v3 {
    display: block !important;
  }

  body#checkout .autuneo-checkout-summary-v3__title {
    margin: 0 0 24px !important;
    color: #07111f !important;
    font-size: clamp(24px, 2.2vw, 32px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.05 !important;
  }

  body#checkout .autuneo-checkout-summary-v3__card {
    padding: 24px !important;
    background: #fff !important;
    border: 1px solid rgba(26,26,26,.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 50px rgba(15,23,42,.08) !important;
  }

  body#checkout .autuneo-checkout-summary-v3__toggle {
    width: 100% !important;
    min-height: 34px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 24px !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 18px !important;
    padding: 0 0 18px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(26,26,26,.10) !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer !important;
    text-align: left !important;
  }

  body#checkout .autuneo-checkout-summary-v3__count {
    color: #4b5563 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
  }

  body#checkout .autuneo-checkout-summary-v3__chevron {
    width: 14px !important;
    height: 14px !important;
    justify-self: end !important;
    border: solid #4b5563 !important;
    border-width: 0 3px 3px 0 !important;
    border-radius: 2px !important;
    transform: rotate(45deg) translateY(-3px) !important;
    transition: transform .18s ease !important;
  }

  body#checkout .autuneo-checkout-summary-v3__toggle[aria-expanded="true"] .autuneo-checkout-summary-v3__chevron {
    transform: rotate(225deg) translate(-2px, -2px) !important;
  }

  body#checkout .autuneo-checkout-summary-v3__card .cart-summary__top {
    display: none !important;
  }

  body#checkout .autuneo-summary-products--accordion[hidden] {
    display: none !important;
  }

  body#checkout .autuneo-summary-products--accordion {
    display: block !important;
    margin: 0 0 18px !important;
    padding: 0 0 18px !important;
    border-bottom: 1px solid rgba(26,26,26,.10) !important;
  }

  body#checkout .autuneo-summary-products--accordion .autuneo-summary-products__list,
  body#checkout .autuneo-summary-products--accordion .cart-summary__product {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line--readonly {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    gap: 12px !important;
    align-items: start !important;
    padding: 0 !important;
    min-height: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line--readonly .autuneo-summary-product-line__image,
  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line--readonly .autuneo-cart-price__methods,
  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line--readonly .autuneo-cart-price__card,
  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line--readonly .autuneo-summary-product-line__attribute {
    display: none !important;
  }

  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line__brand {
    color: #B81A20 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    margin: 0 0 4px !important;
  }

  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line__title {
    color: #101820 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.16 !important;
    text-decoration: none !important;
    margin: 0 !important;
  }

  body#checkout .autuneo-summary-products--accordion .autuneo-summary-product-line__price {
    grid-column: auto !important;
    text-align: right !important;
    min-width: 82px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body#checkout .autuneo-summary-products--accordion .autuneo-cart-price__base {
    color: #D61F26 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body#checkout .autuneo-summary-sidebar-source,
  body#checkout .autuneo-summary-sidebar-source .cart-summary__total,
  body#checkout .autuneo-summary-sidebar-source .js-cart-summary-totals,
  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body#checkout .autuneo-summary-sidebar-source .cart-summary__subtotals {
    display: block !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body#checkout .autuneo-summary-sidebar-source .cart-summary__line {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body#checkout .autuneo-summary-sidebar-source .cart-summary__label,
  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__label {
    min-width: 0 !important;
    color: #4b5563 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  body#checkout .autuneo-summary-sidebar-source .cart-summary__value {
    color: #07111f !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total {
    display: grid !important;
    gap: 14px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__separator {
    height: 1px !important;
    background: #e5e7eb !important;
    display: block !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__separator:first-child {
    display: none !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content 42px !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__card,
  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__base {
    display: block !important;
    text-align: right !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__card {
    color: #07111f !important;
    font-size: 22px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__base {
    color: #D61F26 !important;
    font-size: 26px !important;
    letter-spacing: -0.03em !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__badge {
    width: 42px !important;
    min-width: 42px !important;
    height: 26px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: #fff0f1 !important;
    color: #B81A20 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__badge--empty {
    visibility: hidden !important;
  }

  body#checkout .autuneo-summary-payment-slot {
    margin-top: 18px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(26,26,26,.10) !important;
  }

  body#checkout .autuneo-summary-payment-slot .autuneo-payment-v5-actions {
    display: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body#checkout:has(#checkout-payment-step.step--current) .autuneo-summary-payment-slot .autuneo-payment-v5-actions {
    display: block !important;
  }

  body#checkout .autuneo-summary-payment-slot .autuneo-payment-v5-submit {
    width: 100% !important;
    min-height: 56px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: #D61F26 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    box-shadow: 0 18px 32px rgba(214,31,38,.18) !important;
  }

  body#checkout .autuneo-summary-payment-slot .autuneo-payment-v5-submit:hover:not(:disabled) {
    background: #B81A20 !important;
  }

  body#checkout .autuneo-summary-payment-slot .autuneo-payment-v5-submit:disabled {
    opacity: .58 !important;
    cursor: not-allowed !important;
  }
}

/* =====================================================
   AUTUNEO Checkout Summary V3.1 - ancho y precios desktop
   ===================================================== */
@media (min-width: 992px) {
  body#checkout .checkout-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    column-gap: 36px !important;
    align-items: start !important;
  }

  body#checkout .checkout-grid__content,
  body#checkout .checkout-grid__aside {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
  }

  body#checkout .checkout-grid__aside {
    min-width: 0 !important;
  }

  body#checkout .autuneo-checkout-summary-v3__card {
    width: 100% !important;
  }

  body#checkout .autuneo-summary-sidebar-source .cart-summary__line {
    grid-template-columns: minmax(0, 1fr) max-content !important;
    gap: 14px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__row {
    grid-template-columns: minmax(0, 1fr) max-content 46px !important;
    gap: 10px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__label {
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__card {
    font-size: 22px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__base {
    font-size: 26px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__badge {
    width: 46px !important;
    min-width: 46px !important;
    height: 28px !important;
    font-size: 13px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  body#checkout .checkout-grid {
    grid-template-columns: minmax(0, 1fr) 400px !important;
    column-gap: 28px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__base {
    font-size: 24px !important;
  }
}

/* =====================================================
   AUTUNEO Checkout Summary V4 - Layout desktop estable
   Resumen igual proporción que carrito + pagos compactos
   ===================================================== */
@media (min-width: 1200px) {
  body#checkout .columns-container.container {
    max-width: 1360px !important;
  }

  body#checkout .checkout-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 500px !important;
    column-gap: 36px !important;
    align-items: start !important;
  }

  body#checkout .checkout-grid__content,
  body#checkout .checkout-grid__aside {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    min-width: 0 !important;
  }

  body#checkout .payment-option__label {
    min-height: 76px !important;
    padding: 14px 18px !important;
  }

  body#checkout .autuneo-payment-v5__icon {
    width: 54px !important;
    height: 54px !important;
  }

  body#checkout .autuneo-payment-v5__title {
    font-size: 16px !important;
  }

  body#checkout .autuneo-payment-v5__price {
    font-size: 21px !important;
  }

  body#checkout .autuneo-checkout-summary-v3__card {
    width: 100% !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__row {
    grid-template-columns: minmax(0, 1fr) max-content 46px !important;
    gap: 10px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__label {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    font-size: 14px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__card {
    font-size: 22px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__base {
    font-size: 26px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__badge {
    width: 46px !important;
    min-width: 46px !important;
    height: 28px !important;
    font-size: 13px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  body#checkout .checkout-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 430px !important;
    column-gap: 28px !important;
    align-items: start !important;
  }

  body#checkout .checkout-grid__content,
  body#checkout .checkout-grid__aside {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    min-width: 0 !important;
  }

  body#checkout .payment-option__label {
    min-height: 74px !important;
    padding: 13px 16px !important;
  }

  body#checkout .autuneo-payment-v5__icon {
    width: 50px !important;
    height: 50px !important;
  }

  body#checkout .autuneo-payment-v5__title {
    font-size: 15px !important;
  }

  body#checkout .autuneo-payment-v5__price {
    font-size: 19px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__row {
    grid-template-columns: minmax(0, 1fr) max-content 44px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__base {
    font-size: 24px !important;
  }

  body#checkout .autuneo-summary-sidebar-source .autuneo-cart-total__label {
    font-size: 13px !important;
  }
}

/* =====================================================
   AUTUNEO Checkout Summary V4.3 - no subtotals final
   Si no hay envío/subtotales, deja solo la línea del acordeón.
   ===================================================== */
@media (min-width: 992px) {
  body#checkout .autuneo-summary-sidebar-source--no-subtotals .autuneo-cart-total__separator {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }

  body#checkout .autuneo-summary-sidebar-source--no-subtotals .autuneo-cart-total {
    gap: 14px !important;
  }
}

/* =====================================================
   AUTUNEO Delivery UI V3.6
   CTA real dentro del resumen + limpiar CTA izquierdo
   ===================================================== */
@media (min-width: 992px) {
  body#checkout #checkout-delivery-step .autuneo-delivery-v3__actions,
  body#checkout #checkout-delivery-step .delivery-options__form > .clearfix,
  body#checkout #checkout-delivery-step .delivery-options__form > .form-footer {
    display: none !important;
  }

  body#checkout:has(#checkout-delivery-step.step--current) .autuneo-summary-payment-slot {
    display: block !important;
    margin-top: 18px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(26,26,26,.10) !important;
  }

  body#checkout:has(#checkout-delivery-step.step--current) .autuneo-summary-payment-slot .autuneo-payment-v5-actions {
    display: none !important;
  }

  body#checkout .autuneo-delivery-summary-submit {
    width: 100% !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: #D61F26 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    box-shadow: 0 18px 32px rgba(214,31,38,.18) !important;
    padding: 0 22px !important;
  }

  body#checkout .autuneo-delivery-summary-submit:hover {
    background: #B81A20 !important;
  }

  body#checkout:has(#checkout-payment-step.step--current) #autuneo-delivery-summary-submit {
    display: none !important;
  }

  body#checkout #checkout-delivery-step .autuneo-delivery-v3__carrier-price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* =====================================================
   AUTUNEO Delivery UI V3.8
   CTA resumen estable usando botón nativo oculto
   ===================================================== */
@media (min-width: 992px) {
  body#checkout .autuneo-summary-payment-slot {
    display: block !important;
    margin-top: 18px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(26,26,26,.10) !important;
  }

  body#checkout .autuneo-checkout-summary-main-cta {
    width: 100% !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: #D61F26 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    box-shadow: 0 18px 32px rgba(214,31,38,.18) !important;
    padding: 0 22px !important;
  }

  body#checkout .autuneo-checkout-summary-main-cta:hover {
    background: #B81A20 !important;
  }

  body#checkout .autuneo-native-checkout-cta-hidden {
    display: none !important;
  }

  body#checkout #checkout-delivery-step .autuneo-delivery-v3__carrier-price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* =====================================================
   AUTUNEO Delivery UI V3.9
   Evita duplicado de CTA en paso Pago
   ===================================================== */
@media (min-width: 992px) {
  body#checkout:has(#autuneo-checkout-summary-main-cta[data-autuneo-step="payment"])
  .autuneo-summary-payment-slot .autuneo-payment-v5-actions {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body#checkout:has(#autuneo-checkout-summary-main-cta[data-autuneo-step="payment"])
  .autuneo-summary-payment-slot .autuneo-payment-v5-submit {
    display: none !important;
  }
}

/* =====================================================
   AUTUNEO Checkout Mobile V1
   Entrega/Pago compactos + resumen fijo inferior
   Desktop intacto: solo max-width 991px
   ===================================================== */
@media (max-width: 991px) {
  body#checkout.autuneo-mobile-checkout-bottom-on {
    padding-bottom: 156px !important;
  }

  body#checkout .checkout-grid,
  body#checkout .checkout-grid__content,
  body#checkout .checkout-grid__aside {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body#checkout .checkout-grid__aside {
    display: none !important;
  }

  body#checkout .columns-container.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body#checkout #center-column,
  body#checkout .page--full-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body#checkout #checkout-delivery-step,
  body#checkout #checkout-payment-step {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body#checkout #checkout-delivery-step .step-title,
  body#checkout #checkout-payment-step .step-title,
  body#checkout #checkout-delivery-step > h1,
  body#checkout #checkout-payment-step > h1 {
    padding: 0 16px !important;
  }

  body#checkout .autuneo-delivery-v3 {
    gap: 10px !important;
    padding: 0 !important;
  }

  body#checkout .autuneo-delivery-v3__address,
  body#checkout .autuneo-delivery-v3__methods,
  body#checkout .autuneo-delivery-v3__comment,
  body#checkout .autuneo-delivery-v3__option {
    border-radius: 18px !important;
    box-shadow: 0 8px 22px rgba(15,23,42,.05) !important;
  }

  body#checkout .autuneo-delivery-v3__address {
    margin: 0 0 10px !important;
    padding: 14px 16px !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 0 18px 18px !important;
  }

  body#checkout .autuneo-delivery-v3__address-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
  }

  body#checkout .autuneo-delivery-v3__eyebrow {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }

  body#checkout .autuneo-delivery-v3__address-title {
    font-size: 17px !important;
  }

  body#checkout .autuneo-delivery-v3__address-text {
    font-size: 13px !important;
    margin-top: 3px !important;
  }

  body#checkout .autuneo-delivery-v3__methods,
  body#checkout .autuneo-delivery-v3__comment {
    margin: 0 12px 10px !important;
    padding: 14px !important;
  }

  body#checkout .autuneo-delivery-v3__section-head {
    margin-bottom: 10px !important;
  }

  body#checkout .autuneo-delivery-v3__section-head h2 {
    font-size: 18px !important;
    line-height: 1.1 !important;
  }

  body#checkout .autuneo-delivery-v3__list {
    gap: 10px !important;
  }

  body#checkout .autuneo-delivery-v3__option-label {
    padding: 14px !important;
  }

  body#checkout .autuneo-delivery-v3__option-top {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }

  body#checkout .autuneo-delivery-v3__option-left {
    align-items: flex-start !important;
    gap: 10px !important;
  }

  body#checkout .autuneo-delivery-v3__radio input {
    width: 17px !important;
    height: 17px !important;
    margin-top: 2px !important;
  }

  body#checkout .autuneo-delivery-v3__carrier-name {
    font-size: 16px !important;
  }

  body#checkout .autuneo-delivery-v3__carrier-delay {
    font-size: 13px !important;
  }

  body#checkout .autuneo-delivery-v3__carrier-price {
    padding-left: 0 !important;
    align-self: start !important;
    font-size: 14px !important;
  }

  body#checkout .autuneo-delivery-v3__extra {
    padding: 0 12px 14px 40px !important;
  }

  body#checkout .autuneo-delivery-v3__extra-content {
    padding-top: 10px !important;
  }

  body#checkout .autuneo-logistics-panel__title {
    font-size: 17px !important;
  }

  body#checkout .autuneo-logistics-panel__subtitle {
    font-size: 12px !important;
  }

  body#checkout .autuneo-logistics-date-grid,
  body#checkout .autuneo-logistics-hour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body#checkout .autuneo-logistics-option-card {
    min-height: 54px !important;
    border-radius: 12px !important;
    padding: 8px !important;
  }

  body#checkout .autuneo-logistics-note {
    font-size: 12px !important;
    padding: 9px 10px !important;
  }

  body#checkout .autuneo-delivery-v3__comment textarea {
    min-height: 48px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }

  body#checkout #checkout-delivery-step .autuneo-delivery-v3__actions,
  body#checkout #checkout-delivery-step button[name="confirmDeliveryOption"] {
    display: none !important;
  }

  body#checkout #checkout-delivery-step .alert-success,
  body#checkout #checkout-delivery-step .autuneo-delivery-v3__success,
  body#checkout #checkout-delivery-step .autuneo-delivery-success {
    display: none !important;
  }

  body#checkout #checkout-payment-step .payment-options,
  body#checkout #checkout-payment-step .payment-options__list {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 0 0 !important;
  }

  body#checkout #checkout-payment-step .payment-option {
    margin: 0 0 12px !important;
    border-radius: 18px !important;
  }

  body#checkout #checkout-payment-step .payment-option__label {
    min-height: 78px !important;
    padding: 14px 18px !important;
    border-radius: 18px !important;
    gap: 12px !important;
  }

  body#checkout #checkout-payment-step .autuneo-payment-v5__icon {
    width: 48px !important;
    height: 48px !important;
  }

  body#checkout #checkout-payment-step .autuneo-payment-v5__title {
    font-size: 17px !important;
    line-height: 1.12 !important;
  }

  body#checkout #checkout-payment-step .autuneo-payment-v5__price {
    font-size: 21px !important;
    white-space: nowrap !important;
  }

  body#checkout #checkout-payment-step .autuneo-payment-v5__tag {
    min-width: 42px !important;
    height: 26px !important;
  }

  body#checkout #conditions-to-approve {
    padding: 0 16px !important;
    margin-top: 14px !important;
  }

  body#checkout #checkout-payment-step .autuneo-payment-v5-actions {
    display: none !important;
  }

  .autuneo-mobile-checkout-bottom {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1040 !important;
    display: none !important;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;
    background: rgba(255,255,255,.94) !important;
    border-top: 1px solid rgba(26,26,26,.08) !important;
    box-shadow: 0 -14px 35px rgba(15,23,42,.12) !important;
    backdrop-filter: blur(14px) !important;
  }

  .autuneo-mobile-checkout-bottom.is-visible {
    display: block !important;
  }

  .autuneo-mobile-checkout-bottom__card {
    display: grid !important;
    gap: 9px !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    padding: 12px !important;
    background: #fff !important;
    border: 1px solid rgba(26,26,26,.08) !important;
    border-radius: 18px !important;
  }

  .autuneo-mobile-checkout-bottom__prices {
    display: grid !important;
    gap: 6px !important;
  }

  .autuneo-mobile-checkout-bottom__line {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    gap: 7px !important;
  }

  .autuneo-mobile-checkout-bottom__line span {
    min-width: 0 !important;
    color: #4b5563 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .autuneo-mobile-checkout-bottom__line strong {
    color: #07111f !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .autuneo-mobile-checkout-bottom__line--base strong {
    color: #D61F26 !important;
    font-size: 20px !important;
    letter-spacing: -.02em !important;
  }

  .autuneo-mobile-checkout-bottom__badge {
    min-width: 38px !important;
    height: 23px !important;
    padding: 0 8px !important;
    border-radius: 999px !important;
    background: #fff0f1 !important;
    color: #B81A20 !important;
    font-style: normal !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .autuneo-mobile-checkout-cta {
    width: 100% !important;
    min-height: 52px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #D61F26 !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 25px rgba(214,31,38,.18) !important;
  }

  .autuneo-mobile-checkout-cta:disabled,
  .autuneo-mobile-checkout-cta[aria-disabled="true"] {
    opacity: .52 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    background: #e6787d !important;
  }
}
/* AUTUNEO Mobile Step Safe Fix V1
   Mobile only: evita pantalla en blanco cuando PrestaShop deja un paso real como current,
   pero Bootstrap/CSS lo mantiene con display:none en navegador móvil real. */
@media (max-width: 991px) {
  body#checkout .checkout-grid,
  body#checkout .checkout-grid__content {
    min-height: 1px !important;
  }

  body#checkout #checkout-addresses-step.step--current,
  body#checkout #checkout-addresses-step.js-current-step,
  body#checkout #checkout-addresses-step.active.show,
  body#checkout #checkout-delivery-step.step--current,
  body#checkout #checkout-delivery-step.js-current-step,
  body#checkout #checkout-delivery-step.active.show,
  body#checkout #checkout-payment-step.step--current,
  body#checkout #checkout-payment-step.js-current-step,
  body#checkout #checkout-payment-step.active.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body#checkout #checkout-addresses-step.step--current .step-content,
  body#checkout #checkout-addresses-step.js-current-step .step-content,
  body#checkout #checkout-delivery-step.step--current .step-content,
  body#checkout #checkout-delivery-step.js-current-step .step-content,
  body#checkout #checkout-payment-step.step--current .step-content,
  body#checkout #checkout-payment-step.js-current-step .step-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
}

/* =====================================================
   AUTUNEO Mobile Summary V5
   Componente independiente para Entrega/Pago mobile.
   Desktop intacto: solo max-width 991px.
   ===================================================== */
@media (max-width: 991px) {
  body#checkout.autuneo-mobile-summary-v5-on {
    padding-bottom: 218px !important;
  }

  body#checkout #autuneo-mobile-checkout-bottom,
  body#checkout .autuneo-mobile-checkout-bottom {
    display: none !important;
  }

  body#checkout .autuneo-mobile-summary-v5 {
    display: none !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1055 !important;
    padding: 0 !important;
    pointer-events: none !important;
  }

  body#checkout .autuneo-mobile-summary-v5.is-visible {
    display: block !important;
  }

  body#checkout .autuneo-mobile-summary-v5__card {
    pointer-events: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 16px 22px calc(14px + env(safe-area-inset-bottom)) !important;
    background: #fff !important;
    border: 1px solid rgba(15,23,42,.08) !important;
    border-bottom: 0 !important;
    border-radius: 26px 26px 0 0 !important;
    box-shadow: 0 -20px 44px rgba(15,23,42,.15) !important;
    display: grid !important;
    gap: 12px !important;
  }

  body#checkout .autuneo-mobile-summary-v5__toggle {
    min-height: 35px !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0,1fr) 22px !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 0 11px !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(15,23,42,.10) !important;
    text-align: left !important;
    box-shadow: none !important;
  }

  body#checkout .autuneo-mobile-summary-v5__count {
    color: #4b5563 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
  }

  body#checkout .autuneo-mobile-summary-v5__chevron {
    width: 13px !important;
    height: 13px !important;
    justify-self: end !important;
    border: solid #4b5563 !important;
    border-width: 0 3px 3px 0 !important;
    border-radius: 2px !important;
    transform: rotate(225deg) translate(-2px,-2px) !important;
    transition: transform .18s ease !important;
  }

  body#checkout .autuneo-mobile-summary-v5__toggle[aria-expanded="true"] .autuneo-mobile-summary-v5__chevron {
    transform: rotate(45deg) translateY(-3px) !important;
  }

  body#checkout .autuneo-mobile-summary-v5__expanded[hidden] {
    display: none !important;
  }

  body#checkout .autuneo-mobile-summary-v5__expanded {
    max-height: 48vh !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: grid !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(15,23,42,.10) !important;
  }

  body#checkout .autuneo-mobile-summary-v5__products,
  body#checkout .autuneo-mobile-summary-v5__extras {
    display: grid !important;
    gap: 9px !important;
  }

  body#checkout .autuneo-mobile-summary-v5__product,
  body#checkout .autuneo-mobile-summary-v5__extra {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) max-content !important;
    align-items: start !important;
    gap: 10px !important;
  }

  body#checkout .autuneo-mobile-summary-v5__product small {
    display: block !important;
    color: #B81A20 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    margin-bottom: 3px !important;
  }

  body#checkout .autuneo-mobile-summary-v5__product span,
  body#checkout .autuneo-mobile-summary-v5__extra span {
    color: #101820 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
  }

  body#checkout .autuneo-mobile-summary-v5__product strong,
  body#checkout .autuneo-mobile-summary-v5__extra strong {
    color: #D61F26 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  body#checkout .autuneo-mobile-summary-v5__extra strong {
    color: #101820 !important;
  }

  body#checkout .autuneo-mobile-summary-v5__prices {
    display: grid !important;
    gap: 9px !important;
  }

  body#checkout .autuneo-mobile-summary-v5__row {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) max-content 42px !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 31px !important;
  }

  body#checkout .autuneo-mobile-summary-v5__row span {
    color: #4b5563 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body#checkout .autuneo-mobile-summary-v5__row strong {
    display: block !important;
    text-align: right !important;
    white-space: nowrap !important;
    color: #07111f !important;
    font-size: 23px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -.03em !important;
  }

  body#checkout .autuneo-mobile-summary-v5__row--base strong {
    color: #D61F26 !important;
    font-size: 28px !important;
  }

  body#checkout .autuneo-mobile-summary-v5__badge {
    min-width: 42px !important;
    width: 42px !important;
    height: 26px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: #fff0f1 !important;
    color: #B81A20 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-style: normal !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  body#checkout .autuneo-mobile-summary-v5__badge--empty {
    visibility: hidden !important;
  }

  body#checkout .autuneo-mobile-summary-v5__cta {
    width: 100% !important;
    min-height: 56px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: #D61F26 !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    box-shadow: 0 16px 30px rgba(214,31,38,.18) !important;
  }

  body#checkout .autuneo-mobile-summary-v5__cta:disabled,
  body#checkout .autuneo-mobile-summary-v5__cta[aria-disabled="true"] {
    opacity: .52 !important;
    cursor: not-allowed !important;
    background: #e6787d !important;
    box-shadow: none !important;
  }
}
