/* 
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 */
body {
    background-color: #F5F5F5 !important;
}
html, body {
  overflow-x: hidden;
}

.descripcion-producto img {
    max-width: 800px !important;
    width: auto !important;
    height: auto !important;
    display: block; /* Asegura que la imagen sea tratada como un bloque */
    margin-left: auto; /* Centra la imagen horizontalmente */
    margin-right: auto; /* Centra la imagen horizontalmente */
}
.figutech-shop-button {
    width: 100%;
    padding: 12px 24px;
    background: blueviolet;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
	text-align: center;
}

figutech-tab-pane .figutech-shop-button {
    /* Re-declare essential properties that might be overridden by general 'a' tag styles within tabs */
    /* Using !important here to be more assertive due to the issues you're seeing */
    display: inline-block !important;
    padding: 14px 28px !important;
    background: blueviolet;
    color: white !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    border: none !important; 
    /* Other properties like font-size, font-weight, margin-top, box-shadow, transition 
       will be inherited from the base .figutech-shop-button rule unless also overridden */
}
/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
    .descripcion-producto img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Ajuste para tabletas (incluyendo iPads) */
@media (min-width: 769px) and (max-width: 1024px) {
    .descripcion-producto img {
        max-width: 100% !important;
        height: auto !important;
    }
}

.product_meta .tagged_as {
    display: none !important;
}

.products li.product {
    position: relative;
}

.hot-label {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;  /* Only 2px bigger than original */
    height: 42px;
    background: url('http://figutech.com/wp-content/uploads/2025/02/Filamento-PLA-HOT.png') no-repeat center center;
    background-size: 24px;
    z-index: 10;
    
    /* Enhanced circular container */
    border-radius: 50%;
    
    /* Glassmorphism effect */
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    
    /* More intense border */
    border: 1.5px solid rgba(255, 89, 0, 0.6);
    
    /* Refined shadow system */
    box-shadow: 
        /* Stronger inner glow */
        inset 0 0 12px rgba(255, 89, 0, 0.15),
        /* Subtle outer glow */
        0 2px 8px rgba(255, 89, 0, 0.12),
        /* Depth shadow */
        0 3px 6px rgba(0, 0, 0, 0.08);
    
    /* Faster transition for small element */
    transition: all 0.25s ease-out;
    
    /* Prevent backdrop-filter glitch */
    transform: translateZ(0);
}

/* New: Bright spot effect */
.hot-label::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 6px;
    right: 6px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.9),
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.hot-label:hover {
    transform: translateZ(0) scale(1.03);  /* Smaller scale effect */
    background-color: rgba(255, 255, 255, 0.97);
    border-color: rgba(255, 89, 0, 0.8);  /* More intense border on hover */
    box-shadow: 
        inset 0 0 12px rgba(255, 89, 0, 0.2),
        0 3px 10px rgba(255, 89, 0, 0.15),
        0 3px 6px rgba(0, 0, 0, 0.1);
}

