/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

textarea { resize: none; }
body:not(.home) .header-color { background: #B3A99B !important; }
#lostpasswordform legend, #lostpasswordform .somfrp-lost-pass-form-text, 
#lostpasswordform .no-margin label { display: none; }

.lostpassword-submit { margin: 0; }
#lostpasswordform fieldset { border: 0; padding: 0; margin: 0; }
#lostpasswordform input { 
    background: #F0F2F480;
    font-family: "Urbanist", Sans-serif;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: #000000;
    border: none;
    padding: 6px 16px;
    min-height: 47px;
}
#lostpasswordform button {
	 background: #C9D0D9;
    color: #000000;
    font-family: "Urbanist", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 18px 0px;
    min-height: 40px;
    border: none;
	width: 100%;
}
#lostpasswordform button:hover { background: #ECE6E6; }
.marco-opcion {
    border: 1px solid #ccc;
    padding: 10px;
    width: 200px;
    text-align: center;
}
.marco-opcion img { width: 100%; height: auto; }
.pasos-header {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}
.paso-icono {
    text-align: center;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.paso-icono img {
    width: 200px;
    height: 200px;
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0.5;
}
.paso-icono.paso-activo img {
    filter: none;          /* elimina el grayscale */
    transform: scale(1.2); /* agranda el ícono */
    opacity: 1;
}
.paso-icono p {
    margin-top: 5px;
    opacity: 0.6;
    color: #000;
    font-family: "Urbanist", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.paso-icono.paso-activo p { opacity: 1; }
.paso { display: none; }
.paso.mostrar { display: block; }
.upload-panel {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}
.upload-image img {
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.boton-subir {
    margin-right: 10px;
    background-color: #d0d5db;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
.marco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.marco-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.marco-borde {
    position: relative;
    padding: 10px;
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
}
.marco-indicador {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid black;
    border-radius: 50%;
    background-color: white;
}
.marco-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}
.marco-info { padding: 10px; }
.marco-titulo { font-weight: bold; margin: 8px 0 4px; }
.marco-precio { font-weight: bold; margin-top: 6px; color: #222; }
.marco-colores {
    display: flex;
    gap: 6px;
    margin: 6px 0;
    align-items: center;
}
.color-circulo {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}
/* Contenedor principal */
.marco-card {
    border: 2px solid transparent;
    transition: all 0.3s ease; /* Transición mejorada para todos los efectos */
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden; /* Para contener la imagen escalada */
    background: white; /* Fondo para mejor contraste */
}

/* Imagen dentro del card (asumiendo que tiene clase marco-img) */
.marco-card img.marco-img {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Efecto easing suave */
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px; /* Redondeo ligeramente menor que el contenedor */
}

/* Efecto hover - Aumenta sombra y escala imagen */
.marco-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Sombra más pronunciada */
}

.marco-card:hover img.marco-img {
    transform: scale(1.03); /* Escala sutil */
}

/* Estado seleccionado */
.marco-card.seleccionado {
    box-shadow: 0 0 0 2px rgba(35, 13, 70, 0.3), 
                0 5px 20px rgba(35, 13, 70, 0.2); /* Doble sombra para efecto de borde + difuminado */
    border-color: #230d46; /* Borde morado visible */
}

/* Indicador de selección */
.marco-indicador {
    width: 18px; /* Ligeramente más grande */
    height: 18px;
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0; /* Inicialmente invisible */
    transform: scale(0.8); /* Efecto de aparición */
}

.marco-card:hover .marco-indicador {
    opacity: 1; /* Visible al hacer hover */
    transform: scale(1);
}

.marco-card.seleccionado .marco-indicador {
    background: black;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 2px white; /* Borde blanco para mejor contraste */
}

/* Círculos de color (mejorado) */
.color-circulo {
    display: inline-block;
    width: 16px; /* Más grande */
    height: 16px;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: transform 0.2s, box-shadow 0.2s;
    vertical-align: middle;
}

.color-circulo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.color-circulo.activo { border: 2px solid #C9D0D9; transform: scale(1.3); }
.upload-panel {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}
.upload-columna { width: 48%; }
.upload-columna.izquierda img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}
.upload-columna.derecha { display: flex; flex-direction: column; justify-content: space-between; }
.upload-box label {
    display: block;
    margin-bottom: 18px;
    font-family: "Urbanist", Sans-serif;
    letter-spacing: 0.8px;
    color: #6B6B6B;
}
.upload-box input[type="file"] { width: 100%; }
.upload-acciones {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.boton-subir, .btn-atras, .agregar_al_carrito, .agregar_y_reiniciar, .btn-siguiente,
#agregar_al_carrito, #agregar_y_reiniciar {
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton-subir:hover, .btn-atras:hover, .agregar_al_carrito:hover, .agregar_y_reiniciar:hover, 
.btn-siguiente:hover, .boton-subir:focus, .btn-atras:focus, .agregar_al_carrito:focus, 
.agregar_y_reiniciar:focus, .btn-siguiente:focus, #agregar_y_reiniciar:hover, #agregar_y_reiniciar:focus, 
#agregar_al_carrito:hover, #agregar_al_carrito:focus {
    background-color: #C9D0D9;
    border-color: #C9D0D9;
    color: #000;
}
.botones-navegacion {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
    z-index: 5;
}

#preview_modal .preview-container {
    position: relative;
    max-width: 400px;
    width: 80%;
    margin: auto;
}

#preview_modal{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 99%;
    object-fit: cover;
    z-index: 1; /* fondo */
}
#preview_foto {
  position: absolute !important;
    top: 45% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 73% !important;
    height: 64% !important;
    object-fit: cover !important;
    z-index: 1 !important;
}

