/*
Theme Name: Corsen Child
Theme URI: https://corsen.qodeinteractive.com
Description: A child theme of Corsen
Author: Select Themes
Author URI: https://qodeinteractive.com
Version: 1.0
Text Domain: corsen
Template: corsen
*/

/* ============================================
   HEADER PRINCIPAL TALISNE
   ============================================ */

/* Header fijo con estilo minimalista */
.talisne-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.talisne-header-inner {
    position: relative;
    width: 100%;
    padding: 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* Columnas laterales */
.talisne-header-left,
.talisne-header-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.talisne-header-left > * + * {
    margin-left: 16px;
}

.talisne-header-right {
    position: relative;
}

.talisne-header-right > * + * {
    margin-left: 20px;
}

/* Logo centrado SIEMPRE - Mejorado para Safari */
.talisne-header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    z-index: 1;
}

.talisne-header-center a {
    pointer-events: auto;
    display: inline-block;
}

.talisne-header .custom-logo {
    max-height: 38px;
    width: auto;
    display: block;
}

.talisne-site-title {
    font-size: 20px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

/* Botón menú hamburguesa - 3 líneas sin recuadro */
.talisne-menu-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;  /* Sin recuadro */
    background: transparent;
    padding: 8px;  /* Padding mínimo solo para área de click */
    cursor: pointer;
}

.talisne-menu-toggle > * + * {
    margin-left: 8px;
}

.talisne-menu-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 18px;
    height: 14px;
    position: relative;
}

.talisne-menu-icon span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Posición inicial de las 3 líneas */
.talisne-menu-icon span:nth-child(1) {
    top: 0;
}

.talisne-menu-icon span:nth-child(2) {
    top: 6px;
}

.talisne-menu-icon span:nth-child(3) {
    top: 12px;
}

/* Efecto hover en el botón */
.talisne-menu-toggle:hover .talisne-menu-icon span {
    background-color: #333;
}

/* Animación a X cuando el menú está abierto */
.talisne-menu-toggle.is-active .talisne-menu-icon span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.talisne-menu-toggle.is-active .talisne-menu-icon span:nth-child(2) {
    opacity: 0;
}

.talisne-menu-toggle.is-active .talisne-menu-icon span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Iconos derecha (sin círculo, solo imágenes PNG) */
.talisne-icon-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    text-decoration: none;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.talisne-icon-link:hover {
    opacity: 0.7;
}

.talisne-icon-link img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Switchers idioma + moneda */
.talisne-header-switchers {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 4px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.talisne-header-switchers > * + * {
    margin-left: 12px;
}

.talisne-header-switchers *,
.talisne-header-switchers a,
.talisne-header-switchers select {
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000 !important;
}

.talisne-header-switchers a {
    text-decoration: none;
}

.talisne-header-switchers ul,
.talisne-header-switchers li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Switcher de moneda (FOX / WOOCS) */
.talisne-currency-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 26px;
}

.talisne-currency-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #000;
    background-color: #fff;
    padding: 3px 18px 3px 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    line-height: 1.2;
    height: 26px;
    min-width: 40px;
    max-width: 60px;
    overflow: hidden;
}

.talisne-currency-switcher::after {
    content: "ˇ";
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-55%);
    font-size: 10px;
    pointer-events: none;
}

.talisne-currency-switcher a {
    border: 1px solid #000;
    padding: 3px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
}

/* ============================================
   PANEL BUSCADOR TALISNE
   ============================================ */

#talisne-search-panel.talisne-search-panel {
    position: absolute;
    top: 100%;
    right: 24px;
    margin-top: 10px;
    width: 420px;
    max-width: calc(100vw - 48px);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    padding: 16px 18px 18px;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease, transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 999;
}

#talisne-search-panel.talisne-search-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.talisne-search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 14px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.talisne-search-form > * + * {
    margin-left: 10px;
}

.talisne-search-input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px 4px;
    outline: none;
    font-size: 13px;
}

.talisne-search-input::placeholder {
    color: #777;
    font-size: 12px;
}

.talisne-search-submit {
    border: none;
    background: #000;
    color: #fff;
    padding: 8px 18px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    height: 48px;
}

