/**
 * Fajas Colombianas - Diseño Ultra Premium 2024
 * Glassmorphism, Micro-interacciones, Elegancia Máxima
 */

/* ========================================
   VARIABLES CSS - PALETA LUXURY
======================================== */
:root {
  /* Colores principales */
  --fc-negro: #0a0a0a;
  --fc-negro-suave: #1a1a1a;
  --fc-negro-card: #111111;
  --fc-dorado: #d4af37;
  --fc-dorado-claro: #e8c547;
  --fc-dorado-rosa: #c9a87c;
  --fc-champagne: #f7e7ce;
  --fc-nude: #e8dcd0;
  --fc-nude-claro: #faf7f4;
  --fc-rosa-elegante: #b76e79;
  --fc-blanco: #ffffff;
  --fc-gris: #888888;
  --fc-gris-claro: #f5f5f5;
  
  /* Gradientes luxury */
  --fc-gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7e7ce 50%, #d4af37 100%);
  --fc-gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --fc-gradient-rose: linear-gradient(135deg, #b76e79 0%, #d4a5a5 100%);
  --fc-gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Sombras premium */
  --fc-shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
  --fc-shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
  --fc-shadow-elevated: 0 25px 60px rgba(0, 0, 0, 0.2);
  --fc-shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
  --fc-shadow-glow: 0 0 40px rgba(212, 175, 55, 0.4);
  
  /* Transiciones suaves */
  --fc-ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
  --fc-transition: all 0.5s var(--fc-ease-luxury);
  --fc-transition-fast: all 0.3s var(--fc-ease-luxury);
}

/* ========================================
   RESET Y BASE ELEGANTE
======================================== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--fc-negro);
  line-height: 1.8;
  background: var(--fc-nude-claro);
  overflow-x: hidden;
}

/* Fondo con textura sutil */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(183, 110, 121, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: var(--fc-transition-fast);
}

/* ========================================
   TIPOGRAFÍA LUXURY
======================================== */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  color: var(--fc-gris);
  font-weight: 300;
}


/* ========================================
   BOTONES ULTRA PREMIUM
======================================== */
.wp-block-button__link,
.wc-block-components-button,
button[type="submit"],
.button,
.btn,
input[type="submit"],
.add_to_cart_button,
.single_add_to_cart_button,
.checkout-button,
.wc-block-cart__submit-button {
  position: relative;
  background: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
  border: 1px solid var(--fc-dorado) !important;
  padding: 16px 40px !important;
  border-radius: 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  overflow: hidden;
  transition: var(--fc-transition) !important;
  z-index: 1;
}

.wp-block-button__link::before,
.button::before,
.add_to_cart_button::before,
.single_add_to_cart_button::before,
.checkout-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--fc-gradient-gold);
  transform: translateX(-101%);
  transition: var(--fc-transition);
  z-index: -1;
}

.wp-block-button__link:hover,
.button:hover,
.add_to_cart_button:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover {
  color: var(--fc-negro) !important;
  border-color: var(--fc-dorado) !important;
  box-shadow: var(--fc-shadow-gold) !important;
  transform: translateY(-2px);
}

.wp-block-button__link:hover::before,
.button:hover::before,
.add_to_cart_button:hover::before,
.single_add_to_cart_button:hover::before,
.checkout-button:hover::before {
  transform: translateX(0);
}

/* Botón secundario elegante */
.button.alt,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1px solid var(--fc-negro) !important;
  color: var(--fc-negro) !important;
}

.button.alt:hover {
  background: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
}

/* ========================================
   PRODUCTOS - DISEÑO EDITORIAL
======================================== */
.products .product,
.wc-block-grid__product,
ul.products li.product {
  position: relative;
  background: var(--fc-blanco);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: var(--fc-transition);
  box-shadow: none;
}

.products .product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  transition: var(--fc-transition);
  pointer-events: none;
  z-index: 10;
}

.products .product:hover::before {
  border-color: var(--fc-dorado);
}

.products .product:hover {
  transform: translateY(-15px);
  box-shadow: var(--fc-shadow-elevated);
}

/* Imagen del producto con overlay */
.products .product .woocommerce-LoopProduct-link,
.wc-block-grid__product-image {
  position: relative;
  overflow: hidden;
  display: block;
}

.products .product .woocommerce-LoopProduct-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--fc-transition);
  pointer-events: none;
}

.products .product:hover .woocommerce-LoopProduct-link::after {
  opacity: 1;
}

.products .product .woocommerce-LoopProduct-link img,
.wc-block-grid__product-image img {
  transition: transform 0.8s var(--fc-ease-luxury);
  width: 100%;
}

.products .product:hover .woocommerce-LoopProduct-link img {
  transform: scale(1.1);
}

/* Título del producto */
.woocommerce-loop-product__title,
.wc-block-grid__product-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--fc-negro) !important;
  margin: 20px 20px 8px !important;
  transition: var(--fc-transition-fast);
  letter-spacing: 0 !important;
}

.products .product:hover .woocommerce-loop-product__title {
  color: var(--fc-dorado) !important;
}

/* Precio elegante */
.products .product .price,
.wc-block-grid__product-price {
  font-family: 'Poppins', sans-serif !important;
  color: var(--fc-negro) !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  margin: 0 20px 20px !important;
  letter-spacing: 1px;
}

.products .product .price del {
  color: var(--fc-gris) !important;
  font-size: 13px !important;
  margin-right: 10px;
}

.products .product .price ins {
  color: var(--fc-rosa-elegante) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

/* Badge de oferta - minimalista */
.products .product .onsale,
.onsale {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  background: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
  border-radius: 0 !important;
  padding: 8px 15px !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1 !important;
  min-height: auto !important;
  min-width: auto !important;
  z-index: 20 !important;
}

/* Botón en grid */
.products .product .add_to_cart_button {
  position: absolute;
  bottom: -60px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px) !important;
  margin: 0 !important;
  opacity: 0;
  transition: var(--fc-transition);
  z-index: 15;
}

.products .product:hover .add_to_cart_button {
  bottom: 20px;
  opacity: 1;
}


/* ========================================
   HEADER ULTRA MODERNO
======================================== */
header[data-id="type-1"],
.site-header,
#masthead,
.ct-header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--fc-transition);
}

header.ct-header[data-sticky="yes"],
.site-header.is-sticky {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Logo con efecto */
.site-branding img,
.site-logo img,
.ct-header .site-logo-container img {
  transition: var(--fc-transition);
  filter: contrast(1.1);
}

.site-branding:hover img,
.site-logo:hover img {
  transform: scale(1.02);
}

/* Navegación elegante */
.ct-header nav a,
.main-navigation a,
.primary-menu a,
.ct-menu > li > a {
  color: var(--fc-negro) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  position: relative;
  padding: 10px 0 !important;
}

.ct-header nav a::before,
.ct-menu > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--fc-dorado);
  transition: var(--fc-transition);
  transform: translateX(-50%);
}

.ct-header nav a:hover::before,
.ct-menu > li > a:hover::before,
.ct-menu > li.current-menu-item > a::before {
  width: 100%;
}

.ct-header nav a:hover,
.ct-menu > li > a:hover {
  color: var(--fc-dorado) !important;
}

/* Iconos del header */
.ct-header-cart,
.ct-header .ct-cart-icon,
.cart-contents {
  color: var(--fc-negro) !important;
  transition: var(--fc-transition-fast);
}

.ct-header-cart:hover,
.ct-cart-icon:hover {
  color: var(--fc-dorado) !important;
}

/* Contador del carrito */
.ct-cart-count,
.cart-count,
[data-count]::after {
  background: var(--fc-dorado) !important;
  color: var(--fc-negro) !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
}

/* ========================================
   PÁGINA DE PRODUCTO - LUXURY
======================================== */
.single-product .product {
  background: var(--fc-blanco);
}

.single-product .woocommerce-product-gallery {
  position: relative;
  overflow: hidden;
}

.single-product .woocommerce-product-gallery__image img {
  transition: var(--fc-transition);
}

.single-product .woocommerce-product-gallery:hover img {
  transform: scale(1.02);
}

.single-product .product_title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 400 !important;
  color: var(--fc-negro) !important;
  margin-bottom: 15px !important;
  letter-spacing: -0.02em;
}

