/*
 * DWGRX Gucci Header
 * El centro usa una columna propia. El logo nunca depende del ancho o altura de los iconos.
 */

:root {
    --dwgrx-gh-desktop-height: 104px;
    --dwgrx-gh-mobile-height: 74px;
    --dwgrx-gh-logo-width: 230px;
    --dwgrx-gh-border: rgba(0, 0, 0, .12);
    --dwgrx-gh-bg: #fff;
    --dwgrx-gh-text: #111;
}

.dwgrx-gh-root,
.dwgrx-gh-root * {
    box-sizing: border-box;
}

.dwgrx-gh-root {
    position: relative;
    z-index: 999999;
    width: 100%;
}

.dwgrx-gh-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas: "left center right";
    align-items: center;
    width: 100%;
    height: var(--dwgrx-gh-desktop-height);
    min-height: var(--dwgrx-gh-desktop-height);
    padding: 0 34px;
    margin: 0;
    background: var(--dwgrx-gh-bg);
    color: var(--dwgrx-gh-text);
    border-bottom: 1px solid var(--dwgrx-gh-border);
    isolation: isolate;
}

.dwgrx-gh-sticky-enabled .dwgrx-gh-root {
    position: sticky;
    top: 0;
}

.admin-bar.dwgrx-gh-sticky-enabled .dwgrx-gh-root {
    top: 32px;
}

.dwgrx-gh-left,
.dwgrx-gh-right,
.dwgrx-gh-center {
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.dwgrx-gh-left {
    grid-area: left;
    justify-content: flex-start;
    gap: 18px;
}

.dwgrx-gh-center {
    grid-area: center;
    position: static !important;
    justify-content: center;
    align-self: stretch;
    width: var(--dwgrx-gh-logo-width);
    max-width: min(36vw, var(--dwgrx-gh-logo-width));
    margin: 0 !important;
    inset: auto !important;
    transform: none !important;
    float: none !important;
}

.dwgrx-gh-right {
    grid-area: right;
    justify-content: flex-end;
    gap: 16px;
}

.dwgrx-gh-logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    text-decoration: none;
    position: static !important;
    inset: auto !important;
    transform: none !important;
}

.dwgrx-gh-logo-image {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: calc(var(--dwgrx-gh-desktop-height) - 34px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    object-fit: contain;
    transform: none !important;
    position: static !important;
}

.dwgrx-gh-site-title {
    color: #111;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(25px, 3vw, 42px);
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dwgrx-gh-left-text {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dwgrx-gh-icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    appearance: none;
}

.dwgrx-gh-icon-button:hover,
.dwgrx-gh-icon-button:focus-visible {
    color: #111;
    background: rgba(0, 0, 0, .045);
    outline: none;
}

.dwgrx-gh-icon-button:focus-visible {
    box-shadow: 0 0 0 2px #111 inset;
}

.dwgrx-gh-icon-button svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.dwgrx-gh-cart-count {
    position: absolute;
    top: 0;
    right: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 20px;
    background: #111;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
}

.dwgrx-gh-cart-count:empty {
    display: none;
}

/* Menú lateral */
.dwgrx-gh-drawer,
.dwgrx-gh-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.dwgrx-gh-drawer.is-open,
.dwgrx-gh-search-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.dwgrx-gh-drawer-backdrop,
.dwgrx-gh-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    backdrop-filter: blur(2px);
}

.dwgrx-gh-drawer-panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(430px, 92vw);
    background: #fff;
    color: #111;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
}

.dwgrx-gh-drawer.is-open .dwgrx-gh-drawer-panel {
    transform: translateX(0);
}

.dwgrx-gh-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 0 25px;
    border-bottom: 1px solid var(--dwgrx-gh-border);
}

.dwgrx-gh-drawer-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dwgrx-gh-drawer-content {
    padding: 22px 25px 45px;
}

