/*checkout*/
#checkout #header, #checkout #footer-container-main{
	display:none;
}
/*checkout banner*/
#checkout-banner {
  background: #F7F7F7;
  height: 72px;
  z-index: 2;
}

#checkout-banner .container {
  height: 100%;
}

#checkout-banner .back-to-shop:hover {
  background: rgba(6, 87, 161, 0.1);
}

/*checkout steps*/

/* Control del ancho de la línea de progreso */
.checkout-steps[data-step="1"]::after { width: 0; }
.checkout-steps[data-step="2"]::after { width: 28.33%; }
.checkout-steps[data-step="3"]::after { width: 56.66%; }
.checkout-steps[data-step="4"]::after { width: 85%; }

/* Puntos espaciados */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 120px; /* Ancho fijo para el contenedor del punto */
    position: relative;
    z-index: 2;
}

/* Icono del paso */
.step-icon {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #F7F7F7;
    border: 1px solid #D2D0D1;
    border-radius: 50%;
}

/* Texto del paso */
.step-text {
    position: absolute;
    width: max-content;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #959498;
    white-space: nowrap;
}

/* Estado activo */
.step-item.active .step-icon {
    background: #E1F4FF;
    border: 1px solid #00A6FB;
    box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px rgba(6, 87, 161, 0.25);
}

.step-item.active .step-text {
    color: #0657A1;
}

/* Estado completado */
.step-item.completed .step-icon {
    background: #00A6FB;
    border: none;
}

.step-item.completed .step-icon::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66667 10.1147L12.7947 3.98602L13.738 4.92935L6.66667 12.0007L2.42267 7.75668L3.366 6.81335L6.66667 10.1147Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.step-item.completed .step-text {
    color: #020202;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-steps {
        padding: 0 20px;
    }

    .step-text {
        font-size: 16px;
    }

    .step-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .checkout-steps {
        padding: 0 10px;
    }

    .step-text {
        font-size: 12px;
    }
}


/* Contenedor principal */
.checkout-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 0px 2.5rem;
  width: 100%;
  height: 4.5rem;
  margin: 2.5rem auto 2.125rem auto;
  position: relative;
}

@media (min-width: 768px) {
  .checkout-steps {
      padding: 0px 0px 2.5rem;
      width: 45.6875rem;  
      height: 4.5rem;   
      margin: 5rem auto 4rem auto; 
  }
}

/* Línea base */
.checkout-steps::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: #F7F7F7;
    z-index: 1;
}

/* Línea de progreso */
.checkout-steps::after {
    content: '';
    position: absolute;
    height: 2px;
    background: #00A6FB;
    top: 16px;
    left: 7.5%;
    transition: width 0.3s ease;
}

/* Número dentro del círculo */
.step-number {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #959498;
    font-family: "Satoshi", sans-serif;
    font-size: 14px;
    line-height: 16px;
}


/* Estado completado */
.step-item.completed .step-icon {
    background: #00A6FB;
    border: none;
}

.step-item.completed .step-number {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .checkout-steps {
        width: 100%;
        padding: 0 40px 40px;
    }

    .step-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .checkout-steps {
        padding: 0 20px 30px;
        height: 60px;
    }

    .step-icon {
        width: 28px;
        height: 28px;
        padding: 6px;
    }

    .step-text {
        font-size: 16px;
        top: 35px;
    }

    .step-number {
        width: 14px;
        height: 14px;
        font-size: 12px;
    }

    .step-item.completed .step-icon::after {
        width: 14px;
        height: 14px;
        background-size: 14px;
    }
}

@media (max-width: 480px) {
	.checkout-steps::after{display:none;}
	.checkout-steps::before {display:none;}
    .checkout-steps {
        padding: 0 0 25px;
        height: 50px;
    }

    .step-icon {
        width: 24px;
        height: 24px;
        padding: 4px;
    }

    .step-text {
        font-size: 12px;
        top: 30px;
        width: 60px;
        height: auto;
        line-height: 16px;
    }

    .step-number {
        width: 12px;
        height: 12px;
        font-size: 10px;
    }

    .step-item.completed .step-icon::after {
        width: 12px;
        height: 12px;
        background-size: 12px;
    }

    .checkout-steps::before,
    .checkout-steps::after {
        top: 12px;
    }
}
.step-item.completed {
  cursor: pointer;
  transition: all 0.3s ease;
}
.step-item.completed:hover .step-icon {
  background: #0088d1 !important;
  transform: scale(1.05);
}
.step-item.completed:hover .step-text {
  color: #0657A1;
}


/*pasos del checkout*/

/* Ocultar todos los pasos por defecto */
.checkout-step {
  display: none;
}

/* Mostrar solo el paso actual */
.checkout-step.-current {
  display: block;
}

/* Asegurar que el contenido del paso actual sea visible */
.checkout-step.-current .content {
  display: block !important;
}