.talisne-search-submit:hover {
    background: #333;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

/* Categorías dentro del panel buscador */
.talisne-search-cats-wrapper {
    margin-top: 6px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 10px;
}

.talisne-search-cats-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 8px;
}

.talisne-search-cats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.talisne-search-cats li + li {
    margin-top: 4px;
}

.talisne-search-cats a {
    font-size: 13px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.talisne-search-cats a:hover {
    border-color: #000;
}

/* ============================================
   MENÚ FULLSCREEN TALISNE
   ============================================ */

.talisne-fullscreen-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.talisne-fullscreen-menu.is-open {
    pointer-events: auto;
    opacity: 1;
}

.talisne-fullscreen-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,0.25);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.talisne-fullscreen-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 420px;
    max-width: 80vw;
    background: #ffffff;
    border-right: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 60px rgba(0,0,0,0.08);
    padding: 120px 48px 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
}

.talisne-fullscreen-menu-list {
    list-style: none;
    margin: 24px 0 0 0;
    padding: 0;
}

.talisne-fullscreen-menu-list > li {
    margin-bottom: 14px;
}

.talisne-fullscreen-menu-list a {
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #000;
}

.talisne-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    border: none;
    background: transparent;
    font-size: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}

body.talisne-menu-open {
    overflow: hidden;
}

/* Switchers dentro del fullscreen menu (solo móvil) */
.talisne-fullscreen-switchers {
    display: none;
}

.talisne-fullscreen-switchers-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.talisne-fullscreen-switchers-inner > * + * {
    margin-top: 16px;
}

.talisne-fs-lang,
.talisne-fs-currency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.talisne-fs-lang > * + *,
.talisne-fs-currency > * + * {
    margin-left: 12px;
}

.talisne-fs-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #000;
    min-width: 60px;
    font-weight: 500;
}

/* Estilos para Weglot y selectores dentro del menú */
.talisne-fullscreen-switchers select,
.talisne-fullscreen-switchers a,
.talisne-fullscreen-switchers .country-selector,
.talisne-fullscreen-switchers [class*="weglot"] {
    font-size: 13px !important;
    color: #000 !important;
}

.talisne-fullscreen-switchers .talisne-currency-switcher {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.talisne-fullscreen-switchers .talisne-currency-switcher select {
    width: 100%;
    max-width: 120px;
}

/* Asegurar visibilidad de todos los elementos de Weglot */
#weglot_fullscreen,
#weglot_fullscreen * {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
}

#weglot_fullscreen select,
#weglot_fullscreen .country-selector {
    display: inline-block !important;
    visibility: visible !important;
}

/* Estilos específicos para el switcher de Weglot */
#weglot_fullscreen .country-selector {
    background: #fff;
    border: 1px solid #000;
    padding: 6px 12px;
    font-size: 13px;
}

/* ============================================
   HEADER QODEF (tema original) - Colores
   ============================================ */

#qodef-page-header,
#qodef-page-header-inner {
    background-color: #ffffff !important;
}

#qodef-page-header a,
#qodef-page-header i,
#qodef-page-header svg {
    color: rgb(105,22,57) !important;
    fill: rgb(105,22,57) !important;
}

#qodef-page-header a:hover {
    color: rgb(80,15,44) !important;
}

.qodef-sticky-header,
.qodef-header-sticky,
.qodef-header-sticky-inner {
    background-color: #ffffff !important;
}

.qodef-sticky-header a,
.qodef-sticky-header i,
.qodef-sticky-header svg {
    color: rgb(105,22,57) !important;
    fill: rgb(105,22,57) !important;
}

/* Layout desktop del header QODEF */
@media (min-width: 1024px) {
    #qodef-page-header-inner {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        position: relative !important;
        padding-left: 40px;
        padding-right: 40px;
    }

    #qodef-page-header-inner .qodef-opener-icon {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
        margin: 0 !important;
        position: static !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    #qodef-page-header-inner > a.qodef-fullscreen-menu-opener {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    #qodef-page-header-inner > a.qodef-header-logo-link {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
        margin: 0 auto !important;
    }

    #qodef-page-header-inner > .qodef-widget-holder {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    .qodef-header-sticky-inner {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .qodef-header-sticky-inner > a.qodef-fullscreen-menu-opener {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
        margin-right: auto !important;
    }

    .qodef-header-sticky-inner > a.qodef-header-logo-link {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
        margin: 0 auto !important;
    }
}