.single-product .price {
  font-family: 'Poppins', sans-serif !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  color: var(--fc-negro) !important;
  letter-spacing: 2px;
}

.single-product .price ins {
  text-decoration: none;
}

.single-product .woocommerce-product-details__short-description {
  color: var(--fc-gris);
  font-size: 15px;
  line-height: 1.9;
  margin: 25px 0;
  padding-left: 25px;
  border-left: 2px solid var(--fc-dorado);
}

/* Tabs minimalistas */
.woocommerce-tabs {
  margin-top: 60px;
}

.woocommerce-tabs .tabs {
  border-bottom: 1px solid var(--fc-nude) !important;
  padding: 0 !important;
  margin: 0 0 30px !important;
}

.woocommerce-tabs .tabs li {
  background: none !important;
  border: none !important;
  margin: 0 30px 0 0 !important;
  padding: 0 !important;
}

.woocommerce-tabs .tabs li a {
  color: var(--fc-gris) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 15px 0 !important;
  background: none !important;
  position: relative;
}

.woocommerce-tabs .tabs li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fc-dorado);
  transition: var(--fc-transition);
}

.woocommerce-tabs .tabs li.active a::after,
.woocommerce-tabs .tabs li a:hover::after {
  width: 100%;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
  color: var(--fc-negro) !important;
}

/* ========================================
   FOOTER ELEGANTE OSCURO
======================================== */
footer,
.site-footer,
#colophon,
footer[data-id] {
  background: var(--fc-negro) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--fc-gradient-gold);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4 {
  color: var(--fc-blanco) !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: 1px;
}

footer a,
.site-footer a {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: var(--fc-transition-fast);
}

footer a:hover,
.site-footer a:hover {
  color: var(--fc-dorado) !important;
}

/* Iconos sociales */
footer .ct-social-box a,
.site-footer .social-links a {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: var(--fc-transition);
}

footer .ct-social-box a:hover {
  color: var(--fc-dorado) !important;
  transform: translateY(-3px);
}


/* ========================================
   FORMULARIOS MINIMALISTAS
======================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select,
.woocommerce-input-wrapper input,
.woocommerce-input-wrapper textarea,
.select2-container--default .select2-selection--single {
  border: none !important;
  border-bottom: 1px solid var(--fc-nude) !important;
  border-radius: 0 !important;
  padding: 15px 0 !important;
  background: transparent !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  transition: var(--fc-transition) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-bottom-color: var(--fc-dorado) !important;
  outline: none !important;
  box-shadow: none !important;
}

label {
  color: var(--fc-gris) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

/* ========================================
   CARRITO Y CHECKOUT - PREMIUM
======================================== */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.woocommerce table.shop_table {
  border: none !important;
  border-collapse: separate;
  border-spacing: 0 15px;
}

.woocommerce table.shop_table th {
  background: transparent !important;
  color: var(--fc-gris) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 15px 20px !important;
}

.woocommerce table.shop_table td {
  background: var(--fc-blanco) !important;
  border: none !important;
  padding: 25px 20px !important;
  vertical-align: middle;
}

.woocommerce table.shop_table tr:first-child td:first-child {
  border-radius: 0;
}

/* Totales del carrito */
.cart_totals,
.woocommerce-checkout-review-order {
  background: var(--fc-blanco);
  padding: 40px;
  border: 1px solid var(--fc-nude);
}

.cart_totals h2,
.woocommerce-checkout-review-order h3 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: var(--fc-negro) !important;
  margin-bottom: 30px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--fc-nude);
}

/* ========================================
   ANIMACIONES SCROLL REVEAL
======================================== */
.fc-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--fc-ease-luxury), transform 1s var(--fc-ease-luxury);
}

.fc-animate.fc-visible {
  opacity: 1;
  transform: translateY(0);
}

.fc-animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--fc-ease-luxury), transform 1s var(--fc-ease-luxury);
}

.fc-animate-left.fc-visible {
  opacity: 1;
  transform: translateX(0);
}

.fc-animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--fc-ease-luxury), transform 1s var(--fc-ease-luxury);
}

.fc-animate-right.fc-visible {
  opacity: 1;
  transform: translateX(0);
}

.fc-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s var(--fc-ease-luxury), transform 1s var(--fc-ease-luxury);
}

.fc-animate-scale.fc-visible {
  opacity: 1;
  transform: scale(1);
}

/* Delays escalonados */
.fc-delay-1 { transition-delay: 0.1s; }
.fc-delay-2 { transition-delay: 0.2s; }
.fc-delay-3 { transition-delay: 0.3s; }
.fc-delay-4 { transition-delay: 0.4s; }
.fc-delay-5 { transition-delay: 0.5s; }
.fc-delay-6 { transition-delay: 0.6s; }

/* ========================================
   HERO / BANNERS - CINEMATOGRÁFICO
======================================== */
.wp-block-cover,
.hero-section,
.ct-hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.wp-block-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(212, 175, 55, 0.1) 100%
  );
  z-index: 1;
}

.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.wp-block-cover h1,
.wp-block-cover h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: var(--fc-blanco) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
}

.wp-block-cover p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ========================================
   MENSAJES Y ALERTAS
======================================== */
.woocommerce-message,
.woocommerce-info {
  background: var(--fc-blanco) !important;
  border: none !important;
  border-left: 3px solid var(--fc-dorado) !important;
  color: var(--fc-negro) !important;
  font-size: 14px;
  padding: 20px 25px !important;
}

.woocommerce-error {
  background: var(--fc-blanco) !important;
  border: none !important;
  border-left: 3px solid var(--fc-rosa-elegante) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--fc-dorado) !important;
}


/* ========================================
   PAGINACIÓN ELEGANTE
======================================== */
.woocommerce-pagination,
.pagination {
  margin: 60px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.woocommerce-pagination ul {
  display: flex;
  gap: 10px;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span,
.page-numbers {
  background: transparent !important;
  color: var(--fc-gris) !important;
  border: 1px solid var(--fc-nude) !important;
  width: 50px !important;
  height: 50px !important;
  line-height: 48px !important;
  text-align: center !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: var(--fc-transition) !important;
  display: inline-block;
}

.woocommerce-pagination ul li a:hover,
.page-numbers:hover {
  background: var(--fc-negro) !important;
  border-color: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
}

.woocommerce-pagination ul li span.current,
.page-numbers.current {
  background: var(--fc-negro) !important;
  border-color: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
}

/* ========================================
   BREADCRUMBS MINIMALISTAS
======================================== */
.woocommerce-breadcrumb,
.breadcrumbs,
nav.woocommerce-breadcrumb {
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--fc-gris) !important;
  padding: 30px 0;
}

.woocommerce-breadcrumb a {
  color: var(--fc-negro) !important;
}

.woocommerce-breadcrumb a:hover {
  color: var(--fc-dorado) !important;
}

/* ========================================
   WIDGETS ELEGANTES
======================================== */
.widget,
aside .wp-block-group {
  background: var(--fc-blanco);
  padding: 35px;
  margin-bottom: 30px;
  border: 1px solid var(--fc-nude);
}

.widget-title,
aside h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--fc-negro) !important;
  margin-bottom: 25px !important;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--fc-nude);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--fc-dorado);
}

/* Filtros de precio */
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: var(--fc-nude) !important;
}

.widget_price_filter .ui-slider .ui-slider-range {
  background: var(--fc-dorado) !important;
}

.widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--fc-negro) !important;
  border: 2px solid var(--fc-dorado) !important;
}

/* ========================================
   RATING ESTRELLAS
======================================== */
.star-rating,
.woocommerce .star-rating {
  color: var(--fc-dorado) !important;
}

.star-rating::before {
  color: var(--fc-nude) !important;
}

/* ========================================
   CANTIDAD INPUT
======================================== */
.quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--fc-nude);
}

.quantity .qty {
  border: none !important;
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  width: 60px;
  padding: 12px 0 !important;
}

/* ========================================
   GALERÍA DE PRODUCTO
======================================== */
.woocommerce-product-gallery__image {
  overflow: hidden;
}

.flex-control-thumbs {
  margin-top: 15px !important;
  display: flex;
  gap: 10px;
}