/* Mantener los títulos visibles pero con estilo diferente para los no activos */
.checkout-step .step-title {
  opacity: 0.5;
}

.checkout-step.-current .step-title {
  opacity: 1;
}

/* Asegurar que los pasos no alcanzables no sean interactivos */
.checkout-step.-unreachable {
  pointer-events: none;
}



/*fomularios incio sesion */
.form-container {
  display: flex;
  gap: 121.5px;
  margin: 0 -12px;
  width: 100%;
}

.login-section,
.guest-section {
  flex: 1;
  width: 50%;
  position: relative;
  padding-right: 110px;
}
.login-section{
  padding-right: 121.5px;
  padding-left: 110px;
}

/* Línea separadora vertical */
.login-section::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #ACDDFC;
}

/* Títulos */
.subtitle {
  font-family: "Satoshi", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  color: #020202;
  margin-bottom: 40px;
}

.guest-section .subtitle {
  margin-bottom: 24px;
}


/* Formularios */
.form-group {
  margin-bottom: 0px;
}

.form-group.row {
  display: block;
}

.required::after {
  content: "*";
  color: #FF4B3F;
  margin-left: 4px;
}

.col-md-8 {
  width: 100%;
}

.form-control {
  width: 100%;
  height: auto;
  padding: 16px !important;
  background: #FFFFFF;
  border: 1px solid #D2D0D1;
  border-radius: 4px !important;
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6F6F72;
}

/* Grupo de input contraseña */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group-append {
  position: absolute;
  right: 16px;
}

.btn-outline-secondary {
  background: none;
  border: none;
  color: #6F6F72;
  padding: 8px;
  cursor: pointer;
}

/* Links */
.forgot-password {
  text-align: left !important;
  margin: 4px 0 24px;
}

.forgot-password a {
	font-family: "Satoshi", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #0657A1 !important;
	text-decoration: none;
}

/* Botones */
#login-form .button , #customer-form .button {
  width: 100% !important;
  height: 56px;
  padding: 16px 24px;
  border-radius: 4px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.button--primary {
  background: #0657A1;
  color: #FFFFFF;
}

/* Checkboxes personalizados */
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.custom-checkbox span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #6F6F72;
  border-radius: 2px;
  background: #FFFFFF;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox label {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #020202;
}

.custom-checkbox label em {
  display: block;
  color: #6F6F72;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
}

/* Form rows */
.form-row {
  display: flex;
  flex-direction: column;
}

.form-row .col-md-6 {
    max-width: 100% !important; 
}

#checkout-personal-information-step .form-group .col-md-2 {
  max-width: 100% !important;
  padding-left: 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #020202;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.form-group .col-md-8 {
    max-width: 100% !important; 
}

/* Media Queries para diseño responsive */
@media screen and (max-width: 768px) {
  .form-container {
    flex-direction: column;
    gap: 40px;
    margin: 0;
  }

  .login-section,
  .guest-section {
    width: 100%;
    padding: 0;
  }

  .login-section::after {
    display: none;
  }

  .subtitle {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 480px) {

  .checkout-content .subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
  }
  .subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .button {
    height: 48px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .form-control {
    height: 48px;
    padding: 12px;
  }

  .custom-checkbox label {
    font-size: 12px;
    line-height: 16px;
  }
}


/*envio*/
.delivery-options{
	margin-top:32px;
}

.delivery-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffffff;
  border: 1px solid #D2D0D1;
  border-radius: 4px;
}

.delivery-option.selected {
  border: 1px solid #00A6FB;
  box-shadow: 0px 0px 0px 2px #ACDDFC;
}

.delivery-option .custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}

.delivery-option .custom-radio input[type="radio"] {
  width: 24px;
  height: 24px;
  border: 1px solid #6F6F72;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
}

.delivery-option .custom-radio input[type="radio"]:checked {
  background: #00A6FB;
  border: 2px solid #00A6FB;
}

.delivery-option .custom-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.delivery-option .carrier-name {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #0657A1;
  margin: 0;
}

.delivery-option .carrier-delay {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #6F6F72;
}

.delivery-option .carrier-price {
  width: 80px;
  height: 32px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #0657A1;
  flex: none;
  order: 2;
  flex-grow: 0;
  text-align: right;
}

.delivery-option .carrier-hasLogo {
  align-items: center;
  gap: 12px;
}
.carrier-hasLogo img{
	margin:0 !important;
}
.delivery-option .carrier-hasLogo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.delivery-option .carrier-info{
	display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option .carriere-name-container {
  display: flex;
  align-items: center;
}

.delivery-option .carrier-extra-content {
  display: none;
}

.delivery-option .col-sm-3 {
  margin-left: auto;
  padding: 0;
}

body#checkout section.checkout-step {
  border: 0px ;
  padding: 0;
  padding-right: 9px;
}

body#checkout section.checkout-step.-current .step-title{
display:none;
}