/* Móvil QODEF */
@media (max-width: 1023px) {
    #qodef-mobile-header {
        background-color: #ffffff !important;
    }
    #qodef-mobile-header a,
    #qodef-mobile-header i,
    #qodef-mobile-header svg {
        color: rgb(105,22,57) !important;
        fill: rgb(105,22,57) !important;
    }
}

/* Buscador reveal del header QODEF */
#qodef-page-header .qodef-search-revealing-form {
    background-color: #ffffff !important;
    position: relative;
    z-index: 9999;
}

#qodef-page-header .qodef-search-revealing-form .qodef-m-form-field {
    background-color: #ffffff !important;
    color: rgb(105,22,57) !important;
    border: none;
    outline: none;
}

#qodef-page-header .qodef-search-revealing-form .qodef-m-form-field:focus {
    color: rgb(105,22,57) !important;
}

#qodef-page-header .qodef-search-revealing-form .qodef-m-form-field::placeholder {
    color: rgba(105,22,57,0.6) !important;
}

#qodef-page-header .qodef-search-revealing-form .qodef-m-form-line {
    background-color: rgb(105,22,57) !important;
}

#qodef-page-header .qodef-search-revealing-form .qodef-m-form-submit svg {
    color: rgb(105,22,57) !important;
    fill: rgb(105,22,57) !important;
}

/* Icono X del fullscreen menu QODEF */
#qodef-fullscreen-area .qodef-svg--menu-close {
    width: 32px !important;
    height: 32px !important;
}

#qodef-fullscreen-area .qodef-svg--menu-close path {
    stroke: #ffffff !important;
    stroke-width: 2 !important;
}

#qodef-fullscreen-area .qodef-fullscreen-menu-opener {
    position: absolute !important;
    top: 30px;
    right: 30px;
    z-index: 9999;
}

#qodef-fullscreen-area .qodef-svg--menu-close:hover {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

body.qodef-fullscreen-menu--opened #qodef-page-header .qodef-fullscreen-menu-opener .qodef-svg--menu-close,
body.qodef-fullscreen-menu-opened #qodef-page-header .qodef-fullscreen-menu-opener .qodef-svg--menu-close,
body.qodef-fullscreen-menu--opened #qodef-page-header .qodef-fullscreen-menu-opener .qodef-svg--menu-close path,
body.qodef-fullscreen-menu-opened #qodef-page-header .qodef-fullscreen-menu-opener .qodef-svg--menu-close path {
    stroke: #ffffff !important;
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* ============================================
   BOTONES TALISNE
   ============================================ */

/* Botón relleno */
.btn-talisne,
.elementor-button.btn-talisne {
    display: inline-block;
    padding: 14px 32px;
    background-color: rgb(105,22,57) !important;
    color: #ffffff !important;
    border-radius: 0;
    border: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-talisne:hover,
.elementor-button.btn-talisne:hover {
    background-color: rgb(80,15,44) !important;
    color: #ffffff !important;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Botón outline */
.btn-talisne-outline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff;
    color: rgb(105,22,57) !important;
    border: 2px solid rgb(105,22,57);
    border-radius: 0;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-talisne-outline:hover {
    background-color: rgb(105,22,57);
    color: #ffffff !important;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.elementor-button.btn-talisne-outline {
    padding: 12px 28px;
    background-color: transparent !important;
    color: rgb(105,22,57) !important;
    border: 2px solid rgb(105,22,57) !important;
    border-radius: 0;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.elementor-button.btn-talisne-outline:hover {
    background-color: rgb(105,22,57) !important;
    color: #ffffff !important;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* ============================================
   BANDA DE CATEGORÍAS TALISNE
   ============================================ */

.talisne-categorias {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 0;
    background-color: #ffffff;
}

.talisne-categorias > * + * {
    margin-left: 40px;
}

.talisne-categorias .item-cat {
    position: relative;
    padding: 6px 4px;
    color: rgb(105,22,57);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.talisne-categorias .item-cat:not(:last-child)::after {
    content: none !important;
}

.talisne-categorias .item-cat:hover {
    color: rgb(80,15,44);
}

.talisne-cat-row {
    border-top: 1px solid rgb(105,22,57);
    border-bottom: 1px solid rgb(105,22,57);
    background-color: #ffffff;
}

.talisne-cat-row.elementor-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* ============================================
   FOOTER QODEF - Texto blanco
   ============================================ */

#qodef-page-footer,
#qodef-page-footer a,
#qodef-page-footer p,
#qodef-page-footer span,
#qodef-page-footer li,
#qodef-page-footer div,
#qodef-page-footer .widget,
#qodef-page-footer .widget a,
#qodef-page-footer .widget-title {
    color: #ffffff !important;
}

#qodef-page-footer svg,
#qodef-page-footer i {
    color: #ffffff !important;
    fill: #ffffff !important;
}

#qodef-page-footer a:hover {
    color: rgba(255,255,255,0.85) !important;
}

/* ============================================
   FOOTER TALISNE - Estilo Chanel
   ============================================ */

#talisne-footer {
    background-color: rgb(105,22,57);
    color: #ffffff;
    padding: 80px 0 40px;
    font-size: 13px;
}

#talisne-footer a {
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

#talisne-footer a:hover {
    opacity: 0.8;
}