#resumen_foto {
  position: absolute !important;
  top: 20%!important;
  left: 20%!important;
  width: 60%!important;
  height: 60%!important;
  object-fit: cover!important;
  z-index: 1!important;
}
#preview_modal h3 { 
    font-family: "Bellota Text", Sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
    text-align: center;
}
#preview_modal #preview_marco {
    position: relative;
    width: 100%;
    z-index: 2; /* encima */
    pointer-events: none;
}
.upload-form {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 50px;
}
.upload-thumbnails { padding: 20px; background: white; }
.tarjeta-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
    display: inline-block;
    width: 180px;
    vertical-align: top;
    position: relative;
}
.tarjeta-card.seleccionada { border-color: #999; box-shadow: 0 0 0 2px rgba(0,0,0,0.15); }
.tarjeta-borde { position: relative; }
.tarjeta-indicador {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border: 2px solid #333;
    border-radius: 50%;
    background: white;
}
.tarjeta-card.seleccionada .tarjeta-indicador { background: #333; }
.tarjeta-img { width: 100%; border-radius: 5px; display: block; }
.tarjeta-info { text-align: center; margin-top: 10px; }
.tarjeta-titulo { font-weight: bold; font-size: 14px; }
.tarjeta-precio { color: #666; font-size: 13px; }
.tarjeta-campos {
    display:none; 
    margin-top:20px;
    width: 95%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tarjeta-campos label {
    font-weight: normal;
    font-size: 14px;
    display: block;
    color: #333;
}
.tarjeta-campos input, .tarjeta-campos textarea {
    width: 100%;
    background:#F0F2F480;
    font-weight: 400;
    font-size: 16px;
    padding: 6px 16px;
    color: #000000;
    border: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.tarjeta-campos input:focus, .tarjeta-campos textarea:focus {
    outline: none;
    border-color: #999;
}
.tarjeta-campos textarea { min-height: 100px; resize: none; }
.tarjeta-campos .tarjeta-campos { width: 50%; }
#paso-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Urbanist", Sans-serif;
}
#paso-3 h2, #paso-3 h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.confirmacion-texto h2 {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}
#paso-3 h4 { font-size: 18px; }
#marco-constructor .paso { display: none !important; }
#marco-constructor .paso.mostrar { display: block !important; }
.confirmacion-imagenes {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 56%;
}
.confirmacion-imagenes .marco-preview { top: 35px; left: -30px; z-index: 2; max-width: 315px; }
#resumen_foto { height: 100%; }
.confirmacion-imagenes:before {
    content: '';
    position: absolute;
    top: 0;
	/*Caja fondo ultimo paso sube tu fotografía/
/*     background: url(/wp-content/uploads/2025/04/box-arte.png) no-repeat center; */
    width: 100%;
    height: 97%;
    background-size: contain;
    transform: rotate(4deg);
    z-index: 1;
	
}
#paso-4 { position: relative;}
.confirmacion-imagenes img { max-width: 100%; height: auto; }
.cuadro-rotado {
    position: relative;
    width: 100%;
    max-width: 400px;
/*     transform: rotate(-5deg); */
}
.tarjeta-rotada { 
/*     transform: rotate(-8deg); */
    max-width: 180px;
    z-index: 5;
    position: relative;
    left: 83px;
}
.confirmacion-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    flex-wrap: wrap;
    margin-top: 40px;
    text-align: left;
}
.confirmacion-texto { width: 40%; font-family: "Urbanist", Sans-serif; font-size: 17px; }
.marco-preview , {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
/*     transform: rotate(-8deg); */
    z-index: 5;
	
}

.marco-preview-img {
    position: relative;
    width: 100%;
    z-index: 2;
    pointer-events: none;
	
}
.foto-preview-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; 
}
#embalaje { 
    background:#F0F2F480;
    font-weight: 400;
    font-size: 16px;
    padding: 6px 16px;
    color: #000000;
    border: none;
    min-height: 47px;
}
.menucartavi-icono .variation { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
.menucartavi-icono .variation dt.variation-Imagenpersonalizada { width: 85%; }
.menucartavi-icono .variation dd.variation-Imagenpersonalizada { width: 15%; }
.menucartavi-icono .variation dd, .menucartavi-icono .variation dt { 
    width: 49%;
    line-height: 18px;
    margin: 2px 0;
    background: #C9D0D91C;
    padding: 4px 3px;
    border-radius: 4px;
}
.menucartavi-icono dd.variation-Imagenpersonalizada a { 
    background: url(/wp-content/uploads/2025/03/image.svg) no-repeat;
    background-size: contain;
    font-size: 0 !important;
    height: 20px;
    width: 20px;
    display: table;
}
.menucartavi-icono dd.variation-Imagenpersonalizada a:hover { 
    filter: brightness(0) saturate(100%) invert(0%) sepia(99%) saturate(0%) hue-rotate(173deg) brightness(96%) contrast(100%);
}

.campos-checkout .campo-oculto, .e-coupon-box, .e-cart-totals { display: none !important; }
.woocommerce-order-received .campos-checkout > .elementor-widget-container { 
    min-height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row { width: 48%; }
#billing_address_1_field, #shipping_address_1_field { width: 100%; }
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper { 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap; 
}
.select2-selection__arrow { height: 35px; }
#select2-billing_state-container, #select2-shipping_state-container { height: 50px; padding: 2px 16px; }
.e-woo-select2-wrapper .select2-results__option:focus { color: #fff !important; }
#order_comments { resize: none; }
.productos-checkout .actions { display: none !important; }
.campos-checkout .shop_table thead, .campos-checkout .shop_table tbody { display: none !important; }
.e-checkout__order_review, .woocommerce-billing-fields { margin-top: 20px !important; }

h3.titulo { 
	font-family: "Bellota Text", Sans-serif;
    font-size: 35px !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;

}
.texto-gracias {
    text-align: center;
    font-size: 22px;
    font-family: "Lexend Deca", Sans-serif;
    color: #000000;
    font-weight: 300;
 }
.texto2-gracias {
    text-align: center;
    font-size: 17px;
    font-family: "Urbanist", sans-serif;
    color: #6B6B6B;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 0.8px;
}
.texto-colores {  font-family: "Urbanist", Sans-serif; }
.woocommerce-order-received .campos-checkout > .elementor-widget-container { 
    min-height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.instruccion-seleccion-marco { 
    color: #000;
    font-family: "Urbanist", Sans-serif;
    font-size: 20px;
    font-weight: 400; 
}
.hover-imagen a:hover:before{
    content: '';
    background: rgba(0,0,0,0.4) url(/wp-content/uploads/2025/05/plus.svg) no-repeat center;
    background-size: 25px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
	left: 0;
    display: table;
	z-index: 2;
}


body[data-elementor-device-mode="mobile"] .pasos-header { gap: 0; margin-top: 30px; }
body[data-elementor-device-mode="mobile"] .paso-icono { margin: 0 5px; }
body[data-elementor-device-mode="mobile"] .paso-icono img { height: auto; }
body[data-elementor-device-mode="mobile"] .paso-icono p { font-size: 15px; line-height: 18px; }



body[data-elementor-device-mode="mobile"] .btn-atras,
body[data-elementor-device-mode="mobile"] .agregar_al_carrito,
body[data-elementor-device-mode="mobile"] .agregar_y_reiniciar,
body[data-elementor-device-mode="mobile"] .btn-siguiente, 
body[data-elementor-device-mode="mobile"] #agregar_al_carrito, 
body[data-elementor-device-mode="mobile"] #agregar_y_reiniciar { 
    font-size: 12px;
    width: 60%;
    margin: 0 auto;
}
body[data-elementor-device-mode="mobile"] .confirmacion-container { flex-direction: column;  }
body[data-elementor-device-mode="mobile"] .confirmacion-imagenes::before { height: 52%;  }
body[data-elementor-device-mode="mobile"] .confirmacion-imagenes { width: 50%; }
body[data-elementor-device-mode="mobile"] .confirmacion-texto { width: 100%; position: relative; top: 10px;; }
body[data-elementor-device-mode="mobile"] .botones-navegacion { flex-direction: column;  }

body[data-elementor-device-mode="mobile"] .tarjeta-card { width: 140px; }
body[data-elementor-device-mode="mobile"] .tarjeta-info { margin-bottom: 10px; }
body[data-elementor-device-mode="mobile"] .tarjeta-campos .tarjeta-campos { width: 100%; }
body[data-elementor-device-mode="mobile"] .tarjeta-rotada { max-width: 104px; left: 41px; }
body[data-elementor-device-mode="mobile"] .confirmacion-imagenes .marco-preview { top: 0; }
/* 
/*Estilos de sube tu foto movil*/
@media (max-width: 767px) {
    .upload-panel {
        flex-direction: column!important;
        gap: 20px!important;
        align-items: center!important;
    }
    
    .upload-columna {
        width: 100% !important;
    }
    
    .upload-columna.izquierda img {
        max-width: 250px!important;
        margin: 0 auto!important;
    }
    
    .upload-form {
        margin-top: 20px !important;
        padding: 15px !important;
        min-height: auto !important;
    }
    
    .upload-box label {
        margin-bottom: 12px!important;
        font-size: 14px!important;
    }
    
    .upload-acciones {
        margin-top: 15px!important;
        align-items: center!important;
    }
    
    #ver_preview {
        width: 100%!important;
        padding: 12px 0!important;
    }
    
    #preview_modal .preview-container {
        width: 95%!important;
        position: relative;
    }
    
	#preview_marco {
        position: relative;
        z-index: 2;
    }
   #preview_foto {
        position: absolute!important;
        top: 50%!important;
        left: 50%!important;
        transform: translate(-50%, -50%)!important;
        max-width: 70%!important;
        max-height: 60%!important;
        width: auto!important;
        height: auto!important;
        object-fit: contain!important;
    }
	.cuadro-rotado.marco-preview {
        transform: scale(1.2); /* Aumenta un 20% el tamaño */
        transform-origin: center;
        margin: 30px auto; /* Añade espacio alrededor */
        width: 100%;
        max-width: 95%; /* Evita que toque los bordes */
    }
	.marco-preview-img {
        width: 100%;
        height: auto;
    }

     #preview_foto, #resumen_foto {
        position: absolute!important;
        top: 50%!important;
        left: 50%!important;
        transform: translate(-50%, -50%)!important;
        max-width: 80%!important;
        max-height: 70%!important;
        width: auto!important;
        height: auto!important;
        object-fit: contain!important;
    }
}