body#checkout .col-md-8{
padding-right:0px;
padding-left:0px;
}
body#checkout section.checkout-step .content {
  padding: 0 ;
}
body#checkout section.checkout-step .delivery-option {
  background: rgb(255 255 255 / 15%);
  padding: 24px;
}

/* Estilos para móvil */
@media (max-width: 767px) {
 
  .delivery-option .carrier-name {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #0657A1;
  }
  
  .delivery-option .carrier-delay {
    font-family: "Satoshi", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6F6F72;
    width: 262px;
  }
  
  .delivery-option .carrier-hasLogo img {
    width: 24px;
    height: 24px;
  }
  
  .delivery-option .carrier-price {
    width: auto;
    height: 24px;
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0657A1;
  }
  
  .delivery-option .content-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

/* Ajustes adicionales para el grid en móvil */
@media (max-width: 767px) {
  .col-xs-12 {
    width: 100%;
    padding: 0;
  }
}

/*pagos*/

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FFFFFF;
}

.payment-container {
  border: 1px solid #D2D0D1;
  border-radius: 4px;
}

/* Estilo cuando el formulario está visible */
.payment-container:has(.js-payment-option-form[style*="display: block"]) {
  border: 1px solid #00A6FB;
  box-shadow: 0px 0px 0px 2px #ACDDFC;
  border-radius: 8px !important;
}

.payment-container .js-additional-information{
	border-radius: 8px !important;
}

.payment-option {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  background: #FFFFFF;
  width: 100%;
  justify-content: center;    /* Alineación horizontal */
  align-items: center;
  margin-bottom: 0 !important;
  border-radius: 8px;
}

.payment-option .custom-radio {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;    /* Alineación horizontal */
  align-items: center;
  /* padding: 4px 0px; */
  /* gap: 8px; */
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.payment-option .custom-radio span {
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  left: calc(50% - 24px/2 - 0.5px);
  /* top: calc(50% - 24px/2); */
  /* background: #FFFFFF; */
   border: 1px solid #6F6F72 !important; 
  /* border-radius: 50%; */
}

.payment-option .custom-radio input[type="radio"]:checked + span {
  background: #FFFFFF;
  border: 1px solid #00A6FB;
}

.payment-option .custom-radio input[type="radio"] + span::after {
  content: "";
  position: absolute;
  visibility: hidden;
  width: 8px;
  height: 8px;
  left: calc(50% - 8px/2);
  top: calc(50% - 8px/2);
  background: #00A6FB;
  border-radius: 50%;
}

.payment-option .custom-radio input[type="radio"]:checked + span::after {
  visibility: visible;
}

.payment-option .custom-radio {
    position: relative !important;
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    margin-right: 12px !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    flex: 0 0 24px !important;
    align-self: center !important;
}

.payment-option .custom-radio input[type="radio"] {
    position: absolute !important;
    inset: 0 !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    opacity: 0.01 !important;
    z-index: 3 !important;
    cursor: pointer !important;
}

.payment-option .custom-radio > span {
    box-sizing: border-box !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    transform: none !important;
    border: 1px solid #00A6FB !important;
    border-radius: 50% !important;
    background: #fff !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.payment-option .custom-radio input[type="radio"] + span::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    background: #00A6FB !important;
    visibility: hidden !important;
}

.payment-option .custom-radio input[type="radio"]:checked + span::after {
    visibility: visible !important;
}

.payment-option label {
  flex-grow: 1;
  font-family: 'Satoshi Variable', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #020202;
}

.additional-information {
  padding: 16px;
  margin-top: -16px;
  margin-left: 48px;
  background: #FFFFFF;
}

.definition-list dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
}

.definition-list dt {
  font-weight: 500;
  color: #020202;
}

.definition-list dd {
  margin: 0;
  color: #6F6F72;
}

.ps-hidden {
  display: none;
}

/* Modal styles */
.modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #D2D0D1;
}

.modal-header {
  padding: 1rem;
  border-bottom: 1px solid #D2D0D1;
}

.modal-body {
  padding: 1rem;
}

.modal-title {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #020202;
}

.close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/*resumen*/
.custom-order-confirmation * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-order-confirmation {
  font-family: 'Satoshi Variable', sans-serif;
}

.custom-order-confirmation .layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  margin: 0 auto;
}

.custom-order-confirmation .main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 64px;
  width: 845px;
  flex: 1;
}

.custom-order-confirmation h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #020202;
  width: 845px;
}

.custom-order-confirmation .content-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 40px;
  width: 845px;
}

.custom-order-confirmation .content-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 845px;
}

.custom-order-confirmation .order-number {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #6F6F72;
}

.custom-order-confirmation .download-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;
  background: #E1F4FF;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #0657A1;
  width: auto;
}

.custom-order-confirmation .product {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  gap: 24px;
  width: 845px;
  height: 152px;
}

.custom-order-confirmation .product-image {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  object-fit: cover;
}

