/*
Theme Name:   Ecomus Child
Theme URI:    https://wpecomus.com/
Author:       DrFuri
Author URI:   http://drfuri.com/
Description:  Biury — Child theme del tema Ecomus con identidad de marca personalizada.
Version:      2.4.26
Requires at least: 5.0
Requires PHP: 7.0
License:      GNU General Public License v2+
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  ecomus
Template:     ecomus
*/

/*
 * ============================================================================
 * BIURY CHILD THEME — CSS ESTRUCTURAL
 * ============================================================================
 * REGLA: Este archivo contiene ÚNICAMENTE CSS estructural:
 *   ✅ border-radius, overflow, aspect-ratio
 *   ✅ transform, transition, animation (hover effects)
 *   ✅ padding, margin, gap (espaciado)
 *   ✅ display, position, z-index (layout)
 *   ✅ box-shadow (decoración estructural)
 *   ✅ width, height, max-width (tamaños)
 *
 *   ❌ color, background-color  → usar Elementor Global Colors
 *   ❌ font-family, font-size, font-weight → usar Elementor Global Fonts
 *   ❌ letter-spacing, text-transform → usar Elementor
 * ============================================================================
 */

/* =============================================================================
   FUENTES AUTO-HOSPEDADAS — solo declaración @font-face (no tipografía)
   ============================================================================= */

@font-face {
  font-family: 'Gotham Light';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/GothamLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Gotham Book';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/GothamBook.ttf') format('truetype');
}

@font-face {
  font-family: 'Gotham Medium';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/GothamMedium.ttf') format('truetype');
}

/* =============================================================================
   🚫 PREVENCIÓN GLOBAL DE DESBORDAMIENTO HORIZONTAL EN MÓVIL
   ============================================================================= */

html {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative !important;
}