/* Estilos product archive */
.woocommerce-loop-product__link img {
    background-color: #FAFAFA;
    padding: 5px;
    display: block;
}

.woocommerce-result-count, .woocommerce-ordering{
	display: none;
	}


/******ESTILO PARA BOTON VERIFICAR PANEL DERECHO*/
a.elementor-button.elementor-button--checkout {
  background-color: #C9D0D9;
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Hover con animación */
a.elementor-button.elementor-button--checkout:hover {
  color: black;
  background-color: #ECE6E6; /* tono más claro en hover */
}




/* Ajuste para móviles */
@media (max-width: 768px) {
  .quantity input.qty {
    width: 120px !important;
    height: 55px !important;
  }
  
  .quantity .qty-buttons-vertical {
    height: 55px;
  }
  
  .qty-button {
    width: 25px;
    height: 27.5px;
  }
}


/* Aplicar Urbanist a todo el contenedor del formulario */
.epow-wrapper-form-options,
.epow-wrapper-form-options * {
    font-family: 'Urbanist', sans-serif !important;
}

/* Estilos específicos para diferentes elementos */
.epow-element-label span,
.epow-wrapper-field label,
.epow-final-totals-box span,
.epow-product-total,
.epow-options-total,
.epow-grand-total {
    font-family: 'Urbanist', sans-serif !important;
}

/* Placeholder del textarea */
.epow_field.textareaform::placeholder {
    font-family: 'Urbanist', sans-serif !important;
    color: #999; /* Color opcional para el placeholder */
}

/* Texto dentro del textarea */
.epow_field.textareaform {
    font-family: 'Urbanist', sans-serif !important;
}

/* Checkbox label */
.epow-wrap-checkbox label {
    font-family: 'Urbanist', sans-serif !important;
    cursor: pointer;
}

/* Totales */
.epow-final-totals-box .amount {
    font-family: 'Urbanist', sans-serif !important;
    font-weight: 600; /* Puedes ajustar el peso */
}

/* Asegurarse que los inputs también usen Urbanist */
.epow-wrapper-field input:not([type="checkbox"]),
.epow-wrapper-field textarea {
    font-family: 'Urbanist', sans-serif !important;
}

/* Contenedor principal del checkbox */
#field_1749673784433 .epow-wrap-checkbox {
  margin: 8px 0;
}