.custom-order-confirmation .product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 613px;
}

.custom-order-confirmation .product-info h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #0657A1;
  width: 100%;
}

.custom-order-confirmation .product-price {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #020202;
}

.custom-order-confirmation .product-quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #6F6F72;
}

.custom-order-confirmation .right-panel {
  width: 411px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-order-confirmation .total-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  background: #F7F7F7;
  border: 1px solid #D2D0D1;
  border-radius: 8px;
}

.custom-order-confirmation .total-card h2 {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: #020202;
	margin-bottom: 10px;
}

.custom-order-confirmation .total-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #6F6F72;
}

.custom-order-confirmation .total-row.final {
  padding-top: 32px;
  border-top: 1px solid #D2D0D1;
  font-size: 24px;
  line-height: 32px;
  color: #020202;
}

.custom-order-confirmation .benefits-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 16px;
  border: 1px solid #D2D0D1;
  border-radius: 8px;
}

.custom-order-confirmation .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #020202;
}

.custom-order-confirmation .text-blue {
  color: #0657A1;
}

.custom-order-confirmation .divider {
  width: 100%;
  height: 0;
  border: 1px solid #D2D0D1;
  margin: 12px 0;
}

/* Tablet Styles */
@media screen and (max-width: 1279px) {
  .custom-order-confirmation .layout {
      width: 100%;
      padding: 0 24px;
      flex-direction: column;
  }

  .custom-order-confirmation .main-content,
  .custom-order-confirmation .content-info,
  .custom-order-confirmation .content-text,
  .custom-order-confirmation h1 {
      width: 100%;
  }

  .custom-order-confirmation .right-panel {
      width: 100%;
  }

  .custom-order-confirmation .product {
      width: 100%;
      height: auto;
  }

  .custom-order-confirmation .product-info {
      width: calc(100% - 144px); /* 120px image + 24px gap */
  }
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .custom-order-confirmation .layout {
      padding: 0 16px;
      gap: 32px;
  }

  .custom-order-confirmation .main-content {
      gap: 32px;
  }

  .custom-order-confirmation h1 {
      font-size: 32px;
      line-height: 40px;
  }

  .custom-order-confirmation .order-number {
      font-size: 20px;
      line-height: 28px;
  }

  .custom-order-confirmation .content-info {
      gap: 24px;
  }

  .custom-order-confirmation .product {
      padding: 12px;
      gap: 16px;
  }

  .custom-order-confirmation .product-image {
      width: 80px;
      height: 80px;
  }

  .custom-order-confirmation .product-info {
      width: calc(100% - 96px); /* 80px image + 16px gap */
      gap: 8px;
  }

  .custom-order-confirmation .product-info h3 {
      font-size: 16px;
      line-height: 20px;
  }

  .custom-order-confirmation .product-price {
      font-size: 20px;
      line-height: 28px;
  }

  .custom-order-confirmation .product-quantity {
      font-size: 14px;
      line-height: 20px;
  }

  .custom-order-confirmation .total-card,
  .custom-order-confirmation .benefits-card {
      padding: 16px;
      gap: 16px;
  }

  .custom-order-confirmation .total-card h2 {
      font-size: 24px;
      line-height: 32px;
  }

  .custom-order-confirmation .benefit-item {
      font-size: 14px;
      line-height: 20px;
  }
}

#checkout .btn-primary{
  background: #0657A1;
  color: #FFFFFF;
  border-radius: 4px;
  width: 100%;
  align-items: center;
  height: 56px;
  font-weight: 500;
}

#checkout .page-title {
    display:none;
  }


/*Dirección envio*/



.address-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  color: #020202;
  width: 100%;
  max-width: 845px;
  margin: 0;
}

.js-address-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 8px;
  padding-right: 56px;
  background: #FFFFFF;
  border-radius: 8px;
}

/* Header styles */
.js-address-item header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .js-address-item header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}

/* Radio button styles */
.radio-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 0 !important;
}

.custom-radio {
  position: relative !important;
  width: 24px !important;
  height: 24px !important;
  flex: none !important;
  order: 0 !important;
  flex-grow: 0 !important;
}

.custom-radio input[type="radio"] {
  opacity: 0 !important;
  position: absolute !important;
  width: 24px !important;
  height: 24px !important;
  cursor: pointer !important;
}

/* Estado no seleccionado */
.custom-radio span {
  box-sizing: border-box !important;
  position: absolute !important;
  width: 24px !important;
  height: 24px !important;
  left: calc(50% - 24px/2) !important;
  top: calc(50% - 24px/2) !important;
  border: 1.33333px solid #D2D0D1 !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
}

/* Estado seleccionado */
.custom-radio input[type="radio"]:checked + span {
  background: #00A6FB !important;
  border: 1.33333px solid #00A6FB !important;
}