.flex-control-thumbs li {
  overflow: hidden;
}

.flex-control-thumbs li img {
  border: 2px solid transparent;
  transition: var(--fc-transition);
  opacity: 0.6;
}

.flex-control-thumbs li img:hover,
.flex-control-thumbs li img.flex-active {
  border-color: var(--fc-dorado);
  opacity: 1;
}

/* ========================================
   BADGE NUEVO
======================================== */
.fc-badge-new {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--fc-blanco);
  color: var(--fc-negro);
  padding: 8px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 20;
  border: 1px solid var(--fc-dorado);
}

/* ========================================
   MINI CART GLASSMORPHISM
======================================== */
.ct-cart-content,
.widget_shopping_cart_content {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 30px;
  box-shadow: var(--fc-shadow-elevated);
}

/* ========================================
   LOADING ELEGANTE
======================================== */
.woocommerce .blockUI.blockOverlay {
  background: rgba(255, 255, 255, 0.9) !important;
}

.woocommerce .blockUI.blockOverlay::before {
  border-color: var(--fc-nude) !important;
  border-top-color: var(--fc-dorado) !important;
}

/* ========================================
   CURSOR PERSONALIZADO (OPCIONAL)
======================================== */
.fc-cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--fc-dorado);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translate(-50%, -50%);
}

.fc-cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--fc-dorado);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}


/* ========================================
   SCROLLBAR LUXURY
======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--fc-nude-claro);
}

::-webkit-scrollbar-thumb {
  background: var(--fc-negro);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--fc-dorado);
}

/* ========================================
   SELECCIÓN DE TEXTO
======================================== */
::selection {
  background: var(--fc-dorado);
  color: var(--fc-negro);
}

::-moz-selection {
  background: var(--fc-dorado);
  color: var(--fc-negro);
}

/* ========================================
   EFECTOS ESPECIALES
======================================== */
/* Línea decorativa dorada */
.fc-gold-line {
  width: 60px;
  height: 1px;
  background: var(--fc-dorado);
  margin: 20px 0;
}

.fc-gold-line-center {
  margin: 20px auto;
}

/* Texto con gradiente dorado */
.fc-text-gold {
  background: var(--fc-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Efecto shimmer en hover */
@keyframes fc-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fc-shimmer:hover {
  background: linear-gradient(
    90deg,
    var(--fc-negro) 0%,
    var(--fc-dorado) 50%,
    var(--fc-negro) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fc-shimmer 3s linear infinite;
}

/* ========================================
   PRELOADER ELEGANTE
======================================== */
.fc-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--fc-negro);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.8s var(--fc-ease-luxury), visibility 0.8s;
}

.fc-preloader.fc-loaded {
  opacity: 0;
  visibility: hidden;
}

.fc-preloader-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: var(--fc-dorado);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fc-fadeIn 1s ease forwards;
}

.fc-preloader-line {
  width: 200px;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.fc-preloader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--fc-dorado);
  animation: fc-loading 1.5s ease-in-out infinite;
}

@keyframes fc-loading {
  0% { left: -40%; }
  100% { left: 100%; }
}

@keyframes fc-fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE PREMIUM
======================================== */
@media (max-width: 1199px) {
  .products .product .add_to_cart_button {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: calc(100% - 40px) !important;
    margin: 0 20px 20px !important;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.75rem !important; }
  
  .single-product .product_title {
    font-size: 26px !important;
  }
  
  .cart_totals,
  .woocommerce-checkout-review-order {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .wp-block-button__link,
  .button,
  .add_to_cart_button {
    padding: 14px 30px !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }
  
  .single-product .product_title {
    font-size: 22px !important;
  }
  
  .single-product .price {
    font-size: 22px !important;
  }
  
  .woocommerce-tabs .tabs li {
    margin: 0 15px 0 0 !important;
  }
  
  .woocommerce-tabs .tabs li a {
    font-size: 10px !important;
    letter-spacing: 1px !important;
  }
  
  .widget,
  aside .wp-block-group {
    padding: 25px;
  }
  
  .cart_totals,
  .woocommerce-checkout-review-order {
    padding: 20px;
  }
  
  /* Header móvil */
  .ct-header nav a,
  .ct-menu > li > a {
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }
}

@media (max-width: 480px) {
  .products .product .add_to_cart_button {
    width: calc(100% - 30px) !important;
    margin: 0 15px 15px !important;
    padding: 12px 20px !important;
  }
  
  .woocommerce-loop-product__title {
    margin: 15px 15px 8px !important;
    font-size: 16px !important;
  }
  
  .products .product .price {
    margin: 0 15px 15px !important;
  }
}

/* ========================================
   DARK MODE SUPPORT (OPCIONAL)
======================================== */
@media (prefers-color-scheme: dark) {
  .fc-dark-mode body {
    background: var(--fc-negro);
    color: var(--fc-nude-claro);
  }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .fc-animate {
    opacity: 1 !important;
    transform: none !important;
  }
  
  header, footer, .fc-preloader {
    display: none !important;
  }
}


/* ========================================
   BOTONES FLOTANTES (WHATSAPP + CHAT IA)
======================================== */
.fc-floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99990;
}

.fc-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.fc-float-btn svg {
  width: 28px;
  height: 28px;
}

/* WhatsApp Button */
.fc-whatsapp-btn {
  background: #25D366;
  color: white;
}