/* Estilos para la etiqueta */
#field_1749673784433 label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 6px;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  font-family: 'Urbanist', sans-serif;
  color: #333; /* Color de texto opcional */
  transition: color 0.2s ease;
}

/* Efecto hover en la etiqueta */
#field_1749673784433 label:hover {
  color: #000; /* Oscurecer texto al pasar el mouse */
}

/* Checkbox personalizado */
#field_1749673784433 input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 2px solid #7A7878;
  border-radius: 50%;
  background-color: white;
  position: relative;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  vertical-align: middle;
  transition: border-color 0.2s ease;
}

/* Checkbox hover */
#field_1749673784433 input[type="checkbox"]:hover {
  border-color: #5a5a5a;
}

/* Checkbox marcado (mantiene borde gris y fondo blanco) */
#field_1749673784433 input[type="checkbox"]:checked {
  background-color: white !important;
  border-color: #7A7878 !important;
  box-shadow: none !important;
}

/* Punto central cuando está marcado */
#field_1749673784433 input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: #7A7878;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Estado focus para accesibilidad */
#field_1749673784433 input[type="checkbox"]:focus {
  outline: 2px solid rgba(122, 120, 120, 0.3);
  outline-offset: 2px;
}

/* Estilos para el texto "Llevar a domicilio" */
#field_1749673784433 label span {
  display: inline-block;
  vertical-align: middle;
}