#talisne-footer h4 {
    color: #ffffff;
}

.talisne-footer-inner {
    max-width: 1200px;
    width: 100%;  /* ← Asegura que use todo el ancho disponible */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;  /* ← Incluye padding en el ancho total */
}

.talisne-footer-logo {
    text-align: center;
    margin-bottom: 60px;
}

.talisne-footer-logo img {
    max-height: 40px;
    width: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.talisne-footer-logo-text {
    font-size: 22px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* 3 columnas alineadas - distribuidas por todo el ancho */
.talisne-footer-columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    width: 100%;  /* ← Ocupa todo el ancho */
}

.talisne-footer-col {
    min-width: 0;  /* Evita que las columnas se colapsen */
    width: 100%;   /* Ocupa todo el espacio de su celda del grid */
}

.talisne-footer-title {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-align: left;
}

.talisne-footer-menu,
.talisne-footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.talisne-footer-menu li,
.talisne-footer-social li {
    margin-bottom: 8px;
    text-align: left;
}

.talisne-footer-menu a,
.talisne-footer-social a {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    display: inline-block;
}

.talisne-footer-col p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.talisne-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 11px;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* ============================================
   PRODUCTOS WOOCOMMERCE - Estilo Chanel
   ============================================ */

.woocommerce ul.products,
.qodef-woo-product-list {
    column-gap: 60px;
    row-gap: 80px;
}

.woocommerce ul.products li.product,
.qodef-woo-product-list .qodef-pli {
    background-color: #ffffff;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 40px;
}

.qodef-pli-inner,
.qodef-pli-inner:before,
.qodef-pli-inner:after,
.qodef-pli-text,
.qodef-pli-text-inner {
    border: none !important;
}

.qodef-pli-image {
    padding: 40px 40px 0;
}

.qodef-pli-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.qodef-pli-text {
    padding: 18px 40px 0;
    text-align: left;
}

.qodef-pli-title {
    font-family: "Belleza", serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.qodef-pli-price {
    font-size: 12px;
    font-weight: 400;
}

.qodef-pli-add-to-cart,
.qodef-pli-link,
.qodef-pli-btns,
.qodef-pli-rating,
.qodef-pli-excerpt,
.qodef-pli-image .qodef-pli-quick-view,
.qodef-pli-image .qodef-pli-link-icon,
.qodef-pli-image .qodef-pli-wishlist {
    display: none !important;
}

.qodef-pli-mark {
    top: 16px;
    left: 24px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 10px;
}

.qodef-woo-related-products .qodef-pli-inner,
.qodef-woo-product-slider .qodef-pli-inner {
    border: none !important;
    box-shadow: none !important;
}

.qodef-woo-product-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.qodef-woo-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet y móvil - ajustes generales */
@media (max-width: 1023px) {
    .talisne-header-inner {
        padding: 12px 20px;
    }

    /* Ocultar switchers del header en móvil */
    .talisne-header-switchers {
        display: none !important;
    }

    /* Asegurar que el logo sea visible y centrado */
    .talisne-header-center {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        pointer-events: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center;
    }

    .talisne-header .custom-logo {
        max-height: 32px;
    }

    /* Ajustar espaciado de iconos en móvil */
    .talisne-header-right > * + * {
        margin-left: 12px;
    }

    /* Panel de búsqueda adaptado a móvil */
    #talisne-search-panel.talisne-search-panel {
        position: fixed;
        top: 60px;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 16px;
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        border-radius: 0;
    }

    /* Input más grande en móvil */
    .talisne-search-input {
        padding: 12px 4px;
        font-size: 14px;
    }

    /* Botón de búsqueda en móvil */
    .talisne-search-submit {
        padding: 8px 16px;
        min-width: 80px;
    }

    /* Ajustar categorías en móvil */
    .talisne-search-cats-wrapper {
        margin-top: 16px;
        padding-top: 16px;
    }

    .talisne-search-cats a {
        font-size: 14px;
    }

    /* Footer en tablet - reducir gap */
    .talisne-footer-inner {
        padding: 0 30px;
    }

    .talisne-footer-columns {
        gap: 40px;
    }
}

/* Tablet - Footer en 3 columnas pero más compacto */
@media (min-width: 768px) and (max-width: 1023px) {
    .talisne-footer-columns {
        gap: 30px;
        font-size: 12px;
    }

    .talisne-footer-title {
        font-size: 11px;
    }
}

/* Móvil pequeño */
@media (max-width: 767px) {
    .talisne-header-inner {
        padding: 10px 16px;
    }

    /* Panel de búsqueda en móvil pequeño */
    #talisne-search-panel.talisne-search-panel {
        top: 55px;
        padding: 16px 12px;
    }

    /* Footer en móvil - columnas apiladas */
    .talisne-footer-inner {
        padding: 0 20px;
    }

    .talisne-footer-columns {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .talisne-footer-logo {
        margin-bottom: 50px;
    }

    .talisne-footer-bottom {
        text-align: center;
    }

    .talisne-fullscreen-panel {
        padding: 100px 28px 40px;
        width: 100%;
        max-width: 100vw;
    }

    .talisne-fullscreen-menu-list a {
        font-size: 18px;
    }

    /* Switchers dentro del menú en móvil */
    .talisne-fullscreen-switchers {
        display: block;
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
}

/* Desktop - ocultar switchers del menú fullscreen */
@media (min-width: 1024px) {
    .talisne-fullscreen-switchers {
        display: none;
    }
}

#qodef-page-inner {
    padding: 30px 0 100px;
}

#simple-chat-button--button {
    background-color: #6A1F2C !important;
    background-image: none !important;
}

