html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}

/*-------------------------------------------------------------------------------------------------------------------------*/
/* MENU +  LOGO*/
.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 0;
    width: 100%;
    padding: 20px;
    background-color: #18443b;
    height: 35px;
    z-index: 10000000000;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -20px;
}

.logo_icon {
    width: 125px;
}

/*-------------------------------------------------------------------------------------------------------------------------*/
/*-CARRITO*/
.cart-container {
    position: absolute;
    right: 75px;
    cursor: pointer;
}

.cart_up {
    color: #000;
}

.cart_down {
    color: #000;
}

.cart {
    width: 25px;
    margin-left: 20px;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 4px;
    color: #fff;
    font-size: 9px;
    padding: 3px 6px;
    border-radius: 50%;
    font-family: sans-serif;
    font-weight: normal;
}

#cartItems {
  max-height: 225px;
  overflow-y: auto;
}

.cart-items {
    margin-top: 25px;
    font-family: sans-serif;
    font-weight: lighter;
    color: #000;
}

.cart-item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cart-product-name {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
}

.cart-product-info {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 3px;
    margin-top: 5px;
}

.cart-total {
    margin-top: 0px;
    font-size: 13px;
    font-style: italic;
    font-weight: 100;
    font-family: sans-serif;
    color: #000;
}

.cart-item button {
    margin: 0 5px;
    font-size: 15px;
    background-color: transparent;
    border: 1px solid #ccc;
    cursor: pointer;
}

.checkout-btn {
    margin-top: 25px;
    padding: 12px;
    width: 100%;
    font-size: 13px;
    font-family: sans-serif;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.cart-pulse {
  animation: cartPulse 0.6s ease;
}

.color-warning {
    position: absolute;
    top: -16px; /* puedes ajustar esto según tu diseño */
    left: 50%;
    transform: translateX(-50%);
    color: red;
    font-size: 12px;
    font-family: sans-serif;
    font-style: italic;
    text-align: center;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
    z-index: 1;
    display: none;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes vibrate {
  0% { transform: translateX(0); }
  20% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  100% { transform: translateX(0); }
}

.vibrate {
  animation: vibrate 0.4s ease;
}

/* Animación de desplazamiento del producto cuando se agrega al carrito */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%); /* Empuja el producto fuera de la pantalla hacia la izquierda */
        opacity: 0;
    }
    50% {
        transform: translateX(10px); /* Un pequeño desplazamiento hacia la derecha */
        opacity: 1;
    }
    100% {
        transform: translateX(0); /* El producto se coloca en su posición final */
        opacity: 1;
    }
}

/* Clase que se añade al producto para hacer el desplazamiento */
.slide-in {
    animation: slideInFromLeft 0.5s ease-out forwards;
}


/*-------------------------------------------------------------------------------------------------------------------------*/
/*SLIDER IMAGENES*/
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 35px;
}