/*fondo de swatchesd*/
/* Quitar fondo gris del área de variaciones */
td.woo-variation-items-wrapper {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Poner el label y los swatches en línea horizontal */
.variations tr {
  display: flex;
  align-items: center;
}
/* Poner el label y los swatches en línea horizontal */
.variations tr {
  display: flex;
  align-items: center;
}

/* Ajustar celdas para que se distribuyan bien */
/* Poner el label y los swatches en línea horizontal */
.variations tr {
  display: flex;
  align-items: center;
}

/* Ajustar celdas para que se distribuyan bien */
.variations tr .label {
  margin-right: 10px;
  white-space: nowrap;
}

.variations tr .value {
  flex-grow: 1;
}

a.reset_variations{
	display: none!important;
}

.woo-selected-variation-item-name{
	display: none!important;
}

.variations th.label {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.custom-more-frames-btn {
  display: block;
  width: 100%;
  padding: 15px 0; /* Aumenté el padding vertical */
  margin-top: 70px; /* Espacio más grande arriba del botón */
  color: #4E5A48 !important;
  text-align: center;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #4E5A48;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: -0.1px; /* Mejor legibilidad */
}

.custom-more-frames-btn:hover {
  background-color: #4E5A48;
  color: white !important;
}

/* Contenedor principal de botones */
.e-atc-qty-button-holder {
  width: 100%;
  margin-bottom: 15px; /* Espacio después del contenedor */
}

/* Botón principal "Ver marco" */
.single_add_to_cart_button {
  width: 100%;
  margin-bottom: 0;
  padding: 15px 0; /* Mismo padding vertical que el otro botón */
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .custom-more-frames-btn {
    margin-top: 60px;
    padding: 12px 0;
  }
  
  .e-atc-qty-button-holder {
    margin-bottom: 10px;
  }
}




/* desactivar in stock singl products*/
.stock.in-stock{
	display: none;
}

/* Garantiza que el botón NUNCA sea visible */
/* form.cart button.single_add_to_cart_button {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
} */

#field_1749673784433{
	display: none!important;
	visibility: hidden !important;
}

/*HOVER PRODUCTOS ARCHIVE OJO*/

/* 

/* Tarjetas sube tu foto en mensaje desactivar*/
/* Oculta completamente el título y la lista de tarjetas */
#tarjetas_disponibles > h4,
#lista_tarjetas {
    display: none !important;
}