/* Check blanco cuando está seleccionado */
.custom-radio input[type="radio"]:checked + span:after {
  content: '' !important;
  position: absolute !important;
  width: 6px !important;
  height: 11px !important;
  left: 8px !important;
  top: 4px !important;
  border: solid #FFFFFF !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
  border-radius: 0;
}
/* Address alias styles */
.address-alias {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 500 !important;
  font-size: 24px;
  line-height: 32px;
  color: #020202;
}

/* Address content styles */
.address {
  padding: 0 40px;
  font-family: 'Satoshi Variable', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #6F6F72;
  border-bottom: 1px solid #D2D0D1;
  border-top: 1px solid #D2D0D1;
}

/* Horizontal rule styles */
.js-address-item hr {
  width: 100%;
  border: 1px solid #D2D0D1;
  margin: 8px 0;
}

/* Footer styles */
.address-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 8px;
}

.address-info-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 845px;
  min-height: 48px;
  padding: 0;
  margin-bottom: 40px;
  margin-top: 40px;
}

.different-invoice-address{
	margin-bottom: 40px;
}

.address-info-container svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.address-info {
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #020202;
  margin: 0;
  flex: 1;
}

/* Button styles */
.edit-address,
.delete-address {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 32px;
  height: 32px;
  background: #E1F4FF;
  border-radius: 4px;
  color: #0657A1;
  text-decoration: none;
}

.edit-address i,
.delete-address i {
  font-size: 16px;
}


.js-address-item.selected {
  border: 1px solid #00A6FB !important;
  box-shadow: 0px 0px 0px 2px #ACDDFC !important;
}
  

.add-address {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 202px;
  height: 40px;
  border: 1px solid #0657A1;
  border-radius: 4px;
  margin-top: 16px !important;
}

.add-address a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0657A1 !important;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.add-address i.fa-plus {
  width: 16px;
  height: 16px;
  color: #0657A1;
}

/*Resumen*/


body#checkout #order-summary-content {
    padding: 24px;
    margin-top: 40px;

}

.osc-addresses-title .col-md-12 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 40px;
    width: 797px;
    height: 48px;
}

.osc-addresses-title .h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 48px;
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    color: #020202;
    margin: 0;
}

.osc-addresses-title .step-edit {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    width: 93px;
    height: 40px;
    border: 1px solid #0657A1;
    border-radius: 4px;
    margin-left: auto;
    box-sizing: border-box;
}

.osc-addresses-title .fa-pencil {
    width: 16px;
    height: 16px;
    color: #0657A1;
}

.osc-addresses-title .step-edit {
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #0657A1;
}

/* Línea divisoria debajo del contenido */
.osc-addresses-title::after {
    content: '';
    width: 100%;
    height: 0;
    border: 1px solid #D2D0D1;
    margin-top: 16px;
}

.osc-addresses-title,
.osc-addresses-content{
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.osc-addresses-content .card{
	border:0px;
}

.osc-info .col-md-12{
	padding:0 !important;
}

.osc-addresses-content .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    /*width: 386.5px;
    height: 216px;*/
    flex-grow: 1;
}

.osc-addresses-content .address-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
}

.osc-addresses-content .card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 100%;
}

.osc-addresses-content .addresshead {
    width: 100%;
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: #020202;
    margin-bottom: 16px;
}

.osc-addresses-content .card-body {
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #6F6F72;
}

.osc-addresses-content .black {
    color: #020202;
}

.noshadow {
    box-shadow: none;
}


.osc-delivery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.osc-delivery h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: #020202;
  margin: 0;
  border-bottom: 1px solid #D2D0D1;
  padding-bottom: 0.6rem;
}

.osc-delivery .step-edit {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  border: 1px solid #0657A1;
  border-radius: 4px;
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #0657A1;
  cursor: pointer;
}

.osc-delivery .fa-pencil {
  font-size: 16px;
  color: #0657A1;
}

.osc-delivery .summary-selected-carrier {
  box-sizing: border-box;
  display: flex;
  padding: 24px !important;
  gap: 24px;
  width: 100%;
  border: 1px solid #D2D0D1 !important;
  border-radius: 4px !important;
}

.osc-delivery .carrier-name {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #0657A1;
  display: block;
}

.osc-delivery .text-muted {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6F6F72 !important;
  display: block;
}

.osc-delivery .carrier-price {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #0657A1;
}

.osc-delivery img {
  max-width: 32px;
  height: auto;
}

.osc-delivery .row {
  width: 100%;
}

.osc-delivery .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.osc-delivery .col-auto {
  display: flex;
  align-items: center;
}

.osc-delivery .col-md-12{
	padding:0;
}



.osc-products {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.osc-products h5.card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: 'Satoshi Variable', sans-serif !important;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: #020202;
  margin: 0;
}

.osc-products .step-edit {
  display: flex;
  align-items: center;
  padding: 12px 16px !important;
  gap: 8px;
  border: 1px solid #0657A1 !important;
  border-radius: 4px !important;
  font-family: 'Satoshi Variable', sans-serif !important;
  font-weight: 500;
  font-size: 14px;
  color: #0657A1;
  cursor: pointer;
}