#simple-chat-button--button::before {
    display: block;
    position: relative;
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .15);
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjU2IiB3aWR0aD0iMjU2IiB2aWV3Qm94PSItMjMgLTIxIDY4MiA2ODIuNjY3IiBmaWxsPSIjZmZmIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik01NDQuMzg3IDkzLjAwOEM0ODQuNTEyIDMzLjA2MyA0MDQuODgzLjAzNSAzMjAuMDUxIDAgMTQ1LjI0NiAwIDIuOTggMTQyLjI2MiAyLjkxIDMxNy4xMTNjLS4wMjMgNTUuODk1IDE0LjU3OCAxMTAuNDU3IDQyLjMzMiAxNTguNTUxTC4yNSA2NDBsMTY4LjEyMS00NC4xMDJjNDYuMzI0IDI1LjI3IDk4LjQ3NyAzOC41ODYgMTUxLjU1MSAzOC42MDJoLjEzM2MxNzQuNzg1IDAgMzE3LjA2Ni0xNDIuMjczIDMxNy4xMzMtMzE3LjEzMy4wMzUtODQuNzQyLTMyLjkyMi0xNjQuNDE4LTkyLjgwMS0yMjQuMzU5ek0zMjAuMDUxIDU4MC45NDFoLS4xMDljLTQ3LjI5Ny0uMDItOTMuNjg0LTEyLjczLTEzNC4xNi0zNi43NDJsLTkuNjIxLTUuNzE1LTk5Ljc2NiAyNi4xNzIgMjYuNjI5LTk3LjI3LTYuMjctOS45NzNjLTI2LjM4Ny00MS45NjktNDAuMzItOTAuNDc3LTQwLjI5Ny0xNDAuMjgxLjA1NS0xNDUuMzMyIDExOC4zMDUtMjYzLjU3IDI2My42OTktMjYzLjU3IDcwLjQwNi4wMjMgMTM2LjU5IDI3LjQ3NyAxODYuMzU1IDc3LjMwMXM3Ny4xNTYgMTE2LjA1MSA3Ny4xMzMgMTg2LjQ4NGMtLjA2MiAxNDUuMzQ0LTExOC4zMDUgMjYzLjU5NC0yNjMuNTk0IDI2My41OTR6bTE0NC41ODYtMTk3LjQxOGMtNy45MjItMy45NjktNDYuODgzLTIzLjEzMy01NC4xNDgtMjUuNzgxLTcuMjU4LTIuNjQ1LTEyLjU0Ny0zLjk2MS0xNy44MjQgMy45NjktNS4yODUgNy45My0yMC40NjkgMjUuNzgxLTI1LjA5NCAzMS4wNjZzLTkuMjQyIDUuOTUzLTE3LjE2OCAxLjk4NC0zMy40NTctMTIuMzM2LTYzLjcyNy0zOS4zMzJjLTIzLjU1NS0yMS4wMTItMzkuNDU3LTQ2Ljk2MS00NC4wODItNTQuODkxLTQuNjE3LTcuOTM3LS4wMzktMTEuODEyIDMuNDc3LTE2LjE3MiA4LjU3OC0xMC42NTIgMTcuMTY4LTIxLjgyIDE5LjgwOS0yNy4xMDVzMS4zMi05LjkxOC0uNjY0LTEzLjg4M2MtMS45NzctMy45NjUtMTcuODI0LTQyLjk2OS0yNC40MjYtNTguODQtNi40MzctMTUuNDQ1LTEyLjk2NS0xMy4zNTktMTcuODMyLTEzLjYwMi00LjYxNy0uMjMtOS45MDItLjI3Ny0xNS4xODctLjI3N3MtMTMuODY3IDEuOTgtMjEuMTMzIDkuOTE4LTI3LjczIDI3LjEwMi0yNy43MyA2Ni4xMDUgMjguMzk1IDc2LjY4NCAzMi4zNTUgODEuOTczIDU1Ljg3OSA4NS4zMjggMTM1LjM2NyAxMTkuNjQ4YzE4LjkwNiA4LjE3MiAzMy42NjQgMTMuMDQzIDQ1LjE3NiAxNi42OTUgMTguOTg0IDYuMDMxIDM2LjI1NCA1LjE4IDQ5LjkxIDMuMTQxIDE1LjIyNy0yLjI3NyA0Ni44NzktMTkuMTcyIDUzLjQ4OC0zNy42OCA2LjYwMi0xOC41MTIgNi42MDItMzQuMzc1IDQuNjE3LTM3LjY4NC0xLjk3Ny0zLjMwNS03LjI2Mi01LjI4NS0xNS4xODQtOS4yNTR6bTAgMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+) center / 44px 44px no-repeat #6A1F2C;
}


/* ============================================
   FOOTER - CENTRADO
   ============================================ */

#talisne-footer .talisne-footer-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* clave */
    text-align: center;
}

#talisne-footer .talisne-footer-title,
#talisne-footer .talisne-footer-col p,
#talisne-footer .talisne-footer-menu,
#talisne-footer .talisne-footer-social,
#talisne-footer .talisne-footer-menu li,
#talisne-footer .talisne-footer-social li,
#talisne-footer .talisne-footer-menu a,
#talisne-footer .talisne-footer-social a {
    text-align: center;
}

#talisne-footer .talisne-footer-menu,
#talisne-footer .talisne-footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* (Opcional) si quieres que todo mida lo mismo dentro de la columna */
#talisne-footer .talisne-footer-col > * {
    width: 100%;
}