#tarjetas_disponibles {
    margin-top: 0;
}



/* Ocultar flechas nativas */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -moz-appearance: textfield;
}

/* Contenedor principal */
.quantity {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}

/* Input de número */
.quantity input.qty {
  font-family: 'Urbanist', sans-serif;
  width: 130px !important;
  height: 53px !important;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  background-color: #FFFFFF !important;
  border: 1px solid #4E5A48 !important;
  border-radius: 10px 0 0 10px;
  padding: 0;
  margin: 0;
}

/* Contenedor de botones */
.quantity .qty-buttons-vertical {
  display: flex;
  flex-direction: column;
  height: 53px;
  gap: 1px;
  justify-content: flex-start;
  font-size: 0;
}

/* Botones + y - */
.qty-button {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  background-color: #4E5A48 !important;
  color: white;
  width: 28px;
  height: 32.5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* Botón + (arriba) */
.qty-button.plus {
  border-radius: 0 5px 0 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.2);
color: white !important;
}

/* Botón - (abajo) */
.qty-button.minus {
  border-radius: 0 0 5px 0 !important;
	color: white !important;
}

/* Hover y estados */
.qty-button:hover {
}

.qty-button:active,
.qty-button:focus {
  background-color: #4E5A48;
  outline: none;
  box-shadow: none;
}

/* Contenedor del botón principal */
.add-to-cart-container {
  flex-grow: 1;
}
/*******************************************/
/* Ocultar error de WooCommerce */
.woocommerce-notices-wrapper .woocommerce-error {
    display: none !important;
}

/* Estilo popup error Woo */
#popup_error_woo {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

#popup_error_woo .popup-inner {
    background: #fff;
    padding: 20px;
    position: relative;
    max-width: 450px;
    width: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

#popup_error_woo .popup-inner h3 {
    color: #e74c3c;
}

#popup_error_woo .popup-inner button {
    margin-top: 15px;
    padding: 8px 16px;
    border: none;
    background-color: #C9D0D9;
    font-family: 'Urbanist', sans-serif;
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#popup_error_woo .popup-inner button:hover {
    background-color: #ECE6E6;
    color: #000000;
}

#popup_error_woo .popup-inner #cerrar_popup_error_woo {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #555;
}
#popup_error_woo ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#popup_error_woo li {
    margin-bottom: 10px;
}

/* Estilos para el overlay de carga del checkout al eliminar productos en la barra lateral derecha*/
.removing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    z-index: 999999;
    font-family: 'Urbanist', sans-serif;
}