.fc-whatsapp-btn:hover {
  background: #128C7E;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Chat IA Button */
.fc-chat-btn {
  background: var(--fc-negro);
  color: var(--fc-dorado);
  border: 2px solid var(--fc-dorado);
}

.fc-chat-btn:hover {
  background: var(--fc-dorado);
  color: var(--fc-negro);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.fc-chat-btn.fc-active {
  background: var(--fc-dorado);
  color: var(--fc-negro);
}

/* Animación de pulso */
.fc-whatsapp-btn::before,
.fc-chat-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: fc-pulse-ring 2s ease-out infinite;
  z-index: -1;
}

@keyframes fc-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ========================================
   CHAT WIDGET
======================================== */
.fc-chat-widget {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 550px;
  max-height: calc(100vh - 150px);
  background: var(--fc-blanco);
  border-radius: 20px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 99991;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.fc-chat-widget.fc-chat-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.fc-chat-header {
  background: var(--fc-negro);
  color: var(--fc-blanco);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fc-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fc-chat-avatar {
  width: 45px;
  height: 45px;
  background: var(--fc-dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-chat-avatar svg {
  width: 25px;
  height: 25px;
  color: var(--fc-negro);
}

.fc-chat-header h4 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fc-blanco);
}

.fc-chat-status {
  font-size: 12px;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fc-chat-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: fc-blink 2s infinite;
}

@keyframes fc-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fc-chat-close {
  background: transparent;
  border: none;
  color: var(--fc-blanco);
  cursor: pointer;
  padding: 5px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.fc-chat-close:hover {
  opacity: 1;
}

.fc-chat-close svg {
  width: 20px;
  height: 20px;
}

/* Chat Messages */
.fc-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--fc-nude-claro);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fc-chat-welcome {
  background: var(--fc-blanco);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fc-chat-welcome p {
  margin: 0 0 10px;
  color: var(--fc-negro);
  font-size: 14px;
  line-height: 1.6;
}

.fc-chat-welcome p:last-child {
  margin-bottom: 0;
}

/* Messages */
.fc-message {
  display: flex;
  max-width: 85%;
}

.fc-message-user {
  align-self: flex-end;
  margin-left: auto;
}

.fc-message-assistant {
  align-self: flex-start;
}

.fc-message-content {
  padding: 12px 16px;
  border-radius: 18px;
  position: relative;
}

.fc-message-user .fc-message-content {
  background: var(--fc-negro);
  color: var(--fc-blanco);
  border-bottom-right-radius: 4px;
}

.fc-message-assistant .fc-message-content {
  background: var(--fc-blanco);
  color: var(--fc-negro);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fc-message-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
}

.fc-message-time {
  font-size: 10px;
  opacity: 0.6;
  display: block;
  margin-top: 5px;
}

/* Typing Indicator */
.fc-typing-indicator {
  display: flex;
  gap: 5px;
  padding: 15px 20px;
  background: var(--fc-blanco);
  border-radius: 18px;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fc-typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--fc-dorado);
  border-radius: 50%;
  animation: fc-typing 1.4s infinite;
}

.fc-typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.fc-typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fc-typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Suggestions */
.fc-chat-suggestions {
  padding: 10px 20px;
  background: var(--fc-nude-claro);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-suggestion {
  background: var(--fc-blanco);
  border: 1px solid var(--fc-nude);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--fc-negro);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.fc-suggestion:hover {
  background: var(--fc-negro);
  color: var(--fc-dorado);
  border-color: var(--fc-negro);
}

/* Chat Input */
.fc-chat-input {
  display: flex;
  padding: 15px 20px;
  background: var(--fc-blanco);
  border-top: 1px solid var(--fc-nude);
  gap: 10px;
}

.fc-chat-input input {
  flex: 1;
  border: none !important;
  background: var(--fc-nude-claro) !important;
  padding: 12px 18px !important;
  border-radius: 25px !important;
  font-size: 14px !important;
  font-family: 'Poppins', sans-serif !important;
}

.fc-chat-input input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.fc-chat-input button {
  width: 45px;
  height: 45px;
  background: var(--fc-dorado) !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0 !important;
}

.fc-chat-input button:hover {
  background: var(--fc-negro) !important;
  transform: scale(1.05);
}

.fc-chat-input button svg {
  width: 20px;
  height: 20px;
  color: var(--fc-negro);
  transition: color 0.3s;
}

.fc-chat-input button:hover svg {
  color: var(--fc-dorado);
}

/* Responsive */
@media (max-width: 480px) {
  .fc-floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .fc-float-btn {
    width: 55px;
    height: 55px;
  }
  
  .fc-chat-widget {
    bottom: 95px;
    right: 15px;
    left: 15px;
    width: auto;
    height: calc(100vh - 130px);
    max-height: none;
    border-radius: 15px;
  }
  
  .fc-chat-header {
    padding: 15px;
  }
  
  .fc-chat-messages {
    padding: 15px;
  }
}


/* ========================================
   MENÚ DE NAVEGACIÓN - MEJORAS BLOCKSY
======================================== */
/* Contenedor del menú */
.ct-header [data-id="menu"] nav,
.ct-header .ct-menu-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Items del menú principal */
.ct-header .menu > li,
.ct-header .ct-menu > li,
.ct-header nav > ul > li {
  position: relative;
  margin: 0 5px;
}

/* Links del menú */
.ct-header .menu > li > a,
.ct-header .ct-menu > li > a,
.ct-header nav ul li a,
[data-id="menu"] a {
  color: var(--fc-negro) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 12px 18px !important;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

/* Efecto underline animado */
.ct-header .menu > li > a::after,
.ct-header .ct-menu > li > a::after,
[data-id="menu"] a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--fc-dorado);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ct-header .menu > li > a:hover::after,
.ct-header .ct-menu > li > a:hover::after,
.ct-header .menu > li.current-menu-item > a::after,
[data-id="menu"] a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hover en links */
.ct-header .menu > li > a:hover,
.ct-header .ct-menu > li > a:hover,
[data-id="menu"] a:hover {
  color: var(--fc-dorado) !important;
}

/* Item activo */
.ct-header .menu > li.current-menu-item > a,
.ct-header .ct-menu > li.current-menu-item > a {
  color: var(--fc-dorado) !important;
}

/* Submenú dropdown */
.ct-header .menu .sub-menu,
.ct-header .ct-menu .sub-menu {
  background: var(--fc-blanco) !important;
  border: none !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
  padding: 15px 0 !important;
  min-width: 220px;
  border-top: 2px solid var(--fc-dorado) !important;
}

.ct-header .menu .sub-menu li a,
.ct-header .ct-menu .sub-menu li a {
  font-size: 11px !important;
  letter-spacing: 1px !important;
  padding: 10px 25px !important;
  color: var(--fc-negro) !important;
}

.ct-header .menu .sub-menu li a:hover,
.ct-header .ct-menu .sub-menu li a:hover {
  background: var(--fc-nude-claro) !important;
  color: var(--fc-dorado) !important;
  padding-left: 30px !important;
}

/* ========================================
   HEADER LAYOUT MEJORADO
======================================== */
.ct-header [data-row="middle"] {
  padding: 15px 0 !important;
}

.ct-header [data-row="middle"] > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.ct-header .site-logo-container,
.ct-header .site-branding {
  flex-shrink: 0;
}

.ct-header .site-logo-container img {
  max-height: 60px;
  width: auto;
}

/* Iconos del header (carrito, búsqueda, etc) */
.ct-header [data-id="cart"],
.ct-header [data-id="search"],
.ct-header [data-id="account"] {
  margin-left: 15px;
}

.ct-header [data-id="cart"] a,
.ct-header [data-id="search"] a,
.ct-header [data-id="account"] a {
  color: var(--fc-negro) !important;
  font-size: 18px;
  transition: all 0.3s ease;
}

.ct-header [data-id="cart"] a:hover,
.ct-header [data-id="search"] a:hover,
.ct-header [data-id="account"] a:hover {
  color: var(--fc-dorado) !important;
  transform: scale(1.1);
}

/* ========================================
   MENÚ MÓVIL MEJORADO
======================================== */
.ct-header [data-id="trigger"] {
  color: var(--fc-negro) !important;
}

.ct-panel[data-behaviour] {
  background: var(--fc-blanco) !important;
}

.ct-panel .ct-menu-mobile > li > a {
  color: var(--fc-negro) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 15px 30px !important;
  border-bottom: 1px solid var(--fc-nude) !important;
}

.ct-panel .ct-menu-mobile > li > a:hover {
  color: var(--fc-dorado) !important;
  background: var(--fc-nude-claro) !important;
}

/* Botón cerrar menú móvil */
.ct-panel .ct-toggle-close {
  color: var(--fc-negro) !important;
  border: 1px solid var(--fc-nude) !important;
}

.ct-panel .ct-toggle-close:hover {
  color: var(--fc-dorado) !important;
  border-color: var(--fc-dorado) !important;
}

/* ========================================
   SEPARADOR ENTRE ITEMS (OPCIONAL)
======================================== */
.ct-header .menu > li:not(:last-child)::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background: var(--fc-nude);
  opacity: 0;
}

/* Activar separadores si se desea */
.fc-menu-separators .ct-header .menu > li:not(:last-child)::before {
  opacity: 1;
}


/* ========================================
   ENLACES DE PRODUCTOS EN CHAT
======================================== */
.fc-product-link {
  display: inline-block;
  background: var(--fc-dorado) !important;
  color: var(--fc-negro) !important;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.fc-product-link:hover {
  background: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
  transform: scale(1.05);
}

.fc-message-assistant .fc-message-content p {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Mejorar sugerencias del chat */
.fc-chat-suggestions {
  padding: 12px 15px;
  background: var(--fc-nude-claro);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--fc-nude);
}

.fc-suggestion {
  background: var(--fc-blanco);
  border: 1px solid var(--fc-dorado);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--fc-negro);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.fc-suggestion:hover {
  background: var(--fc-dorado);
  color: var(--fc-negro);
}


/* ========================================
   PÁGINA DE PRODUCTO - OCULTAR HERO VACÍO
======================================== */
/* Ocultar hero section vacío en productos */
.single-product .hero-section:not(:has(img)):not(:has(.ct-image-container)) {
  display: none !important;
}

.single-product .hero-section .entry-header:only-child {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

/* Hero sin contenido visual */
.single-product .hero-section[data-type="type-1"] {
  min-height: auto !important;
  padding: 20px 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Breadcrumb compacto */
.single-product .ct-breadcrumbs {
  padding: 15px 0 !important;
  margin: 0 !important;
  font-size: 11px !important;
}

/* Eliminar espacios extra */
.single-product .hero-section .entry-header {
  padding: 0 !important;
  min-height: auto !important;
}

/* Asegurar que el producto esté arriba */
.single-product .site-main {
  padding-top: 0 !important;
}


/* ========================================
   VARIACIONES DE COLOR COMO CÍRCULOS
======================================== */
/* Contenedor de variaciones */
.single-product .variations {
  width: 100%;
}

.single-product .variations tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.single-product .variations th.label {
  padding: 0 0 10px 0 !important;
  text-align: left;
}

.single-product .variations th.label label {
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--fc-negro) !important;
}

.single-product .variations td.value {
  padding: 0 !important;
}

/* Ocultar select original cuando hay swatches */
.single-product .variations select {
  width: 100% !important;
  padding: 12px 15px !important;
  border: 1px solid var(--fc-nude) !important;
  border-radius: 0 !important;
  background: var(--fc-blanco) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-product .variations select:focus {
  border-color: var(--fc-dorado) !important;
  outline: none !important;
}

/* Swatches de color personalizados */
.fc-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.fc-color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fc-color-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fc-color-swatch.selected {
  border-color: var(--fc-dorado);
  transform: scale(1.1);
}

.fc-color-swatch.selected::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tooltip con nombre del color */
.fc-color-swatch::before {
  content: attr(data-color-name);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--fc-negro);
  color: var(--fc-blanco);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.fc-color-swatch:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Colores específicos - ajusta según tus productos */
.fc-color-swatch[data-color="negro"],
.fc-color-swatch[data-color="black"] {
  background: #1a1a1a;
}

.fc-color-swatch[data-color="blanco"],
.fc-color-swatch[data-color="white"] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.fc-color-swatch[data-color="blanco"].selected::after {
  color: #1a1a1a;
  text-shadow: none;
}

.fc-color-swatch[data-color="nude"],
.fc-color-swatch[data-color="beige"] {
  background: #e8dcd0;
}

.fc-color-swatch[data-color="rosa"],
.fc-color-swatch[data-color="pink"] {
  background: #f4c2c2;
}

.fc-color-swatch[data-color="cafe"],
.fc-color-swatch[data-color="brown"],
.fc-color-swatch[data-color="chocolate"] {
  background: #5c4033;
}

.fc-color-swatch[data-color="gris"],
.fc-color-swatch[data-color="gray"],
.fc-color-swatch[data-color="grey"] {
  background: #808080;
}

.fc-color-swatch[data-color="azul"],
.fc-color-swatch[data-color="blue"] {
  background: #1e3a5f;
}

.fc-color-swatch[data-color="rojo"],
.fc-color-swatch[data-color="red"] {
  background: #8b0000;
}

.fc-color-swatch[data-color="morado"],
.fc-color-swatch[data-color="purple"] {
  background: #4a0080;
}

.fc-color-swatch[data-color="verde"],
.fc-color-swatch[data-color="green"] {
  background: #2d5a27;
}

.fc-color-swatch[data-color="dorado"],
.fc-color-swatch[data-color="gold"] {
  background: linear-gradient(135deg, #d4af37 0%, #f7e7ce 50%, #d4af37 100%);
}

.fc-color-swatch[data-color="piel"],
.fc-color-swatch[data-color="skin"] {
  background: #e0b89d;
}

.fc-color-swatch[data-color="coral"] {
  background: #ff7f50;
}

.fc-color-swatch[data-color="vino"],
.fc-color-swatch[data-color="wine"],
.fc-color-swatch[data-color="burgundy"] {
  background: #722f37;
}

/* Swatches de talla */
.fc-size-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.fc-size-swatch {
  min-width: 45px;
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fc-nude);
  background: var(--fc-blanco);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--fc-negro);
  transition: all 0.3s ease;
}

.fc-size-swatch:hover {
  border-color: var(--fc-dorado);
  background: var(--fc-nude-claro);
}

.fc-size-swatch.selected {
  background: var(--fc-negro);
  border-color: var(--fc-negro);
  color: var(--fc-dorado);
}

.fc-size-swatch.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}


/* ========================================
   PÁGINA DE TIENDA / CATÁLOGO - PREMIUM
======================================== */
/* Header de la tienda - compacto y moderno */
.hero-section[data-type="type-1"] {
  background: var(--fc-negro) !important;
  padding: 30px 0 !important;
  margin-bottom: 30px !important;
  min-height: auto !important;
}

.hero-section .entry-header {
  padding: 0 !important;
}

/* Ocultar spacers vacíos */
.hero-section .page-description,
.hero-section .wp-block-spacer,
.hero-section .wp-block-group:empty,
.hero-section .page-description .wp-block-group {
  display: none !important;
}

/* Título de página */
.hero-section .page-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: var(--fc-blanco) !important;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 1px;
}

/* Breadcrumbs */
.hero-section .ct-breadcrumbs {
  justify-content: center;
  margin-bottom: 10px !important;
  padding: 0 !important;
}

.hero-section .ct-breadcrumbs a,
.hero-section .ct-breadcrumbs span {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 11px !important;
  letter-spacing: 1px;
}

.hero-section .ct-breadcrumbs a:hover {
  color: var(--fc-dorado) !important;
}

.hero-section .ct-breadcrumbs .ct-separator {
  margin: 0 8px;
  opacity: 0.5;
}

/* Contenedor principal de productos */
.woocommerce .products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

/* Producto individual en grid - más compacto */
.woocommerce .products .product,
ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  background: var(--fc-blanco);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--fc-nude);
}

.woocommerce .products .product:hover {
  border-color: var(--fc-dorado);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Imagen del producto - más pequeña */
.woocommerce .products .product .woocommerce-LoopProduct-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.woocommerce .products .product .woocommerce-LoopProduct-link img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.woocommerce .products .product:hover .woocommerce-LoopProduct-link img {
  transform: scale(1.05);
}

/* Contenido del producto - compacto */
.woocommerce .products .product .woocommerce-loop-product__title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--fc-negro) !important;
  margin: 12px 12px 6px !important;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woocommerce .products .product:hover .woocommerce-loop-product__title {
  color: var(--fc-dorado) !important;
}

/* Precio - compacto */
.woocommerce .products .product .price {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--fc-negro) !important;
  margin: 0 12px 12px !important;
  display: block;
}