.slides {
    display: flex;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.slides.hidden {
    opacity: 0;
    pointer-events: none;
}

.slides.fade-out {
    opacity: 0;
}
.slides.fade-in {
    opacity: 1;
}
    
.slide {
    min-width: 100%;
    height: 100%; 
}
    
.slide img {
    width: 100%; 
}

.slides.fade-out {
    opacity: 0;
    transition: opacity 0.9s ease;
}

.slides.fade-in {
    opacity: 1;
    transition: opacity 0.9s ease;
}
    
.buttons {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
    
.buttons button {
    background-color: transparent;
    border: none;
    color: #18443b;
    padding: 20px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.1s;
}

.sublogo {
    position: fixed; 
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #18443b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: top 0.3s ease-in-out; 
    z-index: 100000000;
    margin-top: 76px;
}

.sublogo_text {
    font-family: sans-serif;
    font-size: 10px;
    letter-spacing: 0.4px;
    color: #fff;
    font-weight: lighter;
}

.sublogo_line {
    width: 100%;
    margin-top: -1px;
    height: 1px;
    background-color: #fff;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -20px;
}

.logo_icon {
    width: 125px;
}

.container {
    width: 900px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 80px;
    padding-top: 200px;
}

.container_tc {
    width: 900px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 80px;
    padding-top: 175px;
}


.subcontainer_one {
    width: 900px;
    margin: 0 auto;
    position: absolute;
}

.subcontainer_two {
    width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.subcontainer_two_order {
    width: 100%;
    margin-bottom: 0px;
}

.bloque1 {
    width: 425px;
    margin-right: 25px;
}

.bloque2 {
    width: 425px;
    margin-left: 25px;
    position: relative;
    display: flex;
    justify-content: center;
}

.info {
    position: absolute;
    width: 425px;
    margin-top: 50px;
}

.info_augusta {
    position: absolute;
    width: 425px;
    margin-top: 65px;
} 

.info_personalization {
    position: absolute;
    width: 425px;
    margin-top: 34px;
}

.info_collection {
    position: absolute;
    width: 425px;
    margin-top: 0px;
}

.info_collection_augusta {
    position: absolute;
    width: 425px;
    margin-top: 83px;
}

.details-panel {
    position: fixed;
    top: 0;
    left: 100%;
    width: 50%;
    height: 100%;
    background-color: #fff;
    z-index: 100000;
    transition: left 0.5s ease-in-out;
}

.details-panel.open {
    left: 50%;
}

.details-panell {
    position: fixed;
    top: 0;
    left: 100%;
    width: 50%;
    height: 100%;
    background-color: #fff;
    z-index: 10000;
    transition: left 0.5s ease-in-out;
}

.details-panell.openn {
    left: 50%;
}

.product_subtitle {
    font-size: 13px;
    letter-spacing: 0.5px;
    font-family: sans-serif;
    font-weight: lighter;
    line-height: 1.5;
    color: #000;
}

.sub-contenedor {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;
    position: relative;
}

.image-container {
      position: relative;
      display: inline-block;
    }

.text-overlay {
    white-space: pre-wrap; /* Esto permite que los saltos de línea se muestren */
    word-wrap: break-word; /* Asegura que las palabras largas se dividan correctamente */
    position: absolute;
    text-align-last: center;
    margin-top: 150px; /* Margen superior inicial */
    margin-left: 217px;
    letter-spacing: 0.5;
    font-family: Times New Roman;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    pointer-events: none;
}

.text-overlayy {
    position: absolute;
    margin-top: 180px;
    margin-left: 215px;
    letter-spacing: 0.5;
    font-family: Times New Roman;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    pointer-events: none;
}

.imagenCargada {
    width: 130px; 
    height: auto;
    display: none; 
    position: absolute; 
    margin-top: 210px;
    margin-left: 150px;
    z-index: 0;
}

.text_personalize {
    margin-top: 25px;
    font-family: sans-serif;
    color: #000;
    font-size: 12px;
}

.personalize_box_half {
    width: 50%;
}

.half_box {
    display: flex;
}

.personalize_box_half {
    width: 50%;
}

.upload-btn {
    display: inline-block;
    width: 200px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    font-size: 13px;
    font-family: sans-serif;
    color: #757575;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

#inputImagen {
    display: none;
}

.personalize_box {
    display: flex;
    width: 100%;
}

.boxes {
    margin-top: 30px;
}

.boxes_2 {
    margin-top: 0px;
}

.upload-container {
    display: flex;
    width: 100%;
}

.contact {
    margin-top: 20px;
    width: 100%;
    padding: 25px;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
    border-radius: 0px;
}

.contract {
    margin-top: 20px;
    width: 100%;
    padding: 25px;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
    border-radius: 0px;
}

.contac_2 {
    margin-top: 20px;
    width: 100%;
    padding: 25px;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    border-radius: 0px;
}

.contact_per {
    margin-top: 20px;
    width: 100%;
    padding: 25px;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
    border-radius: 0px;
}

.contact_collection {
    margin-top: 10px;
    width: 50%;
    padding: 25px;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    border-radius: 0px;
}

.contact_collection_propuesta {
    margin-top: 25px;
    width: 50%;
    padding: 25px;
    border-radius: 0px;
    margin-bottom: 75px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    border-radius: 0px;
}

.start {
    margin-top: 25px;
    width: 100%;
    padding: 25px;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    border-radius: 0px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.overlayy {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.details-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    justify-content: space-between;
}

.details-containerr {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    justify-content: space-between;
}

.details-img {
    width: 10px;
    height: 10px;
}

.details-img_left {
    width: 10px;
    height: 10px;
    transform: rotate(180deg);
}

.details-content {
    color: white;
    padding: 20px;
    font-size: 18px;
    font-family: sans-serif;
    overflow-y: auto;
    height: 100%;
    padding-left: 50px;
    margin-right: 25px;
}

.detail-header {
    margin-top: 165px;
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    gap: 10px;  
    cursor: pointer;
}

.close_detail {
    width: 12px;
    height: 12px;
    cursor: pointer;
    transform: rotate(180deg);
}

.close_detaill {
    width: 12px;
    height: 12px;
    cursor: pointer;
    transform: rotate(180deg);
}

.detail_box_title {
    font-family: sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: lighter;
    letter-spacing: 0.5px;
    line-height: 0;
    cursor: pointer;
}

.detail_box_desc_base {
    font-family: sans-serif;
    font-size: 12px;
    margin-top: 35px;
    margin-bottom: -2px;
    color: #858585;
    font-weight: lighter;
    letter-spacing: 0.5px;
}

.detail_box_desc {
    font-family: sans-serif;
    font-size: 12px;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #858585;
    font-weight: lighter;
    letter-spacing: 0.5px;
}

.detail_box_desc_guia {
    font-family: sans-serif;
    font-size: 12px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #858585;
    font-weight: lighter;
    letter-spacing: 0.5px;
}

.detail_box_desc_subtext {
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
    color: #000;
}

.detail_box_desc_text {
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-top: -10px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
    color: #000;
}

.personalization_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 37px;
}

.personalization_container_one {
    width: 250px;
}

.personalization_container_two {
    padding-left: 25px;
    flex: 1;
    margin-right: 25px;
}

.alberto {
    width: 250px;
}

.alberta {
    display: none;
}

.comenzar {
    text-decoration: none;
    padding: 15px 75px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #18443b;
    color: #18443b;
    background-color: #fff;
    border-radius: 0px;
    margin-top: 20px;
}

.personalization_title {
    font-family: sans-serif;
    font-size: 12px;
    margin-bottom: 20px;
    color: #858585;
    font-weight: lighter;
    letter-spacing: 0.5px;
}

.personalization_text {
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
    color: #000;
}

.yb {
    width: 100%;
}

.product_title {
    font-size: 27px;
    color: #000;
    line-height: 0;
    margin-top: 15px;
    margin-bottom: 50px;
    font-family: sans-serif;
}

.product_title_one {
    font-size: 25px;
    line-height: 0;
    color: #18443b;
    font-family: sans-serif;
    font-weight: lighter;
}

.product_title_two {
    font-size: 25px;
    line-height: 0;
    margin-top: 40px;
    margin-bottom: 50px;
    color: #18443b;
    font-family: sans-serif;
    font-weight: lighter;
}

.product_text {
    margin-top: 35px;
    font-size: 15px;
    color: #000;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
}

.product_text_collections {
    margin-top: 35px;
    font-size: 15px;
    color: #000;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
}

.product_text_collections_propuesta {
    margin-top: 15px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
}

.product_text_collection {
    margin-top: 35px;
    font-size: 15px;
    color: #000;
    letter-spacing: 0.5px;
    font-family: sans-serif;
    font-weight: lighter;
    line-height: 1.5;
}

.product_text_price {
    margin-top: 10px;
    font-size: 15px;
    color: #000;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
}

.product_textunder {
    margin-top: -5px;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
}

.product_text_two {
    margin-top: -7px;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
    color: #000;
}

.product_text_two_guia {
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
    color: #000;
}

.product_text_two_guia_last {
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
    color: #858585;
}

.product_subtext {
    margin-top: 30px;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #18443b;
    font-family: sans-serif;
    font-weight: lighter;
    line-height: 1.5;
}

.product_text_order {
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Times New Roman;
    font-weight: lighter;
    line-height: 1.5;
    font-style: italic;
}

.product_info {
    font-size: 13px;
    line-height: 0.2;
    letter-spacing: 0.5px;
    color: #000;
    font-family: sans-serif;
    font-weight: lighter;
}

.product_line {
    width: 100%;
    height: 1px;
    background-color: #d5d5d5;
    border: none;
}

.imagenes {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-top: 15px;
}

.img_color {
    width: 40px;
    cursor: pointer;
}

.product_btn {
    text-decoration: none;
    padding: 15px 75px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #18443b;
    color: #18443b;
    background-color: #fff;
    border-radius: 0px;
    margin-top: 50px;
}

form {
    width: 100%;
    margin-top: 45px;
}

.fila {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
    
.fila {
    width: 100%;
    resize: vertical;
}
    
input, select, textarea {
    flex: 1;
    font-size: 13px;
    border-radius: 0px;
    font-family: sans-serif;
    border: 1px solid #ccc;
    color: #6b6b6b;
    width: 100%;
    resize: none;
    padding: 0px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-sizing: border-box;
    padding-left: 10px;
}

input::placeholder, textarea::placeholder {
    color: #ccc;
    font-size: 13px;
}

.form_box {
    width: 100%;
}

.form_box_collection {
    width: 100%;
    margin-top: 52px;
    margin-bottom: -32px;
}

.label_text {
    margin-top: 0px;
    margin-bottom: 7px;
    font-family: sans-serif;
    color: #000;
    font-size: 10px;
    letter-spacing: 0.3;
}

.label_text_surename {
    margin-top: 0px;
    margin-top: 15px;
    margin-bottom: 7px;
    font-family: sans-serif;
    color: #000;
    font-size: 10px;
    letter-spacing: 0.3;
}

.label_text_sure {
    margin-top: 10px;
    margin-bottom: 7px;
    font-family: sans-serif;
    color: #000;
    font-size: 10px;
    letter-spacing: 0.3;
}

.label_text_sure_2 {
    margin-top: 10px;
    margin-bottom: 7px;
    font-family: sans-serif;
    color: #000;
    font-size: 10px;
    letter-spacing: 0.3;
}

.customtext_2 {
    margin-bottom: -5px;
}

.form_subtitle {
    margin-top: 50px;
    margin-bottom: 0px;
    font-family: sans-serif;
    color: #000;
    font-size: 15px;
    letter-spacing: 0.3;
}

select#color {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 1px solid #ccc;
}

.custom-file-upload {
    padding: 9px;
    font-size: 13px;
    border-radius: 0px;
    font-family: sans-serif;
    border: 1px solid #ccc;
    color: #ccc;
    background-color: #fff;
    width: 100%;
    text-align: left;
}

.line_form_subtitle {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 25px;
    height: 1px;
    background-color: #ececec;
    border: none;
}

.enviar {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
    border-radius: 0px;
}

.collection {
    cursor: pointer;
    margin-bottom: 40px;
}

.collection-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.line_collection {
    width: 275px;
    margin-top: -10px;
    height: 0.5px;
    background-color: #000;
    border: none;
}

.collection_container {
    width: 100%;
    margin-top: 75px;
    display: none;
}

.help_container {
    width: 100%;
    margin-top: -35px;
    padding-bottom: 80px;
    display: flex;
}

.help_container_text {
    width: 425px;
    margin-left: 50px;
    align-self: center; /* lo centra horizontalmente */
    margin-top: -25px;
}

.collection_container_movil {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 115px;
    display: flex;
}

.collection_subcontainer {
    width: 425px;
    display: flex;
    gap: 15px;
    box-sizing: border-box;
    margin-top: 35px;
}

.collection_subcontainer_text {
    width: 425px;
    margin-left: 50px;
    align-self: center; /* lo centra horizontalmente */
}

.collection_title {
    font-size: 17px;
    line-height: 0.2;
    letter-spacing: 0.5px;
    color: #000;
    margin-top: 35px;
    padding-bottom: 20px;
    font-family: sans-serif;
    font-weight: bold;
}

.collection_title_propuesta {
    font-size: 17px;
    line-height: 0.2;
    letter-spacing: 0.5px;
    color: #fff;
    margin-top: 75px;
    padding-bottom: 25px;
    font-family: sans-serif;
    font-weight: bold;
}

.no-line {
    text-decoration: none;
    color: inherit;
}

.collection_subtitle {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #000;
    padding-top: 0px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    display: block;
    font-family: sans-serif;
    font-weight: lighter;
}

.img_range {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.img_help {
    width: 100%;
}

.producto-container {
    position: relative;
    display: inline-block;
    text-align: center;
    margin-bottom: 35px;
}

.producto-imagen {
    width: 100%;
    height: auto;
}

.producto-imagen-augusta {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
}

.producto-texto {
    position: absolute;
    top: 22.5%; /* ← Subido desde el 26% original */
    left: 49.5%;
    transform: translate(-50%, 0); /* solo horizontal, vertical lo manejamos por JS */
    white-space: pre-wrap;
    font-size: 42px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: bold;
    pointer-events: none;
    color: #023a06;
    line-height: 1;
    overflow-wrap: break-word; /* Para dividir palabras largas si es necesario */
    word-wrap: break-word;
    white-space: pre-wrap;
}

.producto-texto-augusta {
    position: absolute;
    top: 22.5%; /* ← Subido desde el 26% original */
    left: 49.5%;
    transform: translate(-50%, 0); /* solo horizontal, vertical lo manejamos por JS */
    white-space: pre-wrap;
    font-size: 42px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: bold;
    pointer-events: none;
    color: #023a06;
    line-height: 1;
}

.footer {
    background-color: #18443b;
    padding-top: 70px;
    padding-bottom: 60px;
}

.footer_container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.fila_superior, .fila_medio, .fila_inferior {
    display: flex;
    width: 100%;
}
        
.contenedor-interno {
    width: 100%;
}

.instagram {
    width: 20px;
    float: right;
    margin-right: 7px;
    cursor: pointer;
}

.tiktok {
    width: 18px;
    float: right;
    cursor: pointer;
}

.footer_line {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
    height: 2px;
    background-color: #ba996b;
    border: none;
}

.footer_title {
    font-family: sans-serif;
    color: #fff;
    font-size: 15px;
    float: left;
    font-weight: bold;
    margin-top: 0px;
}

.footer_text {
    font-family: sans-serif;
    color: #fff;
    font-size: 15px;
    float: left;
    font-weight: lighter;
    margin-top: 0px;
    line-height: 0.5;
    cursor: pointer;
}

.footer_subtext {
    font-family: sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: lighter;
    line-height: 1;
    margin-top: 15px;
    margin-right: 0;
    
}

.language_btn {
    background-color: transparent;
    font-family: sans-serif;
    color: white;
    border: none;
    font-weight: bold;
    width: 100px;
    padding: 0px 0px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    gap: 8px;
    line-height: 1.5;
    text-decoration: none;
}

.language_btn:hover {
    background-color: transparent;
}
        
.language_icon {
    width: 20px;
    height: 20px;
}

.arrow_icon {
    margin-top: 10px;
    width: 12px;
    height: 7px;
}

.amarillo {
    width: 50%;
}

.verde {
    width: 50%;
}
        
.rojo {
    width: 100%;
}
        
.marron {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
        
.rosa {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
       
.azul {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fila_inferior {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000000000;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    width: 800px;
    border-radius: 0px;
}

.modal_title {
    font-family: sans-serif;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    padding-top: 30px;
    margin-left: 50px;
    line-height: 25px;
}

.modal_line {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
    height: 1px;
    background-color: #dddddd;
    border: none;
}

.btn_class {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.close {
    color: #858585;
    float: right;
    font-size: 20px;
    font-weight: lighter;
    margin-top: -5px;
    padding: 20px;
}

.close:hover,
.close:focus {
    color: #858585;
    text-decoration: none;
    cursor: pointer;
}

.lang-btn_one {
    padding: 15px 75px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-right: 10px;
    border: 1px solid #000;
    background-color: #fff;
}

.lang-btn_two {
    padding: 15px 75px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-left: 10px;
    border: 1px solid #000;
    background-color: #fff;
}

.lang-btn:hover {
    background-color: #225f53;
    color: #fff;
}

.noscroll {
    overflow: hidden;
    height: 100vh;
}

.propuesta {
    width: 100%;
    margin-top: 50px;
    background-image: url('me.jpg'); /* Cambia esta URL por la imagen que quieras */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    color: white;
    font-family: Arial, sans-serif;
}

.propuesta_overlay {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Oscurecimiento */
    z-index: 1;
    padding-right: 50px;
    padding-left: 50px;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loader-logo {
    width: 100px;
    height: 100px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: spinY 1.5s linear infinite;
    transform-style: preserve-3d;
}

@keyframes spinY {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.carrito-barra {
    color: white;
    font-family: sans-serif;
    font-size: 12px;
    padding: 5px 15px;
    background-color: transparent;
    border-left: 1px solid rgba(255,255,255,0.2);
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.color-wrapper {
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 7px;
    box-sizing: border-box;
}

.color-wrapper.selected {
    border-color: #000; /* o el color que quieras */
}

.img_color {
    display: block; /* Esto elimina el espacio extra debajo */
    width: 40px;
    height: auto;
}


@media (max-width: 1000px) {
    .container {
        width: 100%;
        margin-bottom: 100px;
        padding-top: 180px;
    }
    
    .container_tc {
        width: 80%;
        margin-left: 10%;
        margin-bottom: 10%;
        margin-bottom: 100px;
        padding-top: 160px;
    }
    
    .subcontainer_two {
        width: 100%;
        display: block;
    }
    
    .contac_2 {
        margin-top: 15px;
        width: 100%;
        padding: 25px;
        border-radius: 0px;
        text-decoration: none;
        padding: 12px;
        cursor: pointer;
        font-size: 12px;
        letter-spacing: 1px;
        font-family: sans-serif;
        font-weight: lighter;
        border: 1px solid #000;
        color: #000;
        background-color: #fff;
        border-radius: 0px;
    }
    
    #cartItems {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .bloque1 {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
    
    .bloque2 {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
    
    .info {
        position: static; /* o lo que necesites */
        bottom: auto;
        width: 100%;
        margin-top: 35px;
    }
    
    .info_augusta {
        position: static; /* o lo que necesites */
        bottom: auto;
        width: 100%;
        margin-top: 35px;
    }
    
    .info_personalization {
        position: static; /* o lo que necesites */
        bottom: auto;
        width: 100%;
        margin-top: 35px;
    }
    
    .info_collection {
        position: static; /* o lo que necesites */
        bottom: auto;
        width: 100%;
        margin-top: 35px;
    }
    
    .help_container_text {
        width: 100%;
        margin-left: 0px;
        align-self: center; /* lo centra horizontalmente */
        margin-top: 50px;
    }
    
    .info_collection_augusta {
        position: static; /* o lo que necesites */
        bottom: auto;
        width: 100%;
        margin-top: 50px;
    }
    
    .details-panel {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 10000;
        transition: left 0.5s ease-in-out;
    }

    .details-panel.open {
        left: 0%;
    }

    .details-panell {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 10000;
        transition: left 0.5s ease-in-out;
    }

    .details-panell.openn {
        left: 0%;
    }
    
    .personalization_container {
        display: block;
        width: 100%;
        margin-top: 37px;
    }
    
    .personalization_container_one {
        width: 100%;
    }
    
    .personalization_container_two {
        margin-top: 30px;
        padding-left: 0px;
        margin-right: 0px;
    }
    
    .alberto {
        display: none;
    }

    .alberta {
        display: block;
        width: 100%;
    }
    
    .footer_container {
        display: flex;
        flex-direction: column;
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .fila_medio {
        display: flex;
        flex-direction: column; 
    }
    
    .marron {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .rosa {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .azul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fila_inferior {
        display: block;
    }
    
    .footer_subtext {
        margin-top: 50px;
    }
    
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000000000;
    }
    
    .modal-content {
        background-color: #fff;
        margin: 15% auto;
        width: 80%;
        border-radius: 0px;
        margin-top: 250px;
    }
    
    .lang-btn_one {
        padding: 15px;
        width: 125px;
        color: #000;
        font-size: 16px;
        cursor: pointer;
        border: none;
        margin-right: 5px;
        border: 1px solid #000;
        background-color: #fff;
    }

    .lang-btn_two {
        padding: 15px;
        width: 125px;
        color: #000;
        font-size: 16px;
        cursor: pointer;
        border: none;
        margin-left: 5px;
        border: 1px solid #000;
        background-color: #fff;
    }
    
    .subcontainer_two_order {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: -25px;
    }
    
    .fila {
        display: block;
        gap: 15px;
        margin-bottom: 0px;
    }
    
    input, textarea {
        flex: 1;
        padding: 12px;
        font-size: 1rem;
        padding-left: 12px;
        margin-bottom: 15px;
        font-size: 13px;
        border-radius: 0px;
        font-family: sans-serif;
        border: 1px solid #ccc;
        color: #6b6b6b;
        width: 100%;
        resize: none;
    }
    
    .label_text_sure_2 {
        margin-top: -10px;
    }
    
    .color {
        margin-bottom: 15px;
    }
    
    .custom-file-upload {
        padding: 9px;
        font-size: 13px;
        border-radius: 0px;
        font-family: sans-serif;
        border: 1px solid #ccc;
        color: #ccc;
        background-color: #fff;
        width: 100%;
        text-align: left;
        margin-bottom: 15px;
    }

    .form_box_collection {
        width: 100%;
        margin-top: 40px;
        margin-bottom: -40px;
    }
    
    .collection_container {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        display: none;
    }
    
    .collection-link {
        text-decoration: none;
        color: inherit;
        display: block;
        margin-top: -10px;
        margin-bottom: -10px;
    }
    
    .contact {
        margin-top: 15px;
        margin-bottom: -15px;
        width: 100%;
        padding: 25px;
        border-radius: 0px;
        text-decoration: none;
        padding: 12px;
        cursor: pointer;
        font-size: 12px;
        letter-spacing: 1px;
        font-family: sans-serif;
        font-weight: lighter;
        border: 1px solid #000;
        color: #fff;
        background-color: #000;
        border-radius: 0px;
    }
    
    .contract {
        margin-top: 30px;
        margin-bottom: -5px;
        width: 100%;
        padding: 25px;
        border-radius: 0px;
        text-decoration: none;
        padding: 12px;
        cursor: pointer;
        font-size: 12px;
        letter-spacing: 1px;
        font-family: sans-serif;
        font-weight: lighter;
        border: 1px solid #000;
        color: #fff;
        background-color: #000;
        border-radius: 0px;
    }
    
    .help_container {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: -35px;
        margin-bottom: -20px;
        display: block;
    }
    
    .collection_container_movil {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 75px;
        margin-bottom: -20px;
        display: block;
    }
    
    .collection_subtitle {
        font-size: 13px;
        line-height: 1.5;
        letter-spacing: 0.5px;
        color: #000;
        padding-top: 0px;
        cursor: pointer;
        text-decoration: none;
        color: #000;
        display: block;
        font-family: sans-serif;
        font-weight: lighter;
    }
    
    .product_text_collections {
        margin-top: 0px;
        font-size: 15px;
        color: #000;
        letter-spacing: 0.5px;
        font-family: Times New Roman;
        font-weight: lighter;
        line-height: 1.5;
        font-style: italic;
    }
    
    .img_range {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .boxes {
        margin-top: 10px;
    }

    .boxes_2 {
        margin-top: 5px;
    }
    
    .contact_per, .contact {
        margin-top: 50px;
        margin-bottom: 0px;
        width: 100%;
        padding: 25px;
        border-radius: 0px;
        text-decoration: none;
        padding: 12px;
        cursor: pointer;
        font-size: 12px;
        letter-spacing: 1px;
        font-family: sans-serif;
        font-weight: lighter;
        border: 1px solid #000;
        color: #fff;
        background-color: #000;
        border-radius: 0px;
    }
    
    .contact_per_2 {
        margin-bottom: 20px;
    }
    
    .collection_subcontainer {
        width: 100%;
        display: flex;
        gap: 15px;
        box-sizing: border-box;
        margin-top: 35px;
    }

    .collection_subcontainer_text {
        width: 100%;
        margin-left: 0px;
        align-self: center; /* lo centra horizontalmente */
    }

    .propuesta {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 65px;
        margin-bottom: 50px;
    }
    
    .propuesta_overlay {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* Oscurecimiento */
        z-index: 1;
        padding-right: 25px;
        padding-left: 25px;
    }
    
    .label_text_surename {
        margin-top: 0px;
        margin-top: 0px;
        margin-bottom: 7px;
        font-family: sans-serif;
        color: #000;
        font-size: 10px;
        letter-spacing: 0.3;
    }
    
    .color-warning {
        position: absolute;
        top: -2px; /* puedes ajustar esto según tu diseño */
        left: 50%;
        transform: translateX(-50%);
        color: red;
        font-size: 12px;
        font-family: sans-serif;
        font-style: italic;
        text-align: center;
        animation: fadeIn 0.3s ease;
        pointer-events: none;
        z-index: 1;
        display: none;
    }
}














.checkout-container {
        display: flex;
        flex-direction: column;
        max-width: 900px;
        margin: 0 auto 50px; /* ✅ Elimina el margen superior */
        padding: 0 20px;
        gap: 50px;
    margin-bottom: 0px;
    }
      
      #userEmail {
        color: #000;
          font-family: sans-serif;
          font-weight: lighter;
      }

    .checkout-right {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 30px;
        padding-top: 185px;
        background-color: #fafafa;
        box-sizing: border-box;
    }
      
      .step.active h2 {
  color: #000;
}

.steps {
    font-family: sans-serif;
}
      
    .resume {
          font-size: 17px;
        font-family: sans-serif;
      }
      
      .help-section {
    border-top: 1px solid #e5e7eb;
            margin-top: 30px;
        padding-top: 20px;
          padding-bottom: 0px;
          font-family: sans-serif;
}

.help-section h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.help-section p {
  font-size: 12px;
  color: #6b7280;
    font-family: sans-serif;
    font-weight: lighter;
  margin-bottom: 20px;
  line-height: 1.5;
}

.help-button_1 {
    display: block;
    text-decoration: none !important;
    color: #000 !important; /* o el color que prefieras */
    background-color: #007BFF;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.help-button_2 {
    display: block;
    text-decoration: none !important;
    color: #000 !important; /* o el color que prefieras */
    background-color: #007BFF;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 75px;
}

    @media (min-width: 1000px) {
        .checkout-container {
            flex-direction: row-reverse;
        }

        .checkout-right {
            width: 400px;
            border-bottom: none;
            padding-left: 30px;
            padding-bottom: 0;
            position: sticky;
            top: 0;
            overflow-y: auto;
        }

        .checkout-left {
            flex: 1;
        }
    }

    .checkout-left {
        width: 100%;
        padding-top: 185px;
    }

    .step {
        margin-bottom: 40px;
    }

    .step h2 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .collapsed-step {
        border-top: 1px solid #e5e7eb;
        padding-top: 30px;
    }

    .collapsed-step h2 {
        font-size: 17px;
        color: #828a96;
        font-weight: bold;
        margin-bottom: 0;
    }

    .step-content {
        margin-top: 20px;
        display: none;
        font-family: sans-serif;
    }

    .subtitulo {
      font-size: 14px;
        color: #6b7280;
        font-family: sans-serif;
        font-weight: lighter;
        padding-bottom: 20px;
    }

    .descripcion {
        font-size: 14px;
        color: #6b7280;
        margin-bottom: 30px;
    }

    .step-content label {
        color: #374151;
        margin: 20px 0 5px;
        display: block;
    }
      
      .step label {
      font-size: 12px;
      font-weight: normal;
          color: #5b5f66;
        margin-bottom: 5px;
      display: block;
    }

    .step-content input,
    .step-content select {
      width: 100%;
      padding: 0px 0;
      font-size: 14px;
        padding-bottom: 5px;
      border: none;
      border-bottom: 1px solid #d1d5db;
      background: transparent;
      outline: none;
        color: #6b7280;
    }

    .step-content input:focus,
    .step-content select:focus {
      border-bottom: 2px solid #000;
    }

    .label-static {
      font-size: 16px;
      margin-top: 20px;
      display: block;
      color: #111827;
    }

    .nota-envio {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 20px;
    }

    .contact-text {
        font-size: 14px;
        color: #6b7280;
        font-family: sans-serif;
        font-weight: lighter;
        margin-bottom: 30px;
    }

    .step input[type="email"] {
      width: 100%;
      padding: 10px 0;
      font-size: 13px;
      border: none;
      border-bottom: 1px solid #9ca3af;
      outline: none;
    }
      
      /* Todo lo que no es "Total" permanece verde */
.total-line .summary-detail span {
  font-weight: lighter;
    font-size: 14px;
}

/* Solo la línea de "Total" se pone roja (título y valor) */
.total-line .summary-detail:first-child span,
.total-line .summary-detail:first-child strong {
  font-weight: bold;
      font-size: 14px;
}


    .step input[type="email"]:focus {
      border-bottom: 2px solid #000;
    }
      
      .product-detail-text {
  font-weight: lighter;
          font-family: sans-serif;
          font-size: 12px;
}
      
      .product-detail-title {
  font-weight: lighter;
          font-family: sans-serif;
          font-size: 14px;
}

.submit-btn {
    margin-top: 40px;
    background-color: #e5e7eb;
    border: none;
    padding: 16px;
    font-size: 13px;
    width: 100%;
    border-radius: 10px;
    color: #6b7280;
    cursor: not-allowed;
}

    .confirmed-text {
      font-size: 14px;
        color: #6b7280;
        font-family: sans-serif;
        font-weight: lighter;
        margin-bottom: 30px;
    }

    .change-email-btn {
      background: none;
      border: none;
      color: #111827;
      font-weight: 500;
      font-size: 13*px;
      text-decoration: underline;
      cursor: pointer;
      padding: 0;
    }

    .order-summary {
      font-size: 14px;
    }

    .product-summary {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
        margin-top: 25px;
    }

    .product-summary img {
      width: 100px;
      margin-right: 10px;
      object-fit: cover;
    }

    .summary-detail {
      display: flex;
      justify-content: space-between;
      margin: 5px 0;
        font-family: sans-serif;
    }

.total-line {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 15px;
}

.pagar-btn {
    width: 100%;
    background: black;
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    font-size: 13px;
    border-radius: 10px;
}
      
.delivery {
    font-size: 13px;
    color: #000;
    padding-bottom: 15px;
    font-family: sans-serif;
    font-weight: normal;
    margin-top: 0px;
}

.payment_line {
    margin-top: 45px;
    margin-bottom: 100px;
    border: 0.5px solid #e8e8e8;
}
      
.resum {
    font-size: 14px;
    color: #6b7280;
    padding-top: 5px;
    margin-top: -15px;
    font-family: sans-serif;
    font-weight: lighter;
}

.resum_i {
    font-size: 14px;
    color: #6b7280;
    padding-top: 5px;
    margin-top: -15px;
    font-family: sans-serif;
    font-weight: lighter;
    font-style: italic;
}

.resum_delivery {
    font-size: 13px;
    color: #000;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: sans-serif;
    font-weight: normal;
}

.resum_pay {
    font-size: 13px;
    color: #000;
    padding-top: 0px;
    padding-bottom: 15px;
    font-family: sans-serif;
    font-weight: normal;
}

.resum_term {
    font-size: 13px;
    color: #474a4f;
    padding-top: 0px;
    padding-bottom: 15px;
    font-family: sans-serif;
    font-weight: normal;
    line-height: 1.6;
    margin-left: 3px;
    margin-bottom: -50px;
}

.resum_acept_1 {
    font-size: 14px;
    color: #6b7280;
    font-family: sans-serif;
    font-weight: lighter;
}

.resum_acept_2 {
    font-size: 14px;
    color: #6b7280;
    margin-top: -10px;
    font-family: sans-serif;
    font-weight: lighter;
    padding-bottom: 50px;
}

.termsError {
    color: red; 
    font-size: 11px; 
    display: none;
    font-family: sans-serif;
    font-weight: lighter;
    margin-top: 35px;
    margin-bottom: -10px;
}

#paymentStep.active h2 {
    color: #000;
}

#paymentStep .step-content {
    display: block;
}

.check_term {
    float: left;
    margin-left: -1px;
}

a.terms-link,
a.terms-link:visited,
a.terms-link:active {
    color: #000 !important;
    text-decoration: underline;
}

@media (max-width: 1000px) { 
    .checkout-right {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 10%;
        padding-top: 160px;
        background-color: #fafafa;
        box-sizing: border-box;
    }
    
    .checkout-container {
        display: flex;
        flex-direction: column;
        margin: 0 auto 0px; /* ✅ Elimina el margen superior */
        padding: 0 0px;
        margin-bottom: 0px;
    }
    
    .checkout-left {
        width: 80%;
        padding-top: 0px;
        margin-left: 10%;
        margin-right: 10%;
    }

    .help-button_2 {
        display: block;
        text-decoration: none !important;
        color: #000 !important; /* o el color que prefieras */
        background-color: #007BFF;
        padding: 10px 15px;
        border-radius: 5px;
        display: inline-block;
        width: 100%;
        background: transparent;
        border: 1px solid #d1d5db;
        padding: 12px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
        cursor: pointer;
        border-radius: 6px;
        margin-bottom: 0px;
    }
}

.term_style {
    position: absolute;
}