body.removing-item {
    pointer-events: none;
    cursor: wait;
}

#custom-cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
}

#custom-cart-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ECE6E6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    text-align: center;
    max-width: 80%;
    width: 400px;
    font-family: 'Urbanist', sans-serif;
}

#custom-cart-message {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    font-family: 'Urbanist', sans-serif;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ARCHIVE PRODUCT  */
.woocommerce-LoopProduct-link img.attachment-woocommerce_thumbnail {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block;
    aspect-ratio: 300/300;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 6px;
    padding: 20px; 
    box-sizing: border-box; 
}

/********MENSAJE WOOO*****/
/* Mensaje principal - Estilo profesional AVI */
.woocommerce-message {
    background-color: #E9E4E5;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 14px 20px 14px 60px;
    margin-bottom: 25px;
    border-radius: 8px;
    position: relative;
    line-height: 1.5;
    font-size: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Basurero cart como icono (versión negra) */
.woocommerce-message:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-image: url('https://dev-arte-visual-impreso.pantheonsite.io/wp-content/uploads/2025/06/framework_13217.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.9;
}

/* Enlace "Deshacer" - Estilo coherente con marca */
.restore-item {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #f3f4f6;
    transition: all 0.2s ease;
}

.restore-item:hover {
    color: #1e3a8a;
    background-color: #e5e7eb;
}

/* Efecto sutil al cargar */
@keyframes aviMessageFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.woocommerce-message {
    animation: aviMessageFadeIn 0.3s ease-out;
}

.submensaje-advertencias {
    font-family: 'Urbanist', sans-serif; /* por si quieres tipografía uniforme */
    font-size: 14px;
    text-align: center;
}
.submensaje-advertencias-rf {
    font-family: 'Urbanist', sans-serif; /* por si quieres tipografía uniforme */
    font-size: 14px;
    text-align: center;

}
.submensaje-rf {
	margin-top: 30px;
    margin-left: -54px;
    width: 290px;
}


.woocommerce-form-login__submit {
    padding: 10px 20px; /* más espacio para el texto */
    font-size: 14px!important; /* texto más claro */
    white-space: normal; /* permite que el texto se acomode */
    overflow: visible; /* no recorta texto */
    text-overflow: unset; /* no agrega puntos suspensivos */
    display: inline-block; /* asegura que el ancho se ajuste al contenido */
    box-sizing: border-box;
}

.marco-borde {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: default; /* Evita que toda la imagen sea clickeable */
}

.marco-borde img.marco-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Estilo del ojito */
.marco-borde::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.5);
    background-image: url('https://dev-arte-visual-impreso.pantheonsite.io/wp-content/uploads/2025/06/ojo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% auto;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Permite clicks "a través" del pseudo-elemento */
    z-index: 10;
}

.marco-borde:hover::after {
    opacity: 1;
}

/* Clase para hacer el ojito clickeable */
.marco-borde.clickable-ojito {
    cursor: pointer;
}

.marco-borde.clickable-ojito::after {
    pointer-events: auto;
}


/* Contenedor del producto */
.woocommerce-LoopProduct-link {
    display: block;
    border: 2px solid transparent;
    transition: box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    padding: 10px;
    background: white;
    overflow: hidden; /* Evita que la imagen sobresalga al escalar */
}

/* Efecto hover en el contenedor */
.woocommerce-LoopProduct-link:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Imagen del producto */
.woocommerce-LoopProduct-link img {
    border-radius: 6px;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease; /* Transición para el efecto de escala */
    width: 100%;
    height: auto;
}

/* Efecto hover en la imagen: Escala ligeramente */
.woocommerce-LoopProduct-link:hover img {
    transform: scale(1.03); /* Aumenta un 3% el tamaño */
}

/* Estado seleccionado */
.woocommerce-LoopProduct-link.seleccionado {
    box-shadow: 0 0 10px rgba(35, 13, 70, 0.3);
}

/* Indicador de selección (círculo en esquina) */
.woocommerce-LoopProduct-link::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2; /* Asegura que esté por encima de la imagen */
}

.woocommerce-LoopProduct-link.seleccionado::before {
    opacity: 1;
    background: black;
}