.woocommerce .products .product .price del {
  color: var(--fc-gris) !important;
  font-size: 11px !important;
  font-weight: 400;
  margin-right: 5px;
}

.woocommerce .products .product .price ins {
  text-decoration: none !important;
  color: var(--fc-rosa-elegante) !important;
}

/* Badge de oferta - pequeño */
.woocommerce .products .product .onsale {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  background: var(--fc-rosa-elegante) !important;
  color: var(--fc-blanco) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 4px 8px !important;
  border-radius: 0 !important;
  line-height: 1 !important;
  min-height: auto !important;
  min-width: auto !important;
  z-index: 10 !important;
}

/* Badge nuevo - pequeño */
.woocommerce .products .product .fc-badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto !important;
  background: var(--fc-negro);
  color: var(--fc-dorado);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  z-index: 10;
}

/* Botón agregar al carrito - siempre visible, compacto */
.woocommerce .products .product .add_to_cart_button,
.woocommerce .products .product .product_type_variable {
  display: block !important;
  width: calc(100% - 24px) !important;
  margin: 0 12px 12px !important;
  padding: 10px 15px !important;
  background: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
  border: 1px solid var(--fc-negro) !important;
  font-size: 9px !important;
  letter-spacing: 1px !important;
  text-align: center;
  transition: all 0.3s ease !important;
}

.woocommerce .products .product .add_to_cart_button:hover,
.woocommerce .products .product .product_type_variable:hover {
  background: var(--fc-dorado) !important;
  color: var(--fc-negro) !important;
  border-color: var(--fc-dorado) !important;
}

/* Rating estrellas */
.woocommerce .products .product .star-rating {
  margin: 0 18px 10px !important;
  font-size: 12px;
}

/* Filtros y ordenamiento */
.woocommerce-ordering {
  margin-bottom: 30px !important;
}

.woocommerce-ordering select {
  padding: 12px 40px 12px 15px !important;
  border: 1px solid var(--fc-nude) !important;
  background: var(--fc-blanco) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  min-width: 200px;
}

.woocommerce-result-count {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: var(--fc-gris) !important;
}

/* Sidebar de filtros */
.woocommerce-sidebar .widget,
.shop-sidebar .widget {
  background: var(--fc-blanco);
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--fc-nude);
}

