.entry-meta{
	display:none!important
}

.woocommerce ul.products li.product a img {
    border-radius: 20px; /* Ajusta este número a tu gusto */
    transition: all 0.3s ease; /* Para que se vea suave si pones efectos */
}

/* Opcional: Redondear imágenes dentro de la ficha de producto individual */
.woocommerce div.product div.images img {
    border-radius: 20px;
}






/* 1. Ocultar el precio */
.single-product .summary .price {
    display: none !important;
}

/* 2. Ocultar el selector de cantidad (no suele usarse para presupuestos) */
.single-product .summary .quantity {
    display: none !important;
}

/* 3. Transformar el botón "Añadir al carrito" */
.single-product .summary .single_add_to_cart_button {
    font-size: 0 !important; /* Esconde el texto original */
    background: linear-gradient(145deg, #3A1C71, #3F3FDD) !important;
    padding: 18px 35px !important;
    border-radius: 100px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(63, 63, 221, 0.3);
    transition: all 0.3s ease;
    width: 100%; /* Para que ocupe el ancho y se vea más profesional */
    max-width: 350px;
}

/* 4. Insertar el nuevo texto */
.single-product .summary .single_add_to_cart_button::before {
    content: "SOLICITAR PRESUPUESTO";
    font-size: 16px !important;
    color: white !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* 5. Efecto al pasar el ratón */
.single-product .summary .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 63, 221, 0.5);
    background: linear-gradient(145deg, #4b268f, #4e4eff) !important;
}

/* 6. Opcional: Ocultar los botones de pago rápido (Google Pay/Klarna) 
   si solo quieres que pidan presupuesto */
.single-product .summary .wc-stripe-product-checkout-container,
.single-product .summary .klarna-express-button {
    display: none !important;
}

/* Quitar los precios en el listado del catálogo/tienda */
.woocommerce ul.products li.product .price, 
.woocommerce div.product .price {
    display: none !important;
}

/* Opcional: Si también quieres quitar el botón de "Añadir al carrito" 
   que sale debajo de cada producto en el catálogo */
.woocommerce ul.products li.product .button {
    display: none !important;
}



/* Títulos del catálogo más robustos */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    text-align: center !important;
    font-weight: 400 !important; /* Peso máximo */
    
    
    /* Truco para engrosar la fuente si no tiene estilo Bold cargado */
    -webkit-text-stroke: 0.5px #7d5fff; 
    
    padding-top: 10px;
    transition: all 0.3s ease;
    color: #7d5fff !important;
}

/* Hover: Cambia color de letra y color del borde del truco */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    color: #ffffff !important;
    -webkit-text-stroke: 0.5px #ffffff;
}