/*DESCRIPCION OUTLETDESCRIPCION OUTLETDESCRIPCION OUTLETDESCRIPCION OUTLETDESCRIPCION OUTLETDESCRIPCION OUTLET*/
/* CSS for Figutech ONE */
.figutech-one .figutech-description {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.figutech-one .figutech-header {
  background: linear-gradient(to right, #2c3e50, #4a6491);
  padding: 20px 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.figutech-one .figutech-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.figutech-one .outlet-badge {
  background-color: #d702e2;
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(215,2,226,0.5);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.figutech-one .figutech-content {
  padding: 30px;
}

.figutech-one .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.figutech-one .feature-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.figutech-one .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background-color: #f8f9fa;
}

.figutech-one .feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #4A7DF1;
}

.figutech-one .feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.figutech-one .feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.figutech-one .highlight-bar {
  height: 4px;
  width: 50px;
  background-color: #3498db;
  margin: 10px 0;
}

.figutech-one .tech-specs {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
}

.figutech-one .tech-specs h3 {
  margin-top: 0;
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.figutech-one .specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.figutech-one .spec-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.figutech-one .spec-icon {
  margin-right: 12px;
  font-size: 20px;
  color: #4A7DF1;
}

.figutech-one .spec-text {
  font-size: 14px;
}

.figutech-one .disclaimer {
  margin-top: 40px;
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 4px solid #d702e2;
  font-size: 14px;
  color: #555;
}

.figutech-one .disclaimer h4 {
  margin-top: 0;
  color: #d702e2;
}

.figutech-one .fabricado-espana {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 15px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 8px;
}

.figutech-one .fabricado-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.figutech-one .fabricado-text {
  font-weight: 600;
  color: #2c3e50;
}

/* CSS for Figutech EVO */
.figutech-evo .figutech-description {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.figutech-evo .figutech-header {
  background: linear-gradient(to right, #34495e, #5d6d7e);
  padding: 20px 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.figutech-evo .figutech-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  z-index: 1;
}

.figutech-evo .header-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(215,2,226,0.3));
  z-index: 0;
}

.figutech-evo .evo-badge {
  background: linear-gradient(to right, #d702e2, #d702e2);
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  margin-left: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
}

.figutech-evo .outlet-badge {
  background-color: #d702e2;
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(215,2,226,0.5);
  z-index: 1;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.figutech-evo .figutech-content {
  padding: 30px;
}

.figutech-evo .reinforced-banner {
  background: linear-gradient(to right, #3498db, #2980b9);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
  transition: transform 0.3s ease;
}

.figutech-evo .reinforced-banner:hover {
  transform: scale(1.02);
}

.figutech-evo .reinforced-icon {
  font-size: 30px;
  margin-right: 15px;
}

.figutech-evo .reinforced-text h3 {
  margin: 0 0 5px 0;
  font-size: 20px;
}

.figutech-evo .reinforced-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.figutech-evo .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.figutech-evo .feature-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.figutech-evo .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background-color: #f8f9fa;
}

.figutech-evo .feature-card.reinforced:hover {
  background-color: rgba(215,2,226,0.05);
}

.figutech-evo .feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #4A7DF1;
}

.figutech-evo .feature-card.reinforced .feature-icon {
  color: #d702e2;
}

.figutech-evo .feature-card.reinforced::after {
  content: "REFORZADO";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d702e2;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}

.figutech-evo .feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.figutech-evo .feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.figutech-evo .highlight-bar {
  height: 4px;
  width: 50px;
  background-color: #3498db;
  margin: 10px 0;
}

.figutech-evo .feature-card.reinforced .highlight-bar {
  background-color: #d702e2;
}

.figutech-evo .tech-specs {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
}

.figutech-evo .tech-specs h3 {
  margin-top: 0;
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.figutech-evo .tech-specs h3 i {
  margin-right: 10px;
  color: #d702e2;
}

.figutech-evo .specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.figutech-evo .spec-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.figutech-evo .spec-icon {
  margin-right: 12px;
  font-size: 20px;
  color: #4A7DF1;
}

.figutech-evo .spec-text {
  font-size: 14px;
}

.figutech-evo .spec-item.reinforced {
  border-left: 3px solid #d702e2;
}

.figutech-evo .spec-item.reinforced .spec-icon {
  color: #d702e2;
}

.figutech-evo .disclaimer {
  margin-top: 40px;
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 4px solid #d702e2;
  font-size: 14px;
  color: #555;
}

.figutech-evo .disclaimer h4 {
  margin-top: 0;
  color: #d702e2;
}

.figutech-evo .fabricado-espana {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 15px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 8px;
}

.figutech-evo .fabricado-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.figutech-evo .fabricado-text {
  font-weight: 600;
  color: #2c3e50;
}

.figutech-evo .comparison-table-container {
  width: 100%;
  overflow-x: auto;           /* Enable horizontal scroll */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.figutech-evo .comparison-table {
  width: 100%; /* Ensures table fills the container width */
  min-width: 600px; /* Optional: sets a minimum width so columns don't get too cramped */
  border-collapse: collapse;
  margin-top: 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}


.figutech-evo .comparison-table th {
  background: #34495e;
  color: white;
  padding: 12px 15px;
  text-align: left;
}

.figutech-evo .comparison-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.figutech-evo .comparison-table tr:last-child td {
  border-bottom: none;
}

.figutech-evo .comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.figutech-evo .feature-value {
  display: flex;
  align-items: center;
}

.figutech-evo .feature-value i {
  margin-right: 8px;
  font-size: 16px;
}

.figutech-evo .feature-value.standard i {
  color: #4A7DF1;
}

.figutech-evo .feature-value.enhanced i {
  color: #d702e2;
}
/* Etiqueta base para ambos tipos de Outlet */
.outlet-label {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    
    /* Espaciado y tamaño de fuente */
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    
    /* Colores y fondo con gradiente */
    color: #fff;
    background: linear-gradient(45deg, #D631E2, #1897FF);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

/* Estilos específicos para Outlet 250G */
.outlet-label-250 {
    /* Usa el gradiente #D631E2 -> #1897FF */
    background: linear-gradient(45deg, #D631E2, #1897FF);
}

/* Estilos específicos para Outlet 750G */
.outlet-label-750 {
    /* Invertimos el gradiente #1897FF -> #D631E2 */
    background: linear-gradient(20deg, #1897FF, #D631E2, #1897FF );
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
    .outlet-label {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}


/* OUTLET 1kg BLANCO */
/* OUTLET 1kg BLANCO */
/* OUTLET 1kg BLANCO */
/* OUTLET 1kg BLANCO */
/* Estilos aislados para Filamento PLA Figutech ONE */
.fig-producto-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: Montserrat, sans-serif;
}

/* Título del producto */
.fig-producto-container .fig-titulo-producto {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
    line-height: 1.3;
}

.fig-producto-container .fig-badge {
    font-size: 1rem;
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: normal;
    display: inline-block;
}

/* Sección de características */
.fig-producto-container .fig-caracteristicas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.fig-producto-container .fig-caracteristica-item {
    flex-basis: calc(25% - 20px);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fig-producto-container .fig-caracteristica-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fig-producto-container .fig-caracteristica-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.fig-producto-container .fig-caracteristica-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
}

.fig-producto-container .fig-caracteristica-item p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

/* Especificaciones técnicas */
.fig-producto-container .fig-especificaciones {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.fig-producto-container .fig-especificaciones h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1.4;
}

.fig-producto-container .fig-especificaciones h2 i {
    color: #3498db;
    margin-right: 10px;
}

.fig-producto-container .fig-especificaciones ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fig-producto-container .fig-especificaciones li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0;
}

.fig-producto-container .fig-especificaciones li:before {
    display: none;
}

.fig-producto-container .fig-especificaciones li i {
    margin-right: 10px;
    color: #2ecc71;
    font-size: 1.1rem;
    min-width: 20px;
}

.fig-producto-container .fig-especificaciones li i.fa-exclamation-circle {
    color: #e74c3c;
}

/* Banner de producto outlet */
.fig-producto-container .fig-banner-outlet {
    background-color: #e74c3c;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fig-producto-container .fig-banner-outlet i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.fig-producto-container .fig-banner-outlet p {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive dentro del contenedor */
@media (max-width: 992px) {
    .fig-producto-container .fig-caracteristica-item {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .fig-producto-container .fig-caracteristica-item {
        flex-basis: 100%;
    }
    
    .fig-producto-container .fig-titulo-producto {
        font-size: 2rem;
    }
}

.product {
    position: relative;
}



/* Badge AGOTADO para productos sin stock */
.product.outofstock {
  position: relative;
  overflow: visible;
}

.product.outofstock::before {
  content: "AGOTADO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(220, 53, 69, 0.9);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  z-index: 10;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Oscurecer ligeramente la imagen del producto para enfatizar que está agotado */
.product.outofstock img {
  opacity: 0.7;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

/* Estilos para widgets específicos de WooCommerce */
.woocommerce ul.products li.product.outofstock::before,
.woocommerce-page ul.products li.product.outofstock::before,
.wc-block-grid__product.outofstock::before,
.products .product.outofstock::before,
.product-category.outofstock::before,
.woocommerce-product-gallery .outofstock::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .product.outofstock::before {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Ajuste para dispositivos muy pequeños */
@media (max-width: 480px) {
  .product.outofstock::before {
    font-size: 10px;
    padding: 4px 8px;
  }
}


/*aa
/*aa
/*aa
/* Parent container styling */
/* Fix PayPal button positioning */
/* Target PayPal buttons specifically */
/* Fix PayPal buttons positioning to appear inside the payment method container */
/* Cabecera de resultados de búsqueda */
/* Estilo para página de resultados de búsqueda */
.search-results .page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Título principal de la página de resultados */
.search-results .page-header .entry-title {
    font-size: 26px;
    color: #333;
    font-weight: 600;
    margin: 0;
    position: relative;
    display: inline-block;
}

.search-results .page-header .entry-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #2BDE73;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Contenido principal */
.search-results .page-content,
.search-results #content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Configuración de cuadrícula para productos */
.search-results #content > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 0;
    padding: 0;
}

/* Artículos individuales (productos) */
.search-results #content > div > article,
.search-results .post,
.search-results article.product {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 0 !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100% !important;
    float: none !important;
}

.search-results #content > div > article:hover,
.search-results .post:hover,
.search-results article.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

/* Títulos de productos en resultados de búsqueda */
.search-results #content > div > article .entry-title,
.search-results .post .entry-title,
.search-results article.product .entry-title {
    font-size: 18px !important;
    text-align: center;
    margin: 12px 0 10px !important;
    padding: 0;
    font-weight: 600;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-results #content > div > article .entry-title a,
.search-results .post .entry-title a,
.search-results article.product .entry-title a {
    color: #333;
    text-decoration: none;
}

/* Imágenes en resultados de búsqueda */
.search-results #content > div > article img,
.search-results .post img,
.search-results article.product img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
}

.search-results #content > div > article:hover img,
.search-results .post:hover img,
.search-results article.product:hover img {
    transform: scale(1.03);
}

/* Ocultar extractos y descripciones cortas */
.search-results #content > div > article .entry-summary,
.search-results .post .entry-summary,
.search-results article.product .entry-summary,
.search-results .woocommerce-product-details__short-description,
.search-results .woocommerce-loop-product__excerpt {
    display: none !important;
}

/* Estilos específicos para productos WooCommerce */
.search-results .products li,
.search-results ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    text-align: center;
}

/* Precios de productos */
.search-results .t,
.search-results ul.products li.product .price {
    color: #2BDE73 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 12px 0 !important;
    display: block;
    text-align: center;
}

.search-results .price del,
.search-results ul.products li.product .price del {
    opacity: 0.6;
    margin-right: 5px;
    font-size: 15px !important;
}

/* Botón añadir al carrito */
.search-results .button,
.search-results ul.products li.product .button {
    background-color: #2BDE73 !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 10px 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    margin-top: 10px !important;
    border: none !important;
}

.search-results .button:hover,
.search-results ul.products li.product .button:hover {
    background-color: #25c868 !important;
    transform: scale(1.05);
}

/* Etiquetas de oferta */
.search-results .onsale,
.search-results ul.products li.product .onsale {
    background: #FF5722 !important;
    color: white !important;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    padding: 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    top: 10px !important;
    right: 10px !important;
    margin: 0 !important;
    position: absolute;
    z-index: 9;
    min-height: unset !important;
    min-width: unset !important;
}

/* Navegación de resultados */
.search-results .navigation,
.search-results .woocommerce-pagination {
    margin-top: 35px;
    text-align: center;
    width: 100%;
    clear: both;
}

.search-results .page-numbers {
    background: #f5f5f5;
    color: #333;
    padding: 8px 14px;
    margin: 0 3px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
}

.search-results .page-numbers.current {
    background: #2BDE73;
    color: white;
}

/* Mensaje para no encontrado */
.search-results .no-results {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    grid-column: 1 / -1;
}

/* Responsivo */
@media (max-width: 768px) {
    .search-results #content > div {
        grid-template-columns: 1fr;
    }
    
    .search-results .page-header .entry-title {
        font-size: 22px;
    }
    
    .search-results #content > div > article,
    .search-results .post,
    .search-results article.product {
        padding: 15px;
    }
}

/* Corrección para el modo catálogo */
.search-results.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    margin: 0 !important;
    width: 100% !important;
}

.search-results.woocommerce ul.products::before,
.search-results.woocommerce ul.products::after {
    display: none !important;
}

.search-results.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* Corrección adicional para el widget de búsqueda de Elementor */
.elementor-search-form--skin-full_screen .elementor-search-form__container {
    z-index: 999999 !important;
}

/* Resaltar términos de búsqueda */
.search-results .search-term,
.search-results .search-query {
    color: #2BDE73;
    font-weight: 600;
    background-color: rgba(43, 222, 115, 0.1);
    padding: 0 3px;
}

/* Fix para contenedores flex */
.search-results .site-main,
.search-results #primary,
.search-results #main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Product Bundles Container */
/* Main Product Bundles Container */
.woosb-products {
  --primary-color: #3a86ff;
  --secondary-color: #8338ec;
  --accent-color: #ff006e;
  --light-bg: #f8f9fa;
  --dark-text: #333;
  --light-text: #6c757d;
  --border-radius: 12px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-family: 'montserrat', sans-serif;
  margin: 2rem 0;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

/* Product Item */
.woosb-item-product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.woosb-item-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.woosb-item-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.woosb-item-product:hover::before {
  opacity: 1;
}

/* Product Thumbnail */
.woosb-thumb {
  margin-bottom: 0.75rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.woosb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.woosb-item-product:hover .woosb-thumb img {
  transform: scale(1.05);
}

/* Product Title */
.woosb-title {
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woosb-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.woosb-title a:hover {
  color: var(--primary-color);
}

/* Quantity Selector - Versión corregida */


.woosb-quantity-input {
  display: flex;
  justify-content: center;
  width: 100%;
}



/* Bundle Total Section - Modern Styling */


@media (max-width: 576px) {
  .woosb-products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  
  .woosb-item-product {
    padding: 0.5rem;
  }
  
  .woosb-thumb {
    margin-bottom: 0.2rem;
  }
  
  .woosb-title {
    font-size: 0.7rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }
  
 
  


}

/* Additional mobile optimization for very small screens */
@media (max-width: 375px) {
  .woosb-products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px;
  }
  
  
  .woosb-title {
    font-size: 0.65rem;
    -webkit-line-clamp: 1;
  }
  
  .woosb-quantity {
    max-width: 60px;
    height: 24px;
  }
}

/* Badge for Savings */
.woosb-bundle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.woosb-before-text.woosb-text {
  font-size: 1em;
  font-weight: 600;
  color: #497DF1;
  background: #e9f0ff;
  padding: 5px 10px 5px 35px;
  border-radius: 4px;
  border-left: 3px solid #497DF1;
  margin: 10px 0;
  text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
  position: relative;
}

.woosb-before-text.woosb-text::before {
  content: "!";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #497DF1;
  width: 18px;
  height: 18px;
  border: 2px solid #497DF1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1;
}



/* ENVÍO GRATIS */
/* In your theme's CSS *//* In your theme's CSS *//* In your theme's CSS *//* In your theme's CSS *//* In your theme's CSS */
/* Ensure the image container is relative */
/* --- Estilos para Productos en Reserva --- */
/* --- Estilos para Productos en Reserva v2 --- */

/* 1. Etiqueta en Loops (Tienda, Categorías, Elementor) */
/* Estilo como una pequeña "etiqueta" o "badge" antes del título */
.etiqueta-reserva-loop {
    display: inline-block; /* Permite que esté en línea pero con padding/margin */
    background-color: #e67e22; /* Color de fondo naranja */
    color: #ffffff; /* Texto blanco */
    font-size: 0.75em; /* Más pequeño */
    padding: 3px 8px; /* Relleno interior */
    border-radius: 3px; /* Bordes redondeados */
    margin-bottom: 8px; /* Espacio antes del título */
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase; /* Opcional: mayúsculas */
    /* Podrías añadir position: absolute si sabes cómo posicionarlo sobre la imagen,
       pero eso depende mucho de la estructura HTML de tu loop de Elementor.
       Este estilo lo coloca justo antes del título. */
}

/* 2. Información en la Página de Producto Único (Sin cambios grandes, verifica visibilidad) */
.info-reserva-producto {
    border: 1px solid #f0e6d6;
    background-color: #fdfaf5;
    padding: 15px 20px; /* Un poco más de padding lateral */
    margin: 20px 0;
    border-radius: 4px;
    clear: both;
}

.info-reserva-producto .aviso-reserva {
    font-size: 1.1em;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: bold;
}

/* Asegúrate de que Font Awesome esté cargado para ver el icono */
.info-reserva-producto .aviso-reserva i.fas.fa-clock {
    margin-right: 8px;
    color: #e67e22;
    /* Puede que necesites ajustar vertical-align si no se alinea bien */
    /* vertical-align: middle; */
}

.info-reserva-producto .fecha-disponibilidad {
    font-size: 0.95em; /* Ligeramente más grande para legibilidad */
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.info-reserva-producto .fecha-disponibilidad strong {
    color: #333;
}


/* 3. Nota en el Carrito (Sin cambios) */
.nota-reserva-carrito {
    display: block;
    font-size: 0.85em;
    color: #777;
    font-style: italic;
    margin-top: 4px;
}

/* --- Fin de Estilos --- */



/* ===== CSS LIGHTWEIGHT Y FUNCIONAL ===== */

/* Estilos base del menú */
.category-button-menu ul li a {
    display: inline-block !important;
    padding: 10px 24px !important;
    border: 2px solid #333 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    margin: 5px 5px 5px 0 !important;
    background-color: transparent !important;
}

/* Hover normal */
.category-button-menu ul li a:hover {
    background-color: #333 !important;
    color: white !important;
    transform: scale(1.05) !important;
}

/* Estados activos - Desktop y Mobile */
.category-button-menu ul li a.active,
.category-button-menu ul li a:active,
.category-button-menu ul li a[aria-current="page"],
.category-button-menu ul li.current-menu-item a,
#category-button-top .elementor-item.elementor-item-active,
#category-button-top .menu-item.current-menu-item .elementor-item {
    background-color: #f5f5f5 !important;
    border-color: #ccc !important;
    font-size: 0.75em !important;
    color: #ccc !important;
    transform: none !important;
}

/* Bloquear hover en elementos activos */
.category-button-menu ul li a.active:hover,
.category-button-menu ul li a[aria-current="page"]:hover,
.category-button-menu ul li.current-menu-item a:hover,
#category-button-top .elementor-item.elementor-item-active:hover,
#category-button-top .menu-item.current-menu-item .elementor-item:hover {
    background-color: #f5f5f5 !important;
    border-color: #ccc !important;
    color: #ccc !important;
    transform: none !important;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .category-button-menu ul li a {
        padding: 8px 16px !important;
        margin: 3px 3px 3px 0 !important;
    }
    
    .category-button-menu ul li a.active,
    .category-button-menu ul li a[aria-current="page"],
    .category-button-menu ul li.current-menu-item a,
    #category-button-top .elementor-item.elementor-item-active,
    #category-button-top .menu-item.current-menu-item .elementor-item {
        background-color: #f5f5f5 !important;
        border-color: #ccc !important;
        font-size: 0.7em !important;
        color: #ccc !important;
    }
}

/* Responsive - Mobile pequeño */
@media (max-width: 480px) {
    .category-button-menu ul li a {
        padding: 6px 12px !important;
        margin: 2px 2px 2px 0 !important;
    }
    
    .category-button-menu ul li a.active,
    .category-button-menu ul li a[aria-current="page"],
    .category-button-menu ul li.current-menu-item a,
    #category-button-top .elementor-item.elementor-item-active,
    #category-button-top .menu-item.current-menu-item .elementor-item {
        font-size: 0.65em !important;
    }
}


.elementor-45 .elementor-element.elementor-element-ea5eecd .elementor-nav-menu .elementor-item {
    font-weight: 400 !important
}

/* === General Blog Post Body & Paragraph Styles === */
.single-post .blog-figutech,
.single-post .blog-figutech p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1.6em;
  letter-spacing: 0.067px;
  word-spacing: 1px;
}

/* === Bold/Strong Text in Paragraphs === */
.single-post .blog-figutech p b,
.single-post .blog-figutech p strong {
  font-weight: 500 !important;
}

/* === Heading Styles (H2-H5) === */
.single-post .blog-figutech h2 {
  font-family: 'POPPINS', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2980B9;
  letter-spacing: 0px;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.single-post .blog-figutech h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3498DB;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.single-post .blog-figutech h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #34495E;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.single-post .blog-figutech h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #7F8C8D;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}

/* === List Styles (UL/OL) === */
.single-post .blog-figutech ul,
.single-post .blog-figutech ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.single-post .blog-figutech ul li,
.single-post .blog-figutech ol li {
  margin-bottom: 1rem;
}

.single-post .blog-figutech ul li b,
.single-post .blog-figutech ul li strong,
.single-post .blog-figutech ol li b,
.single-post .blog-figutech ol li strong {
  font-weight: 500;
}

/* Style for the first bolded element in a list item */
.single-post .blog-figutech ul li b:first-child,
.single-post .blog-figutech ul li strong:first-child,
.single-post .blog-figutech ol li b:first-child,
.single-post .blog-figutech ol li strong:first-child {
  font-weight: 700;
}

/* === Table Styles === */
.single-post .blog-figutech table {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Table Header */
.single-post .blog-figutech thead th {
  background-color: #2980B9;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 1.6rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Table Body */
.single-post .blog-figutech tbody td {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 1.1rem; /* Corrected from 1.1.5rem */
  padding: 1.2rem 1.6rem;
}

/* Hover Effect */
.single-post .blog-figutech tbody tr:hover td {
  background-color: #f9f9f9;
}

/* Alternating Row Color */
.single-post .blog-figutech tbody tr:nth-child(even) td {
  background-color: #f5f5f5;
}

/* Link within Table */
.single-post .blog-figutech table a {
  color: #2980B9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-post .blog-figutech table a:hover {
  color: #3498DB;
}

/* Bold words in Table */
.single-post .blog-figutech table b,
.single-post .blog-figutech table strong {
  font-weight: 600 !important;
}

/* Contenedor principal de comentarios */
.comments-area {
    max-width: 800px;
    margin: 3rem 0; /* Eliminado el auto para quitar el centrado */
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
}

/* Título de la sección */
.comment-reply-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    letter-spacing: -0.5px;
}

/* Formulario de comentarios */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Campos de texto */
.comment-form textarea,
.comment-form input[type="text"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 300;
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus {
    border-color: #666;
    outline: none;
}

/* Labels */
.comment-form label {
    font-weight: 500;
    color: #444;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

/* Botón de enviar */
.comment-form .submit {
    background-color: #4A7FF4;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.3px;
}

.comment-form .submit:hover {
    background-color: #3665d6;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(74, 127, 244, 0.2);
}

/* Mensaje de campos requeridos */
.required-field-message {
    font-size: 0.85rem;
    font-weight: 300;
    color: #666;
    margin-top: 1rem;
}

.required {
    color: #d63638;
}

/* Estado de usuario conectado */
.logged-in-as {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.logged-in-as a {
    color: #4A7FF4;
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Apply styling to cells of the shipping row */
tr.woocommerce-shipping-totals.shipping td {
  background-color: transparent !important;
  overflow: hidden !important;
}
table.shop_table.shop_table_responsive {
  background-color: white !important;  /* Red background */
  padding: 10px !important;          /* 10px padding around the entire table */
  overflow: hidden !important;       /* Hides overflow */
  box-shadow: none !important;       /* Removes any shadow */
}

/* Removes the icon/emoticon from WooCommerce messages */
.e-wc-message-notice .woocommerce-message::before {
  content: none !important; 
  display: none !important;
}


.e-wc-message-notice .woocommerce-message {
  background-color: #1897FF !important; /* Bright blue background */
  color: #ffffff !important;           /* White text (optional) */
  padding: 15px !important;           /* Spacing around the message */
  border: none !important;            /* Removes any default border */
  border-radius: 4px !important;      /* Slight rounded corners (optional) */
}
/* Target the button within the WooCommerce message notice */
.woocommerce-message a.button,
.woocommerce-message .button {
  border: 2px solid #ffffff !important; /* White border */
  color: #ffffff !important;           /* White text */
  background-color: transparent !important; /* Transparent background */
  border-radius: 4px !important;       /* Optional corner radius */
  padding: 8px 16px !important;        /* Optional: give it some space */
  text-transform: uppercase;           /* Optional: make text uppercase */
}
.woocommerce-notices-wrapper::before,
.woocommerce-notices-wrapper::after,
.woocommerce-notices-wrapper:focus::before,
.woocommerce-notices-wrapper:focus::after {
  content: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
/***************************************
 1. CONTENEDOR PRINCIPAL DE RESEÑAS
***************************************/
.woocommerce-Reviews {
  background-color: #FAFAFA; /* Fondo suave */
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  padding: 2em;
  margin: 2em 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* Sombra sutil */
}

.woocommerce-Reviews-title {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 1px solid #CCC;
  padding-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/*********************************************
 2. LISTADO DE COMENTARIOS (VALORACIONES)
*********************************************/
/* Cada comentario / reseña */
.woocommerce-Reviews .comment_container {
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: 6px;
  padding: 1.5em;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  display: flex;               /* Para alinear avatar y texto */
  gap: 1em;                    /* Espacio entre avatar y texto */
}

.woocommerce-Reviews .comment_container img.avatar {
  border-radius: 50%;         /* Avatar circular */
  flex-shrink: 0;             /* Evita que se reduzca el avatar */
}

.woocommerce-Reviews .comment-text {
  flex: 1;
}

.star-rating span:before {
  color: #4A7DF1; /* Estrellas doradas */
}

/* Autor y fecha */
.woocommerce-review__author {
  font-weight: 600;
  font-size: 1.1em;
  color: #333;
}

.woocommerce-review__published-date {
  font-size: 0.9em;
  color: #999;
  margin-left: 0.5em;
}

/* Texto del comentario */
.description p {
  color: #444;
  line-height: 1.3;
  font-size: 14px;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
}

/********************************
 3. FORMULARIO DE RESEÑAS
*********************************/
#review_form {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #CCC;
}

#reply-title.comment-reply-title {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 1em;
  font-weight: 700;
}

.comment-form-rating label {
  font-weight: 600;
  color: #555;
  display: inline-block;
  margin-bottom: 0.5em;
}

.comment-form-rating .stars a {
  color: #4A7DF1;
  margin: 0 2px;
  text-decoration: none;
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.comment-form-rating .stars a:hover {
  transform: scale(1.1);
}

/* Campos de texto */
#comment, #rating {
  width: 100%;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 0.75em;
  margin-bottom: 1em;
  font-size: 1em;
}

/********************************
 4. BOTÓN DE ENVIAR
*********************************/
.form-submit #submit.submit {
  background-color: #333; 
  color: #FFF;
  border: none;
  border-radius: 4px;
  padding: 0.75em 1.5em;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.form-submit #submit.submit:hover {
  background-color: #555;
}

/********************************
 5. LIMPIEZA DE FLOTANTES
*********************************/
.clear {
  clear: both;
}
@media (max-width: 600px) {
  .woocommerce-Reviews .comment_container {
    /* Make the container occupy as much horizontal space as possible */
    margin-left: 0;
    margin-right: 0;
    padding: 1em;

    /* Stack the avatar above the text so the text is full-width */
    flex-direction: column;
  }
}

/* Style for the restore-item link */
body.e-wc-message-notice .woocommerce-message .restore-item,
body.e-wc-message-notice .wc-block-components-notice-banner.is-success .restore-item,
body.e-wc-message-notice .woocommerce-message a:not([class]),
body.e-wc-message-notice .wc-block-components-notice-banner.is-success a:not([class]) {
  color: #0044cc; /* Set a clean blue color */
  font-weight: 600; /* Make it slightly bold for better visibility */
  text-decoration: underline; /* Underline to indicate it's a link */
  font-size: 1rem; /* Set a consistent font size */
  margin-left: 0.5em; /* Add spacing from the message text */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for the link */
body.e-wc-message-notice .woocommerce-message .restore-item:hover,
body.e-wc-message-notice .wc-block-components-notice-banner.is-success .restore-item:hover,
body.e-wc-message-notice .woocommerce-message a:not([class]):hover,
body.e-wc-message-notice .wc-block-components-notice-banner.is-success a:not([class]):hover {
  color: #002a80; /* Darker blue on hover */
  text-decoration: none; /* Remove underline for a cleaner hover effect */
}

.elementor-menu-cart__main {
    display: flex;
    flex-direction: column;
}

.elementor-menu-cart__products {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.elementor-menu-cart__footer-buttons {
    margin-top: auto;
}



/* Target only this specific product grid widget */
.elementor-element-23bfeca .products.elementor-grid.columns-2.fupi_products_list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
}

.elementor-element-23bfeca .products.elementor-grid.columns-2.fupi_products_list > li {
  width: calc(50% - 10px) !important;
  flex: 0 0 calc(50% - 10px) !important;
  margin: 0 !important;
  max-width: calc(50% - 10px) !important;
}

.texto-3d {
  background: linear-gradient(135deg, rgb(21, 148, 251), rgb(0, 104, 192)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block !important;
}

.texto-evo {
  background: linear-gradient(135deg, rgb(138, 43, 226), rgb(93, 26, 158)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block !important;
}




/* Descripcion de productos estilo grid 3 imagenes  *//* Descripcion de productos estilo grid 3 imagenes  *//* Descripcion de productos estilo grid 3 imagenes  *//* Descripcion de productos estilo grid 3 imagenes  */
.figutech-product-features-section {
    width: 100%;
    margin: 20px 0;
    padding: 0;
}

.figutech-features-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.figutech-single-feature-box {
    text-align: center;
    margin-bottom: 0;
}

.figutech-feature-img-wrapper {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
}

.figutech-feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.figutech-feature-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.figutech-feature-description-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
    padding: 0 5px;
}

@media (max-width: 768px) {
    .figutech-features-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .figutech-feature-main-title {
        font-size: 20px;
    }
    
    .figutech-feature-description-text {
        font-size: 15px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .figutech-features-grid-container {
        padding: 0;
    }
    
    .figutech-feature-main-title {
        font-size: 18px;
    }
    
    .figutech-feature-description-text {
        font-size: 14px;
    }
}


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

    /* --- Make Product Thumbnail Visible --- */
    /* This targets the table cell containing the product image and forces it to be displayed. */
    .woocommerce #content table.cart .product-thumbnail,
    .woocommerce table.cart .product-thumbnail,
    .woocommerce-page #content table.cart .product-thumbnail,
    .woocommerce-page table.cart .product-thumbnail {
        display: table-cell !important; /* Overrides 'display: none;' */
    }

    /* --- Make Product Name / Table Headers Visible --- */
    /* In some responsive table setups, the product name is in a table header (th).
       This forces that header to be displayed. */
    .woocommerce table.shop_table_responsive tbody th,
    .woocommerce-page table.shop_table_responsive tbody th {
        display: table-cell !important; /* Overrides 'display: none;' */
    }

    /* --- NEW: Hide the extra "dots" or labels before the thumbnail --- */
    /* Some responsive table styles add a pseudo-element for a label. This hides it. */
    .woocommerce table.shop_table_responsive td.product-thumbnail::before,
    .woocommerce-page table.shop_table_responsive td.product-thumbnail::before {
        display: none !important;
    }
}

/* WooCommerce: forzar peso 600 en el encabezado con ID */
.single-product #compra-con-confianza {
  font-weight: 600 !important;
  font-variation-settings: 'wght' 600; /* si la fuente es variable */
}

.elementor-element.elementor-element-5f8d58e .elementor-heading-title{
	font-weight: 600;
}
.elementor-element.elementor-element-e7d262a .elementor-heading-title{
	font-weight: 600;
}
/* Resetea el tracking global de Elementor */
:root{
  --e-global-typography-primary-letter-spacing: 0px !important;
  /* por si usaste otros “slots” globales alguna vez */
  --e-global-typography-secondary-letter-spacing: 0px !important;
  --e-global-typography-text-letter-spacing: 0px !important;
  --e-global-typography-accent-letter-spacing: 0px !important;
}

/* Red de seguridad por si algún widget aplica letter-spacing directo */
body,
h1,h2,h3,h4,h5,h6,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor,
.elementor-widget-theme-post-title .elementor-heading-title {
  letter-spacing: normal !important;
}