.woocommerce-sidebar .widget-title,
.shop-sidebar .widget-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--fc-negro) !important;
  margin-bottom: 20px !important;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--fc-nude);
  position: relative;
}

.woocommerce-sidebar .widget-title::after,
.shop-sidebar .widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--fc-dorado);
}

/* Lista de categorías */
.woocommerce-sidebar .product-categories li a,
.widget_product_categories li a {
  color: var(--fc-negro) !important;
  font-size: 14px;
  padding: 8px 0;
  display: block;
  transition: all 0.3s ease;
}

.woocommerce-sidebar .product-categories li a:hover,
.widget_product_categories li a:hover {
  color: var(--fc-dorado) !important;
  padding-left: 10px;
}

/* Paginación */
.woocommerce-pagination {
  margin: 50px 0 !important;
  text-align: center;
}

.woocommerce-pagination ul {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.woocommerce-pagination ul li {
  margin: 0 !important;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px !important;
  height: 45px !important;
  background: var(--fc-blanco) !important;
  border: 1px solid var(--fc-nude) !important;
  color: var(--fc-negro) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.woocommerce-pagination ul li a:hover {
  background: var(--fc-negro) !important;
  border-color: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
}

.woocommerce-pagination ul li span.current {
  background: var(--fc-negro) !important;
  border-color: var(--fc-negro) !important;
  color: var(--fc-dorado) !important;
}

/* Responsive - productos */
@media (max-width: 1199px) {
  .woocommerce .products,
  ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px !important;
  }
  
  .woocommerce .products .product .woocommerce-LoopProduct-link img {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .woocommerce .products,
  ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px !important;
  }
  
  .woocommerce .products .product .woocommerce-LoopProduct-link img {
    height: 180px;
  }
  
  .woocommerce .products .product .woocommerce-loop-product__title {
    font-size: 12px !important;
    margin: 10px 10px 5px !important;
  }
  
  .woocommerce .products .product .price {
    font-size: 13px !important;
    margin: 0 10px 10px !important;
  }
  
  .woocommerce .products .product .add_to_cart_button {
    margin: 0 10px 10px !important;
    width: calc(100% - 20px) !important;
    padding: 8px 10px !important;
    font-size: 8px !important;
  }
}

@media (max-width: 576px) {
  .woocommerce .products,
  ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px !important;
  }
  
  .woocommerce .products .product .woocommerce-LoopProduct-link img {
    height: 160px;
  }
  
  .hero-section .page-title {
    font-size: 24px !important;
  }
}

/* Sin resultados */
.woocommerce-no-products-found {
  text-align: center;
  padding: 60px 20px;
}

.woocommerce-no-products-found .woocommerce-info {
  background: var(--fc-nude-claro) !important;
  border: none !important;
  border-left: 3px solid var(--fc-dorado) !important;
  font-size: 16px;
}


/* ========================================
   BLOG / NOTICIAS - DISEÑO MODERNO
======================================== */
/* Grid de posts */
.blog .entries,
.archive .entries,
[data-posts] {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px !important;
}

/* Card de post individual */
.blog article.post,
.archive article.post,
[data-posts] article {
  background: var(--fc-blanco);
  border: 1px solid var(--fc-nude);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog article.post:hover,
.archive article.post:hover {
  border-color: var(--fc-dorado);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Imagen del post */
.blog article .ct-image-container,
.archive article .ct-image-container,
article .post-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog article .ct-image-container img,
.archive article .ct-image-container img,
article .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog article:hover .ct-image-container img,
.archive article:hover .ct-image-container img {
  transform: scale(1.05);
}

/* Contenido del post */
.blog article .entry-content-container,
.archive article .entry-content-container,
article .post-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Categoría/Meta superior */
.blog article .entry-meta,
.archive article .entry-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--fc-gris);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog article .entry-meta a,
.archive article .entry-meta a {
  color: var(--fc-dorado) !important;
  font-weight: 500;
}

.blog article .entry-meta a:hover {
  color: var(--fc-negro) !important;
}

/* Título del post */
.blog article .entry-title,
.archive article .entry-title,
article h2.entry-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin: 0 0 12px 0 !important;
  color: var(--fc-negro) !important;
}

.blog article .entry-title a,
.archive article .entry-title a {
  color: var(--fc-negro) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog article:hover .entry-title a,
.archive article:hover .entry-title a {
  color: var(--fc-dorado) !important;
}

/* Extracto */
.blog article .entry-excerpt,
.archive article .entry-excerpt,
article .post-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fc-gris);
  margin: 0 0 15px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Botón leer más */
.blog article .entry-button,
.archive article .entry-button,
article .read-more {
  margin-top: auto;
}

.blog article .entry-button a,
.archive article .entry-button a,
article .read-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--fc-negro) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 0;
  border-bottom: 1px solid var(--fc-nude);
}

.blog article .entry-button a:hover,
.archive article .entry-button a:hover {
  color: var(--fc-dorado) !important;
  border-color: var(--fc-dorado);
  padding-left: 10px;
}

.blog article .entry-button a::after,
.archive article .entry-button a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.blog article .entry-button a:hover::after {
  transform: translateX(5px);
}

/* Fecha en la imagen */
.blog article .ct-image-container .entry-date,
article .post-date-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--fc-negro);
  color: var(--fc-blanco);
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Post destacado (primer post más grande) */
.blog .entries article:first-child,
[data-posts] article:first-child {
  grid-column: span 2;
}

.blog .entries article:first-child .ct-image-container {
  aspect-ratio: 16/9;
}

.blog .entries article:first-child .entry-title {
  font-size: 26px !important;
}

/* Sidebar del blog */
.blog aside.sidebar,
.archive aside.sidebar {
  padding-left: 30px;
}

.blog aside .widget,
.archive aside .widget {
  background: var(--fc-blanco);
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--fc-nude);
}

.blog aside .widget-title,
.archive aside .widget-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--fc-negro) !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fc-nude);
  position: relative;
}

.blog aside .widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--fc-dorado);
}

/* Posts recientes en sidebar */
.widget_recent_entries li,
.widget_recent_posts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--fc-nude);
}

.widget_recent_entries li:last-child,
.widget_recent_posts li:last-child {
  border-bottom: none;
}

.widget_recent_entries li a,
.widget_recent_posts li a {
  color: var(--fc-negro) !important;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.widget_recent_entries li a:hover,
.widget_recent_posts li a:hover {
  color: var(--fc-dorado) !important;
}

/* Categorías en sidebar */
.widget_categories li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--fc-negro) !important;
  font-size: 14px;
  border-bottom: 1px solid var(--fc-nude);
  transition: all 0.3s ease;
}

.widget_categories li a:hover {
  color: var(--fc-dorado) !important;
  padding-left: 10px;
}

/* Single post */
.single-post article.post {
  max-width: 800px;
  margin: 0 auto;
}

.single-post .entry-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 36px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: var(--fc-negro) !important;
  margin-bottom: 20px !important;
}

.single-post .entry-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--fc-negro-suave);
}

.single-post .entry-content p {
  margin-bottom: 1.5em;
  color: var(--fc-negro-suave);
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin-top: 2em;
  margin-bottom: 0.8em;
  color: var(--fc-negro);
}

/* Responsive blog */
@media (max-width: 991px) {
  .blog .entries,
  .archive .entries,
  [data-posts] {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px !important;
  }
  
  .blog .entries article:first-child {
    grid-column: span 2;
  }
  
  .blog aside.sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .blog .entries,
  .archive .entries,
  [data-posts] {
    grid-template-columns: 1fr;
    gap: 20px !important;
  }
  
  .blog .entries article:first-child {
    grid-column: span 1;
  }
  
  .blog .entries article:first-child .entry-title {
    font-size: 22px !important;
  }
  
  .blog article .entry-title {
    font-size: 18px !important;
  }
  
  .single-post .entry-title {
    font-size: 28px !important;
  }
}


/* ========================================
   BÚSQUEDA GLOBAL - DISEÑO MODERNO ELEGANTE
======================================== */
/* Panel de búsqueda - overlay oscuro */
.ct-panel[data-behaviour*="modal"],
.ct-panel[data-behaviour*="drop"],
#search-modal {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