.dwgrx-gh-drawer-menu,
.dwgrx-gh-drawer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dwgrx-gh-drawer-menu > li {
    border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.dwgrx-gh-drawer-menu a {
    display: block;
    padding: 17px 0;
    color: #111;
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
}

.dwgrx-gh-drawer-menu ul {
    padding: 0 0 10px 18px;
}

.dwgrx-gh-drawer-menu ul a {
    padding: 10px 0;
    font-size: 13px;
    text-transform: none;
}

/* Buscador */
.dwgrx-gh-search-panel {
    position: relative;
    width: min(860px, calc(100% - 32px));
    margin: 12vh auto 0;
    padding: 62px 50px 50px;
    background: #fff;
}

.dwgrx-gh-search-close {
    position: absolute;
    top: 14px;
    right: 14px;
}

.dwgrx-gh-search-form {
    display: grid;
    grid-template-columns: 1fr 50px;
    align-items: center;
    border-bottom: 1px solid #111;
}

.dwgrx-gh-search-form input[type="search"] {
    width: 100%;
    min-height: 62px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111;
    font-size: clamp(20px, 3vw, 36px);
    font-family: "Playfair Display", Georgia, serif;
    box-shadow: none;
}

.dwgrx-gh-search-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dwgrx-gh-search-form button svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #111;
    stroke-width: 1.5;
}

body.dwgrx-gh-lock {
    overflow: hidden !important;
}

/* Evita interferencias específicas de WooCommerce y plugins */
.woocommerce-cart .dwgrx-gh-center,
.woocommerce-checkout .dwgrx-gh-center,
.woocommerce-account .dwgrx-gh-center,
body[class*="wishlist"] .dwgrx-gh-center,
.yith-wcwl-form .dwgrx-gh-center {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    align-self: stretch !important;
}

@media (max-width: 782px) {
    .admin-bar.dwgrx-gh-sticky-enabled .dwgrx-gh-root {
        top: 46px;
    }
}