#page,
#wrapper,
.site,
#content,
main,
.elementor,
.elementor-section,
.elementor-container {
  max-width: 100vw !important;
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
  }

  body {
    touch-action: manipulation;
    /* Permite toques y taps limpios en dispositivos móviles reales */
  }

  .seccion-accesorios .swiper,
  .seccion-accesorios .swiper-container {
    margin: 0 !important;
    /* Evita que los márgenes negativos se salgan del ancho de pantalla en mobile */
    padding: 15px 5px !important;
  }

  .biury-box-section,
  .seccion-accesorios,
  .elementor-section,
  .elementor-top-section {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* =============================================================================
   📱 FIX INTERACTIVO: PERMISOS TÁCTILES Y ÁREA TÁCTIL (44x44px) EN POPUPS MÓVILES
   ============================================================================= */

body.modal-opened,
body.offcanvas-opened,
body.popover-opened,
body.modal-open,
body.offcanvas-open {
  touch-action: auto !important;
}

.modal,
.offscreen-panel,
.popover,
.tf-popup,
.tf-popup-wrap,
.ecomus-popup,
.modal-backdrop,
.offcanvas-backdrop,
.tf-overlay,
.modal__backdrop,
.panel__backdrop,
.sidebar__backdrop,
.popover__backdrop {
  touch-action: manipulation !important;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

/* Área táctil recomendada para móviles físicos (Mínimo 44x44px) */
.modal__button-close,
.panel__button-close,
.sidebar__button-close,
.popover__button-close,
.btn-close,
.tf-btn-close,
.modal-close,
.close-popup,
.tf-popup-close,
.tf-btn-close-popup,
.dialog-close-button,
.ecomus-popup__close,
[data-bs-dismiss],
[data-dismiss] {
  touch-action: manipulation !important;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  z-index: 99999999 !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

/* FIX: Respetar la visibilidad nativa del popup Ecomus en móvil.
   Ecomus muestra SOLO el botón "outside" en móvil y oculta el "inside".
   Nuestra regla global (display: inline-flex !important) lo anulaba,
   causando una doble X. */
@media (max-width: 767px) {
  .ecomus-popup__close.inside {
    display: none !important;
  }
}

/* =============================================================================
   VARIABLES CSS — Solo para transiciones y radios (no colores)
   Los colores van en Elementor Global Colors
   ============================================================================= */

:root {
  /* Erradicar el rojo nativo de Ecomus (#db1215) */
  --em-color__primary: #F440A8 !important;
  --em-link-color-hover: #F440A8 !important;
  --em-color-price-sale: #EF7088 !important;

  /* Colores principales de la marca Biury */
  --biury-primary: #F440A8;
  --biury-secondary: #EF7088;
  --biury-coral-vivid: #FF6B81;
  --biury-purple-electric: #8B5CF6;
  --biury-indigo-dark: #161026;
  --biury-text: #2E2926;
  --biury-accent: #FAF4EE;

  /* Gradientes premium */
  --biury-gradient: linear-gradient(135deg, var(--biury-primary) 0%, var(--biury-secondary) 100%);
  --biury-gradient-vivid: linear-gradient(90deg, var(--biury-coral-vivid) 0%, var(--biury-primary) 45%, var(--biury-purple-electric) 100%);

  /* Radios de borde */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-carousel: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================================
   HEADER — solo estructura y layout, SIN colores
   Los colores del header se configuran desde:
   Elementor → Theme Builder → Header → editar sección
   ============================================================================= */

/*
 * EXCEPCIÓN DE COLOR — Background del Header
 * El fondo rosa es el color de marca principal de Biury.
 * Se mantiene en CSS para garantizar consistencia de marca en todo el sitio.
 * Para cambiar este color: modificar el valor hex abajo.
 * Color actual: #F440A8 (Pantone 224 C — Rosa Biury)
 */
.site-header,
.site-header__desktop,
.ecomus-header-sticky {
  background-color: #F440A8 !important;
}

/* Sticky header — mismo rosa con sombra sutil */
.ecomus-header-sticky.is-sticky,
.site-header.is-sticky .site-header__desktop {
  background-color: #D8309A !important;
  /* versión ligeramente más oscura */
  box-shadow: 0 4px 20px rgba(244, 64, 168, 0.35);
}

/* Header mobile */
.site-header__mobile {
  background-color: #F440A8 !important;
}

/* Menú mobile desplegado */
.ecomus-mobile-menu {
  background-color: #D8309A !important;
}

/* Submenús del header */
.site-header .sub-menu,
.site-header .dropdown-menu,
.site-header .mega-menu {
  background-color: #D8309A !important;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
}



/* Altura consistente del header desktop */
.site-header__desktop .site-header__inner {
  min-height: 64px;
  align-items: center;
}

/* ==========================================================================
   LOGO DEL HEADER — Ajuste nativo para evitar logos gigantes
   ========================================================================== */
.header-logo img,
.biury-header-logo img,
.site-header .site-logo img,
.site-header .custom-logo {
  max-height: 60px !important;
  max-width: 100% !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Ajuste ultra-reducido específico para pantallas móviles */
@media (max-width: 768px) {

  .header-logo img,
  .biury-header-logo img,
  .site-header .site-logo img,
  .site-header .custom-logo {
    max-height: 40px !important;
    max-width: 160px !important;
    /* Límite estricto a los lados */
    width: auto !important;
    object-fit: contain !important;
  }
}

/* ---------------------------------------------------------------------------
   ICONOS DEL HEADER — layout y tamaño (color en Elementor)
   --------------------------------------------------------------------------- */

/* Contenedor de iconos — agrupados a la derecha */
.site-header__actions,
.header-icons,
.site-header .em-button-icon {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Área de clic de cada ícono */
.site-header .em-button-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
  cursor: pointer;
}

/* Tamaño SVG de los iconos */
.site-header .em-button-icon svg,
.site-header .header-icon svg {
  width: 22px;
  height: 22px;
}

/* Badge del carrito — posicionamiento */
.site-header .cart-count,
.site-header .mini-cart-count,
.site-header [class*="cart-item-count"] {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}


/* =============================================================================
   CARRUSEL IMAGE BOX — animación hover mínima (Ecomus maneja el layout)
   REGLA: NO tocar overflow, padding, display, ni aspect-ratio.
   Ecomus ya tiene zoom en hover — solo lo hacemos más rápido.
   ============================================================================= */

/* FIX ELEMENTOR LAZY LOADING */
.em-ratio>span.em-responsive-image,
.em-ratio>span.em-responsive-image img {
  display: block !important;
  position: absolute !important;
  margin: 0px !important;
  top: 0px !important;
  left: 0px !important;
  height: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  border-radius: inherit !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Padding a los límites del carrusel para que no quede pegado a los bordes (Solo Featured Categories) */
.elementor-element-42679c1c .swiper {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Evitar que los botones del hero banner queden ocultos detrás de la máscara de imagen */
.ecomus-image-box-carousel__button {
  z-index: 10 !important;
}

/* Zoom hover más rápido que los 2s nativos de Ecomus */
.ecomus-image-box-carousel__image img {
  transition: transform var(--transition-carousel) !important;
}

.ecomus-image-box-carousel__item:hover .ecomus-image-box-carousel__image img {
  transform: scale(1.06);
}

/* Sale badge — solo el badge de "% off" / "Trending" (selector específico de Ecomus) */
.ecomus-image-box-carousel__sale-text,
.ecomus-image-box-carousel__label {
  border-radius: var(--radius-full) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
  line-height: 1.5 !important;
}

/* =============================================================================
   CARDS DE PRODUCTO — técnica de máscara (igual que el carrusel)
   El card NO tiene overflow:hidden (para que el hover no se corte)
   El thumbnail INTERNO sí tiene overflow:hidden + border-radius (la máscara)
   ============================================================================= */

/* Card outer — overflow visible para que el lift no se corte */
.product.type-product,
.woocommerce ul.products li.product {
  border-radius: var(--radius-lg);
  overflow: visible !important;
  /* NO hidden — permite que el card levante limpiamente */
  transition: transform var(--transition-base);
}

.product.type-product:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
}

/* THUMBNAIL WRAPPER — es la máscara: borde redondeado + clipping */
/* Ecomus usa .product__thumbnail o .woocommerce-loop-product__link como wrapper */
.product .product__thumbnail,
.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
  overflow: hidden !important;
  /* LA MÁSCARA que contiene la imagen */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  /* solo esquinas de arriba */
}

/* Imagen del producto — zoom dentro de la máscara, sin moverse */
.product.type-product .attachment-woocommerce_thumbnail,
.woocommerce ul.products li.product img.wp-post-image {
  display: block;
  width: 100%;
  border-radius: 0 !important;
  /* el radius lo da el wrapper padre */
  transform: scale(1);
  transform-origin: center center;
  transition: transform var(--transition-carousel);
  will-change: transform;
}

.product.type-product:hover img.wp-post-image,
.woocommerce ul.products li.product:hover img.wp-post-image {
  transform: scale(1.06);
}

/* Badge de descuento del producto — layout + color desde Elementor Global Colors */
.woocommerce span.onsale,
.product .onsale {
  border-radius: var(--radius-full) !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  min-width: unset !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
  /* Color desde Elementor Global Color — Primary */
  background-color: var(--e-global-color-primary, #F440A8) !important;
  color: #ffffff !important;
}

/* Botones de producto — border-radius pill */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  border-radius: var(--radius-full) !important;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast) !important;
}

.woocommerce ul.products li.product .button:hover {
  transform: scale(1.03);
}

/* =============================================================================
   IMAGEN BOX (Banner de 3 columnas) — solo estructura y animaciones
   ============================================================================= */

.ecomus-image-box__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ecomus-image-box__image img {
  transition: transform var(--transition-carousel);
}

.ecomus-image-box:hover .ecomus-image-box__image img {
  transform: scale(1.06);
}

/* =============================================================================
   LOGO CAROUSEL (marcas) — solo animación grayscale
   ============================================================================= */

.ecomus-brand-logo img,
.ecomus-logo-list img {
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter var(--transition-fast), opacity var(--transition-fast);
}

.ecomus-brand-logo:hover img,
.ecomus-logo-list li:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =============================================================================
   BOTONES GLOBALES — border-radius, transiciones y hover
   ============================================================================= */

.wp-element-button,
.elementor-button,
.woocommerce a.button,
.woocommerce button.button {
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-fast) !important;
}

/* Hover de botones - Color Secundario Biury (#EF7088) */
.wp-element-button:hover,
.elementor-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.btn:hover,
button:hover {
  background-color: #EF7088 !important;
  border-color: #EF7088 !important;
  color: #ffffff !important;
}

/* =============================================================================
   NEWSLETTER — solo border-radius del input
   ============================================================================= */

.ecomus-subscribe-box input[type="email"],
.ecomus-subscribe-box input[type="text"] {
  border-radius: var(--radius-full) !important;
  padding: 12px 20px !important;
  transition: border-color var(--transition-fast);
}

.ecomus-subscribe-box button,
.ecomus-subscribe-box [type="submit"] {
  border-radius: var(--radius-full) !important;
  padding: 12px 24px !important;
  transition: background-color var(--transition-fast) !important;
}

/* =============================================================================
   FOOTER — solo estructura
   Los colores del footer se configuran en Elementor Theme Builder → Footer
   ============================================================================= */

/* Logo del footer — tamaño */
.site-footer .site-logo img,
.site-footer .custom-logo {
  max-height: 48px;
  width: auto;
}

/* Íconos de redes sociales — tamaño y layout */
.site-footer .ecomus-social-icons__item,
.site-footer .elementor-social-icon {
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.site-footer .ecomus-social-icons__item svg,
.site-footer .elementor-social-icon svg {
  width: 18px;
  height: 18px;
}

.site-footer .ecomus-social-icons__item:hover,
.site-footer .elementor-social-icon:hover {
  transform: translateY(-2px);
}

/* Links del footer — solo layout */
.site-footer ul li a {
  transition: color var(--transition-fast);
  display: inline-block;
  padding: 3px 0;
}

/* =============================================================================
   FOOTER — CONTENEDOR CON BORDE 3PX Y FONDO BLANCO (.footer-content-box / .biury-footer-box)
   ============================================================================= */

.footer-content-box,
.biury-footer-box,
.footer-box-card,
.footer-card-box,
.footer-box-3px {
  --footer-box-bg: #FFFFFF;
  --footer-box-border: #2E2926;
  --footer-box-border-width: 3px;
  --footer-box-radius: 0px;
  --footer-text-color: #2E2926;
  --footer-heading-color: #2E2926;
  --footer-link-color: #2E2926;
  --footer-link-hover: #F440A8;

  background-color: var(--footer-box-bg, #FFFFFF) !important;
  background: var(--footer-box-bg, #FFFFFF) !important;
  border: var(--footer-box-border-width, 3px) solid var(--footer-box-border, #2E2926) !important;
  border-radius: var(--footer-box-radius, 0px) !important;
  padding: 32px 36px !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 2 !important;
  box-shadow: 0 8px 24px rgba(46, 41, 38, 0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .footer-content-box,
  .biury-footer-box,
  .footer-box-card,
  .footer-card-box,
  .footer-box-3px {
    padding: 24px 20px !important;
    border-radius: 0 !important;
  }
}

/* Manejo en caso de que se aplique directamente al contenedor de Elementor */
.elementor-element.footer-content-box > .elementor-widget-container,
.elementor-element.biury-footer-box > .elementor-widget-container,
.elementor-element.footer-box-card > .elementor-widget-container,
.elementor-element.footer-box-3px > .elementor-widget-container {
  background-color: transparent !important;
}

/* Textos dentro del contenedor (heredan o usan variables) */
.footer-content-box,
.footer-content-box p,
.footer-content-box span,
.footer-content-box div,
.footer-content-box li,
.biury-footer-box,
.biury-footer-box p,
.biury-footer-box span,
.biury-footer-box div,
.biury-footer-box li {
  color: var(--footer-text-color, #2E2926);
}

/* Encabezados por defecto dentro de la caja (si no tienen graffiti) */
.footer-content-box h1,
.footer-content-box h2,
.footer-content-box h3,
.footer-content-box h4,
.footer-content-box h5,
.footer-content-box h6,
.biury-footer-box h1,
.biury-footer-box h2,
.biury-footer-box h3,
.biury-footer-box h4,
.biury-footer-box h5,
.biury-footer-box h6 {
  color: var(--graffiti-inner, var(--footer-heading-color, #2E2926));
  font-weight: 700;
}

/* Enlaces y listas dentro del contenedor */
.footer-content-box a,
.footer-content-box ul li a,
.footer-content-box .elementor-icon-list-item a,
.footer-content-box .elementor-icon-list-text,
.biury-footer-box a,
.biury-footer-box ul li a {
  color: var(--footer-link-color, #2E2926);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-content-box a:hover,
.footer-content-box ul li a:hover,
.footer-content-box .elementor-icon-list-item a:hover,
.footer-content-box .elementor-icon-list-item:hover .elementor-icon-list-text,
.biury-footer-box a:hover,
.biury-footer-box ul li a:hover {
  color: var(--footer-link-hover, #F440A8);
}

/* =============================================================================
   1. TITULOS ESTILO GRAFFITI 2 TONOS PARA H6 (.footer-title-graffiti / .footer-h6-graffiti)
   Variables que puedes definir en Custom CSS:
     --graffiti-inner: #F440A8;  (Color interno de relleno)
     --graffiti-outer: #2E2926;  (Color de borde / trazo exterior)
     --graffiti-stroke: 2px;     (Grosor de trazo exterior)
     --graffiti-shadow: #2E2926; (Color de sombra relieve 3D)
   ============================================================================= */

/* =============================================================================
   VARIABLES GLOBALES POR DEFECTO PARA EFECTOS GRAFFITI
   ============================================================================= */
:root {
  /* Títulos H6 Graffiti */
  --graffiti-inner: #F440A8;
  --graffiti-outer: #2E2926;
  --graffiti-stroke: 2px;
  --graffiti-shadow: #2E2926;
  --graffiti-shadow-offset: 3px;

  /* Enlaces <a> Graffiti */
  --link-graffiti-inner: #FAF4EE;
  --link-graffiti-outer: #2E2926;
  --link-graffiti-stroke: 1.2px;
  --link-graffiti-shadow: #2E2926;
  --link-graffiti-shadow-offset: 2px;
  --link-graffiti-hover-inner: #F440A8;
  --link-graffiti-hover-outer: #2E2926;

  /* Textos y Spans Graffiti */
  --text-graffiti-inner: #FAF4EE;
  --text-graffiti-outer: #2E2926;
  --text-graffiti-stroke: 1.2px;
  --text-graffiti-shadow: #2E2926;
  --text-graffiti-shadow-offset: 1.5px;
}

/* =============================================================================
   1. TITULOS ESTILO GRAFFITI 2 TONOS PARA H6 (.footer-title-graffiti / .footer-h6-graffiti)
   ============================================================================= */
h1.footer-title-graffiti, h2.footer-title-graffiti, h3.footer-title-graffiti,
h4.footer-title-graffiti, h5.footer-title-graffiti, h6.footer-title-graffiti,
h6.footer-h6-graffiti, h6.title-graffiti,
.footer-title-graffiti h1, .footer-title-graffiti h2, .footer-title-graffiti h3,
.footer-title-graffiti h4, .footer-title-graffiti h5, .footer-title-graffiti h6,
.footer-h6-graffiti h6, .title-graffiti h6,
.footer-content-box.footer-title-graffiti h6,
.footer-content-box .footer-title-graffiti h6,
.footer-content-box h6.footer-title-graffiti,
.footer-content-box h6.footer-h6-graffiti,
#site-footer .footer-title-graffiti,
#site-footer .footer-title-graffiti h6,
#site-footer .footer-h6-graffiti,
#site-footer h6.footer-title-graffiti {
  color: var(--graffiti-inner, #F440A8) !important;
  -webkit-text-fill-color: var(--graffiti-inner, #F440A8) !important;
  -webkit-text-stroke: var(--graffiti-stroke, 2px) var(--graffiti-outer, #2E2926) !important;
  paint-order: stroke fill !important;
  text-shadow: var(--graffiti-shadow-offset, 3px) var(--graffiti-shadow-offset, 3px) 0 var(--graffiti-shadow, #2E2926) !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
  display: inline-block !important;
  transition: transform 0.25s ease, filter 0.25s ease !important;
}

/* =============================================================================
   2. ENLACES Y ELEMENTOS DE LISTA ESTILO GRAFFITI (.footer-links-graffiti / .footer-links-custom)
   ============================================================================= */
.footer-links-graffiti a,
.footer-links-graffiti ul li a,
.footer-links-graffiti .elementor-icon-list-item a,
.footer-links-graffiti .elementor-icon-list-text,
.footer-content-box.footer-links-graffiti a,
.footer-content-box.footer-links-graffiti ul li a,
.footer-content-box .footer-links-graffiti a,
.footer-content-box .footer-links-graffiti ul li a,
a.footer-link-graffiti,
#site-footer .footer-links-graffiti a,
#site-footer .footer-links-graffiti ul li a,
#site-footer .footer-links-graffiti .elementor-icon-list-item a,
#site-footer .footer-links-graffiti .elementor-icon-list-text {
  color: var(--link-graffiti-inner, #FAF4EE) !important;
  -webkit-text-fill-color: var(--link-graffiti-inner, #FAF4EE) !important;
  -webkit-text-stroke: var(--link-graffiti-stroke, 1.2px) var(--link-graffiti-outer, #2E2926) !important;
  paint-order: stroke fill !important;
  text-shadow: var(--link-graffiti-shadow-offset, 2px) var(--link-graffiti-shadow-offset, 2px) 0 var(--link-graffiti-shadow, #2E2926) !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  display: inline-block !important;
  transition: transform 0.25s ease, -webkit-text-fill-color 0.25s ease, -webkit-text-stroke 0.25s ease, text-shadow 0.25s ease, color 0.25s ease !important;
}

.footer-links-graffiti a:hover,
.footer-links-graffiti ul li a:hover,
.footer-links-graffiti .elementor-icon-list-item a:hover,
.footer-links-graffiti .elementor-icon-list-item:hover .elementor-icon-list-text,
.footer-content-box.footer-links-graffiti a:hover,
.footer-content-box.footer-links-graffiti ul li a:hover,
.footer-content-box .footer-links-graffiti a:hover,
.footer-content-box .footer-links-graffiti ul li a:hover,
a.footer-link-graffiti:hover,
#site-footer .footer-links-graffiti a:hover,
#site-footer .footer-links-graffiti ul li a:hover {
  color: var(--link-graffiti-hover-inner, #F440A8) !important;
  -webkit-text-fill-color: var(--link-graffiti-hover-inner, #F440A8) !important;
  -webkit-text-stroke: var(--link-graffiti-stroke, 1.2px) var(--link-graffiti-hover-outer, var(--link-graffiti-outer, #2E2926)) !important;
  transform: translateX(4px);
}

/* Enlaces estilo estándar limpio (sin trazo graffiti) */
.footer-links-custom a,
.footer-links-custom ul li a,
.footer-links-custom .elementor-icon-list-item a,
.footer-links-custom .elementor-icon-list-text,
#site-footer .footer-links-custom a,
#site-footer .footer-links-custom ul li a {
  color: var(--footer-link-color, #2E2926) !important;
  font-weight: var(--footer-link-weight, 500) !important;
  transition: color 0.25s ease, transform 0.25s ease !important;
}

.footer-links-custom a:hover,
.footer-links-custom ul li a:hover,
.footer-links-custom .elementor-icon-list-item a:hover,
.footer-links-custom .elementor-icon-list-item:hover .elementor-icon-list-text,
#site-footer .footer-links-custom a:hover,
#site-footer .footer-links-custom ul li a:hover {
  color: var(--footer-link-hover, #F440A8) !important;
  transform: translateX(3px);
}

/* =============================================================================
   3. TEXTOS, SPAN Y COPYRIGHT ESTILO GRAFFITI (.footer-text-graffiti / .footer-span-graffiti / .text-graffiti)
   Aplica a etiquetas <span>, párrafos o textos con o sin style inline.
   Variables configurables en Custom CSS:
     --text-graffiti-inner: #FAF4EE;       (Color de relleno interno del texto)
     --text-graffiti-outer: #2E2926;       (Color del borde / trazo exterior)
     --text-graffiti-stroke: 1.2px;        (Grosor del trazo)
     --text-graffiti-shadow: #2E2926;      (Color de sombra 3D)
     --text-graffiti-shadow-offset: 1.5px; (Distancia de sombra 3D)
   ============================================================================= */
.footer-text-graffiti,
.footer-span-graffiti,
.text-graffiti,
.span-graffiti,
span.footer-text-graffiti,
span.footer-span-graffiti,
span.text-graffiti,
span.span-graffiti,
p.footer-text-graffiti,
.footer-text-graffiti span,
.footer-span-graffiti span,
.text-graffiti span,
.span-graffiti span,
#site-footer .footer-text-graffiti,
#site-footer .footer-text-graffiti span,
#site-footer span.footer-text-graffiti,
#site-footer .footer-span-graffiti,
#site-footer span.footer-span-graffiti,
#site-footer .footer-content-box.footer-text-graffiti span,
#site-footer .footer-content-box .footer-text-graffiti span,
#site-footer .footer-content-box span.footer-text-graffiti {
  color: var(--text-graffiti-inner, #FAF4EE) !important;
  -webkit-text-fill-color: var(--text-graffiti-inner, #FAF4EE) !important;
  -webkit-text-stroke: var(--text-graffiti-stroke, 1.2px) var(--text-graffiti-outer, #2E2926) !important;
  paint-order: stroke fill !important;
  text-shadow: var(--text-graffiti-shadow-offset, 1.5px) var(--text-graffiti-shadow-offset, 1.5px) 0 var(--text-graffiti-shadow, #2E2926) !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  display: inline-block !important;
  transition: transform 0.25s ease, -webkit-text-fill-color 0.25s ease, -webkit-text-stroke 0.25s ease, text-shadow 0.25s ease !important;
}

/* =============================================================================
   4. BLOQUE EN LÍNEA: TÍTULO + IMAGEN / BADGES (.footer-inline-badge / .footer-secure-badge)
   En Escritorio: Título al lado de los badges (fila horizontal centrada verticalmente)
   En Móvil (<= 768px): Título arriba y badges centrados abajo (columna)
   ============================================================================= */
.footer-inline-badge,
.footer-secure-badge,
.footer-badge-row,
#site-footer .footer-inline-badge,
#site-footer .footer-secure-badge {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.footer-inline-badge h1,
.footer-inline-badge h2,
.footer-inline-badge h3,
.footer-inline-badge h4,
.footer-inline-badge h5,
.footer-inline-badge h6,
.footer-secure-badge h1,
.footer-secure-badge h2,
.footer-secure-badge h3,
.footer-secure-badge h4,
.footer-secure-badge h5,
.footer-secure-badge h6,
.footer-badge-row h6 {
  margin: 0 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.footer-inline-badge img,
.footer-secure-badge img,
.footer-badge-row img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Grilla de Sellos de Seguridad en Cajas */
.biury-secure-grid {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.biury-secure-item {
  height: 38px !important;
  min-width: 90px !important;
  max-width: 115px !important;
  padding: 3px 6px !important;
  border: 2px solid var(--biury-pay-border, #2E2926) !important;
  border-radius: 0 !important;
  background-color: var(--biury-pay-bg, #FFFFFF) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease !important;
}

.biury-secure-item:hover {
  transform: translateY(-1.5px) !important;
  box-shadow: 2px 2px 0 var(--biury-pay-border, #2E2926) !important;
}

.biury-secure-item img {
  max-height: 22px !important;
  max-width: 88% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .footer-inline-badge,
  .footer-secure-badge,
  .footer-badge-row,
  #site-footer .footer-inline-badge,
  #site-footer .footer-secure-badge {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .footer-inline-badge h1,
  .footer-inline-badge h2,
  .footer-inline-badge h3,
  .footer-inline-badge h4,
  .footer-inline-badge h5,
  .footer-inline-badge h6,
  .footer-secure-badge h6,
  .footer-badge-row h6 {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .biury-secure-grid {
    justify-content: center !important;
    gap: 6px !important;
  }

  .biury-secure-item {
    height: 34px !important;
    min-width: 80px !important;
    max-width: 105px !important;
    padding: 2px 5px !important;
    border-width: 1.8px !important;
  }

  .biury-secure-item img {
    max-height: 18px !important;
    max-width: 90% !important;
  }
}

/* =============================================================================
   5. PALETAS RÁPIDAS (Clases auxiliares)
   ============================================================================= */

/* Para H6 Graffiti */
.graffiti-pink-dark {
  --graffiti-inner: #F440A8 !important;
  --graffiti-outer: #2E2926 !important;
  --graffiti-shadow: #2E2926 !important;
}

.graffiti-coral-dark {
  --graffiti-inner: #EF7088 !important;
  --graffiti-outer: #2E2926 !important;
  --graffiti-shadow: #2E2926 !important;
}

.graffiti-cream-dark {
  --graffiti-inner: #FAF4EE !important;
  --graffiti-outer: #2E2926 !important;
  --graffiti-shadow: #2E2926 !important;
}

.graffiti-white-pink {
  --graffiti-inner: #FFFFFF !important;
  --graffiti-outer: #F440A8 !important;
  --graffiti-shadow: rgba(244, 64, 168, 0.4) !important;
}

.graffiti-white-dark {
  --graffiti-inner: #FFFFFF !important;
  --graffiti-outer: #2E2926 !important;
  --graffiti-shadow: #2E2926 !important;
}

.graffiti-dark-white {
  --graffiti-inner: #2E2926 !important;
  --graffiti-outer: #FFFFFF !important;
  --graffiti-shadow: rgba(0, 0, 0, 0.3) !important;
}

.graffiti-purple-dark,
.graffiti-morado-dark {
  --graffiti-inner: #9362CB !important;
  --graffiti-outer: #2E2926 !important;
  --graffiti-shadow: #2E2926 !important;
}

/* Para Enlaces <a> con Estilo Graffiti */
.links-graffiti-cream-dark {
  --link-graffiti-inner: #FAF4EE !important;
  --link-graffiti-outer: #2E2926 !important;
  --link-graffiti-shadow: #2E2926 !important;
  --link-graffiti-hover-inner: #F440A8 !important;
  --link-graffiti-hover-outer: #2E2926 !important;
}

.links-graffiti-white-dark {
  --link-graffiti-inner: #FFFFFF !important;
  --link-graffiti-outer: #2E2926 !important;
  --link-graffiti-shadow: #2E2926 !important;
  --link-graffiti-hover-inner: #F440A8 !important;
  --link-graffiti-hover-outer: #2E2926 !important;
}

.links-graffiti-pink-dark {
  --link-graffiti-inner: #F440A8 !important;
  --link-graffiti-outer: #2E2926 !important;
  --link-graffiti-shadow: #2E2926 !important;
  --link-graffiti-hover-inner: #EF7088 !important;
  --link-graffiti-hover-outer: #2E2926 !important;
}

.links-graffiti-coral-dark {
  --link-graffiti-inner: #EF7088 !important;
  --link-graffiti-outer: #2E2926 !important;
  --link-graffiti-shadow: #2E2926 !important;
  --link-graffiti-hover-inner: #F440A8 !important;
  --link-graffiti-hover-outer: #2E2926 !important;
}

.links-graffiti-dark-white {
  --link-graffiti-inner: #2E2926 !important;
  --link-graffiti-outer: #FFFFFF !important;
  --link-graffiti-shadow: rgba(0, 0, 0, 0.3) !important;
  --link-graffiti-hover-inner: #F440A8 !important;
  --link-graffiti-hover-outer: #FFFFFF !important;
}

.links-graffiti-purple-dark,
.links-graffiti-morado-dark {
  --link-graffiti-inner: #9362CB !important;
  --link-graffiti-outer: #2E2926 !important;
  --link-graffiti-shadow: #2E2926 !important;
  --link-graffiti-hover-inner: #F440A8 !important;
  --link-graffiti-hover-outer: #2E2926 !important;
}

/* Para Enlaces <a> Estándar */
.links-hover-pink {
  --footer-link-hover: #F440A8 !important;
}

.links-hover-coral {
  --footer-link-hover: #EF7088 !important;
}

.links-dark {
  --footer-link-color: #2E2926 !important;
  --footer-link-hover: #F440A8 !important;
}

.links-cream {
  --footer-link-color: #FAF4EE !important;
  --footer-link-hover: #F440A8 !important;
}

/* Para Textos y Spans con Estilo Graffiti */
.text-graffiti-dark-white,
.text-graffiti-black-white {
  --text-graffiti-inner: #2E2926 !important;
  --text-graffiti-outer: #FFFFFF !important;
  --text-graffiti-shadow: rgba(0, 0, 0, 0.3) !important;
}

.text-graffiti-white-dark {
  --text-graffiti-inner: #FFFFFF !important;
  --text-graffiti-outer: #2E2926 !important;
  --text-graffiti-shadow: #2E2926 !important;
}

.text-graffiti-pink-dark {
  --text-graffiti-inner: #F440A8 !important;
  --text-graffiti-outer: #2E2926 !important;
  --text-graffiti-shadow: #2E2926 !important;
}

.text-graffiti-cream-dark {
  --text-graffiti-inner: #FAF4EE !important;
  --text-graffiti-outer: #2E2926 !important;
  --text-graffiti-shadow: #2E2926 !important;
}

.text-graffiti-coral-dark {
  --text-graffiti-inner: #EF7088 !important;
  --text-graffiti-outer: #2E2926 !important;
  --text-graffiti-shadow: #2E2926 !important;
}

.text-graffiti-white-pink {
  --text-graffiti-inner: #FFFFFF !important;
  --text-graffiti-outer: #F440A8 !important;
  --text-graffiti-shadow: rgba(244, 64, 168, 0.4) !important;
}

.text-graffiti-pink-white {
  --text-graffiti-inner: #F440A8 !important;
  --text-graffiti-outer: #FFFFFF !important;
  --text-graffiti-shadow: rgba(0, 0, 0, 0.3) !important;
}

.text-graffiti-purple-dark,
.text-graffiti-morado-dark {
  --text-graffiti-inner: #9362CB !important;
  --text-graffiti-outer: #2E2926 !important;
  --text-graffiti-shadow: #2E2926 !important;
}

/* ==========================================================================
   🪵 TEXTURA DE PANEL DE LISTONES VERTICALES DINÁMICA / ORGÁNICA (.rose-slats-dynamic)
   Base estructural y estilos universales para evitar fondos negros por defecto
   ========================================================================== */
.rose-slats-dynamic,
.elementor-element.rose-slats-dynamic,
.biury-slats-dynamic,
.elementor-element.biury-slats-dynamic {
  position: relative !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background-color: #FAF4EE !important;
  overflow: hidden !important;
}

/* Lienzo de listones generados dinámicamente */
.rose-slats-dynamic > .biury-slats-canvas,
.elementor-element.rose-slats-dynamic > .biury-slats-canvas,
.biury-slats-dynamic > .biury-slats-canvas,
.biury-slats-canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  overflow: hidden !important;
  pointer-events: none !important;
  z-index: 1 !important;
  background-color: #FAF4EE !important;
}

/* Columnas de listones generados */
.biury-slat-column {
  display: flex !important;
  flex-direction: column !important;
  flex-shrink: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
}

/* Segmentos individuales de listón */
.biury-slat-segment {
  width: 100% !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.45),
              inset -1px 0 0 rgba(0, 0, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.35),
              inset 0 -1px 0 rgba(0, 0, 0, 0.12) !important;
  transition: opacity 0.3s ease !important;
}

/* Efecto de luz LED cenital suave superior */
.rose-slats-dynamic::before,
.elementor-element.rose-slats-dynamic::before,
.biury-slats-dynamic::before,
.elementor-element.biury-slats-dynamic::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 180px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Asegurar que el contenido del contenedor quede siempre por encima del lienzo */
.rose-slats-dynamic > *:not(.biury-slats-canvas),
.elementor-element.rose-slats-dynamic > *:not(.biury-slats-canvas),
.biury-slats-dynamic > *:not(.biury-slats-canvas),
.elementor-element.biury-slats-dynamic > *:not(.biury-slats-canvas),
.rose-slats-dynamic .e-con-inner,
.rose-slats-dynamic .elementor-container,
.rose-slats-dynamic .elementor-widget-wrap {
  position: relative !important;
  z-index: 3 !important;
}

/* Clases Modificadoras para Listones Dinámicos 3D (.rose-slats-dynamic) */
.slats-cream-60, [data-cream-pct="60"] { --slats-cream-pct: 60 !important; }
.slats-cream-70, [data-cream-pct="70"] { --slats-cream-pct: 70 !important; }
.slats-cream-75, [data-cream-pct="75"] { --slats-cream-pct: 75 !important; }
.slats-cream-80, [data-cream-pct="80"] { --slats-cream-pct: 80 !important; }
.slats-cream-85, [data-cream-pct="85"] { --slats-cream-pct: 85 !important; }
.slats-cream-90, [data-cream-pct="90"] { --slats-cream-pct: 90 !important; }
.slats-cream-95, [data-cream-pct="95"] { --slats-cream-pct: 95 !important; }

.slats-variation,
.slats-palette-variation,
.slats-palette-nude,
.slats-palette-warm {
  --slats-palette: variation !important;
  --slats-light-pct: 85 !important;
}

.slats-variation-60, [data-variation-pct="60"] { --slats-palette: variation !important; --slats-light-pct: 60 !important; }
.slats-variation-70, [data-variation-pct="70"] { --slats-palette: variation !important; --slats-light-pct: 70 !important; }
.slats-variation-75, [data-variation-pct="75"] { --slats-palette: variation !important; --slats-light-pct: 75 !important; }
.slats-variation-80, [data-variation-pct="80"] { --slats-palette: variation !important; --slats-light-pct: 80 !important; }
.slats-variation-85, [data-variation-pct="85"] { --slats-palette: variation !important; --slats-light-pct: 85 !important; }
.slats-variation-90, [data-variation-pct="90"] { --slats-palette: variation !important; --slats-light-pct: 90 !important; }
.slats-variation-95, [data-variation-pct="95"] { --slats-palette: variation !important; --slats-light-pct: 95 !important; }

/* =============================================================================
   💳 BIURY — PASARELAS Y MEDIOS DE PAGO (Compacto, Borde Negro, Sin Border Radius)
   ============================================================================= */
.biury-payment-methods,
.biury-pay-container {
  display: block !important;
  width: 100% !important;
  max-width: 460px !important;
  box-sizing: border-box !important;
  margin: 8px 0 !important;
}

.biury-pay-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 6px 8px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.biury-pay-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 3px 6px !important;
  background-color: var(--biury-pay-bg, #FFFFFF) !important;
  border: 2px solid var(--biury-pay-border, #2E2926) !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease !important;
  cursor: default !important;
  user-select: none !important;
}

.biury-pay-item:hover {
  transform: translateY(-1.5px) !important;
  box-shadow: 2px 2px 0 var(--biury-pay-border, #2E2926) !important;
}

.biury-pay-item svg,
.biury-pay-item img {
  max-height: 22px !important;
  max-width: 88% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Modificadores de Alineación */
.biury-pay-container.align-center,
.biury-payment-methods.align-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.biury-pay-container.align-right,
.biury-payment-methods.align-right {
  margin-left: auto !important;
  margin-right: 0 !important;
}

/* Responsive Móvil y Tablet */
@media (max-width: 768px) {
  .biury-payment-methods,
  .biury-pay-container {
    max-width: 100% !important;
    margin: 8px auto !important;
  }

  .biury-pay-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 5px 6px !important;
  }

  .biury-pay-item {
    height: 34px !important;
    padding: 2px 4px !important;
    border-width: 1.8px !important;
  }

  .biury-pay-item svg,
  .biury-pay-item img {
    max-height: 18px !important;
    max-width: 90% !important;
  }
}

@media (max-width: 360px) {
  .biury-pay-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 5px !important;
  }

  .biury-pay-item {
    height: 33px !important;
  }

  .biury-pay-item svg,
  .biury-pay-item img {
    max-height: 17px !important;
  }
}

/* Fix carousel badges vertical stretch bug */
.ecomus-image-box-carousel__image>span {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  z-index: 2;
  border-radius: var(--radius-full) !important;
  padding: 3px 8px !important;
  width: auto !important;
  height: auto !important;
  min-width: unset !important;
  line-height: 1.4 !important;
  display: inline-block !important;
}

/* =============================================================================
   HEADER TEXT COLOR — Override manual (A petición del usuario por falta de acceso a Elementor)
   ============================================================================= */
header a,
.site-header a,
.site-navigation a,
.elementor-nav-menu a,
.ecomus-header-menu a {
  color: #ffffff !important;
}

header a:hover,
.site-header a:hover,
.site-navigation a:hover,
.elementor-nav-menu a:hover,
.ecomus-header-menu a:hover {
  color: #ffffff !important;
  opacity: 0.8 !important;
}

/* =============================================================================
   HEADER ICONS — Contenedor y animación flicker (A petición del usuario)
   ============================================================================= */

/* Contenedor circular semi-transparente para los iconos */
.header-right-items .em-button-icon {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 10px !important;
  position: relative !important;
  transition: background-color 0.3s ease !important;
  text-decoration: none !important;
}

.header-right-items .em-button-icon:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

/* Ajuste del badge (contador de carrito/wishlist) para que cuadre con el nuevo contenedor */
.header-right-items .em-button-icon .header-counter {
  top: -4px !important;
  right: -4px !important;
}



/* 1. Inyectar la variable de proporción nativa (9:16) y forzar el ancho al 100% para que el padding-bottom funcione */
.ecomus-shoppable-video__video-wrapper {
  --em-ratio-percent: 177.77% !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* 2. Fix global para asegurar que el carrusel no colapse su ancho y Elementor no lo oculte */
.elementor-widget-ecomus-shoppable-video,
.ecomus-shoppable-video {
  width: 100% !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: none !important;
}

/* 3. Añadir soporte para iframes y videos */
.ecomus-shoppable-video__video-wrapper iframe,
.ecomus-shoppable-video__video-wrapper video {
  display: block !important;
  max-width: 100% !important;
  position: absolute !important;
  margin: 0 !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}

/* =============================================================================
   CLASE: BORDES REDONDEADOS 15PX PARA SHOPPABLE VIDEO (.shoppable-video-rounded-15 / .shoppable-video-rounded)
   ============================================================================= */

.shoppable-video-rounded-15,
.biury-shoppable-rounded,
.shoppable-video-rounded {
  --shoppable-radius: 15px;
}

/* 1. Contenedor de Video (Superior) */
.shoppable-video-rounded-15 .ecomus-shoppable-video__video-wrapper,
.biury-shoppable-rounded .ecomus-shoppable-video__video-wrapper,
.shoppable-video-rounded .ecomus-shoppable-video__video-wrapper,
.ecomus-shoppable-video.shoppable-video-rounded-15 .ecomus-shoppable-video__video-wrapper,
.ecomus-shoppable-video.biury-shoppable-rounded .ecomus-shoppable-video__video-wrapper {
  border-radius: var(--shoppable-radius, 15px) !important;
  overflow: hidden !important;
  isolation: isolate;
}

.shoppable-video-rounded-15 .ecomus-shoppable-video__video-wrapper video,
.shoppable-video-rounded-15 .ecomus-shoppable-video__video-wrapper iframe,
.shoppable-video-rounded-15 .ecomus-shoppable-video__video-wrapper img,
.biury-shoppable-rounded .ecomus-shoppable-video__video-wrapper video,
.biury-shoppable-rounded .ecomus-shoppable-video__video-wrapper iframe,
.biury-shoppable-rounded .ecomus-shoppable-video__video-wrapper img,
.shoppable-video-rounded .ecomus-shoppable-video__video-wrapper video,
.shoppable-video-rounded .ecomus-shoppable-video__video-wrapper iframe,
.shoppable-video-rounded .ecomus-shoppable-video__video-wrapper img {
  border-radius: var(--shoppable-radius, 15px) !important;
  overflow: hidden !important;
}

/* 2. Contenedor de Producto (Inferior) */
.shoppable-video-rounded-15 .ecomus-shoppable-video__product,
.biury-shoppable-rounded .ecomus-shoppable-video__product,
.shoppable-video-rounded .ecomus-shoppable-video__product,
.ecomus-shoppable-video.shoppable-video-rounded-15 .ecomus-shoppable-video__product,
.ecomus-shoppable-video.biury-shoppable-rounded .ecomus-shoppable-video__product {
  border-radius: var(--shoppable-radius, 15px) !important;
  overflow: hidden !important;
}

/* 3. Imagen del producto dentro de la tarjeta inferior */
.shoppable-video-rounded-15 .ecomus-shoppable-video__product-image img,
.biury-shoppable-rounded .ecomus-shoppable-video__product-image img,
.shoppable-video-rounded .ecomus-shoppable-video__product-image img {
  border-radius: calc(var(--shoppable-radius, 15px) - 3px) !important;
}

/* 4. Botón de compra / acción dentro de la tarjeta inferior */
.shoppable-video-rounded-15 .ecomus-shoppable-video__product-button,
.biury-shoppable-rounded .ecomus-shoppable-video__product-button,
.shoppable-video-rounded .ecomus-shoppable-video__product-button {
  border-radius: calc(var(--shoppable-radius, 15px) - 3px) !important;
}



/* ==========================================================================
   CARRUSEL CATEGORIA DESTACADA (.carrusel-categoria-destacada)
   ========================================================================== */

/* 1. ACLARAR EL EFECTO GLOSSY / GLASSMORPHISM EN REPOSO (ULTRA SUTIL) */
.carrusel-categoria-destacada .glossy-effect-card *:has(> img)::after,
.carrusel-categoria-destacada.glossy-effect-card .elementor-widget-container::after {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(1px) !important;
  -webkit-backdrop-filter: blur(1px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: opacity 0.6s ease, backdrop-filter 0.6s ease !important;
}

/* HOVER EN LA CATEGORÍA: Solo se aclara/desaparece el glossy sin difuminados ni sombras */
.carrusel-categoria-destacada .ecomus-image-box-carousel__item:hover *:has(> img)::after,
.carrusel-categoria-destacada .glossy-effect-card *:has(> img):hover::after,
.carrusel-categoria-destacada.glossy-effect-card .elementor-widget-container:hover::after {
  opacity: 0 !important;
  backdrop-filter: blur(0px) !important;
  -webkit-backdrop-filter: blur(0px) !important;
}

@media (max-width: 768px),
(hover: none) {

  .carrusel-categoria-destacada .glossy-effect-card *:has(> img)::after,
  .carrusel-categoria-destacada.glossy-effect-card .elementor-widget-container::after,
  .carrusel-categoria-destacada .ecomus-image-box-carousel__item *:has(> img)::after {
    display: none !important;
    opacity: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    border: none !important;
  }
}

/* 2. CONTORNOS CON ANILLO EN GRADIENTE ANIMADO (#FF7B89 -> #F440A8 -> #8B5CF6) */

/* A. Versión Circular (.glossy-circle) */
.carrusel-categoria-destacada .ecomus-image-box-carousel__image,
.carrusel-categoria-destacada .em-responsive-image,
.glossy-circle .ecomus-image-box-carousel__image,
.glossy-circle .em-responsive-image,
.glossy-circle.elementor-widget-image .elementor-widget-container {
  border-radius: 50% !important;
  padding: 3px !important;
  border: 2.5px solid transparent !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #FF7B89 0%, #F440A8 30%, #8B5CF6 65%, #EF7088 85%, #FF7B89 100%) border-box !important;
  background-size: 100% 100%, 250% auto !important;
  animation: biury-border-gradient-flow 8s ease infinite !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.carrusel-categoria-destacada .ecomus-image-box-carousel__image img,
.carrusel-categoria-destacada img,
.glossy-circle img {
  border-radius: 50% !important;
  object-fit: cover !important;
}

/* B. Versión Cuadrada (.glossy-square) */
.glossy-square .ecomus-image-box-carousel__image,
.glossy-square .em-responsive-image,
.glossy-square.elementor-widget-image .elementor-widget-container {
  border-radius: 22px !important;
  padding: 3px !important;
  border: 2.5px solid transparent !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #FF7B89 0%, #F440A8 30%, #8B5CF6 65%, #EF7088 85%, #FF7B89 100%) border-box !important;
  background-size: 100% 100%, 250% auto !important;
  animation: biury-border-gradient-flow 8s ease infinite !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.glossy-square .ecomus-image-box-carousel__image img,
.glossy-square img {
  border-radius: 18px !important;
  object-fit: cover !important;
}

/* B2. Versión Cuadrada Simple Sin Borde (.glossy-square-normal) */
.glossy-square-normal .ecomus-image-box-carousel__image,
.glossy-square-normal .em-responsive-image,
.glossy-square-normal.elementor-widget-image .elementor-widget-container {
  border-radius: 20px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
  overflow: hidden !important;
}

.glossy-square-normal .ecomus-image-box-carousel__image img,
.glossy-square-normal img {
  border-radius: 20px !important;
  object-fit: cover !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* C. Versión Rectangular (.glossy-rect / .glossy-rectangle) */
.glossy-rect .ecomus-image-box-carousel__image,
.glossy-rect .em-responsive-image,
.glossy-rect.elementor-widget-image .elementor-widget-container,
.glossy-rectangle .ecomus-image-box-carousel__image,
.glossy-rectangle .em-responsive-image,
.glossy-rectangle.elementor-widget-image .elementor-widget-container {
  border-radius: 22px !important;
  padding: 3px !important;
  border: 2.5px solid transparent !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #FF7B89 0%, #F440A8 30%, #8B5CF6 65%, #EF7088 85%, #FF7B89 100%) border-box !important;
  background-size: 100% 100%, 250% auto !important;
  animation: biury-border-gradient-flow 8s ease infinite !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.glossy-rect .ecomus-image-box-carousel__image img,
.glossy-rect img,
.glossy-rectangle .ecomus-image-box-carousel__image img,
.glossy-rectangle img {
  border-radius: 18px !important;
  object-fit: cover !important;
}

/* Ocultar borde del icono SVG en el carrusel SOLO cuando se usan nuestras clases glossy */
.glossy-circle .ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-circle.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-circle .ecomus-image-box-carousel__type--icon .ecomus-svg-icon,
.glossy-square .ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-square.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-square .ecomus-image-box-carousel__type--icon .ecomus-svg-icon,
.glossy-square-normal .ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-square-normal.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-square-normal .ecomus-image-box-carousel__type--icon .ecomus-svg-icon,
.glossy-rect .ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-rect.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-rect .ecomus-image-box-carousel__type--icon .ecomus-svg-icon,
.glossy-rectangle .ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-rectangle.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-rectangle .ecomus-image-box-carousel__type--icon .ecomus-svg-icon,
.glossy-effect-card .ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-effect-card.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.glossy-effect-card .ecomus-image-box-carousel__type--icon .ecomus-svg-icon,
.carrusel-categoria-destacada .ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.carrusel-categoria-destacada.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link .ecomus-svg-icon,
.carrusel-categoria-destacada .ecomus-image-box-carousel__type--icon .ecomus-svg-icon {
  border: none !important;
  border-width: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

@keyframes biury-border-gradient-flow {
  0% {
    background-position: 0% 0%, 0% 50%;
  }

  50% {
    background-position: 0% 0%, 100% 50%;
  }

  100% {
    background-position: 0% 0%, 0% 50%;
  }
}

/* Compatibilidad con Elementor Editor (Desactivar interferencias en modo edición) */
body.elementor-editor-active .glossy-effect-card *:has(> img)::after,
body.elementor-editor-active .glossy-effect-card.elementor-widget-image .elementor-widget-container::after,
body.elementor-editor-active .glossy-circle *:has(> img)::after,
body.elementor-editor-active .glossy-circle.elementor-widget-image .elementor-widget-container::after,
body.elementor-editor-active .glossy-square *:has(> img)::after,
body.elementor-editor-active .glossy-square.elementor-widget-image .elementor-widget-container::after,
body.elementor-editor-active .glossy-square-normal *:has(> img)::after,
body.elementor-editor-active .glossy-square-normal.elementor-widget-image .elementor-widget-container::after,
body.elementor-editor-active .glossy-rect *:has(> img)::after,
body.elementor-editor-active .glossy-rect.elementor-widget-image .elementor-widget-container::after,
body.elementor-editor-active .glossy-rectangle *:has(> img)::after,
body.elementor-editor-active .glossy-rectangle.elementor-widget-image .elementor-widget-container::after,
body.elementor-editor-active .carrusel-categoria-destacada .glossy-effect-card *:has(> img)::after,
body.elementor-editor-active .carrusel-categoria-destacada.glossy-effect-card .elementor-widget-container::after,
body.elementor-editor-active .carrusel-categoria-destacada .ecomus-image-box-carousel__item *:has(> img)::after,
body.elementor-editor-active .glossy-effect-card::after,
body.elementor-editor-active .glossy-square::after,
body.elementor-editor-active .glossy-square-normal::after,
body.elementor-editor-active .glossy-circle::after,
body.elementor-editor-active .glossy-rect::after,
body.elementor-editor-preview .glossy-effect-card *:has(> img)::after,
body.elementor-editor-preview .glossy-square *:has(> img)::after,
body.elementor-editor-preview .glossy-square-normal *:has(> img)::after,
body.elementor-editor-preview .glossy-circle *:has(> img)::after {
  display: none !important;
  opacity: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  content: none !important;
}

body.elementor-editor-active .glossy-effect-card *:has(> img),
body.elementor-editor-active .glossy-square *:has(> img),
body.elementor-editor-active .glossy-square-normal *:has(> img),
body.elementor-editor-active .glossy-circle *:has(> img),
body.elementor-editor-active .glossy-rect *:has(> img) {
  isolation: auto !important;
}

body.elementor-editor-active .ecomus-image-box-carousel__image,
body.elementor-editor-active .glossy-square .ecomus-image-box-carousel__image,
body.elementor-editor-active .glossy-square-normal .ecomus-image-box-carousel__image,
body.elementor-editor-active .glossy-circle .ecomus-image-box-carousel__image,
body.elementor-editor-active .glossy-rect .ecomus-image-box-carousel__image {
  overflow: visible !important;
}

body.elementor-editor-active .glossy-square.elementor-widget-image .elementor-widget-container,
body.elementor-editor-active .glossy-square-normal.elementor-widget-image .elementor-widget-container,
body.elementor-editor-active .glossy-circle.elementor-widget-image .elementor-widget-container,
body.elementor-editor-active .glossy-rect.elementor-widget-image .elementor-widget-container {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.elementor-editor-active .ecomus-image-box-carousel .swiper-slide,
body.elementor-editor-active .ecomus-image-box-carousel__item {
  visibility: visible !important;
  opacity: 1 !important;
}

/* 3. TEXTOS EN EL CARRUSEL: Background transparente (Colores y tipografías se gestionan libremente desde Elementor) */
.carrusel-categoria-destacada .ecomus-image-box-carousel__title,
.carrusel-categoria-destacada .ecomus-image-box-carousel__title a,
.carrusel-categoria-destacada .ecomus-image-box-carousel__item a,
.glossy-effect-card .ecomus-image-box-carousel__title,
.glossy-effect-card .ecomus-image-box-carousel__title a,
.glossy-circle .ecomus-image-box-carousel__title,
.glossy-circle .ecomus-image-box-carousel__title a,
.glossy-square .ecomus-image-box-carousel__title,
.glossy-square .ecomus-image-box-carousel__title a,
.glossy-square-normal .ecomus-image-box-carousel__title,
.glossy-square-normal .ecomus-image-box-carousel__title a,
.glossy-rect .ecomus-image-box-carousel__title,
.glossy-rect .ecomus-image-box-carousel__title a,
.glossy-rectangle .ecomus-image-box-carousel__title,
.glossy-rectangle .ecomus-image-box-carousel__title a {
  background-color: transparent !important;
  background: transparent !important;
  border-color: transparent !important;
}

.carrusel-categoria-destacada .ecomus-image-box-carousel__title a:hover,
.carrusel-categoria-destacada .ecomus-image-box-carousel__title:hover,
.carrusel-categoria-destacada .ecomus-image-box-carousel__item a:hover,
.glossy-effect-card .ecomus-image-box-carousel__title a:hover,
.glossy-circle .ecomus-image-box-carousel__title a:hover,
.glossy-square .ecomus-image-box-carousel__title a:hover,
.glossy-square-normal .ecomus-image-box-carousel__title a:hover,
.glossy-rect .ecomus-image-box-carousel__title a:hover,
.glossy-rectangle .ecomus-image-box-carousel__title a:hover {
  background-color: transparent !important;
  background: transparent !important;
  border-color: transparent !important;
}

/* 4. BOTÓN "TODA LA TIENDA" / BOTONES DE ACCIÓN: Borde negro en reposo + Hover #EF7088 */
.carrusel-categoria-destacada .elementor-button,
.carrusel-categoria-destacada .btn,
.carrusel-categoria-destacada .ecomus-image-box-carousel__button,
.carrusel-categoria-destacada-wrapper .elementor-button,
.carrusel-categoria-destacada-wrapper .btn,
.seccion-carrusel-categoria-destacada .elementor-button,
.seccion-carrusel-categoria-destacada .btn {
  border-color: #2E2926 !important;
  color: #2E2926 !important;
  transition: all 0.3s ease !important;
}

.carrusel-categoria-destacada .elementor-button:hover,
.carrusel-categoria-destacada .btn:hover,
.carrusel-categoria-destacada .ecomus-image-box-carousel__button:hover,
.carrusel-categoria-destacada-wrapper .elementor-button:hover,
.carrusel-categoria-destacada-wrapper .btn:hover,
.seccion-carrusel-categoria-destacada .elementor-button:hover,
.seccion-carrusel-categoria-destacada .btn:hover {
  background-color: #EF7088 !important;
  border-color: #EF7088 !important;
  color: #ffffff !important;
}

/* ==========================================================================
   SECCION / CARRUSEL ACCESORIOS (SOLO BORDE EXTERNO 1PX + AURA HOVER BIURY)
   ========================================================================== */

/* 1. SWIPER MASK: Recorta los elementos laterales que vienen de los lados y da espacio vertical para el aura */
.seccion-accesorios .swiper,
.seccion-accesorios .swiper-container,
.carrusel-accesorios .swiper,
.carrusel-accesorios .swiper-container,
.carrusel-accesorios-resp .swiper,
.carrusel-accesorios-resp .swiper-container,
.elementor-element.seccion-accesorios .swiper,
.elementor-element.seccion-accesorios .swiper-container,
.elementor-element.carrusel-accesorios .swiper,
.elementor-element.carrusel-accesorios .swiper-container {
  padding: 24px 0 30px 0 !important;
  margin: -24px 0 -30px 0 !important;
  overflow: hidden !important;
}

/* 2. Liberamos los contenedores padre de Elementor para que las flechas laterales no se corten */
.seccion-accesorios .elementor-widget-container,
.seccion-accesorios .elementor-container,
.seccion-accesorios .e-con-inner,
.carrusel-accesorios .elementor-widget-container,
.carrusel-accesorios .elementor-container,
.carrusel-accesorios .e-con-inner {
  overflow: visible !important;
}

/* 2.1 OCULTAR ÚNICAMENTE LOS CONTENEDORES QUE NO ESTÁN EN PANTALLA */
.seccion-accesorios .swiper-slide.biury-slide-hidden,
.carrusel-accesorios .swiper-slide.biury-slide-hidden,
.carrusel-accesorios-resp .swiper-slide.biury-slide-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.seccion-accesorios .swiper-slide.biury-slide-visible,
.carrusel-accesorios .swiper-slide.biury-slide-visible,
.carrusel-accesorios-resp .swiper-slide.biury-slide-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* 3. SOLO EL CONTENEDOR EXTERNO (Slide / LI) RECIBE EL BORDE DE 1PX Y FONDO BLANCO */
.seccion-accesorios .swiper-slide,
.seccion-accesorios li.product,
.carrusel-accesorios .swiper-slide,
.carrusel-accesorios li.product,
.carrusel-accesorios-resp .swiper-slide,
.carrusel-accesorios-resp li.product {
  position: relative !important;
  background: #FFFFFF !important;
  border: 1px solid #F0E8EC !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

/* 4. ELIMINAR TOTALMENTE CUALQUIER BORDE INTERNO REPETIDO */
.seccion-accesorios .card-product,
.seccion-accesorios .product-inner,
.seccion-accesorios .card-product-wrapper,
.seccion-accesorios .box-product,
.seccion-accesorios .product-media,
.seccion-accesorios .product-img,
.seccion-accesorios .product-thumb,
.carrusel-accesorios .card-product,
.carrusel-accesorios .product-inner,
.carrusel-accesorios .card-product-wrapper,
.carrusel-accesorios .box-product,
.carrusel-accesorios .product-media,
.carrusel-accesorios .product-img,
.carrusel-accesorios .product-thumb,
.carrusel-accesorios-resp .card-product,
.carrusel-accesorios-resp .product-inner {
  border: none !important;
  border-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* 5. Aura con efecto Hover únicamente en el contenedor externo */
.seccion-accesorios .swiper-slide:hover,
.seccion-accesorios li.product:hover,
.carrusel-accesorios .swiper-slide:hover,
.carrusel-accesorios li.product:hover,
.carrusel-accesorios-resp .swiper-slide:hover,
.carrusel-accesorios-resp li.product:hover {
  border-color: rgba(244, 64, 168, 0.45) !important;
  box-shadow: 0 12px 30px rgba(244, 64, 168, 0.22), 0 2px 10px rgba(239, 112, 136, 0.15) !important;
  transform: translateY(-4px) !important;
  z-index: 10 !important;
}

/* 6. Imágenes redondeadas suaves dentro de la tarjeta */
.seccion-accesorios .product-thumbnail img,
.carrusel-accesorios .product-thumbnail img,
.carrusel-accesorios-resp .product-thumbnail img {
  border-radius: 14px 14px 0 0 !important;
}

/* 7. En Móviles: Borde y sombra suave optimizados */
@media (max-width: 768px) {
  .seccion-accesorios .swiper-slide,
  .seccion-accesorios li.product,
  .carrusel-accesorios .swiper-slide,
  .carrusel-accesorios li.product {
    border: 1px solid rgba(244, 64, 168, 0.25) !important;
    box-shadow: 0 4px 14px rgba(244, 64, 168, 0.12) !important;
    border-radius: 14px !important;
  }
}

/* ==========================================================================
   RESEÑAS BIURY HOME ([biury_home_reviews] FONDO TRANSPARENTE INTEGRABLE)
   ========================================================================== */
.cmx-home-reviews-section,
.biury-home-reviews-section {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* ==========================================================================
   WOOCOMMERCE SHOP (TIENDA)
   ========================================================================== */

/* Hover del título del producto (Rosa Primario con Neón Cyberpunk) */
.woocommerce-shop .woocommerce-loop-product__title.em-font-normal:hover,
.woocommerce-shop .woocommerce-loop-product__title:hover,
.woocommerce-shop .woocommerce-loop-product__title a:hover,
.woocommerce-shop .woocommerce-loop-product__title.em-font-normal a:hover,
ul.products li.product .woocommerce-loop-product__title:hover,
ul.products li.product .woocommerce-loop-product__title a:hover {
  color: #F440A8 !important;
  animation: biury-pink-flicker 4s infinite alternate !important;
  transition: color 0.3s ease !important;
}

/* Título principal de la página Shop (Neón Cyberpunk) */
.woocommerce-page .page-title,
.post-type-archive-product .page-title,
.woocommerce-products-header__title.page-title,
.page-header__title {
  color: #F440A8 !important;
  animation: biury-pink-flicker 4s infinite alternate !important;
}

/* Hover en los filtros de WooCommerce (Neón Cyberpunk) */
.widget_layered_nav ul li a:hover,
.widget_product_categories ul li a:hover,
.widget_rating_filter ul li a:hover,
.woocommerce-widget-layered-nav-list__item a:hover,
.wc-block-product-categories-list-item a:hover,
.shop-filter-toggle:hover,
.wc-block-components-checkbox:hover .wc-block-components-checkbox__label {
  color: #F440A8 !important;
  animation: biury-pink-flicker 4s infinite alternate !important;
  transition: color 0.3s ease !important;
}

/* Color del precio actual (Rosa Secundario) - Ignorando el precio tachado */
.woocommerce-shop ul.products li.product .price ins .woocommerce-Price-amount.amount,
.woocommerce-shop ul.products li.product .price>.woocommerce-Price-amount.amount,
.carrusel-accesorios ul.products li.product .price ins .woocommerce-Price-amount.amount,
.carrusel-accesorios ul.products li.product .price>.woocommerce-Price-amount.amount,
.carrusel-mas-popular ul.products li.product .price ins .woocommerce-Price-amount.amount,
.carrusel-mas-popular ul.products li.product .price>.woocommerce-Price-amount.amount {
  color: #EF7088 !important;
  font-weight: 600 !important;
  /* Un poco de peso para que resalte más el color */
}

/* ==========================================================================
   PANEL DE FILTROS Y WIDGETS (OFF-CANVAS BIURY LUXURY DESIGN)
   ========================================================================== */

/* Contenedor principal del panel deslizable de filtros */
#shop-filter-sidebar,
.offscreen-panel,
.ecomus-canvas-filter,
.canvas-sidebar,
.widget-area-sidebar {
  background-color: #FAF4EE !important;
  /* Fondo Crema Accent */
}

/* Cabecera del Panel de Filtros ("FILTRAR") */
.offscreen-panel__header,
.ecomus-canvas-filter__header,
.canvas-sidebar__header {
  padding: 18px 24px !important;
  border-bottom: 2px solid #EF7088 !important;
  background-color: #ffffff !important;
}

.offscreen-panel__header .panel__title,
.ecomus-canvas-filter__title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

/* 1. CORRECCIÓN Y REDISEÑO DE TÍTULOS DE WIDGETS (Fix "Categorí as" roto) */
#shop-filter-sidebar .widget-title,
#shop-filter-sidebar .widgettitle,
#shop-filter-sidebar .widget_title,
#shop-filter-sidebar h2,
#shop-filter-sidebar h3,
#shop-filter-sidebar .wp-block-heading,
.offscreen-panel .widget-title,
.offscreen-panel .widgettitle,
.offscreen-panel .widget_title,
.offscreen-panel h2,
.offscreen-panel h3,
.offscreen-panel .wp-block-heading,
.ecomus-canvas-filter .widget-title,
.ecomus-canvas-filter h2,
.ecomus-canvas-filter h3,
.widget_categories>h2,
.widget_categories>h3,
.widget_archive>h2,
.widget_archive>h3,
.widget_product_categories>h2,
.widget_product_categories>h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 17px !important;
  /* Tamaño fino y elegante */
  font-weight: 700 !important;
  color: #2E2926 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  line-height: 1.3 !important;
  word-break: normal !important;
  /* Evitar que rompa palabras como "Categorí-as" */
  word-wrap: normal !important;
  white-space: normal !important;
  margin-top: 28px !important;
  margin-bottom: 14px !important;
  padding-bottom: 8px !important;
  border-bottom: 1.5px solid rgba(239, 112, 136, 0.25) !important;
  /* Línea de división delicada */
}

/* 2. TIPOGRAFÍA Y LISTAS DE FILTROS */
#shop-filter-sidebar ul,
.offscreen-panel .widget ul,
.ecomus-canvas-filter ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

#shop-filter-sidebar ul li,
.offscreen-panel .widget ul li,
.ecomus-canvas-filter ul li {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  color: #2E2926 !important;
  padding: 7px 0 !important;
  border-bottom: 1px dashed rgba(46, 41, 38, 0.08) !important;
  transition: all 0.25s ease !important;
}

#shop-filter-sidebar ul li:last-child,
.offscreen-panel .widget ul li:last-child {
  border-bottom: none !important;
}

/* Enlaces dentro de las listas */
#shop-filter-sidebar ul li a,
.offscreen-panel .widget ul li a,
.ecomus-canvas-filter ul li a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  color: #4A4441 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: inline-block !important;
}

/* HOVER ELEGANTE (Desplazamiento sutil a la derecha + Color Rosa) */
#shop-filter-sidebar ul li a:hover,
.offscreen-panel .widget ul li a:hover,
.ecomus-canvas-filter ul li a:hover,
#shop-filter-sidebar ul li:hover>a {
  color: #F440A8 !important;
  transform: translateX(5px) !important;
}

/* 3. ELEMENTOS SELECCIONADOS / ACTIVOS */
.widget_layered_nav ul li.chosen>a,
.widget_product_categories ul li.current-cat>a,
.woocommerce-widget-layered-nav-list__item--chosen>a,
.wc-block-product-categories-list-item.is-active>a {
  color: #F440A8 !important;
  font-weight: 700 !important;
}

/* Contadores (ej: Accesorios (5)) */
.widget_product_categories ul li .count,
.wc-block-product-categories-list-item__count,
.widget_archive ul li {
  color: #8C8480 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

/* 4. CUSTOM CHECKBOXES PARA FILTROS WOOCOMMERCE */
.woocommerce-widget-layered-nav-list__item input[type="checkbox"],
.wc-block-components-checkbox input[type="checkbox"] {
  accent-color: #F440A8 !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  vertical-align: middle !important;
  margin-right: 8px !important;
}

/* Acordeón de Categorías de Productos (Chevron / Flecha) */
.widget_product_categories .caret,
.widget_categories .caret,
.offscreen-panel .icon-angle-down {
  color: #2E2926 !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
}

.widget_product_categories .caret:hover {
  color: #F440A8 !important;
}

/* ==========================================================================
   MENÚ MÓVIL (OFF-CANVAS) - ESTILOS PREMIUM BIURY
   ========================================================================== */

/* Fondo y diseño general del panel */
#mobile-menu-panel .panel__container,
.offscreen-panel .panel__container {
  background-color: #FAF4EE !important;
  /* Accent color Biury */
  border-right: 4px solid #F440A8 !important;
  /* Borde rosa vibrante */
  padding: 30px 20px !important;
}

/* Botón de cerrar (X) */
#mobile-menu-panel .panel__button-close,
.offscreen-panel .panel__button-close {
  background-color: #F440A8 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease !important;
  margin-bottom: 25px !important;
  opacity: 1 !important;
}

#mobile-menu-panel .panel__button-close:hover,
.offscreen-panel .panel__button-close:hover {
  transform: rotate(90deg) scale(1.1) !important;
  background-color: #2E2926 !important;
}

#mobile-menu-panel .panel__button-close svg,
.offscreen-panel .panel__button-close svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
}

/* Lista de elementos del menú */
#mobile-menu-panel ul.menu,
#mobile-menu-panel .mobile-menu,
.offscreen-panel ul.menu,
.offscreen-panel .mobile-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#mobile-menu-panel ul.menu>li,
.offscreen-panel ul.menu>li {
  border-bottom: 1px solid rgba(244, 64, 168, 0.2) !important;
  margin-bottom: 5px !important;
  overflow: visible !important;
}

/* Estilo de los enlaces */
#mobile-menu-panel ul.menu>li>a,
.offscreen-panel ul.menu>li>a {
  display: block !important;
  padding: 15px 10px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
}

/* Bolita decorativa en estado normal (oculta a la izquierda) */
#mobile-menu-panel ul.menu>li>a::before,
.offscreen-panel ul.menu>li>a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #F440A8;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover en los enlaces: movimiento y cambio de color */
#mobile-menu-panel ul.menu>li>a:hover,
.offscreen-panel ul.menu>li>a:hover {
  color: #F440A8 !important;
  transform: translateX(12px) !important;
  background-color: transparent !important;
}

#mobile-menu-panel ul.menu>li>a:hover::before,
.offscreen-panel ul.menu>li>a:hover::before {
  opacity: 1;
  left: -12px;
}

/* Fondo oscuro desenfocado cuando el menú está abierto */
#mobile-menu-panel .panel__backdrop,
.offscreen-panel .panel__backdrop {
  background-color: rgba(46, 41, 38, 0.7) !important;
  backdrop-filter: blur(6px) !important;
}

/* ==========================================================================
   BOTÓN HAMBURGUESA DEL HEADER MÓVIL
   ========================================================================== */
.site-header__mobile .header-hamburger,
.site-header__mobile .hamburger-menu {
  color: #ffffff !important;
}

.site-header__mobile .header-hamburger svg,
.site-header__mobile .hamburger-menu svg {
  fill: #ffffff !important;
  width: 32px !important;
  height: 32px !important;
}

/* ==========================================================================
   ERRADICAR EL ROJO POR DEFECTO DEL TEMA ECOMUS (#db1215)
   ========================================================================== */

/* Forzar sobreescritura de elementos hardcodeados con el rojo viejo en Ecomus */
.ecomus-widget__social-links .social-links .em-button-outline:hover,
.ecomus-widget__social-links .social-links .em-button-text:hover,
.ecomus-social-icons__style--outline .ecomus-social-icons__item:hover,
.ecomus-image-box-carousel__type--icon .ecomus-image-box-carousel__link:hover,
.ecomus-image-box-grid__image .ecomus-image-box-grid__link:hover,
.ecomus-image-box-grid__image[data-type="text"] .ecomus-image-box-grid__link .ecomus-image-box-grid__text {
  border-color: #F440A8 !important;
}

.ecomus-image-box-grid__image[data-type="text"] .ecomus-image-box-grid__link {
  background-color: #F440A8 !important;
}

ins,
.ecomus-images-hotspot__product-price ins,
.ecomus-testimonial-carousel-2__product-price ins,
.ecomus-product-category-tabs__item:hover,
.ecomus-image-hotspot__product-price ins,
.ecomus-shoppable-video__product-price ins,
.panel__button-close:hover,
.single-product-sidebar-panel .sidebar__button-close:hover {
  color: #F440A8 !important;
}

/* Erradicar el rojo en el filtro de precios (WooCommerce Price Slider) */
.widget_price_filter .ui-slider .ui-slider-handle {
  border: 2px solid #F440A8 !important;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active,
.widget_price_filter .ui-slider .ui-slider-range {
  background-color: #F440A8 !important;
}

/* ==========================================================================
   MINI-CART (OFF-CANVAS CART)
   ========================================================================== */

/* Arreglo de los botones del carrito para evitar textos superpuestos */
.woocommerce-mini-cart__buttons.buttons,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-bottom: 0 !important;
}

.woocommerce-mini-cart__buttons.buttons .button {
  width: 100% !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 12px 20px !important;
  white-space: normal !important;
  border-radius: 15px !important;
}

/* Botón en el mensaje de Carrito Vacío (woocommerce-mini-cart__empty-message) */
.woocommerce-mini-cart__empty-message a,
.woocommerce-mini-cart__empty-message+p a,
.woocommerce-mini-cart__empty-message .button,
.empty-cart-offcanvas a,
.tf-mini-cart__empty a,
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message+p .button,
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message a,
.tf-mini-cart__empty-text+a {
  border-radius: 15px !important;
  border: 1.5px solid #2E2926 !important;
  background-color: transparent !important;
  color: #2E2926 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 10px 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  box-shadow: none !important;
  margin-top: 15px !important;
}

/* Hover al botón de carrito vacío (Color rosa Biury #EF7088 e iluminación) */
.woocommerce-mini-cart__empty-message a:hover,
.woocommerce-mini-cart__empty-message+p a:hover,
.woocommerce-mini-cart__empty-message .button:hover,
.empty-cart-offcanvas a:hover,
.tf-mini-cart__empty a:hover,
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message+p .button:hover,
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message a:hover,
.tf-mini-cart__empty-text+a:hover {
  background-color: #EF7088 !important;
  color: #FAF4EE !important;
  border-color: #EF7088 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0px 6px 15px rgba(239, 112, 136, 0.3) !important;
}

/* ==========================================================================
   HEADER COUNTERS (CART & WISHLIST)
   ========================================================================== */

/* Contenedor circular de los números (burbujas) en el header */
.site-header .header-counter,
.header-cart__counter,
.header-wishlist__counter {
  background-color: #FAF4EE !important;
  /* Accent Biury para contraste */
  color: #F440A8 !important;
  /* Número en rosa vibrante */
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
  /* Pequeña sombra para realzar */
  border: 1px solid #FAF4EE !important;
}

/* ==========================================================================
   🔍 REDISEÑO COMPLETO DE LA PANTALLA Y MODAL DE BÚSQUEDA (SEARCH MODAL BIURY)
   ========================================================================== */

/* Fondo general y diseño del modal de búsqueda */
#search-modal .modal__container,
.search-modal .modal__container,
.offscreen-search .panel__container {
  background-color: #FAF4EE !important;
  /* Fondo crema luxury Biury */
  border-bottom: 3px solid #F440A8 !important;
  padding: 40px 20px !important;
}

/* Botón de cerrar (X) */
#search-modal .modal__button-close,
.search-modal .modal__button-close {
  background-color: #F440A8 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
  opacity: 1 !important;
  top: 25px !important;
  right: 25px !important;
}

#search-modal .modal__button-close:hover,
.search-modal .modal__button-close:hover {
  transform: rotate(90deg) scale(1.1) !important;
  background-color: #2E2926 !important;
}

/* Título principal ("Buscar en nuestro sitio") */
#search-modal .search-modal__title,
.search-modal__title,
.search-modal h5,
.search-modal h4 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  text-align: center !important;
  margin-bottom: 25px !important;
}

/* Campo de entrada (Input Box) */
#search-modal .modal__content-search-field,
.search-modal .modal__content-search-field {
  max-width: 650px !important;
  margin: 0 auto !important;
  background-color: #ffffff !important;
  border-radius: 30px !important;
  border: 2px solid rgba(244, 64, 168, 0.25) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
  padding: 4px 18px !important;
  transition: all 0.3s ease !important;
}

#search-modal .modal__content-search-field:focus-within,
.search-modal .modal__content-search-field:focus-within {
  border-color: #F440A8 !important;
  box-shadow: 0 0 20px rgba(244, 64, 168, 0.25) !important;
}

/* Texto del Input */
#search-modal input.search-modal__field,
.search-modal input.search-modal__field,
.em-instant-search__field {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  color: #2E2926 !important;
  font-weight: 500 !important;
  border: none !important;
  background: transparent !important;
}

/* Ícono de Lupa dentro del buscador */
#search-modal .modal__content-search-field svg,
.search-modal .modal__content-search-field svg {
  color: #F440A8 !important;
  stroke: #F440A8 !important;
  width: 20px !important;
  height: 20px !important;
}

/* Rediseño del Estado Vacío ("No se encontraron productos...") */
.search-modal .no-products-found,
.search-modal .em-instant-search__no-results,
.search-modal .search-results-empty,
.search-modal .woocommerce-info,
.search-modal__no-results,
.em-instant-search__no-results,
.search-modal .modal__content {
  text-align: center !important;
  padding: 35px 20px !important;
  background: transparent !important;
  border: none !important;
}

/* Ícono de la Lupa con X en el estado vacío */
.search-modal .em-instant-search__no-results svg,
.search-modal .no-products-found svg,
.search-modal .search-modal__no-results svg,
.em-instant-search__no-results svg,
.search-modal .icon-search,
.search-modal .modal__content svg {
  color: #F440A8 !important;
  stroke: #F440A8 !important;
}

/* Texto del mensaje de 'no se encontraron productos' sin fondo feo gris */
.search-modal .em-instant-search__no-results p,
.search-modal .no-products-found p,
.search-modal .woocommerce-info,
.search-modal .modal__content p,
.search-modal__no-results,
.em-instant-search__no-results,
.search-modal .modal__content span {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #2E2926 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  margin-top: 15px !important;
  letter-spacing: 0.3px !important;
}

/* ==========================================================================
   ✨ BOTÓN FLOTANTE LATERAL VIRTUAL TRY-ON (BIURY VTO - CAPSULA CON X)
   ========================================================================== */

.biury-floating-vto-wrapper {
  position: fixed !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 990 !important;
  /* Por encima del contenido del home (z-index 1-100), por debajo del carrito lateral (1000+), submenús y modales */
  display: flex !important;
  align-items: center !important;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, z-index 0.35s ease !important;
}

/* Ocultar/bajar z-index si el carrito de compras lateral, submenú o modal está abierto */
body.cart-open .biury-floating-vto-wrapper,
body.modal-open .biury-floating-vto-wrapper,
body.offcanvas-open .biury-floating-vto-wrapper,
body.canvas-opened .biury-floating-vto-wrapper,
body.show-cart .biury-floating-vto-wrapper,
body.menu-open .biury-floating-vto-wrapper,
.biury-floating-vto-wrapper.biury-vto-behind {
  z-index: 10 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.biury-floating-vto-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  background-image: linear-gradient(135deg, #FF7B89 0%, #F440A8 45%, #8B5CF6 90%) !important;
  background-size: 250% auto !important;
  animation: biury-gradient-flow 8s ease infinite, biury-vto-pulse 3s infinite !important;

  color: #ffffff !important;
  text-decoration: none !important;
  padding: 12px 22px 12px 18px !important;
  border-radius: 30px !important;

  box-shadow: 0 8px 25px rgba(244, 64, 168, 0.45), 0 0 15px rgba(255, 255, 255, 0.3) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;

  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;

  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer !important;
}

/* Botón X de Cierre integrado */
.biury-vto-close-btn {
  position: absolute !important;
  top: -8px !important;
  right: -6px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: #2E2926 !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.25s ease, background 0.25s ease !important;
  z-index: 10 !important;
}

.biury-vto-close-btn svg {
  width: 12px !important;
  height: 12px !important;
  stroke: #ffffff !important;
}

.biury-vto-close-btn:hover {
  background: #F440A8 !important;
  transform: scale(1.2) rotate(90deg) !important;
}

/* Icono de destellos / cámara */
.biury-floating-vto-btn .vto-sparkle-icon {
  width: 18px !important;
  height: 18px !important;
  stroke: #ffffff !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
  transition: transform 0.3s ease !important;
}

/* Hover en la cápsula */
.biury-floating-vto-wrapper:hover .biury-floating-vto-btn {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 12px 32px rgba(244, 64, 168, 0.6), 0 0 22px rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
}

.biury-floating-vto-wrapper:hover .vto-sparkle-icon {
  transform: rotate(45deg) scale(1.15) !important;
}

/* Transición al descartar/cerrar */
.biury-floating-vto-wrapper.is-dismissed {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* OCULTAR AUTOMÁTICAMENTE CUANDO CUALQUIER MENÚ O MODAL OFF-CANVAS ESTÉ ABIERTO */
body.is-open-offcanvas .biury-floating-vto-wrapper,
body.modal-open .biury-floating-vto-wrapper,
body.modal-opened .biury-floating-vto-wrapper,
body.biury-vto-modal-open .biury-floating-vto-wrapper,
body.mobile-menu-active .biury-floating-vto-wrapper,
body.cart-drawer-open .biury-floating-vto-wrapper {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Animación sutil de respiración o pulso neón */
@keyframes biury-vto-pulse {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(244, 64, 168, 0.45), 0 0 10px rgba(244, 64, 168, 0.3);
  }

  50% {
    box-shadow: 0 12px 30px rgba(244, 64, 168, 0.7), 0 0 20px rgba(139, 92, 246, 0.5);
  }
}

/* Desactivar por completo en celulares y tablets (Mobile) — Solo existe en Desktop */
@media (max-width: 768px) {
  .biury-floating-vto-wrapper {
    display: none !important;
  }
}

/* =============================================================================
   BIURY BRAND IDENTIDAD — INSIGNIA Y ETIQUETA DE DESCUENTO
   ============================================================================= */
.sale-off,
.single-product div.product .ecomus-product-price .price .sale-off,
.single-product div.product .single_add_to_cart_button span.price .sale-off,
.woocommerce-badges .sale,
.woocommerce-badge.sale,
.onsale,
span.onsale,
.badge-sale {
  background-color: #F440A8 !important;
  color: #FFFFFF !important;
}

/* =============================================================================
   BIURY — CARRUSEL DE RESEÑAS (CÁPSULA MÁSCARA, FLECHAS Y DOTS PULCROS)
   ============================================================================= */
.cmx-reviews-carousel-wrapper,
.biury-reviews-carousel-wrapper {
  position: relative !important;
  width: 100% !important;
}

.cmx-reviews-swiper-outer,
.biury-reviews-swiper-outer {
  position: relative !important;
  width: 100% !important;
}

.cmx-reviews-swiper,
.biury-reviews-swiper {
  margin: 0 65px !important;
  padding: 20px 6px 30px 6px !important;
  overflow: hidden !important;
}

.cmx-swiper-arrow,
.biury-swiper-arrow,
button.cmx-swiper-arrow,
button.biury-swiper-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  border: 1.5px solid #2E2926 !important;
  box-shadow: 0 4px 12px rgba(46, 41, 38, 0.08) !important;
  color: #2E2926 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 20 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cmx-swiper-arrow:hover,
.biury-swiper-arrow:hover,
button.cmx-swiper-arrow:hover,
button.biury-swiper-arrow:hover {
  background-color: #EF7088 !important;
  background: #EF7088 !important;
  border-color: #EF7088 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(239, 112, 136, 0.35) !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.cmx-arrow-prev,
.biury-arrow-prev {
  left: 0px !important;
}

.cmx-arrow-next,
.biury-arrow-next {
  right: 0px !important;
}

/* PAGINACIÓN BULLETS (DOTS REFERENCIA PULCROS) */
.cmx-reviews-pagination,
.biury-reviews-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 20px !important;
  position: relative !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 10 !important;
}

.cmx-reviews-pagination .swiper-pagination-bullet,
.biury-reviews-pagination .swiper-pagination-bullet {
  background-color: #E2D9DE !important;
  background: #E2D9DE !important;
  opacity: 1 !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  display: inline-block !important;
  vertical-align: middle !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.cmx-reviews-pagination .swiper-pagination-bullet::before,
.cmx-reviews-pagination .swiper-pagination-bullet::after,
.biury-reviews-pagination .swiper-pagination-bullet::before,
.biury-reviews-pagination .swiper-pagination-bullet::after {
  display: none !important;
  content: none !important;
}

.cmx-reviews-pagination .swiper-pagination-bullet:hover,
.biury-reviews-pagination .swiper-pagination-bullet:hover {
  background-color: #EF7088 !important;
  background: #EF7088 !important;
  transform: scale(1.15) !important;
}

.cmx-reviews-pagination .swiper-pagination-bullet-active,
.biury-reviews-pagination .swiper-pagination-bullet-active {
  background-color: #F440A8 !important;
  background: #F440A8 !important;
  opacity: 1 !important;
  width: 36px !important;
  height: 14px !important;
  min-width: 36px !important;
  min-height: 14px !important;
  border-radius: 7px !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 3px 10px rgba(244, 64, 168, 0.4) !important;
}

/* =============================================================================
   BIURY — CENTRADO ARMONIOSO DE RESEÑAS (1 O 2 RESEÑAS)
   ============================================================================= */
.cmx-reviews-carousel-wrapper.has-few-slides,
.biury-reviews-carousel-wrapper.has-few-slides {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.cmx-reviews-carousel-wrapper.slides-count-1,
.biury-reviews-carousel-wrapper.slides-count-1 {
  max-width: 480px !important;
}

.cmx-reviews-carousel-wrapper.slides-count-2,
.biury-reviews-carousel-wrapper.slides-count-2 {
  max-width: 960px !important;
}

.cmx-reviews-swiper-outer.has-few-slides,
.biury-reviews-swiper-outer.has-few-slides {
  width: 100% !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: center !important;
}

.cmx-reviews-swiper.has-few-slides,
.biury-reviews-swiper.has-few-slides {
  margin: 0 auto !important;
  padding: 20px 0 30px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

@media (min-width: 769px) {
  .cmx-reviews-swiper.has-few-slides .swiper-wrapper,
  .biury-reviews-swiper.has-few-slides .swiper-wrapper {
    justify-content: center !important;
    align-items: stretch !important;
    display: flex !important;
    margin: 0 auto !important;
    transform: none !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .cmx-reviews-carousel-wrapper.slides-count-1 .cmx-review-slide,
  .biury-reviews-carousel-wrapper.slides-count-1 .biury-review-slide {
    max-width: 460px !important;
    width: 100% !important;
    flex: 0 1 460px !important;
    margin: 0 auto !important;
  }

  .cmx-reviews-carousel-wrapper.slides-count-2 .cmx-review-slide,
  .biury-reviews-carousel-wrapper.slides-count-2 .biury-review-slide {
    max-width: 450px !important;
    width: 100% !important;
    flex: 0 1 450px !important;
    margin: 0 !important;
  }

  .cmx-reviews-carousel-wrapper.has-few-slides .cmx-review-card,
  .biury-reviews-carousel-wrapper.has-few-slides .biury-review-card {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .cmx-reviews-carousel-wrapper.has-few-slides .cmx-swiper-arrow,
  .cmx-reviews-carousel-wrapper.has-few-slides .biury-swiper-arrow,
  .cmx-reviews-carousel-wrapper.has-few-slides button.cmx-swiper-arrow,
  .cmx-reviews-carousel-wrapper.has-few-slides button.biury-swiper-arrow,
  .cmx-reviews-carousel-wrapper.has-few-slides .cmx-reviews-pagination,
  .cmx-reviews-carousel-wrapper.has-few-slides .biury-reviews-pagination {
    display: none !important;
  }

  .cmx-only-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .cmx-reviews-carousel-wrapper.slides-count-1 .cmx-swiper-arrow,
  .cmx-reviews-carousel-wrapper.slides-count-1 .biury-swiper-arrow,
  .cmx-reviews-carousel-wrapper.slides-count-1 button.cmx-swiper-arrow,
  .cmx-reviews-carousel-wrapper.slides-count-1 button.biury-swiper-arrow,
  .cmx-reviews-carousel-wrapper.slides-count-1 .cmx-reviews-pagination,
  .cmx-reviews-carousel-wrapper.slides-count-1 .biury-reviews-pagination {
    display: none !important;
  }

  .cmx-only-mobile {
    display: flex !important;
  }
}

@media (max-width: 768px) {

  .cmx-home-reviews-section,
  .biury-home-reviews-section,
  .cmx-reviews-section,
  .ecomus-testimonial-carousel,
  .ecomus-testimonial-carousel-2,
  .ecomus-testimonial-carousel-3 {
    padding: 36px 0 !important;
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .cmx-reviews-container,
  .biury-reviews-container {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .cmx-reviews-swiper,
  .biury-reviews-swiper {
    margin: 0 auto !important;
    padding: 10px 0 28px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .cmx-reviews-swiper-outer,
  .biury-reviews-swiper-outer {
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .cmx-review-slide,
  .biury-review-slide,
  .ecomus-testimonial-carousel-2__item-wrap,
  .ecomus-testimonial__item-wrap {
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .cmx-review-card,
  .biury-review-card,
  .ecomus-testimonial-carousel-2__item,
  .ecomus-testimonial__item {
    width: 100% !important;
    max-width: clamp(280px, 92vw, 440px) !important;
    margin: 0 auto !important;
    padding: clamp(20px, 5vw, 28px) clamp(16px, 4.5vw, 24px) !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .cmx-swiper-arrow,
  .biury-swiper-arrow,
  button.cmx-swiper-arrow,
  button.biury-swiper-arrow {
    display: none !important;
  }
}

/* ==========================================================================
   💖 BIURY — CARRITO LATERAL PREMIUM (selectores precisos Ecomus)
   Estructura HTML real:
     #cart-panel.offscreen-panel.cart-panel
       └ .panel__backdrop
       └ .panel__container
           ├ svg.panel__button-close  ← (ANTES del header en el DOM)
           ├ h6.panel__header         ← título
           └ .panel__content
               └ .widget_shopping_cart_content
                   ├ ul.woocommerce-mini-cart
                   │   ├ li.woocommerce-mini-cart-item (productos)
                   │   │   ├ .woocommerce-mini-cart-item__thumbnail
                   │   │   └ .woocommerce-mini-cart-item__summary
                   │   │       └ .woocommerce-mini-cart-item__box
                   │   │           ├ .woocommerce-mini-cart-item__data (nombre+precio)
                   │   │           └ .woocommerce-mini-cart-item__qty  (qty+quitar)
                   │   └ li > .ecomus-mini-products-recommended
                   └ .widget_shopping_cart_footer
                       ├ p.woocommerce-mini-cart__total
                       └ p.woocommerce-mini-cart__buttons
   ========================================================================== */

/* --- 1. BACKDROP (blur semitransparente sobre el Home) --- */
.cart-panel .panel__backdrop {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(15, 12, 14, 0.38) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  z-index: 1 !important;
  cursor: pointer !important;
}

/* --- 2. PANEL CONTENEDOR (460px, bordes 15px, ID para máxima especificidad) --- */
#cart-panel.cart-panel .panel__container,
.cart-panel .panel__container {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 460px !important;
  max-width: 95vw !important;
  height: 100% !important;
  z-index: 2 !important;
  background: #FFFFFF !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.14) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border-radius: 15px 0 0 15px !important;
}

/* --- 3. HEADER ROW (X + título en una línea) ---
   El SVG .panel__button-close viene ANTES del h6 en el DOM.
   Usamos order + flex-direction: row-reverse para colocar el X a la derecha. */
.cart-panel .panel__container>.panel__button-close,
.cart-panel .panel__container>h6.panel__header {
  /* Ambos se convierten en "hijos flex" inline del container */
}

/* Creamos un pseudo-header usando los dos primeros hijos */
.cart-panel .panel__container {
  /* flex column ya declarado arriba */
}

/* El botón X se posiciona absolutamente dentro del container */
.cart-panel .panel__button-close {
  position: absolute !important;
  top: 14px !important;
  right: 18px !important;
  z-index: 20 !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  border-radius: 50% !important;
  background: #F440A8 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 3px 10px rgba(244, 64, 168, 0.3) !important;
  cursor: pointer !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

.cart-panel .panel__button-close svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #FFFFFF !important;
  fill: none !important;
}

.cart-panel .panel__button-close:hover {
  background: #D8309A !important;
  transform: rotate(90deg) scale(1.05) !important;
}

/* --- 4. TÍTULO DEL PANEL --- */
.cart-panel h6.panel__header {
  display: block !important;
  padding: 18px 60px 18px 22px !important;
  margin: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  letter-spacing: -0.2px !important;
  border-bottom: 1px solid #F0E8EC !important;
  background: #FFFFFF !important;
  flex-shrink: 0 !important;
  line-height: 1.4 !important;
}

/* --- 5. CONTENIDO SCROLLABLE --- */
.cart-panel .panel__content {
  flex: 1 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.cart-panel .widget_shopping_cart_content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* --- 6. LISTA DE PRODUCTOS (scroll interno) --- */
.cart-panel ul.woocommerce-mini-cart {
  list-style: none !important;
  margin: 0 !important;
  padding: 14px 18px !important;
  flex: 1 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin !important;
  scrollbar-color: #F0E8EC transparent !important;
}

.cart-panel ul.woocommerce-mini-cart::-webkit-scrollbar {
  width: 4px !important;
}

.cart-panel ul.woocommerce-mini-cart::-webkit-scrollbar-thumb {
  background: #F0E8EC !important;
  border-radius: 4px !important;
}

/* --- 7. CADA PRODUCTO (tarjeta horizontal limpia) --- */
.cart-panel .woocommerce-mini-cart-item.mini_cart_item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 12px !important;
  margin-bottom: 10px !important;
  background: #FAFAFA !important;
  border: 1px solid #F0E8EC !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  position: relative !important;
}

.cart-panel .woocommerce-mini-cart-item.mini_cart_item:last-of-type {
  margin-bottom: 0 !important;
}

.cart-panel .woocommerce-mini-cart-item.mini_cart_item:hover {
  border-color: rgba(244, 64, 168, 0.25) !important;
  box-shadow: 0 4px 14px rgba(244, 64, 168, 0.06) !important;
}

/* Thumbnail del producto */
.cart-panel .woocommerce-mini-cart-item__thumbnail {
  flex-shrink: 0 !important;
  width: 72px !important;
}

.cart-panel .woocommerce-mini-cart-item__thumbnail img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  border: 1px solid #F0E8EC !important;
  background: #FFFFFF !important;
  display: block !important;
}

/* Summary (nombre + precio + controles) */
.cart-panel .woocommerce-mini-cart-item__summary {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.cart-panel .woocommerce-mini-cart-item__box {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.cart-panel .woocommerce-mini-cart-item__data {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

/* Nombre del producto */
.cart-panel .woocommerce-mini-cart-item__name {
  display: block !important;
}

.cart-panel .woocommerce-mini-cart-item__name,
.cart-panel .woocommerce-mini-cart-item__name a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2E2926 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.cart-panel .woocommerce-mini-cart-item__name a:hover {
  color: #F440A8 !important;
}

/* Precios */
.cart-panel .woocommerce-mini-cart-item .price,
.cart-panel .woocommerce-mini-cart-item .woocommerce-Price-amount,
.cart-panel .woocommerce-mini-cart-item .amount {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #F440A8 !important;
}

.cart-panel .woocommerce-mini-cart-item del .amount {
  color: #B0A8AC !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  text-decoration: line-through !important;
}

.cart-panel .woocommerce-mini-cart-item ins {
  text-decoration: none !important;
}

/* Ocultar precio tachado en la tarjeta de la BiuryBox (solo mostrar el valor fijo normal) */
.cart-panel .woocommerce-mini-cart-item.asnp-wepb-cart-bundle del,
.cart-panel .woocommerce-mini-cart-item.asnp-wepb-cart-bundle .woocommerce-mini-cart-item__data del,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.asnp-wepb-cart-bundle .product-price del,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.asnp-wepb-cart-bundle .product-subtotal del {
  display: none !important;
}

/* 1. ASEGURAR CONTROLES VISIBLES Y ACTIVOS EN LA BIURYBOX PRINCIPAL (PARENT) */
.cart-panel .woocommerce-mini-cart-item.asnp-wepb-cart-bundle .woocommerce-mini-cart-item__qty .quantity,
.cart-panel .woocommerce-mini-cart-item.biury-bundle-parent-item .woocommerce-mini-cart-item__qty .quantity,
.cart-panel .woocommerce-mini-cart-item.biury-bundle-parent-item .quantity,
.cart-panel .woocommerce-mini-cart-item.asnp-wepb-cart-bundle .remove,
.cart-panel .woocommerce-mini-cart-item.biury-bundle-parent-item .remove,
.cart-panel .woocommerce-mini-cart-item.biury-bundle-parent-item .remove_from_cart_button,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.asnp-wepb-cart-bundle .product-quantity .quantity,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.biury-bundle-parent-item .product-quantity .quantity,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.asnp-wepb-cart-bundle td.product-remove .remove,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.biury-bundle-parent-item td.product-remove .remove {
  display: inline-flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* 2. OCULTAR CONTROLES (+ / -) Y QUITAR ÚNICAMENTE EN LOS ITEMS HIJOS DE LA BIURYBOX */
.cart-panel .woocommerce-mini-cart-item.biury-bundle-child-item .woocommerce-mini-cart-item__qty .quantity,
.cart-panel .woocommerce-mini-cart-item.biury-bundle-child-item .quantity,
.cart-panel .woocommerce-mini-cart-item.biury-bundle-child-item .remove,
.cart-panel .woocommerce-mini-cart-item.biury-bundle-child-item .remove_from_cart_button,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.biury-bundle-child-item .product-quantity .quantity,
.woocommerce-cart table.woocommerce-cart-form__contents .cart_item.biury-bundle-child-item td.product-remove .remove {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Badge indicador limpio "Incluido en tu BiuryBox" para los items hijos */
.biury-bundled-child-tag {
  display: inline-flex !important;
  align-items: center !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #F440A8 !important;
  background: #FFF0F6 !important;
  border: 1px solid #FCD8EB !important;
  border-radius: 6px !important;
  padding: 2px 7px !important;
  line-height: 1.3 !important;
  margin-top: 4px !important;
  white-space: nowrap !important;
}

/* Controles de cantidad (– 1 +) */
.cart-panel .woocommerce-mini-cart-item__qty {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 4px !important;
  flex-wrap: wrap !important;
}

.cart-panel .woocommerce-mini-cart-item__qty .quantity {
  display: inline-flex !important;
  align-items: center !important;
  background: #F5F0ED !important;
  border-radius: 8px !important;
  padding: 2px 4px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2E2926 !important;
  gap: 2px !important;
}

.cart-panel .woocommerce-mini-cart-item__qty .quantity button,
.cart-panel .woocommerce-mini-cart-item__qty .quantity .minus,
.cart-panel .woocommerce-mini-cart-item__qty .quantity .plus {
  width: 26px !important;
  height: 26px !important;
  border: none !important;
  background: transparent !important;
  color: #2E2926 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 6px !important;
  transition: background 0.15s !important;
  padding: 0 !important;
}

.cart-panel .woocommerce-mini-cart-item__qty .quantity button:hover,
.cart-panel .woocommerce-mini-cart-item__qty .quantity .minus:hover,
.cart-panel .woocommerce-mini-cart-item__qty .quantity .plus:hover {
  background: rgba(244, 64, 168, 0.1) !important;
  color: #F440A8 !important;
}

/* Enlace "Quitar" */
.cart-panel .woocommerce-mini-cart-item .remove,
.cart-panel .woocommerce-mini-cart-item .remove_from_cart_button {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #C4B8BC !important;
  text-decoration: underline !important;
  transition: color 0.2s !important;
  cursor: pointer !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.cart-panel .woocommerce-mini-cart-item .remove:hover,
.cart-panel .woocommerce-mini-cart-item .remove_from_cart_button:hover {
  color: #F440A8 !important;
}

/* --- 8. SECCIÓN "OTROS CLIENTES TAMBIÉN COMPRARON" --- */
.cart-panel .ecomus-mini-products-recommended {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAF4EE 100%) !important;
  border-radius: 14px !important;
  padding: 16px !important;
  border: 1px solid #F0E8EC !important;
  margin: 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Header: título arriba, dots se reposicionan abajo con order */
.cart-panel .ecomus-mini-products-recommended .products-recommended-header {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-bottom: 12px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  order: -1 !important;
}

.cart-panel .ecomus-mini-products-recommended .recommendation-heading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #F440A8 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
  width: 100% !important;
  text-align: center !important;
}

/* Pagination dots: mover al fondo del contenedor con order alto */
.cart-panel .ecomus-mini-products-recommended .products-recommended-header .swiper-pagination {
  order: 99 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 5px !important;
  width: 100% !important;
  position: static !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Mover el swiper pagination del header al final visual del contenedor */
.cart-panel .ecomus-mini-products-recommended .swiper {
  order: 1 !important;
}

.cart-panel .ecomus-mini-products-recommended .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  min-height: 10px !important;
  background-color: #E2D9DE !important;
  background: #E2D9DE !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  display: inline-block !important;
}

.cart-panel .ecomus-mini-products-recommended .swiper-pagination-bullet::before,
.cart-panel .ecomus-mini-products-recommended .swiper-pagination-bullet::after {
  display: none !important;
  content: none !important;
}

.cart-panel .ecomus-mini-products-recommended .swiper-pagination-bullet:hover {
  background-color: #EF7088 !important;
  background: #EF7088 !important;
  transform: scale(1.15) !important;
}

.cart-panel .ecomus-mini-products-recommended .swiper-pagination-bullet-active {
  background-color: #EF7088 !important;
  background: #EF7088 !important;
  opacity: 1 !important;
  width: 24px !important;
  height: 10px !important;
  min-width: 24px !important;
  min-height: 10px !important;
  border-radius: 5px !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(239, 112, 136, 0.4) !important;
}

/* Cada producto recomendado — mini-tarjeta */
.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px !important;
  margin-bottom: 8px !important;
  list-style: none !important;
  background: #FFFFFF !important;
  border: 1px solid #F0E8EC !important;
  border-radius: 10px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product:last-child {
  margin-bottom: 0 !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product:hover {
  border-color: rgba(239, 112, 136, 0.3) !important;
  box-shadow: 0 3px 10px rgba(244, 64, 168, 0.06) !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product__thumbnail {
  flex-shrink: 0 !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product__thumbnail img {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  border: 1px solid #F0E8EC !important;
  background: #FAF4EE !important;
  display: block !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product__summary {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product__title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #2E2926 !important;
  line-height: 1.35 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product__summary .price {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #F440A8 !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product__summary .price del {
  color: #C4B8BC !important;
  font-weight: 500 !important;
  font-size: 11px !important;
}

.cart-panel .ecomus-mini-products-recommended .woocommerce-loop-product__summary .price ins {
  text-decoration: none !important;
}

/* Botón Añadir al Carrito en recomendados — píldora rosa con icono */
.cart-panel .ecomus-mini-products-recommended .ecomus-featured-icons,
.cart-panel .ecomus-mini-products-recommended .add_to_cart_button,
.cart-panel .ecomus-mini-products-recommended .biury-add-to-cart-btn {
  width: auto !important;
  height: auto !important;
  min-width: unset !important;
  border-radius: 20px !important;
  background: #F440A8 !important;
  color: #FFFFFF !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 12px !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(244, 64, 168, 0.25) !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  gap: 4px !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.cart-panel .ecomus-mini-products-recommended .ecomus-featured-icons svg,
.cart-panel .ecomus-mini-products-recommended .add_to_cart_button svg,
.cart-panel .ecomus-mini-products-recommended .biury-add-to-cart-btn svg {
  width: 12px !important;
  height: 12px !important;
  stroke: #FFFFFF !important;
  fill: none !important;
}

.cart-panel .ecomus-mini-products-recommended .ecomus-featured-icons:hover,
.cart-panel .ecomus-mini-products-recommended .add_to_cart_button:hover,
.cart-panel .ecomus-mini-products-recommended .biury-add-to-cart-btn:hover {
  background: #EF7088 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(239, 112, 136, 0.35) !important;
}

/* Ocultar tooltip nativo en los botones de recomendados */
.cart-panel .ecomus-mini-products-recommended .em-tooltip::before,
.cart-panel .ecomus-mini-products-recommended .em-tooltip::after {
  display: none !important;
}

/* --- 9. ICONOS NOTA/CUPÓN/ENVÍO (mini-icons entre productos y footer) --- */
.cart-panel .ecomus-estimate-coupon {
  padding: 8px 18px !important;
  gap: 8px !important;
  border-top: 1px solid #F0E8EC !important;
  flex-shrink: 0 !important;
}

.cart-panel .ecomus-estimate-coupon__button {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: #FAF4EE !important;
  border: 1px solid #F0E8EC !important;
  color: #2E2926 !important;
}

.cart-panel .ecomus-estimate-coupon__button:hover {
  border-color: #F440A8 !important;
  color: #F440A8 !important;
}

/* --- 10. FOOTER DEL CARRITO (Subtotal + Botones) --- */
.cart-panel .widget_shopping_cart_footer {
  flex-shrink: 0 !important;
  background: #FFFFFF !important;
  border-top: 1px solid #F0E8EC !important;
  padding: 0 !important;
}

/* Subtotal */
.cart-panel .woocommerce-mini-cart__total.total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 22px 8px !important;
  margin: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  line-height: 1.4 !important;
}

.cart-panel .woocommerce-mini-cart__total .amount {
  color: #F440A8 !important;
  font-weight: 800 !important;
  font-size: 16px !important;
}

/* Badge "SAVE" */
.cart-panel .woocommerce-mini-cart__total .save-amount,
.cart-panel .woocommerce-mini-cart__total .cart-discount {
  font-size: 11px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #F440A8, #8B5CF6) !important;
  color: #FFFFFF !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  margin-left: 6px !important;
}

/* Botones de Acción (apilados verticalmente: Ver carrito arriba, Finalizar abajo) */
.cart-panel .woocommerce-mini-cart__buttons.buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 8px 22px 18px !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Botón "Ver carrito" (arriba, borde oscuro) */
.cart-panel .woocommerce-mini-cart__buttons a.button:first-child {
  background: #FFFFFF !important;
  color: #2E2926 !important;
  border: 1.5px solid #2E2926 !important;
  border-radius: 15px !important;
  padding: 12px 16px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  line-height: 1.4 !important;
  order: 1 !important;
}

.cart-panel .woocommerce-mini-cart__buttons a.button:first-child:hover {
  background: #EF7088 !important;
  color: #FFFFFF !important;
  border-color: #EF7088 !important;
}

/* Botón "Finalizar compra" (abajo, rosa sólido) */
.cart-panel .woocommerce-mini-cart__buttons a.button.checkout {
  background: #F440A8 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 15px !important;
  padding: 13px 16px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 3px 12px rgba(244, 64, 168, 0.25) !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  line-height: 1.4 !important;
  order: 2 !important;
}

.cart-panel .woocommerce-mini-cart__buttons a.button.checkout:hover {
  background: #EF7088 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 16px rgba(239, 112, 136, 0.4) !important;
}

/* --- 11. ESTADO VACÍO --- */
.cart-panel .woocommerce-mini-cart__empty-message {
  text-align: center !important;
  padding: 40px 30px !important;
}

.cart-panel .woocommerce-mini-cart__empty-message h4 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  margin-bottom: 8px !important;
}

.cart-panel .woocommerce-mini-cart__empty-message p {
  font-size: 13px !important;
  color: #9E8E93 !important;
  margin-bottom: 20px !important;
}

.cart-panel .woocommerce-mini-cart__empty-message .em-button {
  background: #F440A8 !important;
  color: #FFFFFF !important;
  border-radius: 15px !important;
  padding: 12px 24px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.cart-panel .woocommerce-mini-cart__empty-message .em-button:hover {
  background: #D8309A !important;
}

/* --- 12. RESPONSIVE (móvil) --- */
@media (max-width: 480px) {
  .cart-panel .panel__container {
    width: 100vw !important;
    max-width: 100vw !important;
  }
}

/* ==========================================================================
   🛒 PÁGINA CARRITO — Botón "Actualizar carrito" (Biury)
   Selector: button.em-button-update-cart[name="update_cart"]
   ========================================================================== */
.woocommerce-cart-form button[name="update_cart"],
button.em-button-update-cart {
  background: #FFFFFF !important;
  color: #2E2926 !important;
  border: 1.5px solid #2E2926 !important;
  border-radius: 15px !important;
  padding: 12px 28px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
  line-height: 1.4 !important;
}

.woocommerce-cart-form button[name="update_cart"]:hover,
button.em-button-update-cart:hover {
  background: #EF7088 !important;
  color: #FFFFFF !important;
  border-color: #EF7088 !important;
  box-shadow: 0 4px 14px rgba(239, 112, 136, 0.35) !important;
  transform: translateY(-1px) !important;
}

.woocommerce-cart-form button[name="update_cart"]:disabled,
button.em-button-update-cart:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   👤 PANEL LATERAL DE MI CUENTA (Account Offcanvas Drawer — Biury)
   ========================================================================== */

#account-panel.offscreen-panel {
  z-index: 99999 !important;
}

/* Backdrop: desenfoca la web detrás del panel, NUNCA el contenedor del perfil */
#account-panel .panel__backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 12, 14, 0.4) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 1 !important;
  cursor: pointer !important;
}

#account-panel .panel__container {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  height: 100% !important;
  z-index: 2 !important;
  width: 400px !important;
  max-width: 90vw !important;
  background: #FFFFFF !important;
  border-radius: 20px 0 0 20px !important;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.14) !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Header del panel */
.biury-account-header {
  background: linear-gradient(135deg, #FFF0F6 0%, #FAF4EE 100%);
  border-bottom: 1px solid #F0E8EC;
  padding: 24px 28px 20px 28px;
  position: relative;
}

.biury-account-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.2 !important;
}

/* Botón cerrar X */
.biury-account-header .biury-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F440A8 !important;
  color: #FFFFFF !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 3px 10px rgba(244, 64, 168, 0.3) !important;
  padding: 0 !important;
}

.biury-account-header .biury-close-btn:hover {
  background: #EF7088 !important;
  transform: rotate(90deg) scale(1.05) !important;
  box-shadow: 0 4px 14px rgba(239, 112, 136, 0.45) !important;
}

/* Perfil de usuario */
.biury-user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.biury-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.biury-avatar-img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  border: 2.5px solid #F440A8 !important;
  object-fit: cover !important;
  box-shadow: 0 4px 12px rgba(244, 64, 168, 0.2) !important;
}

.biury-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #10B981;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.biury-user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.biury-greeting {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F440A8;
}

.biury-user-fullname {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #2E2926;
  margin: 0;
  line-height: 1.25;
}

.biury-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #EF7088;
  background: #FFFFFF;
  border: 1px solid #F0C4DC;
  padding: 2px 8px;
  border-radius: 12px;
  margin-top: 4px;
  width: fit-content;
}

/* Contenido del panel / Menú */
.biury-account-content {
  flex: 1;
  padding: 20px 24px !important;
  overflow-y: auto !important;
}

.biury-account-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.biury-menu-item {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.biury-menu-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  background: #FAF8FA !important;
  border: 1px solid #F0E8EC !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  transition: all 0.22s ease !important;
  color: #2E2926 !important;
}

.biury-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E2926;
  transition: color 0.22s ease, transform 0.22s ease;
  flex-shrink: 0;
}

.biury-menu-label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  flex: 1;
  transition: color 0.22s ease;
}

.biury-menu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4B8BC;
  transition: all 0.22s ease;
}

/* Hover de cada item */
.biury-menu-link:hover {
  background: #FFF0F6 !important;
  border-color: #F440A8 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(244, 64, 168, 0.12) !important;
}

.biury-menu-link:hover .biury-menu-icon {
  color: #F440A8 !important;
  transform: scale(1.1);
}

.biury-menu-link:hover .biury-menu-label {
  color: #F440A8 !important;
}

.biury-menu-link:hover .biury-menu-arrow {
  color: #F440A8 !important;
  transform: translateX(4px);
}

/* Item de Cerrar Sesión (Logout) */
.biury-menu-item.is-logout .biury-menu-link {
  background: #FFF5F5 !important;
  border-color: #FEE2E2 !important;
  margin-top: 10px !important;
}

.biury-menu-item.is-logout .biury-menu-icon {
  color: #DC2626 !important;
}

.biury-menu-item.is-logout .biury-menu-label {
  color: #DC2626 !important;
}

.biury-menu-item.is-logout .biury-menu-link:hover {
  background: #DC2626 !important;
  border-color: #DC2626 !important;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3) !important;
}

.biury-menu-item.is-logout .biury-menu-link:hover .biury-menu-icon,
.biury-menu-item.is-logout .biury-menu-link:hover .biury-menu-arrow,
.biury-menu-item.is-logout .biury-menu-link:hover .biury-menu-label {
  color: #FFFFFF !important;
}

/* Footer del panel */
.biury-account-footer {
  padding: 18px 24px;
  border-top: 1px solid #F0E8EC;
  background: #FAF8FA;
}

.biury-footer-shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: #2E2926;
  color: #FFFFFF !important;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.22s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.biury-footer-shop-btn:hover {
  background: #F440A8;
  box-shadow: 0 4px 14px rgba(244, 64, 168, 0.35);
  transform: translateY(-1px);
}

/* ==========================================================================
   🛍️ TIENDA (/shop/) — Estilizado Premium Biury (Barra, Filtros y Desplegable)
   ========================================================================== */

/* ==========================================================================
   🛡️ FIX GLOBAL DE PANELES FLOTANTES OFFCANVAS (Filtros, Carrito, Perfil)
   ========================================================================== */

/* ==========================================================================
   🛡️ FIX GLOBAL DE PANELES FLOTANTES OFFCANVAS (Filtros, Carrito, Perfil)
   ========================================================================== */

/* 1. Reset base y capas (z-index) para TODOS los paneles flotantes */
.offscreen-panel,
#filter-sidebar-panel,
#cart-panel,
#account-panel,
#mobile-shop-panel {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 999999 !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Oscurecimiento de fondo (Backdrop) posicionado al fondo */
.offscreen-panel .panel__backdrop,
.panel__backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 1 !important;
  background: rgba(0, 0, 0, 0.45) !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Contenedor base de cualquier panel con esquinas redondeadas */
.offscreen-panel .panel__container {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  width: 380px !important;
  max-width: 88vw !important;
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  opacity: 1 !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: auto !important;
  overflow: hidden !important;
}

/* 2. PANELES LATERALES IZQUIERDOS (Filtros, Menú Móvil) — Bordes redondeados derechos */
#filter-sidebar-panel .panel__container,
.filter-sidebar-panel .panel__container,
#mobile-shop-panel .panel__container,
.offscreen-panel--side-left .panel__container {
  left: 0 !important;
  right: auto !important;
  border-radius: 0 20px 20px 0 !important;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.14) !important;
  border-right: 1.5px solid #F0E8EC !important;
}

/* 3. PANELES LATERALES DERECHOS (Carrito, Perfil / Cuenta) — Bordes redondeados izquierdos */
#cart-panel .panel__container,
.cart-panel .panel__container,
#account-panel .panel__container,
.account-panel .panel__container,
.offscreen-panel--side-right .panel__container {
  right: 0 !important;
  left: auto !important;
  border-radius: 20px 0 0 20px !important;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.14) !important;
  border-left: 1.5px solid #F0E8EC !important;
}

/* 4. Cabecera de los Paneles Flotantes (Título e icono juntos a la izquierda) */
#filter-sidebar-panel .panel__header,
.filter-sidebar-panel .panel__header,
#cart-panel .panel__header,
#account-panel .panel__header,
.offscreen-panel .panel__header {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  padding: 20px 65px 20px 24px !important;
  background: linear-gradient(135deg, #FFF0F6 0%, #FAF4EE 100%) !important;
  border-bottom: 1.5px solid #F0E8EC !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 !important;
  position: relative !important;
  flex-shrink: 0 !important;
  text-transform: uppercase !important;
}

#filter-sidebar-panel .panel__header svg,
.filter-sidebar-panel .panel__header svg {
  width: 18px !important;
  height: 18px !important;
  fill: #F440A8 !important;
  color: #F440A8 !important;
}

/* Botón de cerrar (X) integrado arriba a la derecha en la cabecera de TODOS los paneles flotantes */
#filter-sidebar-panel .panel__button-close,
.filter-sidebar-panel .panel__button-close,
#cart-panel .panel__button-close,
#account-panel .panel__button-close,
.offscreen-panel .panel__button-close,
.panel__button-close {
  position: absolute !important;
  right: 20px !important;
  top: 18px !important;
  transform: none !important;
  width: 34px !important;
  height: 34px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #F440A8 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #F440A8 !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(244, 64, 168, 0.15) !important;
  pointer-events: auto !important;
}

#filter-sidebar-panel .panel__button-close:hover,
.filter-sidebar-panel .panel__button-close:hover,
#cart-panel .panel__button-close:hover,
#account-panel .panel__button-close:hover,
.offscreen-panel .panel__button-close:hover,
.panel__button-close:hover {
  background: #F440A8 !important;
  color: #FFFFFF !important;
  transform: scale(1.08) !important;
}

/* 3. Área de Contenido Desplazable (Scrollable Content 100% fluido) */
#filter-sidebar-panel .panel__content,
.filter-sidebar-panel .panel__content {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 28px 28px 40px 28px !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box !important;
  pointer-events: auto !important;
  background: #FFFFFF !important;
}

/* Barra de desplazamiento delgada personalizada */
#filter-sidebar-panel .panel__content::-webkit-scrollbar,
.filter-sidebar-panel .panel__content::-webkit-scrollbar {
  width: 5px;
}

#filter-sidebar-panel .panel__content::-webkit-scrollbar-track,
.filter-sidebar-panel .panel__content::-webkit-scrollbar-track {
  background: #FAF8FA;
}

#filter-sidebar-panel .panel__content::-webkit-scrollbar-thumb,
.filter-sidebar-panel .panel__content::-webkit-scrollbar-thumb {
  background: #F440A8;
  border-radius: 4px;
}

/* 4. Estilizado de Bloques/Widgets de Filtros */
.filter-sidebar-panel .widget,
#filter-sidebar-panel .widget {
  margin-bottom: 30px !important;
  padding-bottom: 24px !important;
  border-bottom: 1.5px dashed #F0E8EC !important;
}

.filter-sidebar-panel .widget:last-child,
#filter-sidebar-panel .widget:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Títulos de Widgets (Categorías, Disponibilidad, Precio) */
.filter-sidebar-panel .widget-title,
.filter-sidebar-panel .widgettitle,
#filter-sidebar-panel .widget-title,
.filter-sidebar-panel h2,
.filter-sidebar-panel h3,
.filter-sidebar-panel h4,
.filter-sidebar-panel h5,
.filter-sidebar-panel h6 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.2px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Listas de categorías y enlaces */
.filter-sidebar-panel ul,
#filter-sidebar-panel ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.filter-sidebar-panel ul li,
#filter-sidebar-panel ul li {
  margin-bottom: 10px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
}

.filter-sidebar-panel ul li a,
#filter-sidebar-panel ul li a {
  color: #2E2926 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
  transition: all 0.18s ease !important;
}

.filter-sidebar-panel ul li a:hover,
#filter-sidebar-panel ul li a:hover {
  background: #FFF0F6 !important;
  color: #F440A8 !important;
  transform: translateX(3px) !important;
}

/* Checkboxes de Disponibilidad / Filtros */
.filter-sidebar-panel input[type="checkbox"],
#filter-sidebar-panel input[type="checkbox"] {
  accent-color: #F440A8 !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  margin-right: 10px !important;
  vertical-align: middle !important;
}

/* Slider de Precio (WooCommerce Price Filter) */
.filter-sidebar-panel .price_slider_wrapper .ui-slider-range,
#filter-sidebar-panel .price_slider_wrapper .ui-slider-range {
  background: linear-gradient(90deg, #F440A8, #EF7088) !important;
}

.filter-sidebar-panel .price_slider_wrapper .ui-slider-handle,
#filter-sidebar-panel .price_slider_wrapper .ui-slider-handle {
  background: #F440A8 !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 2px 6px rgba(244, 64, 168, 0.4) !important;
}

.filter-sidebar-panel .price_label,
#filter-sidebar-panel .price_label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  margin-top: 14px !important;
}

/* 5. Adaptación Responsiva Móvil (< 480px) */
@media (max-width: 480px) {

  #filter-sidebar-panel .panel__container,
  .filter-sidebar-panel .panel__container {
    width: 88vw !important;
  }

  #filter-sidebar-panel .panel__header,
  .filter-sidebar-panel .panel__header {
    padding: 18px 20px !important;
    font-size: 15px !important;
  }

  #filter-sidebar-panel .panel__content,
  .filter-sidebar-panel .panel__content {
    padding: 20px 20px 30px 20px !important;
  }
}

/* 2. Barra de herramientas de la tienda (Toolbar de catálogo) */
.catalog-toolbar,
.tf-catalog-toolbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #FAF8FA !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 20px !important;
  padding: 12px 24px !important;
  margin-bottom: 32px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.catalog-toolbar__left,
.tf-catalog-toolbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Botón "Filtrar" estilo Biury (Redondeado 15px coincidente con Ordenar) */
.catalog-toolbar__filter-button,
.catalog-toolbar__filter-button.em-button,
a.catalog-toolbar__filter-button,
button.catalog-toolbar__filter-button,
.tf-btn-filter,
.btn-filter,
.shop-filter-btn,
.tf-btn-filter-canvas,
.tf-dropdown-sort {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  border: 1.5px solid #E5DCE1 !important;
  border-radius: 15px !important;
  padding: 10px 22px !important;
  min-height: 44px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
}

.catalog-toolbar__filter-button:hover,
.catalog-toolbar__filter-button:focus,
.catalog-toolbar__filter-button:active,
a.catalog-toolbar__filter-button:hover,
button.catalog-toolbar__filter-button:hover,
.tf-btn-filter:hover,
.btn-filter:hover,
.shop-filter-btn:hover {
  background: #FFFFFF !important;
  border-color: #F440A8 !important;
  color: #F440A8 !important;
  box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.15) !important;
  transform: translateY(-1px) !important;
}

.catalog-toolbar__filter-button svg,
.catalog-toolbar__filter-button .ecomus-svg-icon,
.tf-btn-filter svg,
.btn-filter svg {
  fill: #F440A8 !important;
  color: #F440A8 !important;
  width: 16px !important;
  height: 16px !important;
}

/* 3. Ajuste del contenedor derecho y desplegable de ordenación */
.catalog-toolbar__right,
.tf-catalog-sort,
.tf-catalog-toolbar-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  margin-left: auto !important;
  padding-right: 0 !important;
}

.woocommerce-ordering {
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

/* Ocultar el select nativo de forma limpia cuando el desplegable Biury está activo */
.woocommerce-ordering select.orderby.biury-hidden-select {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
}

/* Desplegable de Ordenación Biury Flotante (Garantizado 1 sola línea) */
.biury-custom-sort {
  position: relative !important;
  display: inline-block !important;
  font-family: 'Montserrat', sans-serif !important;
  white-space: nowrap !important;
}

.biury-sort-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E5DCE1 !important;
  border-radius: 15px !important;
  padding: 10px 20px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  cursor: pointer !important;
  min-height: 44px !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.22s ease !important;
  box-sizing: border-box !important;
}

.biury-sort-selected-text {
  white-space: nowrap !important;
  display: inline-block !important;
}

.biury-sort-trigger:hover,
.biury-custom-sort.is-open .biury-sort-trigger {
  border-color: #F440A8 !important;
  box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.15) !important;
  color: #F440A8 !important;
}

.biury-sort-arrow {
  transition: transform 0.22s ease !important;
}

.biury-custom-sort.is-open .biury-sort-arrow {
  transform: rotate(180deg) !important;
}

/* Menú flotante de opciones cuando se despliega */
.biury-sort-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  min-width: 260px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 16px !important;
  padding: 8px !important;
  margin: 0 !important;
  list-style: none !important;
  box-shadow: 0 12px 36px rgba(244, 64, 168, 0.18) !important;
  z-index: 99999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none !important;
}

.biury-custom-sort.is-open .biury-sort-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.biury-sort-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2E2926 !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
}

.biury-sort-item:hover {
  background: #FFF0F6 !important;
  color: #F440A8 !important;
  transform: translateX(2px) !important;
}

.biury-sort-item.is-selected {
  background: #FFF0F6 !important;
  color: #F440A8 !important;
  font-weight: 800 !important;
}

/* ==========================================================================
   📱 ADAPTACIÓN RESPONSIVE DE LA BARRA DE FILTRAR Y ORDENAR (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 768px) {
  .catalog-toolbar,
  .tf-catalog-toolbar,
  .tf-shop-control {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 10px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .catalog-toolbar__left,
  .tf-catalog-toolbar-left {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  .catalog-toolbar__right,
  .tf-catalog-sort,
  .tf-catalog-toolbar-right {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    margin-left: 0 !important;
    gap: 0 !important;
    justify-content: flex-end !important;
  }

  .woocommerce-ordering {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  /* Botón Filtrar en móvil */
  .catalog-toolbar__filter-button,
  .catalog-toolbar__filter-button.em-button,
  a.catalog-toolbar__filter-button,
  button.catalog-toolbar__filter-button,
  .tf-btn-filter,
  .btn-filter,
  .shop-filter-btn {
    width: 100% !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 6px 10px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    border-radius: 12px !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }

  .catalog-toolbar__filter-button svg,
  .tf-btn-filter svg,
  .btn-filter svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
  }

  /* Desplegable Ordenar en móvil */
  .biury-custom-sort {
    width: 100% !important;
    display: block !important;
  }

  .biury-sort-trigger {
    width: 100% !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 6px 10px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    justify-content: space-between !important;
  }

  .biury-sort-selected-text {
    flex: 1 1 auto !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    text-align: left !important;
    font-size: 11px !important;
    max-width: calc(100% - 16px) !important;
  }

  .biury-sort-arrow {
    flex-shrink: 0 !important;
    width: 10px !important;
    height: 10px !important;
  }

  /* Menú desplegable en móvil */
  .biury-sort-menu {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    right: 0 !important;
    left: auto !important;
    min-width: 210px !important;
    max-width: calc(100vw - 28px) !important;
    border-radius: 14px !important;
    padding: 6px !important;
    box-shadow: 0 10px 30px rgba(244, 64, 168, 0.22) !important;
  }

  .biury-sort-item {
    padding: 8px 10px !important;
    font-size: 11.5px !important;
    border-radius: 8px !important;
  }

  /* Ocultar selectores de cuadrícula redundantes en móvil para mantener la barra limpia */
  .catalog-toolbar .grid-view-type,
  .catalog-toolbar .tf-control-layout,
  .catalog-toolbar .product-count,
  .tf-catalog-toolbar .tf-control-layout,
  .tf-catalog-toolbar .product-count {
    display: none !important;
  }
}

/* ==========================================================================
   📄 PAGINACIÓN DE LA TIENDA (BIURY PREMIUM PAGINATOR)
   ========================================================================== */

.woocommerce-pagination,
.tf-pagination,
.nav-links {
  margin-top: 50px !important;
  margin-bottom: 40px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.woocommerce-pagination ul.page-numbers,
.tf-pagination ul.page-numbers,
.nav-links {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  border: none !important;
}

.woocommerce-pagination ul.page-numbers li,
.tf-pagination ul.page-numbers li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.woocommerce-pagination .page-numbers,
.tf-pagination .page-numbers,
.nav-links .page-numbers {
  min-width: 44px !important;
  height: 44px !important;
  padding: 0 14px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  color: #2E2926 !important;
  text-decoration: none !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
  box-sizing: border-box !important;
}

.woocommerce-pagination .page-numbers:hover:not(.current):not(.dots),
.tf-pagination .page-numbers:hover:not(.current):not(.dots),
.nav-links .page-numbers:hover:not(.current):not(.dots) {
  background: #FFF0F6 !important;
  border-color: #F440A8 !important;
  color: #F440A8 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(244, 64, 168, 0.18) !important;
}

/* Página activa con gradiente rosa Biury */
.woocommerce-pagination .page-numbers.current,
.tf-pagination .page-numbers.current,
.nav-links .page-numbers.current {
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  border-color: #F440A8 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(244, 64, 168, 0.35) !important;
  font-weight: 800 !important;
}

/* Puntos de suspensión (...) */
.woocommerce-pagination .page-numbers.dots,
.tf-pagination .page-numbers.dots,
.nav-links .page-numbers.dots {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #777777 !important;
  min-width: 24px !important;
}

box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.15) !important;
outline: none !important;
}

/* 4. Estilizado suave de tarjetas de producto en la tienda */
.products .product,
.products .card-product {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.products .product:hover,
.products .card-product:hover {
  transform: translateY(-4px) !important;
}

/* ==========================================================================
   👤 PÁGINA MI CUENTA (/my-account/) — Biury Modern Theme Layout
   ========================================================================== */

/* ==========================================================================
   👤 PÁGINA MI CUENTA (/my-account/) — Biury Modern Theme Layout
   ========================================================================== */

.biury-myaccount-wrapper {
  max-width: 1200px;
  margin: 20px auto 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: #2E2926;
}

/* 1. Hero Header de Perfil */
.biury-myaccount-hero {
  background: linear-gradient(135deg, #FFF0F6 0%, #FAF4EE 60%, #FFFFFF 100%);
  border: 1.5px solid #F0E8EC;
  border-radius: 24px;
  padding: 36px 44px !important;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 24px rgba(244, 64, 168, 0.06);
  position: relative;
  overflow: hidden;
  box-sizing: border-box !important;
}

.biury-myaccount-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #F440A8, #EF7088);
  border-radius: 6px 0 0 6px;
}

.biury-myaccount-hero__content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.biury-myaccount-hero .biury-avatar-img {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  border: 3px solid #F440A8 !important;
  object-fit: cover !important;
  box-shadow: 0 4px 16px rgba(244, 64, 168, 0.22) !important;
}

.biury-myaccount-hero .biury-greeting {
  font-size: 13px;
  font-weight: 700;
  color: #F440A8;
}

.biury-myaccount-hero .biury-user-fullname {
  font-size: 24px;
  font-weight: 800;
  color: #2E2926;
  margin: 4px 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.biury-user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.biury-user-email {
  font-size: 12px;
  color: #777;
  font-weight: 500;
}

.biury-logout-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #FEE2E2;
  color: #DC2626 !important;
  padding: 12px 24px !important;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.05);
}

.biury-logout-hero-btn:hover {
  background: #DC2626;
  color: #FFFFFF !important;
  border-color: #DC2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

/* Reset absoluto de bordes, fondos y paddings nativos del tema Ecomus */
.woocommerce-account .woocommerce:not(.offscreen-panel):not(#cart-panel):not(#account-panel) {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Asegurar que los paneles flotantes laterales (Carrito, Cuenta, etc.) ocupen toda la pantalla */
#cart-panel,
#account-panel,
.offscreen-panel {
  max-width: none !important;
  margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-navigation {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}

.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-MyAccount-content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}

.woocommerce-account .woocommerce-MyAccount-content>*,
.woocommerce-MyAccount-content>* {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 2. Grid principal (Navegación izquierda + Contenido derecha) */
.biury-myaccount-grid {
  display: grid !important;
  grid-template-columns: 290px 1fr !important;
  gap: 36px !important;
  align-items: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 900px) {
  .biury-myaccount-grid {
    grid-template-columns: 1fr !important;
  }
}

.biury-myaccount-sidebar-col {
  width: 100% !important;
}

/* Navegación lateral en /my-account/ */
.biury-myaccount-nav .biury-account-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  width: 100% !important;
}

.biury-myaccount-nav .biury-menu-item {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.biury-myaccount-nav .biury-menu-link {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  padding: 16px 22px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 16px !important;
  text-decoration: none !important;
  transition: all 0.22s ease !important;
  color: #2E2926 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.biury-myaccount-nav .biury-menu-label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  flex: 1 !important;
  white-space: nowrap !important;
}

.biury-myaccount-nav .biury-menu-item.is-active .biury-menu-link {
  background: #FFF0F6 !important;
  border-color: #F440A8 !important;
  color: #F440A8 !important;
  box-shadow: 0 4px 16px rgba(244, 64, 168, 0.15) !important;
}

.biury-myaccount-nav .biury-menu-item.is-active .biury-menu-icon,
.biury-myaccount-nav .biury-menu-item.is-active .biury-menu-label,
.biury-myaccount-nav .biury-menu-item.is-active .biury-menu-arrow {
  color: #F440A8 !important;
}

.biury-myaccount-nav .biury-menu-link:hover {
  background: #FFF0F6 !important;
  border-color: #F440A8 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(244, 64, 168, 0.12) !important;
}

.biury-myaccount-nav .biury-menu-link:hover .biury-menu-icon,
.biury-myaccount-nav .biury-menu-link:hover .biury-menu-label {
  color: #F440A8 !important;
}

.biury-myaccount-nav .biury-menu-link:hover .biury-menu-arrow {
  color: #F440A8 !important;
  transform: translateX(4px);
}

/* 3. Contenedor de contenido activo con padding holgado y limpio */
.biury-myaccount-content-card {
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 24px !important;
  padding: 44px 48px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  margin: 0 !important;
}

@media (max-width: 600px) {
  .biury-myaccount-content-card {
    padding: 28px 24px !important;
  }
}

/* Dashboard de bienvenida */
.biury-dashboard-welcome {
  margin: 0 !important;
  padding: 0 !important;
}

.biury-dashboard-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
  line-height: 1.35 !important;
}

.biury-dashboard-intro {
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.65 !important;
  margin: 0 0 32px 0 !important;
  padding: 0 !important;
}

/* Tarjetas de acceso rápido en Dashboard con padding holgado */
.biury-dashboard-cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 20px !important;
  margin-top: 24px !important;
}

.biury-dash-card {
  background: #FAF8FA !important;
  border: 1px solid #F0E8EC !important;
  border-radius: 20px !important;
  padding: 26px 24px !important;
  min-height: 110px !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.biury-dash-card:hover {
  background: #FFFFFF !important;
  border-color: #F440A8 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(244, 64, 168, 0.12) !important;
}

.biury-dash-card__icon {
  font-size: 30px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.biury-dash-card__info {
  flex: 1 !important;
}

.biury-dash-card__info h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
}

.biury-dash-card__info p {
  font-size: 11px !important;
  color: #777 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.biury-dash-card__arrow {
  margin-left: auto !important;
  color: #C4B8BC !important;
  font-size: 15px !important;
  transition: all 0.22s ease !important;
  flex-shrink: 0 !important;
}

.biury-dash-card:hover .biury-dash-card__arrow {
  color: #F440A8;
  transform: translateX(4px);
}

/* ==========================================================================
   📢 NOTIFICACIONES Y ALERTAS EN MI CUENTA (Mensajes WooCommerce)
   ========================================================================== */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-NoticeGroup,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-MyAccount-content .woocommerce-NoticeGroup,
div.woocommerce-info,
div.woocommerce-message,
.woocommerce-info {
  background: linear-gradient(135deg, #FFF0F6 0%, #FAF4EE 100%) !important;
  background-color: #FFF0F6 !important;
  border: 1.5px solid #F0E8EC !important;
  border-left: 5px solid #F440A8 !important;
  border-radius: 20px !important;
  padding: 20px 26px !important;
  margin-bottom: 32px !important;
  color: #2E2926 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  box-shadow: 0 4px 20px rgba(244, 64, 168, 0.06) !important;
  list-style: none !important;
}

@media (max-width: 650px) {

  .woocommerce-account .woocommerce-info,
  .woocommerce-MyAccount-content .woocommerce-info {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-message::before,
.woocommerce-MyAccount-content .woocommerce-info::before,
.woocommerce-MyAccount-content .woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-message::before {
  content: '' !important;
  display: none !important;
}

.woocommerce-account .woocommerce-message a,
.woocommerce-account .woocommerce-info a,
.woocommerce-account .woocommerce-message a.button,
.woocommerce-account .woocommerce-info a.button,
.woocommerce-account .woocommerce-info a.woocommerce-Button,
.woocommerce-MyAccount-content .woocommerce-message a,
.woocommerce-MyAccount-content .woocommerce-info a,
.woocommerce-MyAccount-content .woocommerce-message a.button,
.woocommerce-MyAccount-content .woocommerce-info a.button,
div.woocommerce-info a,
div.woocommerce-message a,
.woocommerce-info a {
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  color: #FFFFFF !important;
  padding: 11px 24px !important;
  border-radius: 14px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 4px 14px rgba(244, 64, 168, 0.3) !important;
  margin-left: auto !important;
  white-space: nowrap !important;
  border: none !important;
  flex-shrink: 0 !important;
}

.woocommerce-account .woocommerce-message a:hover,
.woocommerce-account .woocommerce-info a:hover,
.woocommerce-MyAccount-content .woocommerce-message a:hover,
.woocommerce-MyAccount-content .woocommerce-info a:hover,
div.woocommerce-info a:hover,
div.woocommerce-message a:hover,
.woocommerce-info a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(239, 112, 136, 0.45) !important;
  color: #FFFFFF !important;
}

/* Tarjeta de Estado Vacío para Mis Pedidos */
.biury-empty-orders-card {
  background: #FAF8FA !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 24px !important;
  padding: 56px 40px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  margin-top: 10px !important;
}

.biury-empty-orders__icon-box {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  background: #FFF0F6 !important;
  border: 1.5px solid #F0E8EC !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 16px rgba(244, 64, 168, 0.12) !important;
}

.biury-empty-orders__title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.2px !important;
  text-align: center !important;
}

.biury-empty-orders__subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  color: #666 !important;
  max-width: 440px !important;
  margin: 0 0 28px 0 !important;
  line-height: 1.6 !important;
  text-align: center !important;
}

.biury-empty-orders__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  color: #FFFFFF !important;
  padding: 14px 32px !important;
  border-radius: 14px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 16px rgba(244, 64, 168, 0.3) !important;
}

.biury-empty-orders__btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 112, 136, 0.45) !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   📍 PÁGINA MIS DIRECCIONES (/my-account/edit-address/)
   ========================================================================== */
.biury-addresses-wrapper {
  margin: 0;
  padding: 0;
}

.biury-addresses-intro {
  font-size: 13px !important;
  color: #666 !important;
  margin-bottom: 28px !important;
  line-height: 1.6 !important;
}

.biury-addresses-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
}

.biury-address-card {
  background: #FAF8FA !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 20px !important;
  padding: 26px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.biury-address-card:hover {
  background: #FFFFFF !important;
  border-color: #F440A8 !important;
  box-shadow: 0 6px 20px rgba(244, 64, 168, 0.1) !important;
}

/* Formulario de edición de dirección individual */
.biury-edit-address-wrapper {
  margin: 0;
  padding: 0;
}

.biury-edit-address-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 28px !important;
  padding-bottom: 16px !important;
  border-bottom: 1.5px solid #F0E8EC !important;
}

.biury-edit-address-icon {
  font-size: 26px !important;
  line-height: 1 !important;
}

.biury-edit-address-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.biury-address-form .woocommerce-address-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 700px) {
  .biury-address-form .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }
}

.biury-address-form .form-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: both !important;
}

/* Campos que deben abarcar el 100% del ancho (Fila completa) */
.biury-address-form .form-row-wide,
.biury-address-form #billing_company_field,
.biury-address-form #shipping_company_field,
.biury-address-form #billing_country_field,
.biury-address-form #shipping_country_field,
.biury-address-form #billing_address_1_field,
.biury-address-form #shipping_address_1_field,
.biury-address-form #billing_address_2_field,
.biury-address-form #shipping_address_2_field,
.biury-address-form #billing_state_field,
.biury-address-form #shipping_state_field {
  grid-column: 1 / -1 !important;
}

.biury-address-form .form-row label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  margin-bottom: 6px !important;
  display: block !important;
  width: 100% !important;
  float: none !important;
}

.biury-address-form .input-text,
.biury-address-form input[type="text"],
.biury-address-form input[type="email"],
.biury-address-form input[type="tel"],
.biury-address-form select,
.biury-address-form .select2-container--default .select2-selection--single {
  width: 100% !important;
  box-sizing: border-box !important;
  border: 1.5px solid #E5DCE1 !important;
  border-radius: 14px !important;
  padding: 12px 18px !important;
  min-height: 48px !important;
  font-size: 13.5px !important;
  font-family: 'Montserrat', sans-serif !important;
  color: #2E2926 !important;
  background: #FFFFFF !important;
  transition: all 0.2s ease !important;
  float: none !important;
}

/* Ocultar el <select> nativo cuando Select2 o selectWoo esta activo */
.biury-address-form select.select2-hidden-accessible {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
}

.biury-address-form .select2-container {
  width: 100% !important;
}

.biury-address-form input:focus,
.biury-address-form select:focus,
.biury-address-form .select2-container--open .select2-selection--single {
  border-color: #F440A8 !important;
  box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.15) !important;
  outline: none !important;
}

.biury-address-card__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1.5px solid #F0E8EC !important;
  padding-bottom: 14px !important;
  margin-bottom: 16px !important;
}

.biury-address-card__title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.biury-address-icon {
  font-size: 20px !important;
}

.biury-address-card__title h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 !important;
}

.biury-address-edit-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #F440A8 !important;
  color: #F440A8 !important;
  padding: 7px 16px !important;
  border-radius: 12px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.biury-address-edit-btn:hover {
  background: #F440A8 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(244, 64, 168, 0.25) !important;
}

.biury-address-card__body address {
  font-style: normal !important;
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.65 !important;
}

.biury-no-address-text {
  font-size: 12.5px !important;
  color: #888 !important;
  font-style: italic !important;
  margin: 0 !important;
}

/* ==========================================================================
   👤 PÁGINA DETALLES DE LA CUENTA (/my-account/edit-account/)
   ========================================================================== */
.biury-edit-account-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.biury-form-grid-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

@media (max-width: 650px) {
  .biury-form-grid-2 {
    grid-template-columns: 1fr !important;
  }
}

.biury-edit-account-form .form-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.biury-edit-account-form .form-row label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  margin-bottom: 6px !important;
}

.biury-edit-account-form .input-text,
.biury-edit-account-form input[type="text"],
.biury-edit-account-form input[type="email"],
.biury-edit-account-form input[type="password"] {
  width: 100% !important;
  box-sizing: border-box !important;
  border: 1.5px solid #E5DCE1 !important;
  border-radius: 14px !important;
  padding: 13px 18px !important;
  font-size: 13.5px !important;
  font-family: 'Montserrat', sans-serif !important;
  color: #2E2926 !important;
  background: #FFFFFF !important;
  transition: all 0.2s ease !important;
}

.biury-edit-account-form input:focus {
  border-color: #F440A8 !important;
  box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.15) !important;
  outline: none !important;
}

.biury-field-help {
  display: block !important;
  font-size: 11.5px !important;
  color: #777 !important;
  margin-top: 6px !important;
  font-style: italic !important;
}

.biury-password-section-card {
  background: #FAF8FA !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 20px !important;
  padding: 28px 26px !important;
  margin: 12px 0 8px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.biury-password-section-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 4px 0 !important;
}

.biury-edit-account-form fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.biury-form-actions {
  margin-top: 10px !important;
}

.biury-save-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 14px 34px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 16px rgba(244, 64, 168, 0.3) !important;
}

.biury-save-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 112, 136, 0.45) !important;
}

/* ==========================================================================
   🛍️ PÁGINA MIS PEDIDOS (/my-account/orders/) — Tablas de WooCommerce
   ========================================================================== */
.woocommerce-orders-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  margin-top: 12px !important;
}

.woocommerce-orders-table th {
  background: #FFF0F6 !important;
  color: #F440A8 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 14px 20px !important;
  border-bottom: 1.5px solid #F0E8EC !important;
}

.woocommerce-orders-table td {
  padding: 16px 20px !important;
  font-size: 13px !important;
  color: #2E2926 !important;
  border-bottom: 1px solid #F0E8EC !important;
  vertical-align: middle !important;
}

.woocommerce-orders-table tr:last-child td {
  border-bottom: none !important;
}

.woocommerce-orders-table .button {
  background: #F440A8 !important;
  color: #FFFFFF !important;
  border-radius: 10px !important;
  padding: 8px 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(244, 64, 168, 0.2) !important;
}

.woocommerce-orders-table .button:hover {
  background: #EF7088 !important;
  transform: translateY(-1px) !important;
}

/* Ocultar pestaña Descargas */
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--downloads,
.biury-menu-item.account-link--downloads,
.biury-menu-item.woocommerce-MyAccount-navigation-link--downloads {
  display: none !important;
}

/* ==========================================================================
   🚫 DESACTIVACIÓN TOTAL DE CINTAS / CAUTION TAPES EN MOBILE (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {

  .caution-tape-background,
  .caution-tape-animated {
    background-image: none !important;
  }

  .biury-tape-container::before,
  .biury-tape-container::after,
  .biury-tape-container[class*="biury-tape-"]::before,
  .biury-tape-container[class*="biury-tape-"]::after,
  .biury-tape-container[class*="-top-"]::before,
  .biury-tape-container[class*="-bottom-"]::after,
  [class*="biury-tape-"]::before,
  [class*="biury-tape-"]::after,
  [class*="caution-tape-"]::before,
  [class*="caution-tape-"]::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    animation: none !important;
  }

  /* Ocultar marca de agua del buscador en móviles para mayor espacio a productos */
  .biury-search-footer-bar,
  .biury-search-watermark {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }
}


@media (max-width: 1499px) and (min-width: 1150px) {
  .ecomus-image-box-carousel__view-all-outsite {
    background-color: #ffffff00 !important;
  }
}

/* =============================================================================
   🌸 BIURY — CÁPSULA UNIFICADA DE VARIACIÓN Y TONOS (CARRITO & CHECKOUT)
   ============================================================================= */

/* Contenedor unificado de variación (dl.variation) */
table.shop_table dl.variation,
.woocommerce-cart-form dl.variation,
.widget_shopping_cart dl.variation,
.tf-mini-cart dl.variation,
.cart_item dl.variation,
.woocommerce-table--order-details dl.variation,
.woocommerce-checkout-review-order-table dl.variation {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px !important;
  background: #FFF0F6 !important;
  border: 1px solid rgba(244, 64, 168, 0.25) !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  margin: 6px 0 4px 0 !important;
  box-sizing: border-box !important;
  clear: both !important;
}

/* Etiqueta / Clave: "Tono Look (Try-On):" */
table.shop_table dl.variation dt,
.woocommerce-cart-form dl.variation dt,
.widget_shopping_cart dl.variation dt,
.tf-mini-cart dl.variation dt,
.cart_item dl.variation dt,
.woocommerce-table--order-details dl.variation dt,
.woocommerce-checkout-review-order-table dl.variation dt {
  float: none !important;
  clear: none !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #F440A8 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

/* Valor / Nombre del Tono + Círculo de color */
table.shop_table dl.variation dd,
.woocommerce-cart-form dl.variation dd,
.widget_shopping_cart dl.variation dd,
.tf-mini-cart dl.variation dd,
.cart_item dl.variation dd,
.woocommerce-table--order-details dl.variation dd,
.woocommerce-checkout-review-order-table dl.variation dd {
  float: none !important;
  clear: none !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #2E2926 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

/* Párrafo interno y círculo cromático */
table.shop_table dl.variation dd p,
.woocommerce-cart-form dl.variation dd p,
.widget_shopping_cart dl.variation dd p,
.tf-mini-cart dl.variation dd p,
.cart_item dl.variation dd p,
.woocommerce-table--order-details dl.variation dd p,
.woocommerce-checkout-review-order-table dl.variation dd p {
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  line-height: 1.2 !important;
}

/* Círculo cromático */
table.shop_table dl.variation dd span,
.woocommerce-cart-form dl.variation dd span,
.widget_shopping_cart dl.variation dd span,
.cart_item dl.variation dd span {
  display: inline-block !important;
  vertical-align: middle !important;
}

/* =============================================================================
   LOGO DEL FOOTER — AURA / RESPLANDOR NEÓN CONFIGURABLE CON VARIABLES CSS
   Variables admitidas (en :root, contenedor o custom CSS del widget):
     --logo-aura-range / --aura-range: Rango/difuminado en px (Ej: 3px, 5px, 8px, 12px)
     --logo-aura-intensity / --aura-intensity: Opacidad/fuerza (Ej: 0.35, 0.65, 0.95)
     --logo-aura-color / --aura-color: Color del resplandor (Ej: #F440A8, #EF7088)
     --logo-aura-core / --aura-core: Color del núcleo interior (Ej: #FFFFFF)
     --logo-aura-core-range / --aura-core-range: Grosor del núcleo (Ej: 1px, 2px)
   ============================================================================= */
/* Anular cualquier borde o sombra en los contenedores de Elementor / Widget */
.footer-logo-glow,
.footer-logo-neon,
.biury-footer-logo,
.footer-logo,
.elementor-element.footer-logo-glow > .elementor-widget-container,
.elementor-element.footer-logo-neon > .elementor-widget-container,
.elementor-element.biury-footer-logo > .elementor-widget-container {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Aplicar EXCLUSIVAMENTE el aura / resplandor neón ceñido a la imagen o SVG */
.site-footer .site-logo img,
.site-footer img.custom-logo,
.site-footer .footer-logo img,
.site-footer .elementor-widget-theme-site-logo img,
.site-footer .biury-footer-logo img,
.footer-content-box .site-logo img,
.footer-content-box img.custom-logo,
.footer-content-box .footer-logo img,
#site-footer .site-logo img,
#site-footer img.custom-logo,
#site-footer .footer-logo img,
.footer-logo-glow img,
.footer-logo-glow svg,
.footer-logo-neon img,
.footer-logo-neon svg,
.biury-footer-logo img,
.biury-footer-logo svg,
.footer-logo img,
.footer-logo svg,
img.footer-logo-glow,
img.footer-logo-neon,
img.biury-footer-logo,
img.footer-logo {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 var(--aura-core-range, var(--logo-aura-core-range, 1.5px)) var(--aura-core, var(--logo-aura-core, #FFFFFF)))
          drop-shadow(0 0 calc(var(--aura-range, var(--logo-aura-range, 5px)) * 0.6) var(--aura-color, var(--logo-aura-color, #F440A8)))
          drop-shadow(0 0 var(--aura-range, var(--logo-aura-range, 5px)) rgba(244, 64, 168, var(--aura-intensity, var(--logo-aura-intensity, 0.65)))) !important;
  box-sizing: border-box !important;
  display: inline-block !important;
  max-width: 100% !important;
  margin-bottom: 6px !important;
  transition: transform 0.3s ease, filter 0.3s ease !important;
}

.footer-logo-glow img:hover,
.footer-logo-glow svg:hover,
.footer-logo-neon img:hover,
.footer-logo-neon svg:hover,
.biury-footer-logo img:hover,
.biury-footer-logo svg:hover,
.site-footer .site-logo img:hover,
.site-footer img.custom-logo:hover,
.footer-content-box .footer-logo img:hover,
img.footer-logo-glow:hover,
img.footer-logo-neon:hover,
img.biury-footer-logo:hover,
img.footer-logo:hover {
  transform: scale(1.02);
  box-shadow: none !important;
  filter: drop-shadow(0 0 calc(var(--aura-core-range, var(--logo-aura-core-range, 1.5px)) * 1.3) var(--aura-core, var(--logo-aura-core, #FFFFFF)))
          drop-shadow(0 0 calc(var(--aura-range, var(--logo-aura-range, 5px)) * 0.8) var(--aura-color, var(--logo-aura-color, #F440A8)))
          drop-shadow(0 0 calc(var(--aura-range, var(--logo-aura-range, 5px)) * 1.3) rgba(244, 64, 168, calc(var(--aura-intensity, var(--logo-aura-intensity, 0.65)) * 1.25))) !important;
}

/* Modificadores de rango predefinidos para Elementor */
.aura-xs, .aura-extra-small { --aura-range: 2.5px !important; --aura-core-range: 1px !important; }
.aura-sm, .aura-small       { --aura-range: 4px !important; --aura-core-range: 1.5px !important; }
.aura-md, .aura-medium      { --aura-range: 7px !important; --aura-core-range: 2px !important; }
.aura-lg, .aura-large       { --aura-range: 11px !important; --aura-core-range: 2.5px !important; }
.aura-xl, .aura-extra-large { --aura-range: 16px !important; --aura-core-range: 3px !important; }

/* Modificadores de intensidad predefinidos para Elementor */
.aura-soft, .aura-suave     { --aura-intensity: 0.35 !important; }
.aura-medium-intensity      { --aura-intensity: 0.65 !important; }
.aura-intense, .aura-fuerte { --aura-intensity: 0.95 !important; }

/* Modificadores de color de aura */
.aura-white                 { --aura-color: #FFFFFF !important; --aura-core: #F440A8 !important; }
.aura-coral                 { --aura-color: #EF7088 !important; }
.aura-purple                { --aura-color: #9362CB !important; }

/* Blindar textos y listas de contacto inferiores para que no hereden sombras ni distorsiones */
.site-footer .elementor-widget-icon-list,
.site-footer .elementor-icon-list-items,
.site-footer .elementor-icon-list-item,
.site-footer .elementor-icon-list-text,
.footer-content-box .elementor-widget-icon-list,
.footer-content-box .elementor-icon-list-items,
.footer-content-box .elementor-icon-list-item,
.footer-content-box .elementor-icon-list-text {
  filter: none !important;
  -webkit-filter: none !important;
  box-shadow: none !important;
}

/* =============================================================================
   ECOMUS IMAGE BOX CAROUSEL — PERSONALIZACIÓN BIURY (MOBILE & DOTS)
   ============================================================================= */

/* 1. Margen lateral y anulación de hover en mobile */
@media (max-width: 768px) {
  .ecomus-image-box-carousel__image-bg {
    margin-left: var(--carousel-banner-margin-x, 12px) !important;
    margin-right: var(--carousel-banner-margin-x, 12px) !important;
    box-sizing: border-box !important;
  }

  /* Desactivar cualquier efecto de zoom, escala o sombra en hover en mobile */
  .ecomus-image-box-carousel .ecomus-image-box-carousel__item,
  .ecomus-image-box-carousel .ecomus-image-box-carousel__item:hover,
  .ecomus-image-box-carousel .ecomus-image-box-carousel__image-bg,
  .ecomus-image-box-carousel .ecomus-image-box-carousel__image-bg:hover,
  .ecomus-image-box-carousel .ecomus-image-box-carousel__image-bg img,
  .ecomus-image-box-carousel .ecomus-image-box-carousel__image-bg img:hover,
  .ecomus-image-box-carousel .ecomus-image-box-carousel__item:hover .ecomus-image-box-carousel__image-bg,
  .ecomus-image-box-carousel .ecomus-image-box-carousel__item:hover .ecomus-image-box-carousel__image-bg img,
  .ecomus-image-box-carousel .swiper-slide:hover,
  .ecomus-image-box-carousel .swiper-slide:hover * {
    transform: none !important;
    -webkit-transform: none !important;
    transition: none !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
  }
}

/* 2. Paginación Dots estilo Biury (Píldora Activa + Tono Rosa Suave) */
.ecomus-image-box-carousel .swiper-pagination,
.ecomus-image-box-carousel .swiper-pagination-bullets,
.ecomus-image-box-carousel .ecomus-carousel-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 18px !important;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
}

/* Dot inactivo */
.ecomus-image-box-carousel .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  border-radius: 10px !important;
  background: #E8DCE3 !important;
  background-color: #E8DCE3 !important;
  opacity: 1 !important;
  border: 1px solid rgba(244, 64, 168, 0.25) !important;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  margin: 0 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

/* Eliminar pseudo-elementos oscuros nativos del tema Ecomus */
.ecomus-image-box-carousel .swiper-pagination-bullet::before,
.ecomus-image-box-carousel .swiper-pagination-bullet::after {
  display: none !important;
  content: none !important;
}

/* Dot activo (Píldora Biury con Gradiente Oficial) */
.ecomus-image-box-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px !important;
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  background-color: #F440A8 !important;
  border-color: #F440A8 !important;
  box-shadow: 0 2px 10px rgba(244, 64, 168, 0.45) !important;
  border-radius: 10px !important;
}

/* =============================================================================
   SECCIÓN CATEGORÍAS (Elementor 2302214b) — ESPACIADO SUPERIOR EN MOBILE
   ============================================================================= */
@media (max-width: 767px) {
  .elementor-113 .elementor-element.elementor-element-2302214b,
  .elementor-element.elementor-element-2302214b,
  .elementor-element-2302214b {
    --e-con-grid-template-columns: repeat(1, 1fr);
    --grid-auto-flow: row;
    --padding-top: 24px !important;
    --padding-bottom: 45px;
    --padding-left: 0px;
    --padding-right: 0px;
    padding-top: 24px !important;
  }
}

/* =============================================================================
   PAGINACIÓN DOTS BIURY — SECCIONES ESPECÍFICAS DE ELEMENTOR
   (6574d2c5, 60f22ce7, 19ff8044 / Shoppable Video, 7deb0901, Accesorios)
   ============================================================================= */
.elementor-element-6574d2c5 .swiper-pagination,
.elementor-element-6574d2c5 .swiper-pagination-bullets,
.elementor-element-6574d2c5 .ecomus-carousel-pagination,
.elementor-element-60f22ce7 .swiper-pagination,
.elementor-element-60f22ce7 .swiper-pagination-bullets,
.elementor-element-60f22ce7 .ecomus-carousel-pagination,
.elementor-element-19ff8044 .swiper-pagination,
.elementor-element-19ff8044 .swiper-pagination-bullets,
.elementor-element-19ff8044 .ecomus-carousel-pagination,
.elementor-widget-ecomus-shoppable-video .swiper-pagination,
.elementor-widget-ecomus-shoppable-video .swiper-pagination-bullets,
.elementor-element-7deb0901 .swiper-pagination,
.elementor-element-7deb0901 .swiper-pagination-bullets,
.elementor-element-7deb0901 .ecomus-carousel-pagination,
.seccion-accesorios .swiper-pagination,
.seccion-accesorios .swiper-pagination-bullets {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 18px !important;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
}

/* Dot inactivo */
.elementor-element-6574d2c5 .swiper-pagination-bullet,
.elementor-element-60f22ce7 .swiper-pagination-bullet,
.elementor-element-19ff8044 .swiper-pagination-bullet,
.elementor-widget-ecomus-shoppable-video .swiper-pagination-bullet,
.elementor-element-7deb0901 .swiper-pagination-bullet,
.seccion-accesorios .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  border-radius: 10px !important;
  background: #E8DCE3 !important;
  background-color: #E8DCE3 !important;
  opacity: 1 !important;
  border: 1px solid rgba(244, 64, 168, 0.25) !important;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  margin: 0 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

/* Eliminar pseudo-elementos oscuros nativos de Ecomus */
.elementor-element-6574d2c5 .swiper-pagination-bullet::before,
.elementor-element-6574d2c5 .swiper-pagination-bullet::after,
.elementor-element-60f22ce7 .swiper-pagination-bullet::before,
.elementor-element-60f22ce7 .swiper-pagination-bullet::after,
.elementor-element-19ff8044 .swiper-pagination-bullet::before,
.elementor-element-19ff8044 .swiper-pagination-bullet::after,
.elementor-widget-ecomus-shoppable-video .swiper-pagination-bullet::before,
.elementor-widget-ecomus-shoppable-video .swiper-pagination-bullet::after,
.elementor-element-7deb0901 .swiper-pagination-bullet::before,
.elementor-element-7deb0901 .swiper-pagination-bullet::after,
.seccion-accesorios .swiper-pagination-bullet::before,
.seccion-accesorios .swiper-pagination-bullet::after {
  display: none !important;
  content: none !important;
}

/* Dot activo (Píldora Biury con Gradiente Oficial) */
.elementor-element-6574d2c5 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.elementor-element-60f22ce7 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.elementor-element-19ff8044 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.elementor-widget-ecomus-shoppable-video .swiper-pagination-bullet.swiper-pagination-bullet-active,
.elementor-element-7deb0901 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.seccion-accesorios .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px !important;
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  background-color: #F440A8 !important;
  border-color: #F440A8 !important;
  box-shadow: 0 2px 10px rgba(244, 64, 168, 0.45) !important;
  border-radius: 10px !important;
}

/* =============================================================================
   BIURY LOGIN MODAL / POPUP — IDENTIDAD DE MARCA & EXPERIENCIA FLUIDA
   ============================================================================= */
.login-modal.modal {
  font-family: 'Montserrat', sans-serif !important;
  z-index: 999999 !important;
}

.login-modal .modal__backdrop {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
}

.login-modal .modal__container {
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22) !important;
  border: 1.5px solid #F0E8EC !important;
  background: #FFFFFF !important;
  max-width: 480px !important;
  width: 92vw !important;
}

.login-modal .modal__wrapper {
  padding: 32px 36px 36px 36px !important;
  position: relative !important;
}

@media (max-width: 600px) {
  .login-modal .modal__wrapper {
    padding: 24px 20px 28px 20px !important;
  }
}

.login-modal .modal__button-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: 1.5px solid #F0E8EC !important;
  background: #FAF8FA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #666666 !important;
  transition: all .2s ease !important;
  text-decoration: none !important;
  z-index: 10 !important;
}

.login-modal .modal__button-close:hover {
  background: #FFF0F6 !important;
  border-color: #F440A8 !important;
  color: #F440A8 !important;
  transform: rotate(90deg) !important;
}

.login-modal h2,
.login-modal .woocommerce-customer-login__title,
.login-modal .woocommerce-customer-register__title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 20px 0 !important;
  text-align: center !important;
  letter-spacing: -0.3px !important;
}

.login-modal .woocommerce-form-row {
  margin-bottom: 16px !important;
}

.login-modal .woocommerce-form-row label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2E2926 !important;
  margin-bottom: 6px !important;
}

.login-modal .woocommerce-form-row label .required {
  color: #F440A8 !important;
  text-decoration: none !important;
}

.login-modal .input-text,
.login-modal input[type="text"],
.login-modal input[type="email"],
.login-modal input[type="password"] {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  border: 1.5px solid #E5DCE1 !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  color: #2E2926 !important;
  background-color: #FAFAFA !important;
  box-sizing: border-box !important;
  transition: all .2s ease !important;
}

.login-modal .input-text:focus,
.login-modal input:focus {
  background-color: #FFFFFF !important;
  border-color: #F440A8 !important;
  box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.12) !important;
  outline: none !important;
}

.login-modal .woocommerce-form-row--remember {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
  font-size: 12.5px !important;
}

.login-modal .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  color: #666666 !important;
}

.login-modal .woocommerce-form-login__rememberme input[type="checkbox"] {
  accent-color: #F440A8 !important;
  width: 16px !important;
  height: 16px !important;
}

.login-modal .woocommerce-lost-password {
  color: #F440A8 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: color .15s ease !important;
}

.login-modal .woocommerce-lost-password:hover {
  text-decoration: underline !important;
  filter: brightness(0.9) !important;
}

/* Botón de Enviar (Gradiente Oficial Biury) */
.login-modal .woocommerce-button,
.login-modal .woocommerce-form-login__submit,
.login-modal .woocommerce-form-register__submit {
  width: 100% !important;
  height: 50px !important;
  min-height: 50px !important;
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  border-radius: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(244, 64, 168, 0.25) !important;
  transition: all .25s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 6px !important;
}

.login-modal .woocommerce-button:hover,
.login-modal .woocommerce-form-login__submit:hover,
.login-modal .woocommerce-form-register__submit:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 26px rgba(244, 64, 168, 0.35) !important;
}

/* Alternar entre Login y Registro */
.login-modal .em-button-login-mode,
.login-modal .em-button-register-mode {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 14px !important;
  padding: 12px 18px !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 12px !important;
  background: #FAF8FA !important;
  color: #2E2926 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
  cursor: pointer !important;
}

.login-modal .em-button-login-mode:hover,
.login-modal .em-button-register-mode:hover {
  border-color: #F440A8 !important;
  background: #FFF0F6 !important;
  color: #F440A8 !important;
}

/* =============================================================================
   BIURY RECUPERAR CONTRASEÑA (LOST PASSWORD) — TARJETA PREMIUM & ESPAÑOL
   ============================================================================= */
/* Ocultar encabezados superiores del tema en página de lost password */
body.woocommerce-lost-password #page-header,
body.woocommerce-lost-password .page-header,
body.woocommerce-lost-password .entry-header,
.woocommerce-lost-password #page-header,
.woocommerce-lost-password .page-header,
.woocommerce-lost-password .entry-header,
.woocommerce-lost-password .entry-header .entry-title,
.woocommerce-lost-password h1.entry-title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-lost-password #site-content {
  padding-top: 15px !important;
  padding-bottom: 25px !important;
}

.biury-lost-password-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 10px 16px 20px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.biury-lost-password-card {
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05) !important;
  max-width: 480px !important;
  width: 100% !important;
  padding: 30px 34px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  font-family: 'Montserrat', sans-serif !important;
}

@media (max-width: 600px) {
  .biury-lost-password-card {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
}

.biury-lost-password-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FFF0F6 0%, #FAF4EE 100%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  border: 1.5px solid #FADBEB !important;
}

.biury-lost-password-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.3px !important;
}

.biury-lost-password-desc {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #666666 !important;
  margin: 0 0 20px 0 !important;
}

.biury-form-group {
  text-align: left !important;
  margin-bottom: 16px !important;
}

.biury-form-label {
  display: block !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2E2926 !important;
  margin-bottom: 6px !important;
}

.biury-form-label .required {
  color: #F440A8 !important;
  text-decoration: none !important;
  margin-left: 3px !important;
}

.biury-form-input,
.woocommerce-ResetPassword input.input-text {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border: 1.5px solid #E5DCE1 !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  color: #2E2926 !important;
  background-color: #FAFAFA !important;
  box-sizing: border-box !important;
  transition: all .2s ease !important;
  outline: none !important;
}

.biury-form-input:focus,
.woocommerce-ResetPassword input.input-text:focus {
  background-color: #FFFFFF !important;
  border-color: #F440A8 !important;
  box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.12) !important;
}

.biury-btn-primary,
.woocommerce-ResetPassword button[type="submit"] {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(244, 64, 168, 0.25) !important;
  transition: all .25s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 6px !important;
}

.biury-btn-primary:hover,
.woocommerce-ResetPassword button[type="submit"]:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 26px rgba(244, 64, 168, 0.35) !important;
  color: #FFFFFF !important;
}

.biury-lost-password-footer {
  margin-top: 18px !important;
  padding-top: 14px !important;
  border-top: 1px solid #F0E8EC !important;
}

.biury-back-to-login {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #F440A8 !important;
  text-decoration: none !important;
  transition: color .2s ease, transform .2s ease !important;
}

.biury-back-to-login:hover {
  color: #D9238D !important;
  transform: translateX(-3px) !important;
}

/* =============================================================================
   BIURY PÁGINA DE LOGIN / REGISTRO (/my-account/) — TARJETA PREMIUM BIURY
   ============================================================================= */
/* Ocultar encabezados redundantes del tema cuando el usuario no ha iniciado sesión */
body.woocommerce-account:not(.logged-in) #page-header,
body.woocommerce-account:not(.logged-in) .page-header,
body.woocommerce-account:not(.logged-in) .entry-header,
body.woocommerce-account:not(.logged-in) .entry-header .entry-title,
body.woocommerce-account:not(.logged-in) h1.entry-title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-account:not(.logged-in) #site-content {
  padding-top: 15px !important;
  padding-bottom: 25px !important;
}

.biury-login-page-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 10px 16px 20px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.biury-login-page-card {
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05) !important;
  max-width: 480px !important;
  width: 100% !important;
  padding: 30px 34px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  font-family: 'Montserrat', sans-serif !important;
}

@media (max-width: 600px) {
  .biury-login-page-card {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
}

.biury-login-card-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FFF0F6 0%, #FAF4EE 100%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  border: 1.5px solid #FADBEB !important;
}

.biury-login-card-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.3px !important;
}

.biury-login-card-desc {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #666666 !important;
  margin: 0 0 20px 0 !important;
}

.biury-login-options-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 18px !important;
  font-size: 12.5px !important;
}

.biury-rememberme-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  color: #666666 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px !important;
  margin-bottom: 0 !important;
}

.biury-rememberme-label input[type="checkbox"] {
  accent-color: #F440A8 !important;
  width: 16px !important;
  height: 16px !important;
}

.biury-lost-link {
  color: #F440A8 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px !important;
  transition: all .2s ease !important;
}

.biury-lost-link:hover {
  text-decoration: underline !important;
  color: #D9238D !important;
}

.biury-login-switch-footer {
  margin-top: 18px !important;
  padding-top: 14px !important;
  border-top: 1px solid #F0E8EC !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  color: #666666 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

.biury-switch-btn {
  color: #F440A8 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: color .2s ease !important;
}

.biury-switch-btn:hover {
  color: #D9238D !important;
  text-decoration: underline !important;
}

/* =============================================================================
   BIURY FINALIZAR COMPRA (CHECKOUT) — EXPERIENCIA FLUIDA, TARJETAS & MOBILE
   ============================================================================= */
/* 1. Ocultar encabezado superior redundante en Checkout */
body.woocommerce-checkout #page-header,
body.woocommerce-checkout .page-header,
body.page-id-14 #page-header,
body.page-id-14 .page-header,
body.woocommerce-checkout .entry-header,
.woocommerce-checkout #page-header,
.woocommerce-checkout .page-header,
.woocommerce-checkout .entry-header,
.woocommerce-checkout .entry-header .entry-title,
.woocommerce-checkout h1.entry-title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-checkout #site-content {
  padding-top: 15px !important;
  padding-bottom: 45px !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* 2. Contenedores y Tarjetas del Checkout */
.wp-block-woocommerce-checkout,
form.woocommerce-checkout {
  font-family: 'Montserrat', sans-serif !important;
}

.wc-block-components-checkout-step,
.wc-block-components-panel,
.woocommerce-checkout #customer_details,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 20px !important;
  padding: 24px 28px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

@media (max-width: 768px) {
  .wc-block-components-checkout-step,
  .wc-block-components-panel,
  .woocommerce-checkout #customer_details {
    padding: 18px 16px !important;
    border-radius: 16px !important;
  }
}

/* 3. Titulares de Sección */
.wc-block-components-checkout-step__title,
.woocommerce-checkout h3,
.wc-block-components-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #2E2926 !important;
  letter-spacing: -0.2px !important;
  margin-bottom: 16px !important;
}

/* 4. Campos, Inputs y Selects */
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-select select,
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1.5px solid #E5DCE1 !important;
  border-radius: 12px !important;
  background-color: #FAFAFA !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  color: #2E2926 !important;
  min-height: 48px !important;
  box-sizing: border-box !important;
  transition: all .2s ease !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-select select:focus,
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  background-color: #FFFFFF !important;
  border-color: #F440A8 !important;
  box-shadow: 0 0 0 3px rgba(244, 64, 168, 0.14) !important;
  outline: none !important;
}

.wc-block-components-text-input,
.wc-block-components-combobox {
  border-radius: 12px !important;
}

.wc-block-components-text-input.is-active,
.wc-block-components-combobox.is-active {
  border-color: #F440A8 !important;
}

/* 5. Tarjeta de Resumen del Pedido (Sidebar) */
.wc-block-checkout__sidebar,
.woocommerce-checkout #order_review {
  background: #FFFFFF !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 20px !important;
  padding: 24px 24px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04) !important;
}

.wc-block-components-totals-item__value,
.woocommerce-checkout .order-total .woocommerce-Price-amount {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  color: #2E2926 !important;
  font-size: 17px !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #F440A8 !important;
  font-size: 20px !important;
}

/* 6. Métodos de Pago y Radios */
.wc-block-checkout__payment-method,
.woocommerce-checkout #payment ul.payment_methods li {
  background: #FAFAFA !important;
  border: 1.5px solid #F0E8EC !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  margin-bottom: 10px !important;
  transition: all .2s ease !important;
}

.wc-block-checkout__payment-method:has(input:checked),
.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
  background: #FFFDFE !important;
  border-color: #F440A8 !important;
  box-shadow: 0 4px 16px rgba(244, 64, 168, 0.10) !important;
}

.wc-block-components-radio-control__input,
.woocommerce-checkout input[type="radio"] {
  accent-color: #F440A8 !important;
  width: 18px !important;
  height: 18px !important;
}

/* 7. Botón Principal de Pago (Gradiente Oficial Biury) */
.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.is-link),
button.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions_row button,
.woocommerce-checkout #place_order,
#place_order {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  background: linear-gradient(135deg, #F440A8 0%, #EF7088 100%) !important;
  background-color: #F440A8 !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 22px rgba(244, 64, 168, 0.32) !important;
  transition: all .25s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 14px !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:not(.is-link):hover,
button.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout__actions_row button:hover,
.woocommerce-checkout #place_order:hover,
#place_order:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(244, 64, 168, 0.42) !important;
  color: #FFFFFF !important;
}

/* 8. Ajustes Mobile Responsive Garantizados para Checkout */
@media (max-width: 768px) {
  /* Contenedor principal sin desbordamiento horizontal */
  .woocommerce-checkout,
  .wc-block-checkout,
  .wp-block-woocommerce-checkout {
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Resumen plegable superior */
  .wc-block-components-order-summary {
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1.5px solid #F0E8EC !important;
    background: #FFFFFF !important;
    margin-bottom: 16px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
  }

  .wc-block-components-order-summary__button {
    padding: 14px 16px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
  }

  /* Tarjetas principales con padding optimizado en móvil */
  .wc-block-checkout__main,
  .wc-block-components-checkout-step,
  .wc-block-checkout__sidebar,
  .woocommerce-checkout #order_review {
    padding: 20px 16px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    margin-bottom: 16px !important;
  }

  /* Inputs y selects táctiles cómodos */
  .wc-block-components-text-input input,
  .wc-block-components-combobox input,
  .wc-block-components-select select,
  .wc-block-components-textarea textarea {
    font-size: 15px !important;
    min-height: 48px !important;
  }

  /* Opciones de pago en móvil */
  .wc-block-checkout__payment-method {
    padding: 14px 14px !important;
    border-radius: 14px !important;
  }

  /* Botón de pago en ancho completo */
  .wc-block-components-checkout-place-order-button,
  .wc-block-checkout__actions_row button,
  #place_order {
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }
}

/* En pantallas de móvil (< 600px): apilar todos los campos al 100% de ancho para máxima legibilidad y cero cortes de texto */
@media (max-width: 600px) {
  .wc-block-components-address-form,
  form.wc-block-components-address-form,
  .wc-block-components-checkout-step__content .wc-block-components-address-form {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 14px !important;
  }

  .wc-block-components-address-form > *,
  .wc-block-components-address-form > div,
  .wc-block-components-address-form .wc-block-components-text-input,
  .wc-block-components-address-form .wc-block-components-combobox,
  .wc-block-components-address-form .wc-blocks-components-select {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    grid-column: 1 / -1 !important;
  }
}

/* 9. Ocultar campos innecesarios en Checkout (País/Región fija a Colombia y Empresa opcional) */
.wc-block-components-address-form__country,
.wc-block-components-country-input,
.wc-block-components-combobox.wc-block-components-country-input,
.wc-blocks-components-select:has(#billing-country),
.wc-blocks-components-select:has(select[name="country"]),
.wc-block-components-combobox:has(#billing-country),
.wc-block-components-combobox:has(input[id*="billing-country"]),
.wc-block-components-combobox:has(input[id*="country"]),
#billing_country_field,
#shipping_country_field {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.wc-block-components-address-form__company,
.wc-block-components-text-input:has(#billing-company),
.wc-block-components-text-input:has(input[name="billing-company"]),
.wc-block-components-text-input:has(input[autocomplete="organization"]),
.wc-block-components-text-input:has(input[id*="company"]),
#billing_company_field,
#shipping_company_field {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* =============================================================================
   REDUCCIÓN GENERAL DE ESPACIO ENTRE TÍTULO DE PÁGINA Y CONTENIDO (PÁGINAS Y CATEGORÍAS)
   ============================================================================= */
/* Reduce el espacio excesivo generado por el tema padre (.page-header 69px/65px y .site-content 54px/30px)
   en todas las páginas de contenido, páginas de Elementor y categorías de productos (catálogo). */
body.page:not(.home):not(.front-page) #page-header.page-header,
body.page:not(.home):not(.front-page) .page-header--page,
body.elementor-page:not(.home):not(.front-page) #page-header.page-header,
body.tax-product_cat #page-header.page-header,
body.tax-product_cat .page-header--shop,
body.post-type-archive-product #page-header.page-header,
body.ecomus-catalog-page #page-header.page-header,
.page-header.page-header--shop,
body.has-biury-faq #page-header.page-header,
body:has(#biury-faq-root) #page-header.page-header,
body:has(.biury-faq-wrapper) #page-header.page-header {
  --em-page-header-padding-bottom: 18px !important;
  padding-bottom: 18px !important;
}

body.page:not(.home):not(.front-page) #site-content.site-content,
body.elementor-page:not(.home):not(.front-page) #site-content.site-content,
body.tax-product_cat #site-content.site-content,
body.post-type-archive-product #site-content.site-content,
body.ecomus-catalog-page #site-content.site-content,
.ecomus-catalog-page .site-content,
body.has-biury-faq #site-content.site-content,
body:has(#biury-faq-root) #site-content.site-content,
body:has(.biury-faq-wrapper) #site-content.site-content {
  padding-top: 14px !important;
}

/* Reducción de margen o padding superior redundante en el primer bloque/sección de Elementor */
body.page:not(.home):not(.front-page) .elementor > .elementor-element:first-child,
body.page:not(.home):not(.front-page) .elementor-section-wrap > .elementor-section:first-child,
body.page:not(.home):not(.front-page) .elementor-element.e-con:first-child,
body.page:not(.home):not(.front-page) .elementor-element.e-container:first-child,
body.elementor-page:not(.home):not(.front-page) .elementor > .elementor-element:first-child,
body.elementor-page:not(.home):not(.front-page) .elementor-section-wrap > .elementor-section:first-child,
body.elementor-page:not(.home):not(.front-page) .elementor-element.e-con:first-child,
body.elementor-page:not(.home):not(.front-page) .elementor-element.e-container:first-child,
body.tax-product_cat .elementor > .elementor-element:first-child,
body.tax-product_cat .elementor-section-wrap > .elementor-section:first-child,
body.tax-product_cat .elementor-element.e-con:first-child,
body.tax-product_cat .elementor-element.e-container:first-child,
body.post-type-archive-product .elementor > .elementor-element:first-child,
body.post-type-archive-product .elementor-section-wrap > .elementor-section:first-child,
body.post-type-archive-product .elementor-element.e-con:first-child,
body.post-type-archive-product .elementor-element.e-container:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ajuste específico para wrapper de FAQ y similares */
body.has-biury-faq .biury-faq-wrapper,
body:has(#biury-faq-root) .biury-faq-wrapper,
body:has(.biury-faq-wrapper) .biury-faq-wrapper,
body.page-preguntas-frecuentes .biury-faq-wrapper,
body[class*="preguntas"] .biury-faq-wrapper {
  padding-top: 4px !important;
}

@media (max-width: 768px) {
  body.page:not(.home):not(.front-page) #page-header.page-header,
  body.page:not(.home):not(.front-page) .page-header--page,
  body.elementor-page:not(.home):not(.front-page) #page-header.page-header,
  body.tax-product_cat #page-header.page-header,
  body.tax-product_cat .page-header--shop,
  body.post-type-archive-product #page-header.page-header,
  body.ecomus-catalog-page #page-header.page-header,
  .page-header.page-header--shop,
  body.has-biury-faq #page-header.page-header,
  body:has(#biury-faq-root) #page-header.page-header,
  body:has(.biury-faq-wrapper) #page-header.page-header {
    --em-page-header-padding-top: 28px !important;
    padding-top: 28px !important;
    --em-page-header-padding-bottom: 12px !important;
    padding-bottom: 12px !important;
  }

  body.page:not(.home):not(.front-page) #site-content.site-content,
  body.elementor-page:not(.home):not(.front-page) #site-content.site-content,
  body.tax-product_cat #site-content.site-content,
  body.post-type-archive-product #site-content.site-content,
  body.ecomus-catalog-page #site-content.site-content,
  .ecomus-catalog-page .site-content,
  body.has-biury-faq #site-content.site-content,
  body:has(#biury-faq-root) #site-content.site-content,
  body:has(.biury-faq-wrapper) #site-content.site-content {
    padding-top: 8px !important;
  }
}