/* Contenedor interno centrado */
.ct-panel .ct-panel-content {
  max-width: 650px;
  margin: 0 auto;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

/* Formulario de búsqueda */
.ct-panel form,
.ct-panel .wp-block-search {
  width: 100%;
  position: relative;
}

/* Input de búsqueda - estilo minimalista */
.ct-panel input[type="search"],
.ct-panel .wp-block-search__input {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 0 !important;
  padding: 20px 60px 20px 0 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  color: var(--fc-blanco) !important;
  width: 100%;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.4s ease;
}

.ct-panel input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  font-style: italic;
}

.ct-panel input[type="search"]:focus {
  border-bottom-color: var(--fc-dorado) !important;
}

/* Spinner/Loading - ocultar el feo */
.ct-panel svg[class*="loading"],
.ct-panel .ct-search-form svg,
.ct-panel path[fill="none"][stroke="currentColor"] {
  display: none !important;
}

/* Botón de búsqueda - icono elegante */
.ct-panel .wp-block-search__button,
.ct-panel button[type="submit"] {
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: transparent !important;
  border: none !important;
  color: var(--fc-dorado) !important;
  padding: 15px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ct-panel .wp-block-search__button:hover,
.ct-panel button[type="submit"]:hover {
  color: var(--fc-blanco) !important;
  transform: translateY(-50%) scale(1.2) !important;
}

/* Botón cerrar - elegante */
.ct-panel .ct-toggle-close {
  position: fixed !important;
  top: 40px !important;
  right: 40px !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: var(--fc-blanco) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 100;
}

.ct-panel .ct-toggle-close:hover {
  background: var(--fc-dorado) !important;
  border-color: var(--fc-dorado) !important;
  color: var(--fc-negro) !important;
  transform: rotate(90deg);
}

.ct-panel .ct-toggle-close svg {
  width: 16px;
  height: 16px;
}

/* Texto de ayuda */
.ct-panel .search-help-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-align: center;
  margin-top: 30px;
}

/* Resultados de búsqueda */
.ct-panel .ct-search-results,
.ct-panel .search-results {
  width: 100%;
  margin-top: 40px;
  max-height: 50vh;
  overflow-y: auto;
}

.ct-panel .ct-search-results h4,
.ct-panel .search-results-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--fc-dorado) !important;
  margin-bottom: 20px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Items de resultado */
.ct-panel .ct-search-results a,
.ct-panel .search-result-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--fc-blanco) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ct-panel .ct-search-results a:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(10px);
}

/* Imagen del resultado */
.ct-panel .ct-search-results img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Info del resultado */
.ct-panel .ct-search-results .item-title,
.ct-panel .ct-search-results h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--fc-blanco) !important;
  margin: 0 0 5px 0 !important;
  transition: color 0.3s ease;
}

.ct-panel .ct-search-results a:hover .item-title,
.ct-panel .ct-search-results a:hover h3 {
  color: var(--fc-dorado) !important;
}

.ct-panel .ct-search-results .item-price,
.ct-panel .ct-search-results .price {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--fc-dorado) !important;
}