.osc-products .fa-pencil {
  font-size: 16px;
  color: #0657A1;
}


.osc-products .order-line {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 24px;
  width: 797px;
  height: 152px;
  border-radius: 4px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

/* Contenedor de imagen */
.osc-products .order-line .col-sm-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 120px;
  height: 120px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Imagen */
.osc-products .order-line .image {
  width: 120px;
  height: 120px;
  flex: none;
  order: 0;
  flex-grow: 0;
  border-radius: 4px;
  overflow: hidden;
}

.osc-products .order-line .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Contenedor de información */
.osc-products .order-line .col-sm-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 621px;
  height: 104px;
  flex: none;
  order: 1;
  flex-grow: 1;
}

/* Contenedor de información del producto */
.osc-products .order-line .product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

/* Título del producto */
.osc-products .order-line .product-name {
  /* width: 621px; */
  /* height: 24px; */
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #0657A1;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* Contenedor de precio */
.osc-products .order-line .price-block {
  width: 97px;
  height: 32px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Precio */
.osc-products .order-line .price {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: #020202;
}

/* Contenedor de unidades */
.osc-products .order-line .units-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 621px;
  height: 24px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

/* Etiqueta de unidades */
.osc-products .order-line .units-label {
  height: 24px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6F6F72;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Valor de unidades */
.osc-products .order-line .units-value {
  height: 24px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #020202;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Ocultar elementos innecesarios */
.osc-products .order-line .qty {
  display: none;
}

/* Atributos del producto */
.osc-products .order-line .product-line-info {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #6F6F72;
  margin-top: 4px;
}

/* Ajustes responsive */
@media (max-width: 576px) {
  .osc-products .order-line {
    width: 100%;
    height: auto;
    padding: 12px;
    gap: 16px;
  }

  .osc-products .order-line .col-sm-2 {
    width: 80px;
    height: 80px;
  }

  .osc-products .order-line .image {
    width: 80px;
    height: 80px;
  }

  .osc-products .order-line .col-sm-10 {
    width: calc(100% - 96px);
  }
}

/* Reset de márgenes de Bootstrap */
.osc-products .row {
  margin: 0;
}

.osc-products .col-sm-2,
.osc-products .col-sm-10 {
  padding: 0;
}

/* Links */
.osc-products .order-line a {
  text-decoration: none;
  color: inherit;
}


.osc-products .block-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  width:  100%;
}

.osc-products .line-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  width: 100%;
  height: 24px;
}

.osc-products .label-text {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6F6F72;
  flex-grow: 1;
}

.osc-products .price-text {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #020202;
}

.osc-products .divider {
  width: 100%;
  height: 0;
  border: 1px solid #D2D0D1;
}

.osc-products .content-price {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 43px;
  width: 100%;
  height: 32px;
}

.osc-products .total-label {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #020202;
  flex-grow: 1;
}

.osc-products .total-value {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #020202;
}

.osc-products .order-confirmation-table{
	padding: 0 !important;
    border: 0px  !important;
}

.osc-products .order-confirmation-table{
	padding: 0 !important;
    border: 0px  !important;
}


.osc-addresses-content{
	margin-bottom:40px;
	margin-top:40px;
}

.osc-addresses-title{
	margin-top:64px;
}

.osc-products #order-items{
	padding: 0 !important;
	border-bottom: 1px solid #D2D0D1;
}

.osc-delivery{
	margin-bottom:40px;
}


.osc-info div{
	display:flex;
}

.osc-info h4{
	border-bottom:0 !important;
}

.osc-info {
    display: flex;
    align-items: flex-start;
    padding: 0;
    gap: 10px;
}

.osc-info .col-md-12 {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.osc-info svg {
    flex: none;
    width: 32px;
    height: 32px;
}

.osc-info svg path {
    background: #0657A1;
}

.osc-info h4 {
    margin: 0;
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #020202;
    flex-grow: 1;
}

/*Código promocional*/
/* Contenedor principal */
.block-promo {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Contenedor del formulario y elementos */
.block-promo .cart-voucher {
  gap: 24px;
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  gap: 24px;
  border: 1px solid #D2D0D1;
}

/* Área del título y el icono */
.block-promo .voucher-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
  height: 24px;
  margin-bottom: 24px;
  background-color: white;
  border-radius: 8px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* Icono */
.block-promo .voucher-title i {
  width: 24px;
  height: 24px;
  color: #0657A1;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Texto del título */
.block-promo .voucher-title span {
  /* width: 327px; */
  height: 24px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #020202;
  flex: none;
  order: 1;
  flex-grow: 1;
}

/* Contenedor del input y botón */
.block-promo .input-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 100%;
  /* height: 40px; */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Input de texto */
.block-promo .input-group input[type="text"] {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: 12px;
  /* width: 232px; */
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #D2D0D1;
  border-radius: 4px !important;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6F6F72;
}

/* Botón */
.block-promo .btn-secondary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  width: 123px;
  height: 40px;
  background: #E1F4FF;
  border-radius: 4px;
  flex: none;
  order: 1;
  flex-grow: 0;
  border: none;
}

/* Texto del botón */
.block-promo .btn-secondary span {
  width: 45px;
  height: 16px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #0657A1;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.cart-summary-line a {
  color: #6F6F72;
  margin-right: 8px;
}

.block-promo .cart-voucher-area{
padding:0;
}

.promo-code{
background-color:white;
}

.js-payment-confirmation{
	width:100%;
}


.js-address-item .d-flex, .content-column{
	width:100% !important;
}

.radio-column{
	padding-top: 5px;
}

.content-column{
	margin-left:12px;
}

body#checkout section.checkout-step .address-footer{
	padding:0 !important;
}

body#checkout section.checkout-step .address{
	padding-left:0 !important;
}

.tag-base {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: #E1F4FF;
  width: 114px;

}


.tag-base .text-content {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #00A6FB;
}


.button-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    flex: none;
    order: 0;
    flex-grow: 0;
   	margin-top: 64px !important;
}