@media (max-width: 767px) {
    .dwgrx-gh-header {
        height: var(--dwgrx-gh-mobile-height);
        min-height: var(--dwgrx-gh-mobile-height);
        padding: 0 12px;
        grid-template-columns: minmax(42px, 1fr) auto minmax(84px, 1fr);
    }

    .dwgrx-gh-center {
        width: min(36vw, var(--dwgrx-gh-logo-width));
        max-width: 150px;
    }

    .dwgrx-gh-logo-image {
        max-height: calc(var(--dwgrx-gh-mobile-height) - 24px) !important;
    }

    .dwgrx-gh-right {
        gap: 1px;
    }

    .dwgrx-gh-left-text,
    .dwgrx-gh-wishlist,
    .dwgrx-gh-account {
        display: none !important;
    }

    .dwgrx-gh-icon-button {
        flex-basis: 36px;
        width: 36px;
        min-width: 36px;
        height: 36px;
    }

    .dwgrx-gh-icon-button svg {
        width: 20px;
        height: 20px;
    }

    .dwgrx-gh-search-panel {
        margin-top: 7vh;
        padding: 58px 22px 35px;
    }

    .dwgrx-gh-search-form input[type="search"] {
        min-height: 54px;
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dwgrx-gh-drawer,
    .dwgrx-gh-search-overlay,
    .dwgrx-gh-drawer-panel {
        transition: none;
    }
}


/* =========================================================
   Corrección v1.0.1: + MENU y lupa sin SVG
   Evita estilos globales del tema que convierten iconos en cuadrados.
========================================================= */

.dwgrx-gh-menu-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    width: auto !important;
    min-width: 86px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-image: none !important;
    color: #111 !important;
    box-shadow: none !important;
    appearance: none !important;
    cursor: pointer !important;
    font-family: Arial, Helvetica, sans-serif !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.dwgrx-gh-menu-trigger:hover,
.dwgrx-gh-menu-trigger:focus,
.dwgrx-gh-menu-trigger:active {
    border: 0 !important;
    background: transparent !important;
    background-image: none !important;
    color: #111 !important;
    box-shadow: none !important;
    transform: none !important;
}

.dwgrx-gh-menu-trigger:focus-visible {
    outline: 1px solid #111 !important;
    outline-offset: 5px !important;
}

.dwgrx-gh-menu-plus {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: -1px 0 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 22px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
}

.dwgrx-gh-menu-label {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: .14em !important;
    line-height: 1 !important;
}

/* Reset reforzado para botones de búsqueda afectados por CSS del tema. */
.dwgrx-gh-search-trigger,
.dwgrx-gh-search-form button {
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    appearance: none !important;
    transform: none !important;
}

.dwgrx-gh-search-trigger::before,
.dwgrx-gh-search-trigger::after,
.dwgrx-gh-search-form button::before,
.dwgrx-gh-search-form button::after {
    content: none !important;
    display: none !important;
}

/* Lupa construida únicamente con CSS. */
.dwgrx-gh-css-search-icon {
    position: relative !important;
    display: block !important;
    flex: 0 0 auto !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1.5px solid #111 !important;
    border-radius: 50% !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.dwgrx-gh-css-search-icon::after {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    width: 7px !important;
    height: 1.5px !important;
    right: -5px !important;
    bottom: -2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #111 !important;
    transform: rotate(45deg) !important;
    transform-origin: center !important;
}

/* El SVG no debe aparecer dentro de estos dos botones. */
.dwgrx-gh-search-trigger > svg,
.dwgrx-gh-menu-trigger > svg,
.dwgrx-gh-search-form button > svg {
    display: none !important;
}

@media (max-width: 767px) {
    .dwgrx-gh-menu-trigger {
        min-width: 72px !important;
        gap: 5px !important;
    }

    .dwgrx-gh-menu-plus {
        font-size: 20px !important;
    }

    .dwgrx-gh-menu-label {
        font-size: 9px !important;
        letter-spacing: .11em !important;
    }

    .dwgrx-gh-css-search-icon {
        width: 17px !important;
        height: 17px !important;
        min-width: 17px !important;
        min-height: 17px !important;
    }
}

/* =========================================================
   v1.1.0: estado de entrada + estado tras el primer scroll
   Entrada: fondo transparente, textos/iconos blancos.
   Scroll: fondo blanco, textos/iconos negros y segundo logo.
========================================================= */
.dwgrx-gh-header {
    background: transparent !important;
    color: #fff !important;
    border-bottom-color: transparent !important;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.dwgrx-gh-logo-entry,
.dwgrx-gh-logo-scroll {
    transition: opacity .2s ease, visibility .2s ease;
}

.dwgrx-gh-logo-scroll {
    display: none !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header {
    background: #fff !important;
    color: #111 !important;
    border-bottom-color: rgba(0, 0, 0, .10) !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-logo-entry {
    display: none !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-logo-scroll {
    display: block !important;
}

/* Fuerza blanco únicamente en los controles que están dentro de la cabecera. */
.dwgrx-gh-header .dwgrx-gh-menu-trigger,
.dwgrx-gh-header .dwgrx-gh-menu-trigger:hover,
.dwgrx-gh-header .dwgrx-gh-menu-trigger:focus,
.dwgrx-gh-header .dwgrx-gh-menu-trigger:active,
.dwgrx-gh-header .dwgrx-gh-menu-plus,
.dwgrx-gh-header .dwgrx-gh-menu-label,
.dwgrx-gh-header .dwgrx-gh-left-text,
.dwgrx-gh-header .dwgrx-gh-icon-button {
    color: #fff !important;
}

.dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #fff !important;
}

.dwgrx-gh-header .dwgrx-gh-css-search-icon {
    border-color: #fff !important;
}

.dwgrx-gh-header .dwgrx-gh-css-search-icon::after {
    background: #fff !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-trigger,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-trigger:hover,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-trigger:focus,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-trigger:active,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-plus,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-label,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-left-text,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-icon-button {
    color: #111 !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #111 !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-css-search-icon {
    border-color: #111 !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-css-search-icon::after {
    background: #111 !important;
}

.dwgrx-gh-header .dwgrx-gh-cart-count {
    background: #fff !important;
    color: #111 !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-cart-count {
    background: #111 !important;
    color: #fff !important;
}

.dwgrx-gh-header .dwgrx-gh-site-title {
    color: #fff !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-site-title {
    color: #111 !important;
}

/* =========================================================
   v1.2.0: carrito lateral + X robusta sin SVG
========================================================= */
.dwgrx-gh-cart-trigger,
.dwgrx-gh-close-button {
    -webkit-appearance: none !important;
    appearance: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.dwgrx-gh-close-button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #111 !important;
}

.dwgrx-gh-close-button::before,
.dwgrx-gh-close-button::after {
    content: none !important;
    display: none !important;
}

.dwgrx-gh-close-icon {
    position: relative !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.dwgrx-gh-close-icon::before,
.dwgrx-gh-close-icon::after {
    content: "" !important;
    position: absolute !important;
    top: 11px !important;
    left: 2px !important;
    width: 20px !important;
    height: 1.5px !important;
    background: currentColor !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform-origin: center !important;
}

.dwgrx-gh-close-icon::before { transform: rotate(45deg) !important; }
.dwgrx-gh-close-icon::after { transform: rotate(-45deg) !important; }

.dwgrx-gh-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000002;
    visibility: hidden;
    pointer-events: none;
}

.dwgrx-gh-cart-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.dwgrx-gh-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    opacity: 0;
    transition: opacity .28s ease;
}

.dwgrx-gh-cart-drawer.is-open .dwgrx-gh-cart-backdrop {
    opacity: 1;
}

.dwgrx-gh-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(440px, 92vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #111;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22,.61,.36,1);
    box-shadow: -12px 0 36px rgba(0,0,0,.12);
    overflow: hidden;
}

.dwgrx-gh-cart-drawer.is-open .dwgrx-gh-cart-panel {
    transform: translateX(0);
}

.dwgrx-gh-cart-head {
    min-height: 76px;
    padding: 16px 18px 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,.10);
    flex: 0 0 auto;
}

.dwgrx-gh-cart-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
}

.dwgrx-gh-cart-content {
    flex: 1 1 auto;
    min-height: 0;
    padding: 22px 24px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: #111;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart,
.dwgrx-gh-cart-content .woocommerce-mini-cart__buttons {
    margin: 0;
    padding: 0;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart {
    list-style: none;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart-item {
    position: relative;
    min-height: 86px;
    margin: 0;
    padding: 0 30px 18px 82px;
    border-bottom: 1px solid rgba(0,0,0,.09);
    margin-bottom: 18px;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart-item a:not(.remove) {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 80px;
    margin: 0;
    object-fit: cover;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart-item .remove,
.dwgrx-gh-cart-content .remove_from_cart_button {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 20px !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.dwgrx-gh-cart-content .quantity {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 20px 0 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,.10);
}

.dwgrx-gh-cart-content .woocommerce-mini-cart__buttons {
    display: grid;
    gap: 10px;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart__buttons .button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 12px 18px !important;
    border: 1px solid #111 !important;
    border-radius: 0 !important;
    background: #111 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px !important;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart__buttons .button:first-child {
    background: #fff !important;
    color: #111 !important;
}

.dwgrx-gh-cart-content .woocommerce-mini-cart__empty-message {
    margin: 20px 0;
    color: #555;
    font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
    .dwgrx-gh-cart-panel,
    .dwgrx-gh-cart-backdrop {
        transition: none !important;
    }
}


/* =========================================================
   v1.2.1: icono de carrito 100% CSS
   Evita que CSS del tema o plugins oculte/modifique el SVG.
========================================================= */
.dwgrx-gh-cart-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dwgrx-gh-cart-trigger > svg {
    display: none !important;
}

.dwgrx-gh-css-cart-icon {
    position: relative !important;
    display: block !important;
    flex: 0 0 auto !important;
    width: 19px !important;
    height: 18px !important;
    min-width: 19px !important;
    min-height: 18px !important;
    margin-top: 3px !important;
    border: 1.6px solid currentColor !important;
    border-radius: 1px 1px 3px 3px !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Asa de la bolsa */
.dwgrx-gh-css-cart-icon::before {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    left: 50% !important;
    top: -7px !important;
    width: 8px !important;
    height: 7px !important;
    transform: translateX(-50%) !important;
    border: 1.6px solid currentColor !important;
    border-bottom: 0 !important;
    border-radius: 7px 7px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.dwgrx-gh-css-cart-icon::after {
    content: none !important;
}

/* Blanco en la entrada */
.dwgrx-gh-header .dwgrx-gh-cart-trigger,
.dwgrx-gh-header .dwgrx-gh-css-cart-icon {
    color: #fff !important;
    border-color: #fff !important;
}

.dwgrx-gh-header .dwgrx-gh-css-cart-icon::before {
    border-color: #fff !important;
}

/* Negro tras el primer scroll */
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-cart-trigger,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-css-cart-icon {
    color: #111 !important;
    border-color: #111 !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-css-cart-icon::before {
    border-color: #111 !important;
}

/* =========================================================
   v1.3.0 - Cabecera estilo referencia Gucci
   Izquierda contacto / centro logo / derecha acciones + MENU
========================================================= */
.dwgrx-gh-header {
    grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr) !important;
    padding: 0 76px !important;
    background: transparent !important;
    border-bottom: 0 !important;
    color: #fff !important;
    transition: background-color .25s ease, color .25s ease, box-shadow .25s ease !important;
}

.dwgrx-gh-center {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    width: var(--dwgrx-gh-logo-width) !important;
    height: 100% !important;
    z-index: 2 !important;
    pointer-events: none;
}

.dwgrx-gh-center .dwgrx-gh-logo-link {
    pointer-events: auto;
}

.dwgrx-gh-left,
.dwgrx-gh-right {
    position: relative !important;
    z-index: 3 !important;
}

.dwgrx-gh-left {
    justify-content: flex-start !important;
}

.dwgrx-gh-right {
    justify-content: flex-end !important;
    gap: 9px !important;
}

/* Marco decorativo inspirado en la referencia */
.dwgrx-gh-frame-block {
    min-height: 54px !important;
    padding: 0 18px !important;
}

.dwgrx-gh-frame-block::before,
.dwgrx-gh-frame-block::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: .92;
    transition: border-color .25s ease, opacity .25s ease;
}

.dwgrx-gh-frame-block::before {
    inset: 9px 0;
    border-top: 1px dashed currentColor;
    border-bottom: 1px dashed currentColor;
}

.dwgrx-gh-frame-block::after {
    inset: 0 10px;
    border-left: 1px dashed currentColor;
    border-right: 1px dashed currentColor;
}

.dwgrx-gh-contact-trigger {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    max-width: 290px;
    padding: 0 6px;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
    font: inherit;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: .055em;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.dwgrx-gh-contact-trigger:hover,
.dwgrx-gh-contact-trigger:focus,
.dwgrx-gh-contact-trigger:active {
    background: transparent !important;
    color: inherit !important;
    outline: 0;
}

.dwgrx-gh-contact-trigger:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 4px;
}

.dwgrx-gh-menu-trigger {
    position: relative !important;
    z-index: 2 !important;
    margin-left: 5px !important;
}

.dwgrx-gh-header .dwgrx-gh-icon-button,
.dwgrx-gh-header .dwgrx-gh-menu-trigger,
.dwgrx-gh-header .dwgrx-gh-menu-plus,
.dwgrx-gh-header .dwgrx-gh-menu-label,
.dwgrx-gh-header .dwgrx-gh-contact-trigger,
.dwgrx-gh-header .dwgrx-gh-wishlist,
.dwgrx-gh-header .dwgrx-gh-account,
.dwgrx-gh-header .dwgrx-gh-cart-trigger {
    color: #fff !important;
}

.dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #fff !important;
}

/* Estado scroll: cabecera blanca + elementos negros */
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header {
    background: #fff !important;
    color: #111 !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.10) !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-icon-button,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-trigger,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-plus,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-menu-label,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-contact-trigger,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-wishlist,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-account,
.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-cart-trigger {
    color: #111 !important;
}

.dwgrx-gh-root.is-scrolled .dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #111 !important;
}

/* Desplegable de contacto */
.dwgrx-gh-contact-panel {
    position: absolute;
    top: calc(var(--dwgrx-gh-desktop-height) - 8px);
    left: 76px;
    z-index: 1000010;
    width: min(390px, calc(100vw - 32px));
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.dwgrx-gh-contact-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dwgrx-gh-contact-head {
    min-height: 66px;
    padding: 13px 14px 13px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,.10);
}

.dwgrx-gh-contact-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    line-height: 1.2;
}

.dwgrx-gh-contact-content {
    padding: 8px 22px 20px;
}

.dwgrx-gh-contact-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    color: #111 !important;
    text-decoration: none !important;
    font-size: 13px;
    line-height: 1.45;
}

.dwgrx-gh-contact-item:last-child {
    border-bottom: 0;
}

.dwgrx-gh-contact-item strong {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.dwgrx-gh-contact-item span {
    overflow-wrap: anywhere;
}

.dwgrx-gh-contact-empty {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

@media (max-width: 1050px) {
    .dwgrx-gh-header {
        padding: 0 28px !important;
        grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr) !important;
    }

    .dwgrx-gh-contact-panel {
        left: 28px;
    }

    .dwgrx-gh-wishlist,
    .dwgrx-gh-account {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .dwgrx-gh-header {
        grid-template-columns: 1fr auto 1fr !important;
        height: var(--dwgrx-gh-mobile-height) !important;
        min-height: var(--dwgrx-gh-mobile-height) !important;
        padding: 0 14px !important;
    }

    .dwgrx-gh-frame-block {
        min-height: 44px !important;
        padding: 0 8px !important;
    }

    .dwgrx-gh-left {
        min-width: 0;
        max-width: 132px;
    }

    .dwgrx-gh-contact-trigger {
        max-width: 122px;
        font-size: 9px;
        letter-spacing: .025em;
    }

    .dwgrx-gh-right {
        gap: 1px !important;
    }

    .dwgrx-gh-right .dwgrx-gh-search-trigger,
    .dwgrx-gh-right .dwgrx-gh-cart-trigger {
        display: none !important;
    }

    .dwgrx-gh-menu-trigger {
        min-width: auto !important;
        padding: 0 3px !important;
    }

    .dwgrx-gh-menu-label {
        font-size: 10px !important;
    }

    .dwgrx-gh-center {
        max-width: 34vw !important;
    }

    .dwgrx-gh-contact-panel {
        position: fixed;
        top: var(--dwgrx-gh-mobile-height);
        left: 12px;
        right: 12px;
        width: auto;
    }

    .admin-bar .dwgrx-gh-contact-panel {
        top: calc(var(--dwgrx-gh-mobile-height) + 46px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dwgrx-gh-header,
    .dwgrx-gh-contact-panel {
        transition: none !important;
    }
}

/* =========================================================
   v1.3.1 - Sin marcos + contacto como drawer lateral izquierdo
========================================================= */
/* Eliminar por completo los bordes/guías discontinuas de los laterales. */
.dwgrx-gh-frame-block::before,
.dwgrx-gh-frame-block::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
}

.dwgrx-gh-frame-block {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Overlay de contacto: mismo patrón visual/funcional que el menú lateral. */
.dwgrx-gh-contact-panel {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1000000 !important;
    width: auto !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    transition: opacity .25s ease, visibility .25s ease !important;
}

.dwgrx-gh-contact-panel.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
}

.dwgrx-gh-contact-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    backdrop-filter: blur(2px);
}

.dwgrx-gh-contact-drawer {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(430px, 92vw);
    height: 100%;
    background: #fff;
    color: #111;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 18px 0 45px rgba(0,0,0,.12);
}

.dwgrx-gh-contact-panel.is-open .dwgrx-gh-contact-drawer {
    transform: translateX(0);
}

.dwgrx-gh-contact-head {
    min-height: 84px !important;
    padding: 0 25px !important;
}

.dwgrx-gh-contact-content {
    padding: 22px 25px 45px !important;
}

@media (max-width: 767px) {
    .dwgrx-gh-contact-panel,
    .admin-bar .dwgrx-gh-contact-panel {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: auto !important;
    }

    .dwgrx-gh-contact-drawer {
        width: min(430px, 92vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dwgrx-gh-contact-panel,
    .dwgrx-gh-contact-drawer {
        transition: none !important;
    }
}

/* =========================================================
   v1.3.2 - Contraste automático sobre fondos claros
   Si la cabecera está arriba del todo y el contenido situado debajo
   tiene un fondo claro, se usan directamente los elementos negros
   y el logo de scroll, manteniendo el fondo de cabecera transparente.
========================================================= */
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header {
    background: transparent !important;
    color: #111 !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-logo-entry {
    display: none !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-logo-scroll {
    display: block !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-icon-button,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-trigger,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-trigger:hover,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-trigger:focus,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-trigger:active,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-plus,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-label,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-left-text,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-contact-trigger,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-wishlist,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-account,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-cart-trigger,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-site-title {
    color: #111 !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #111 !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-search-icon,
.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-cart-icon {
    border-color: #111 !important;
    color: #111 !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-search-icon::after {
    background: #111 !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-cart-icon::before {
    border-color: #111 !important;
}

.dwgrx-gh-root.is-on-light:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-cart-count {
    background: #111 !important;
    color: #fff !important;
}

/* v1.3.3 - El logo completo siempre es clicable y vuelve a la home */
.dwgrx-gh-center { z-index: 50 !important; }
.dwgrx-gh-center .dwgrx-gh-logo-link {
    position: relative !important;
    z-index: 51 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}
.dwgrx-gh-center .dwgrx-gh-logo-link img,
.dwgrx-gh-center .dwgrx-gh-logo-link span { pointer-events: none !important; }




/* ==========================================================
   v1.3.5 - ESTADO DE CABECERA DETERMINISTA
   HOME arriba: transparente + blanco.
   HOME con scroll: blanco + negro.
   INTERIORES: blanco + negro siempre.
   Sin detección automática del color del fondo.
   ========================================================== */

/* HOME: estado inicial */
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header {
    background: transparent !important;
    color: #fff !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-icon-button,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-trigger,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-plus,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-menu-label,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-left-text,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-contact-trigger,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-wishlist,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-account,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-cart-trigger,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-site-title {
    color: #fff !important;
}

body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #fff !important;
}

body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-search-icon,
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-cart-icon {
    border-color: #fff !important;
    color: #fff !important;
}

body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-search-icon::after {
    background: #fff !important;
}

body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-header .dwgrx-gh-css-cart-icon::before {
    border-color: #fff !important;
}

body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-logo-entry {
    display: block !important;
}
body.dwgrx-gh-is-home .dwgrx-gh-root:not(.is-scrolled) .dwgrx-gh-logo-scroll {
    display: none !important;
}

/* HOME después del primer scroll */
body.dwgrx-gh-is-home .dwgrx-gh-root.is-scrolled .dwgrx-gh-header,
/* Páginas interiores desde el primer momento */
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header {
    background: #fff !important;
    color: #111 !important;
    border-bottom-color: rgba(0,0,0,.12) !important;
}

body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-icon-button,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-menu-trigger,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-menu-plus,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-menu-label,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-left-text,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-contact-trigger,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-wishlist,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-account,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-cart-trigger,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-site-title {
    color: #111 !important;
}

body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #111 !important;
}

body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-css-search-icon,
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-css-cart-icon {
    border-color: #111 !important;
    color: #111 !important;
}

body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-css-search-icon::after {
    background: #111 !important;
}
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-css-cart-icon::before {
    border-color: #111 !important;
}
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-header .dwgrx-gh-cart-count {
    background: #111 !important;
    color: #fff !important;
}

/* En interiores usamos directamente el logo de scroll (versión oscura). */
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-logo-entry {
    display: none !important;
}
body.dwgrx-gh-is-inner .dwgrx-gh-root .dwgrx-gh-logo-scroll {
    display: block !important;
}

/* ==========================================================
   v1.3.6 - PRODUCTO INDIVIDUAL DESPUÉS DEL PRIMER SCROLL
   Transparente + logo, textos, iconos y controles blancos.
   El estado inicial y el resto de páginas no se modifican.
   ========================================================== */
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header {
    background: transparent !important;
    color: #fff !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-icon-button,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-menu-trigger,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-menu-plus,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-menu-label,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-left-text,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-contact-trigger,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-wishlist,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-account,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-cart-trigger,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-site-title {
    color: #fff !important;
}

body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-icon-button svg {
    stroke: #fff !important;
}

body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-css-search-icon,
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-css-cart-icon {
    border-color: #fff !important;
    color: #fff !important;
}

body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-css-search-icon::after {
    background: #fff !important;
}

body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-css-cart-icon::before {
    border-color: #fff !important;
}

body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-header .dwgrx-gh-cart-count {
    border: 1px solid #fff !important;
    background: transparent !important;
    color: #fff !important;
}

/* En producto con scroll se recupera el logo blanco de entrada. */
body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-logo-entry {
    display: block !important;
}

body.dwgrx-gh-is-product .dwgrx-gh-root.is-scrolled.is-over-product-gallery .dwgrx-gh-logo-scroll {
    display: none !important;
}