.ct-panel .ct-search-results .item-category {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sin resultados */
.ct-panel .no-results {
  text-align: center;
  padding: 50px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.ct-panel .no-results p {
  font-size: 16px;
  margin: 0;
}

/* Loading personalizado */
.ct-panel .search-loading,
.ct-panel .ct-loading {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.ct-panel .search-loading::after,
.ct-panel .ct-loading::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--fc-dorado);
  border-radius: 50%;
  animation: fc-search-spin 0.8s linear infinite;
}

@keyframes fc-search-spin {
  to { transform: rotate(360deg); }
}

/* Responsive búsqueda */
@media (max-width: 768px) {
  .ct-panel .ct-panel-content {
    padding: 60px 20px;
    justify-content: flex-start;
    padding-top: 100px;
  }
  
  .ct-panel input[type="search"] {
    font-size: 20px !important;
    padding: 15px 50px 15px 0 !important;
  }
  
  .ct-panel .ct-toggle-close {
    top: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
  }
  
  .ct-panel .ct-search-results img {
    width: 50px;
    height: 50px;
  }
  
  .ct-panel .ct-search-results a {
    padding: 12px;
    gap: 15px;
  }
}


/* ========================================
   FIX ESPACIOS VACÍOS EN MÓVIL
======================================== */
/* Eliminar espacios en hero section móvil */
@media (max-width: 991px) {
  .hero-section[data-type="type-1"] {
    padding: 20px 0 !important;
    margin-bottom: 20px !important;
  }
  
  .hero-section .page-title {
    font-size: 24px !important;
  }
  
  .hero-section .ct-breadcrumbs {
    margin-bottom: 8px !important;
    font-size: 10px !important;
  }
  
  .hero-section .page-description {
    display: none !important;
  }
  
  .hero-section .entry-header {
    padding: 0 15px !important;
  }
}

@media (max-width: 576px) {
  .hero-section[data-type="type-1"] {
    padding: 15px 0 !important;
    margin-bottom: 15px !important;
  }
  
  .hero-section .page-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  
  .hero-section .ct-breadcrumbs {
    font-size: 9px !important;
  }
  
  /* Ocultar spacers y grupos vacíos */
  .wp-block-spacer,
  .wp-block-group:empty,
  .page-description .wp-block-group,
  .page-description .wp-block-spacer {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Reducir padding general */
  .site-main {
    padding-top: 0 !important;
  }
  
  .tax-product_cat .site-main,
  .post-type-archive-product .site-main {
    padding-top: 0 !important;
  }
}

/* Categorías de producto - fix espacios */
.tax-product_cat .hero-section,
.product-category .hero-section {
  min-height: auto !important;
}

.tax-product_cat .hero-section .entry-header,
.product-category .hero-section .entry-header {
  min-height: auto !important;
  padding: 0 !important;
}

/* Eliminar margin-top extra en contenido */
.tax-product_cat .ct-container,
.post-type-archive-product .ct-container {
  padding-top: 0 !important;
}


/* ========================================
   MENÚ MÓVIL - DISEÑO MODERNO OSCURO
======================================== */
/* Panel del menú móvil - fondo oscuro elegante */
.ct-panel,
.ct-panel[data-behaviour],
.ct-offcanvas {
  background: var(--fc-negro) !important;
}

/* Contenido del panel */
.ct-panel .ct-panel-content,
.ct-panel .ct-panel-inner {
  background: var(--fc-negro) !important;
}

/* Links del menú móvil - texto blanco */
.ct-panel a,
.ct-panel nav a,
.ct-panel .ct-menu-mobile a,
.ct-panel [data-id="mobile-menu"] a,
.ct-panel ul li a {
  color: var(--fc-blanco) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  padding: 16px 25px !important;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ct-panel a:hover,
.ct-panel nav a:hover,
.ct-panel .ct-menu-mobile a:hover {
  color: var(--fc-dorado) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding-left: 30px !important;
}

/* Item activo */
.ct-panel .current-menu-item > a,
.ct-panel .current_page_item > a {
  color: var(--fc-dorado) !important;
  border-left: 3px solid var(--fc-dorado) !important;
}

/* Submenús móvil */
.ct-panel .sub-menu a,
.ct-panel .children a {
  padding-left: 40px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-transform: none !important;
}

.ct-panel .sub-menu a:hover {
  color: var(--fc-dorado) !important;
  padding-left: 45px !important;
}

/* Icono de flecha/expandir */
.ct-panel .ct-toggle-dropdown-desktop,
.ct-panel .ct-toggle-dropdown-mobile,
.ct-panel [data-toggle] {
  color: var(--fc-blanco) !important;
}

/* Botón cerrar menú móvil */
.ct-panel .ct-toggle-close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: var(--fc-blanco) !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  z-index: 100;
  transition: all 0.3s ease;
}

.ct-panel .ct-toggle-close:hover {
  background: var(--fc-dorado) !important;
  border-color: var(--fc-dorado) !important;
  color: var(--fc-negro) !important;
}

/* Logo en menú móvil */
.ct-panel .site-logo img,
.ct-panel .site-branding img {
  max-height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Iconos en menú móvil */
.ct-panel [data-id="cart"] a,
.ct-panel [data-id="account"] a,
.ct-panel [data-id="search"] a,
.ct-panel svg {
  color: var(--fc-blanco) !important;
  fill: var(--fc-blanco) !important;
}

.ct-panel [data-id="cart"] a:hover,
.ct-panel [data-id="account"] a:hover,
.ct-panel [data-id="search"] a:hover {
  color: var(--fc-dorado) !important;
}

/* Widgets en menú móvil */
.ct-panel .widget-title {
  color: var(--fc-dorado) !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 15px !important;
  padding: 0 25px;
}

.ct-panel .widget {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Texto general en panel */
.ct-panel p,
.ct-panel span,
.ct-panel div {
  color: rgba(255, 255, 255, 0.8);
}

/* Redes sociales en menú */
.ct-panel .ct-social-box a {
  color: var(--fc-blanco) !important;
  border: none !important;
}

.ct-panel .ct-social-box a:hover {
  color: var(--fc-dorado) !important;
}





/* ========================================
   STACKABLE - CENTRAR EN MÓVIL
======================================== */
@media (max-width: 781px) {
  .stk-row.stk-inner-blocks,
  .stk-block-content.stk-row {
    justify-content: center !important;
    align-items: center !important;
  }
  
  .stk-row .stk-block-column {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .stk-block-image-box {
    margin: 0 auto !important;
  }
}


/* ========================================
   FIX PRODUCTOS RELACIONADOS - RESET COMPLETO
======================================== */
section.related.products,
section.up-sells,
section.cross-sells,
.single-product .related.products,
.single-product .up-sells {
  display: block !important;
  width: 100% !important;
}

section.related.products ul.products,
section.up-sells ul.products,
.single-product .related.products ul.products,
.single-product .up-sells ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 25px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.related.products ul.products li.product,
section.up-sells ul.products li.product,
.single-product .related ul.products li.product {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  display: block !important;
}

/* FORZAR texto horizontal */
section.related.products li.product *,
section.up-sells li.product *,
.single-product .related li.product * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  direction: ltr !important;
}

section.related.products li.product h2,
section.related.products li.product .woocommerce-loop-product__title,
section.related.products li.product .price,
section.related.products li.product span,
section.up-sells li.product h2,
section.up-sells li.product .woocommerce-loop-product__title,
section.up-sells li.product .price {
  display: block !important;
  width: 100% !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

@media (max-width: 991px) {
  section.related.products ul.products,
  section.up-sells ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}

@media (max-width: 576px) {
  section.related.products ul.products,
  section.up-sells ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}


/* ========================================
   HERO NOTICIAS/BLOG - COMPACTO
======================================== */
.blog .hero-section[data-type="type-2"],
.archive .hero-section[data-type="type-2"],
.page-template .hero-section[data-type="type-2"] {
  padding: 30px 0 !important;
  min-height: auto !important;
  background: var(--fc-negro) !important;
}

.blog .hero-section .entry-header,
.archive .hero-section .entry-header {
  padding: 0 !important;
}

.blog .hero-section .page-title,
.archive .hero-section .page-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: var(--fc-blanco) !important;
  margin: 0 !important;
}

.blog .hero-section .ct-breadcrumbs,
.archive .hero-section .ct-breadcrumbs {
  margin-bottom: 10px !important;
}

.blog .hero-section .ct-breadcrumbs a,
.blog .hero-section .ct-breadcrumbs span,
.archive .hero-section .ct-breadcrumbs a,
.archive .hero-section .ct-breadcrumbs span {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 11px !important;
}

@media (max-width: 576px) {
  .blog .hero-section .page-title,
  .archive .hero-section .page-title {
    font-size: 24px !important;
  }
  
  .blog .hero-section[data-type="type-2"],
  .archive .hero-section[data-type="type-2"] {
    padding: 20px 0 !important;
  }
}


/* ========================================
   ESTILO TIPO SALOME - CATEGORÍAS CIRCULARES
======================================== */
/* Contenedor de categorías circulares */
.fc-categories-circular {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.fc-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fc-slide-in 0.6s ease forwards;
}

/* Animación escalonada */
.fc-category-item:nth-child(1) { animation-delay: 0s; }
.fc-category-item:nth-child(2) { animation-delay: 0.1s; }
.fc-category-item:nth-child(3) { animation-delay: 0.2s; }
.fc-category-item:nth-child(4) { animation-delay: 0.3s; }
.fc-category-item:nth-child(5) { animation-delay: 0.4s; }
.fc-category-item:nth-child(6) { animation-delay: 0.5s; }
.fc-category-item:nth-child(7) { animation-delay: 0.6s; }
.fc-category-item:nth-child(8) { animation-delay: 0.7s; }

@keyframes fc-slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Imagen circular */
.fc-category-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fc-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fc-category-item:hover .fc-category-image {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.fc-category-item:hover .fc-category-image img {
  transform: scale(1.15);
}

/* Nombre de categoría */
.fc-category-name {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-negro);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fc-category-item:hover .fc-category-name {
  color: var(--fc-dorado);
}

/* ========================================
   PRODUCTOS CON IMAGEN HOVER (SEGUNDA IMAGEN)
======================================== */
/* Contenedor de imágenes del producto */
.woocommerce .products .product .woocommerce-LoopProduct-link {
  position: relative;
  overflow: hidden;
}

/* Segunda imagen en hover */
.woocommerce .products .product .attachment-woocommerce_thumbnail.wp-post-image {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.woocommerce .products .product .woocommerce-product-gallery__image:nth-child(2) img,
.woocommerce .products .product img.secondary-image,
.woocommerce .products .product img[class*="hover"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.woocommerce .products .product:hover img.secondary-image,
.woocommerce .products .product:hover img[class*="hover"] {
  opacity: 1;
}

/* ========================================
   ANIMACIONES MEJORADAS SCROLL REVEAL
======================================== */
/* Fade up */
.fc-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-fade-up.fc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in scale */
.fc-fade-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-fade-scale.fc-visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.fc-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-slide-left.fc-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.fc-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-slide-right.fc-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children animation */
.fc-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-stagger.fc-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.fc-stagger.fc-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.fc-stagger.fc-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.fc-stagger.fc-visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.fc-stagger.fc-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.fc-stagger.fc-visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.fc-stagger.fc-visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.fc-stagger.fc-visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ========================================
   HOVER EFFECTS MEJORADOS EN PRODUCTOS
======================================== */
.woocommerce .products .product {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce .products .product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Efecto de brillo en imagen */
.woocommerce .products .product .woocommerce-LoopProduct-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
  z-index: 3;
}

.woocommerce .products .product:hover .woocommerce-LoopProduct-link::after {
  left: 100%;
}

/* Quick view button appearance */
.woocommerce .products .product .add_to_cart_button {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.woocommerce .products .product:hover .add_to_cart_button {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .woocommerce .products .product .add_to_cart_button {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========================================
   RESPONSIVE CATEGORÍAS CIRCULARES
======================================== */
@media (max-width: 768px) {
  .fc-categories-circular {
    gap: 20px;
    padding: 30px 15px;
    justify-content: flex-start;
  }
  
  .fc-category-image {
    width: 80px;
    height: 80px;
  }
  
  .fc-category-name {
    font-size: 11px;
  }
}


/* ========================================
   CATEGORÍAS DE PRODUCTOS - OCULTAR CONTADOR
======================================== */
/* Ocultar el número entre paréntesis */
.product-category .woocommerce-loop-category__title .count,
.product-category .count,
.woocommerce-loop-category__title .count,
.product-categories .count,
.widget_product_categories .count {
  display: none !important;
}

/* Título de categoría más pequeño y elegante */
.product-category .woocommerce-loop-category__title,
.woocommerce-loop-category__title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--fc-negro) !important;
  margin-top: 12px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.product-category:hover .woocommerce-loop-category__title {
  color: var(--fc-dorado) !important;
}

/* Categorías en grid */
.woocommerce .products .product-category {
  text-align: center;
}

.woocommerce .products .product-category a {
  display: block;
}

.woocommerce .products .product-category img {
  border-radius: 0;
  transition: transform 0.4s ease;
}

.woocommerce .products .product-category:hover img {
  transform: scale(1.05);
}