.continue-shopping-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    width: 182px;
    height: 56px;
    background: #0657A1;
    border-radius: 4px;
}

@media screen and (max-width: 767px) {
    .continue-shopping-button {
        width: 100%;
    }
}

.button-text {
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.button-icon {
    display: none;
    flex: none;
}


.line-separator {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 100%;
  height: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.line-separator .line {
  height: 0px;
  border: 1px solid #ACDDFC;
  flex: none;
  flex-grow: 1;
}

.line-separator .text {
  font-family: 'Satoshi Variable', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #0657A1;
  flex: none;
  flex-grow: 0;
}

/* Button container */
.create-account-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  width: 100%;
  height: 56px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

/* Create account button */
.create-account-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  width: 100%;
  height: 56px;
  border: 1px solid #0657A1;
  border-radius: 4px;
  flex: none;
  flex-grow: 1;
  text-decoration: none;
}

.create-account-btn .text-content {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0657A1;
  flex: none;
  flex-grow: 0;
}


.guest-checkout-description {
    width: 100%;
    margin-bottom: 24px;
	font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #6F6F72;
}


label.col-form-label.required[for="field-customer_privacy"],
label.col-form-label.required[for="field-psgdpr"] {
    display: none;
}

/* Hide all default checkbox inputs */
/*.custom-checkbox input[type="checkbox"] {
    display: none;
}*/

/* Base styling for non-required checkboxes */
.custom-checkbox input[type="checkbox"]:not([required]) + span {
    position: relative;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #6F6F72;
    border-radius: 2px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

/* Styling for required checkboxes (with red focus ring) */
.custom-checkbox input[type="checkbox"][required] + span {
    position: relative;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 1px solid #6F6F72;
    border-radius: 2px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}
#checkout .row{
	margin-left:0px;
	margin-right:0px;
}


#customer-form .custom-checkbox {
  padding-right: 5px;
  padding-left: 5px;
}

#delivery-address .col-md-2 , #delivery-address .col-md-9{
  max-width: 100% !important;
  padding-left: 0;
}


@media only screen and (max-width: 767px) {
  .cart-grid-right {
    margin-top: 24px;
  }
}

.promo-name .cart-summary-line {
  margin-bottom: 0 !important;
}


@media only screen and (max-width: 767px) {
  .delivery-options .delivery-option-2>.row>.col-sm-4 {
    flex: 0 0 60%;
    max-width: 75%;
    padding-left: 0;
    padding-top: 8px;
  }
  
  .delivery-options .delivery-option-2>.row>.col-sm-3 {
    flex: 0 0 40%;
    max-width: 25%;
    padding: 8px 0 0;
  }
  
  .delivery-options .carrier-hasLogo {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

	
	body#checkout section.checkout-step .delivery-option {
	    background: rgb(255 255 255 / 15%);
	    padding: 10px;
	}

  
	.delivery-option .carrier-hasLogo img {
	    width: 24px !important;
	    height: 24px !important;
	    object-fit: contain;
	}

	.osc-addresses-title .h5, .osc-delivery h5 {
	    flex-direction: column !important;
		align-items: start !important;
	}

	.osc-addresses-title::after {
	    margin-top: 60px;
	}
	
	.osc-addresses-title .step-edit {
	    margin-left: inherit;
	}
	
	body#checkout #order-summary-content h5 .step-edit {
	    margin-top: 16px;
	}
		
	
}
body#checkout section.checkout-step .delivery-option>label>.row{
	align-items: flex-start !important;
}


#checkout-banner .container{
	display: grid;
    align-items: center;
}

/* Target each element individually without styling the container */
div.checkout-content[bis_skin_checked="1"] > p.identity:first-child {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #020202;
  margin-bottom: 8px;
  font-family: "Satoshi", sans-serif;
}

div.checkout-content[bis_skin_checked="1"] > p.identity:first-child > a[href*="datos-personales"] {
  color: #0657A1;
  text-decoration: none;
  font-weight: 500;
}

div.checkout-content[bis_skin_checked="1"] > p.identity:first-child > a[href*="datos-personales"]:hover {
  text-decoration: underline;
}

div.checkout-content[bis_skin_checked="1"] > p:nth-child(2):not(.identity) {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6F6F72;
  margin-bottom: 8px;
  font-family: "Satoshi", sans-serif;
}

div.checkout-content[bis_skin_checked="1"] > p:nth-child(2) > a[href*="mylogout"] {
  color: #0657A1;
  text-decoration: none;
  font-weight: 500;
}

div.checkout-content[bis_skin_checked="1"] > p:nth-child(2) > a[href*="mylogout"]:hover {
  text-decoration: underline;
}

div.checkout-content[bis_skin_checked="1"] > p:nth-child(3) > small {
  font-size: 14px;
  line-height: 20px;
  color: #6F6F72;
  display: block;
  margin-bottom: 16px;
  font-family: "Satoshi", sans-serif;
}

div.checkout-content[bis_skin_checked="1"] > div.clearfix:nth-child(4)[bis_skin_checked="1"] {
  width: 100%;
  margin-top: 24px;
}

div.checkout-content[bis_skin_checked="1"] > div.clearfix:nth-child(4)[bis_skin_checked="1"] > form[action*="pedido"] {
  width: 100%;
}

div.checkout-content[bis_skin_checked="1"] > div.clearfix:nth-child(4)[bis_skin_checked="1"] > form[action*="pedido"] > button.continue.button.button--primary {
  display: block;
  padding: 16px 24px;
  width: 100%;
  height: 56px;
  background: #0657A1;
  border-radius: 4px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

div.checkout-content[bis_skin_checked="1"] > div.clearfix:nth-child(4)[bis_skin_checked="1"] > form[action*="pedido"] > button.continue.button.button--primary:hover {
  background: #054e8d;
}

/* Responsive styles */
@media (max-width: 767px) {
  div.checkout-content[bis_skin_checked="1"] > p.identity:first-child {
    font-size: 16px;
    line-height: 22px;
  }
  
  div.checkout-content[bis_skin_checked="1"] > p:nth-child(2):not(.identity) {
    font-size: 14px;
    line-height: 20px;
  }
  
  div.checkout-content[bis_skin_checked="1"] > p:nth-child(3) > small {
    font-size: 12px;
    line-height: 16px;
  }
  
  div.checkout-content[bis_skin_checked="1"] > div.clearfix:nth-child(4)[bis_skin_checked="1"] > form[action*="pedido"] > button.continue.button.button--primary {
    height: 48px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 20px;
  }
}

.delivery-options .col-sm-4 {
  flex: 0 0 50%;
  max-width: 50%;
}

#delivery-addresses{
  gap: 24px;
  margin-top: 40px !important;
}

/* Estilo para móviles (por defecto) */
body#checkout section.checkout-step .address-item {
  flex: auto;
}

/* Estilo para pantallas de 1440px */
@media only screen and (min-width: 1440px) {
  body#checkout section.checkout-step .address-item {
    flex: 0 0 48%;
  }
}

@media only screen and (max-width: 767px) {
  #delivery-addresses {
    gap: 24px;
    margin-top: 24px !important;
  }
}

.delivery-option-2{
	padding-left: 9px;
}

@media only screen and (max-width: 767px) {
  .delivery-option-2 {
    padding-left: 16px;
  }

  .payment-options {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  
}

body#checkout section.checkout-step #conditions-to-approve {
  padding-top: 0!important;
}

#checkout button.btn-primary:hover, #checkout button.button--primary:hover, #checkout .create-account-btn:hover {
  background: #00A6FB;
  color: #fff;
}
#checkout .create-account-btn:hover span {
  color: #fff;
}

#checkout #login-form .form-footer {
  padding-top: 8px;
}
#checkout .form-control:hover {
  border: 2px solid #00A6FB;
}
#checkout .custom-checkbox {
  padding-top: 24px;
}
#checkout #customer-form .form-footer {
  padding-top: 8px;
}
#checkout #customer-form  > .form-row:nth-child(3) { 
  display: none;
}

#checkout #delivery-address {
  padding-top: 23px;
}
#checkout #delivery-address .form-fields .col-form-label {
  padding-top: 17px;
}
#checkout .js-address-form .form-footer {
  padding-top: 24px;
}
#checkout select.form-control:not([size]):not([multiple]) {
  height: auto !important;
}
#checkout .delivery-options-list .continue {
  margin-top: 24px;
}