/* =====================================================
   GOAT GLOVES — ESTILOS PERSONALIZADOS
   goatgloves-custom.css · mobile-first (375px base)
===================================================== */

/* ---- VARIABLES ---- */
:root {
    --rosa:        #f00069;
    --rosa-oscuro: #c8005a;
    --negro:       #111111;
    --blanco:      #ffffff;
    --gris-claro:  #f5f5f5;
    --gris-texto:  #666666;
    --radio:       8px;
    --radio-lg:    12px;
    --sombra:      0 4px 24px rgba(0,0,0,0.10);
    --sombra-rosa: 0 4px 24px rgba(240,0,105,0.30);
    --fuente:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fuente-titulo:   'Anton', Impact, sans-serif;
    --fuente-subtitulo:'Archivo Black', 'Arial Black', sans-serif;
    --max-w:       1200px;
    --trans:       0.2s ease;
}

/* ---- RESET BASE HOMEPAGE ---- */
.gg-homepage *, .gg-product-page .gg-badge,
.gg-product-page .gg-stock-section,
.gg-product-page .gg-delivery-date,
.gg-product-page .gg-packs,
.gg-product-page .gg-reviews,
.gg-product-page .gg-sticky-bar {
    box-sizing: border-box;
}
.gg-homepage {
    font-family: var(--fuente);
    color: var(--negro);
    margin: 0;
    padding: 0;
}
/* Ocultar header/footer nativos de Blocksy solo en homepage */
.gg-homepage .site-header,
.gg-homepage .ct-header,
.gg-homepage header.site-header,
.gg-homepage #masthead,
.gg-homepage .site-footer,
.gg-homepage footer.site-footer,
.gg-homepage #colophon,
.gg-homepage .ct-footer {
    display: none !important;
}

/* ---- BOTONES GLOBALES ---- */
.gg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: var(--radio);
    font-family: var(--fuente);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
}
.gg-btn--rosa {
    background: var(--rosa);
    color: var(--blanco);
    border-color: var(--rosa);
}
.gg-btn--rosa:hover {
    background: var(--rosa-oscuro);
    border-color: var(--rosa-oscuro);
    color: var(--blanco);
    transform: translateY(-1px);
}
.gg-btn--outline {
    background: transparent;
    color: var(--blanco);
    border-color: rgba(255,255,255,0.5);
}
.gg-btn--outline:hover {
    border-color: var(--rosa);
    color: var(--rosa);
}
.gg-btn--dark {
    background: var(--negro);
    color: var(--blanco);
    border-color: var(--negro);
}
.gg-btn--dark:hover {
    background: #2a2a2a;
}
.gg-btn--lg {
    padding: 18px 32px;
    font-size: 17px;
}

/* ---- TÍTULOS DE SECCIÓN ---- */
.gg-section-title {
    font-family: var(--fuente-subtitulo) !important;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 32px;
    color: var(--negro);
}
.gg-section-title--light {
    color: var(--blanco);
}

/* ==============================================
   TOPBAR
============================================== */
.gg-topbar {
    background: var(--rosa);
    color: var(--blanco);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--fuente);
    position: relative;
    z-index: 1000;
}
.gg-topbar p {
    margin: 0;
}

/* ==============================================
   NAVBAR
============================================== */
.gg-nav {
    background: var(--blanco);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    font-family: var(--fuente);
}
.gg-nav.gg-nav--scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.gg-nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.gg-nav__logo {
    text-decoration: none;
    flex-shrink: 0;
}
.gg-nav__logo img {
    height: 36px;
    width: auto;
    display: block;
}
.gg-nav__logo-text {
    font-family: var(--fuente-titulo) !important;
    font-size: 20px;
    font-weight: 900;
    color: var(--negro);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
/* Menú: oculto en móvil */
.gg-nav__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--blanco);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 16px;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.gg-nav__menu.is-open {
    display: flex;
}
.gg-nav__link {
    color: var(--negro);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.gg-nav__link:hover { color: var(--rosa); }
.gg-nav__cta { width: 100%; margin-top: 8px; }

/* ---- CARRITO (icono + contador) ---- */
.gg-nav__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.gg-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--negro);
    text-decoration: none;
    padding: 6px;
    border-radius: var(--radio);
    transition: color var(--trans);
    flex-shrink: 0;
}
.gg-cart:hover { color: var(--rosa); }
.gg-cart svg { display: block; pointer-events: none; }
.gg-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--rosa);
    color: #fff;
    font-family: var(--fuente);
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
}
.gg-cart-count:empty { display: none; }

/* Hamburger */
.gg-nav__hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gg-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--negro);
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}
.gg-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gg-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.gg-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================
   HERO
============================================== */
.gg-hero {
    background: var(--negro);
    color: var(--blanco);
    padding: 64px 16px 72px;
    text-align: center;
}
.gg-hero__inner {
    max-width: 680px;
    margin: 0 auto;
}
.gg-hero__badge {
    display: inline-block;
    background: rgba(240,0,105,0.15);
    border: 1px solid var(--rosa);
    color: var(--rosa);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.gg-hero__title {
    font-family: var(--fuente-titulo) !important;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: var(--blanco);
}
.gg-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 32px;
}
.gg-hero__stock {
    margin-bottom: 32px;
}
.gg-hero__stock-bar {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.gg-hero__stock-fill {
    background: var(--rosa);
    height: 100%;
    width: 20%;
    border-radius: 4px;
}
.gg-hero__stock-text {
    font-size: 13px;
    color: rgba(255,255,255,0.80);
}

/* ==============================================
   TRUST BAR
============================================== */
.gg-trust {
    background: var(--gris-claro);
    padding: 24px 16px;
    font-family: var(--fuente);
}
.gg-trust__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.gg-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 12px 8px;
    background: var(--blanco);
    border-radius: var(--radio);
}
.gg-trust__icon { font-size: 24px; }
.gg-trust__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--negro);
}

/* ==============================================
   CARACTERÍSTICAS
============================================== */
.gg-features {
    background: var(--blanco);
    padding: 64px 16px;
    text-align: center;
}
.gg-features__inner { max-width: var(--max-w); margin: 0 auto; }
.gg-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
}
.gg-features__card {
    border-left: 4px solid var(--rosa);
    padding: 24px 20px;
    border-radius: 0 var(--radio) var(--radio) 0;
    background: var(--gris-claro);
}
.gg-features__icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.gg-features__card h3 {
    font-family: var(--fuente-subtitulo) !important;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 8px;
    color: var(--negro);
}
.gg-features__card p {
    font-size: 15px;
    color: var(--gris-texto);
    margin: 0;
    line-height: 1.6;
}

/* ==============================================
   PACKS (homepage y ficha de producto)
============================================== */
.gg-packs {
    background: var(--negro);
    padding: 72px 16px;
    text-align: center;
    font-family: var(--fuente);
}
.gg-packs__inner { max-width: var(--max-w); margin: 0 auto; }
.gg-packs__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--rosa);
    text-transform: uppercase;
    margin: 0 0 12px;
}
.gg-packs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 16px;
}
.gg-pack {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radio-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: border-color var(--trans), transform var(--trans);
}
.gg-pack:hover {
    border-color: rgba(240,0,105,0.4);
    transform: translateY(-2px);
}
.gg-pack--featured {
    border-color: var(--rosa);
    box-shadow: var(--sombra-rosa);
    background: #1c0010;
}
.gg-pack__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rosa);
    color: var(--blanco);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.gg-pack__qty {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.gg-pack__price {
    font-size: 40px;
    font-weight: 900;
    color: var(--blanco);
    line-height: 1;
    margin-bottom: 6px;
}
.gg-pack__unit {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}
.gg-pack__savings {
    display: inline-block;
    background: rgba(240,0,105,0.15);
    color: var(--rosa);
    border: 1px solid rgba(240,0,105,0.3);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.gg-pack__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gg-pack__list li {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.gg-pack .gg-btn { width: 100%; }

/* ==============================================
   REVIEWS
============================================== */
.gg-reviews {
    background: var(--negro);
    padding: 72px 16px;
    font-family: var(--fuente);
}
.gg-reviews__inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.gg-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 8px;
}
.gg-review {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radio-lg);
    padding: 28px 24px;
    text-align: left;
}
.gg-review__stars {
    color: #f00069;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.gg-review__text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0 0 16px;
    font-style: italic;
}
.gg-review__author {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    font-style: normal;
}

/* ==============================================
   BARRA DE URGENCIA
============================================== */
.gg-urgency {
    background: var(--rosa);
    padding: 40px 16px;
    text-align: center;
    font-family: var(--fuente);
}
.gg-urgency__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.gg-urgency__text {
    color: var(--blanco);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}
.gg-urgency .gg-btn--dark {
    background: var(--negro);
    border-color: var(--negro);
    color: var(--blanco);
    min-width: 240px;
}
.gg-urgency .gg-btn--dark:hover {
    background: #2a2a2a;
}

/* ==============================================
   NEWSLETTER
============================================== */
.gg-newsletter {
    background: var(--blanco);
    padding: 72px 16px;
    text-align: center;
    font-family: var(--fuente);
}
.gg-newsletter__inner { max-width: 560px; margin: 0 auto; }
.gg-newsletter__inner h2 {
    font-family: var(--fuente-subtitulo) !important;
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 12px;
    color: var(--negro);
}
.gg-newsletter__inner p {
    font-size: 15px;
    color: var(--gris-texto);
    margin: 0 0 28px;
}
.gg-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gg-newsletter__form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: var(--radio);
    font-size: 15px;
    font-family: var(--fuente);
    outline: none;
    transition: border-color var(--trans);
}
.gg-newsletter__form input[type="email"]:focus {
    border-color: var(--rosa);
}
.gg-newsletter__form .gg-btn { width: 100%; }
.gg-newsletter__legal {
    font-size: 13px;
    color: var(--gris-texto);
    margin: 12px 0 0;
    min-height: 20px;
}

/* ==============================================
   FOOTER
============================================== */
.gg-footer {
    background: var(--negro);
    color: rgba(255,255,255,0.7);
    padding: 48px 16px 32px;
    font-family: var(--fuente);
}
.gg-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.gg-footer__brand img { height: 36px; margin-bottom: 10px; }
.gg-footer__brand-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--blanco);
}
.gg-footer__brand p {
    font-size: 13px;
    margin: 8px 0 0;
    color: rgba(255,255,255,0.5);
}
.gg-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.gg-footer__links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--trans);
}
.gg-footer__links a:hover { color: var(--rosa); }
.gg-footer__payment p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gg-footer__payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gg-payment-icon {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.gg-footer__copy {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
}
.gg-footer__copy p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

/* ==============================================
   FICHA DE PRODUCTO — Badge
============================================== */
.gg-product-badge {
    display: inline-block;
    background: rgba(240,0,105,0.10);
    border: 1px solid var(--rosa);
    color: var(--rosa);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--fuente);
}

/* ==============================================
   FICHA DE PRODUCTO — Barra de stock
============================================== */
.gg-stock-section {
    margin: 8px 0 16px;
    font-family: var(--fuente);
}
.gg-stock-bar {
    background: rgba(0,0,0,0.10);
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}
.gg-stock-bar__fill {
    background: var(--rosa);
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}
.gg-stock-text {
    font-size: 13px;
    color: var(--gris-texto);
    margin: 0;
}

/* ==============================================
   FICHA DE PRODUCTO — Selector de talla
============================================== */
/* Ocultar el select nativo de WC (se reemplaza con botones visuales) */
.gg-product-page .variations select,
.gg-product-page table.variations {
    display: none !important;
}
/* Guía de talla */
.gg-size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--rosa);
    cursor: pointer;
    text-decoration: underline;
    margin-left: 8px;
    font-family: var(--fuente);
    background: none;
    border: none;
    padding: 0;
}
.gg-size-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--negro);
    margin-bottom: 10px;
    font-family: var(--fuente);
}
.gg-size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.gg-size-btn {
    min-width: 56px;
    padding: 10px 14px;
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: var(--radio);
    background: var(--blanco);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--fuente);
    transition: border-color var(--trans), background var(--trans), color var(--trans);
    text-align: center;
    position: relative;
}
.gg-size-btn:hover {
    border-color: var(--rosa);
    color: var(--rosa);
}
.gg-size-btn.is-active {
    background: var(--rosa);
    border-color: var(--rosa);
    color: var(--blanco);
}
.gg-size-btn.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}
/* Modal guía de talla */
.gg-size-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.gg-size-modal-overlay.is-open {
    display: flex;
}
.gg-size-modal {
    background: var(--blanco);
    border-radius: var(--radio-lg);
    padding: 28px 24px;
    max-width: 400px;
    width: calc(100% - 32px);
    position: relative;
}
.gg-size-modal h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--negro);
}
.gg-size-modal table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.gg-size-modal th, .gg-size-modal td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: left;
}
.gg-size-modal th {
    font-weight: 700;
    background: var(--gris-claro);
}
.gg-size-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--gris-texto);
    line-height: 1;
}

/* ==============================================
   FICHA DE PRODUCTO — Botón CTA principal
============================================== */
.gg-product-page .single_add_to_cart_button,
.gg-product-page button.single_add_to_cart_button {
    background: var(--rosa) !important;
    border-color: var(--rosa) !important;
    color: var(--blanco) !important;
    font-family: var(--fuente) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 16px 28px !important;
    border-radius: var(--radio) !important;
    transition: background var(--trans), transform var(--trans) !important;
    width: 100%;
}
.gg-product-page .single_add_to_cart_button:hover {
    background: var(--rosa-oscuro) !important;
    border-color: var(--rosa-oscuro) !important;
    transform: translateY(-1px) !important;
}

/* ==============================================
   FICHA DE PRODUCTO — Fecha de entrega
============================================== */
.gg-delivery-date {
    font-size: 13px;
    color: var(--gris-texto);
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--fuente);
}

/* ==============================================
   FICHA DE PRODUCTO — Sticky bar móvil
============================================== */
.gg-sticky-bar {
    display: none; /* JS lo activa en móvil */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--negro);
    padding: 12px 16px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--fuente);
}
.gg-sticky-bar.is-visible {
    display: flex;
}
.gg-sticky-bar__price {
    display: flex;
    flex-direction: column;
}
.gg-sticky-bar__label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gg-sticky-bar__amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--blanco);
}
.gg-sticky-bar__amount .woocommerce-Price-amount { color: var(--blanco); }
.gg-sticky-bar__cta {
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 14px;
}

/* ==============================================
   RESPONSIVE — TABLET (768px)
============================================== */
@media (min-width: 768px) {
    .gg-section-title { font-size: 36px; }
    /* Navbar */
    .gg-nav__hamburger { display: none; }
    .gg-nav__cta { width: auto; margin-top: 0; }
    .gg-nav__menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        box-shadow: none;
        align-items: center;
        gap: 24px;
    }
    .gg-nav__link {
        padding: 0;
        border: none;
        font-size: 14px;
    }
    .gg-nav__cta { width: auto; margin-top: 0; }
    /* Trust bar */
    .gg-trust__inner { grid-template-columns: repeat(4, 1fr); }
    .gg-trust__item { flex-direction: column; }
    /* Features */
    .gg-features__grid { grid-template-columns: repeat(3, 1fr); }
    /* Packs */
    .gg-packs__grid { grid-template-columns: repeat(3, 1fr); }
    /* Reviews */
    .gg-reviews__grid { grid-template-columns: repeat(3, 1fr); }
    /* Newsletter */
    .gg-newsletter__form {
        flex-direction: row;
    }
    .gg-newsletter__form input[type="email"] { flex: 1; }
    .gg-newsletter__form .gg-btn { width: auto; flex-shrink: 0; }
    /* Footer */
    .gg-footer__inner { grid-template-columns: 2fr 1fr 1fr; }
    /* Urgency */
    .gg-urgency__inner { flex-direction: row; justify-content: center; }
    /* Hero */
    .gg-hero__title { font-size: 52px; }
    /* Sticky bar solo en móvil */
    .gg-sticky-bar { display: none !important; }
}

/* ==============================================
   RESPONSIVE — DESKTOP (1024px)
============================================== */
@media (min-width: 1024px) {
    .gg-hero { padding: 96px 32px 104px; }
    .gg-hero__title { font-size: 64px; }
    .gg-hero__sub { font-size: 18px; }
    .gg-section-title { font-size: 40px; }
    .gg-features { padding: 96px 32px; }
    .gg-packs { padding: 96px 32px; }
    .gg-reviews { padding: 96px 32px; }
    .gg-pack__price { font-size: 48px; }
    /* Ficha de producto: layout producto en desktop */
    .gg-product-page .gg-packs--product { padding: 72px 32px; }
}

/* ==============================================
   FIX #1 — Ocultar texto 'Goat Gloves' del header de Blocksy
   (el logo SVG/imagen ya identifica la marca)
============================================== */
.site-title-container {
    display: none !important;
}

/* ==============================================
   FIX #2 — Select nativo completamente fuera de pantalla
   para evitar que el navegador haga scroll al cambiar talla
============================================== */
.gg-product-page .variations select,
.gg-product-page table.variations {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ==============================================
   FIX #4 — Override fuentes de Blocksy (IBM Plex Mono en h1-h5)
============================================== */
.gg-homepage h1,
.gg-product-page h1 {
    font-family: var(--fuente-titulo) !important;
    font-feature-settings: normal !important;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.gg-homepage h2,
.gg-homepage h3,
.gg-homepage h4,
.gg-homepage h5,
.gg-product-page h2,
.gg-product-page h3,
.gg-product-page h4,
.gg-product-page h5 {
    font-family: var(--fuente-subtitulo) !important;
    font-feature-settings: normal !important;
}
.gg-homepage p,
.gg-homepage span,
.gg-homepage a,
.gg-homepage button,
.gg-homepage li,
.gg-product-page p,
.gg-product-page span,
.gg-product-page a,
.gg-product-page button,
.gg-product-page li {
    font-family: var(--fuente) !important;
}

/* ==============================================
   FIX #7 — Orden de secciones en móvil (flex order)
   Orden deseado: hero → trust → packs → features → reviews
   → review-photos → urgency → newsletter
============================================== */
.gg-main {
    display: flex;
    flex-direction: column;
}

/* Orden móvil (base) */
.gg-hero           { order: 1; }
.gg-trust          { order: 2; }
.gg-packs          { order: 3; }
.gg-features       { order: 4; }
.gg-reviews        { order: 5; }
.gg-review-photos  { order: 6; }
.gg-urgency        { order: 7; }
.gg-newsletter     { order: 8; }

/* En desktop: features vuelve antes que packs */
@media (min-width: 768px) {
    .gg-features { order: 3; }
    .gg-packs    { order: 4; }
}

/* ==============================================
   FIX #8 — Packs en móvil: columna única, sin scroll horizontal
============================================== */
.gg-packs {
    overflow-x: hidden;
}

/* ==============================================
   FIX #9 — Sección de capturas de reviews
============================================== */
.gg-review-photos {
    background: #130010;
    padding: 48px 16px;
}

.gg-review-photos__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gg-review-photos .gg-section-title--light {
    text-align: center;
    margin-bottom: 32px;
}

.gg-review-photos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gg-review-photos__item {
    background: #1c0010;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(240, 0, 105, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.gg-review-photos__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .gg-review-photos { padding: 64px 24px; }
    .gg-review-photos__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (min-width: 1024px) {
    .gg-review-photos { padding: 80px 32px; }
    .gg-review-photos__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ==============================================
   LIGHTBOX — capturas de reviews
   Puro CSS, sin librerías externas
============================================== */
.gg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.95);
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 56px 16px 32px;
}
.gg-lightbox.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: gg-lb-fadein 0.25s ease both;
}
@keyframes gg-lb-fadein {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}
.gg-lightbox__img {
    max-width: 90vw;
    height: auto;
    border-radius: 8px;
    display: block;
    cursor: default;
    margin: 0 auto;
}
.gg-lightbox__close {
    position: fixed;
    top: 12px;
    right: 12px;
    background: #f00069;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    touch-action: manipulation;
}
.gg-lightbox__close:hover {
    background: #c8005a;
}
/* Las miniaturas del grid muestran cursor de zoom */
.gg-review-photos__item img {
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}
.gg-review-photos__item img:hover {
    opacity: 0.85;
}

/* ==============================================
   MEJORAS MÓVIL — Hero imagen, padding, CTA, Trust SVG
============================================== */

/* Foto hero: sangra de lado a lado, encima del texto */
.gg-hero {
    padding: 0 0 140px !important;
}
.gg-hero__inner {
    padding: 0 16px;
}
.gg-hero__photo {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 28px;
}
.gg-hero__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Reducir márgenes internos del hero en móvil */
.gg-hero__title  { margin-bottom: 12px; }
.gg-hero__sub    { margin-bottom: 20px; }
.gg-hero__stock  { margin-bottom: 20px; }

/* CTA: ancho completo en móvil */
.gg-hero .gg-btn--lg {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

/* Desktop: restaurar layout sin imagen encima */
@media (min-width: 768px) {
    .gg-hero {
        padding: 80px 32px 88px !important;
    }
    .gg-hero__inner {
        padding: 0;
    }
    .gg-hero__photo {
        display: none;
    }
    .gg-hero .gg-btn--lg {
        width: auto;
    }
    .gg-hero__title  { margin-bottom: 20px; }
    .gg-hero__sub    { margin-bottom: 32px; }
    .gg-hero__stock  { margin-bottom: 32px; }
}

/* Trust bar: ajuste tamaño SVG */
.gg-trust__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0; /* elimina espacio residual de emoji */
}
.gg-trust__icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}


/* ==============================================
   FOOTER — Logo real sin filtro destructivo
============================================== */
.gg-footer__logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 10px;
    max-width: 160px;
    object-fit: contain;
}

/* ==============================================
   HERO — Layout dos columnas en desktop
============================================== */

/* Móvil: cols es simple bloque, right oculto */
.gg-hero__cols  { display: block; }
.gg-hero__right { display: none; }

@media (min-width: 768px) {
    /* Hero: quitar text-align center para que el texto quede a la izquierda */
    .gg-hero { text-align: left; }

    /* Dos columnas: texto izq, imagen dcha */
    .gg-hero__cols {
        display: flex;
        align-items: center;
        gap: 48px;
        max-width: var(--max-w);
        margin: 0 auto;
        width: 100%;
    }
    .gg-hero__inner {
        flex: 1 1 50%;
        padding: 0;
    }
    .gg-hero__right {
        flex: 1 1 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gg-hero__right-img {
        max-height: 500px;
        width: 100%;
        object-fit: contain;
        display: block;
    }

    /* Alinear badge y stock a la izquierda */
    .gg-hero__badge  { margin-left: 0; }
    .gg-hero__stock  { text-align: left; }
    .gg-hero .gg-btn--lg { align-self: flex-start; }
}

/* ==============================================
   Ficha producto — Ocultar texto disponibilidad WC
============================================== */
.woocommerce-variation-availability,
.stock,
p.stock { display: none !important; }

/* ==============================================
   TIPOGRAFÍAS GLOBALES — máxima prioridad
   Carga DESPUÉS de Blocksy (dep: ct-main-styles).
   Estrategia doble: override CSS vars de Blocksy
   (--theme-font-family) + font-family !important.
============================================== */

/* -- 1. Override variable raíz de Blocksy (body/texto) -- */
:root,
body {
    --theme-font-family: 'Inter', sans-serif !important;
    font-family: 'Inter', sans-serif !important;
}

/* -- 2. Cuerpo de texto, botones, nav, precios -- */
body, p, span, a, li, button, input, textarea, select,
label, th, td, figcaption,
.menu, .ct-menu-link, .sub-menu a,
.woocommerce, .woocommerce-Price-amount,
.price, .amount, .wc-block-components-product-price,
nav, .gg-nav, .gg-nav__link,
.woocommerce-checkout *, .woocommerce-cart *,
.woocommerce-MyAccount-content *,
.woocommerce-tabs .panel *,
.comment-form * {
    font-family: 'Inter', sans-serif !important;
}

/* -- 3. Override variable Blocksy para h2-h6 y títulos de producto -- */
h2, h3, h4, h5, h6 {
    --theme-font-family: 'Archivo Black', sans-serif !important;
    font-family: 'Archivo Black', sans-serif !important;
    font-weight: 400 !important;
}

/* -- 4. Override variable Blocksy para h1 -- */
h1,
.gg-hero__title,
.entry-title,
.product_title {
    --theme-font-family: 'Anton', sans-serif !important;
    font-family: 'Anton', sans-serif !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.01em !important;
}

/* -- 5. Menú de Blocksy (IBM Plex Mono inline via --theme-font-family) -- */
[data-header*="type-1"] .ct-header [data-id="menu"] > ul > li > a,
[data-header*="type-1"] .ct-header [data-id="menu"] .sub-menu .ct-menu-link,
.ct-menu-link {
    --theme-font-family: 'Inter', sans-serif !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: none !important;
}

/* -- 6. Títulos de sección y cards -- */
.gg-section-title,
.gg-features__card h3,
.gg-newsletter__inner h2,
.woocommerce-loop-product__title,
.woocommerce-tabs .tabs a,
.ct-module-title {
    font-family: 'Archivo Black', sans-serif !important;
    font-weight: 400 !important;
}

/* -- 7. Logo texto -- */
.gg-nav__logo-text,
.site-title, .site-title a {
    font-family: 'Anton', sans-serif !important;
    text-transform: uppercase !important;
}

/* ==============================================
   TABS WOOCOMMERCE — Tipografía ficha de producto
   Selectores específicos para description tab
============================================== */
.woocommerce-Tabs-panel h1,
.woocommerce-Tabs-panel h2,
.woocommerce-Tabs-panel h3,
.woocommerce-Tabs-panel h4,
.wc-tab h2,
.wc-tab h3,
#tab-description h2,
#tab-description h3 {
    font-family: 'Archivo Black', sans-serif !important;
    font-weight: 400 !important;
}

.woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel li,
.wc-tab p,
.wc-tab li,
#tab-description p,
#tab-description li {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
}

.woocommerce-tabs .tabs li a,
.woocommerce-tabs .wc-tabs li a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
}

/* ==============================================
   FICHA PRODUCTO — Espaciado y transición
   descripción (blanco) → packs (negro)
============================================== */

/* 1. Más respiro al final del panel de descripción */
.woocommerce-Tabs-panel,
.wc-tab,
#tab-description {
    padding-bottom: 60px !important;
}

/* 2. Separar visualmente la sección negra de packs */
.gg-product-page .gg-packs {
    padding-top: 64px !important;
    box-shadow: inset 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* 3. Tamaño de los h3 de descripción (German Contact, Corte híbrido, Zona 3D) */
.woocommerce-Tabs-panel h2,
.woocommerce-Tabs-panel h3,
.wc-tab h2,
.wc-tab h3,
#tab-description h2,
#tab-description h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-top: 36px !important;
    margin-bottom: 10px !important;
}

/* El primer h3 no necesita margen superior */
.woocommerce-Tabs-panel h3:first-child,
.woocommerce-Tabs-panel h2:first-child,
#tab-description h3:first-of-type,
#tab-description h2:first-of-type {
    margin-top: 0 !important;
}

/* Talla agotada */
.gg-size-btn.is-disabled,
.gg-size-btn[disabled] {
    color: #ccc !important;
    background: #f5f5f5 !important;
    border-color: #e0e0e0 !important;
    text-decoration: line-through !important;
    cursor: not-allowed !important;
    position: relative;
}
.gg-size-btn.is-disabled::after,
.gg-size-btn[disabled]::after {
    content: 'Agotado';
    display: block;
    font-size: 8px;
    color: #f00069;
    font-weight: 600;
    margin-top: 2px;
}

/* ==============================================
   POPUP DE BIENVENIDA — 10% PRIMERA COMPRA
============================================== */
body.gg-discount-popup-open {
    overflow: hidden;
}

.gg-discount-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    font-family: var(--fuente);
}

.gg-discount-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gg-discount-popup__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(4px);
    cursor: default;
}

.gg-discount-popup__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 40px 38px 32px;
    border-radius: 22px;
    background: var(--blanco);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    text-align: center;
    transform: translateY(18px) scale(0.97);
    transition: transform 0.3s ease;
}

.gg-discount-popup.is-open .gg-discount-popup__panel {
    transform: translateY(0) scale(1);
}

.gg-discount-popup__panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7px;
    background: linear-gradient(90deg, var(--rosa), #ff4d9a);
}

.gg-discount-popup__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f2f2f2;
    color: var(--negro);
    font-size: 28px;
    line-height: 36px;
    cursor: pointer;
    transition: background var(--trans), transform var(--trans);
}

.gg-discount-popup__close:hover {
    background: #e7e7e7;
    transform: rotate(4deg);
}

.gg-discount-popup__eyebrow {
    display: block;
    margin: 2px 42px 14px;
    color: var(--rosa);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.gg-discount-popup__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--rosa);
    color: var(--blanco);
    font-family: var(--fuente-subtitulo);
    font-size: 30px;
    line-height: 1;
    box-shadow: var(--sombra-rosa);
}

.gg-discount-popup__panel h2 {
    margin: 0 0 12px;
    color: var(--negro);
    font-family: var(--fuente-subtitulo) !important;
    font-size: clamp(25px, 5vw, 34px);
    font-weight: 400;
    line-height: 1.12;
}

.gg-discount-popup__panel > p:not(.gg-discount-popup__legal) {
    margin: 0 auto 24px;
    max-width: 410px;
    color: var(--gris-texto);
    font-size: 15px;
    line-height: 1.5;
}

.gg-discount-popup__form {
    gap: 10px;
}

.gg-discount-popup__form input[type="email"] {
    min-height: 52px;
    background: #fff;
}

.gg-discount-popup__form .gg-btn {
    min-height: 52px;
    border: 2px solid var(--rosa) !important;
    background: var(--rosa) !important;
    color: var(--blanco) !important;
    font-family: var(--fuente);
    font-weight: 800;
    box-shadow: var(--sombra-rosa);
}

.gg-discount-popup__form .gg-btn:hover {
    border-color: var(--rosa-oscuro) !important;
    background: var(--rosa-oscuro) !important;
}

.gg-discount-popup__message {
    min-height: 22px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
}

.gg-discount-popup__legal {
    margin: 8px 0 0 !important;
    color: #777 !important;
    font-size: 12px !important;
    line-height: 1.45;
}

.gg-discount-popup__legal a {
    color: var(--rosa);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .gg-discount-popup {
        align-items: flex-end;
        padding: 12px;
    }

    .gg-discount-popup__panel {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 34px 20px 24px;
        border-radius: 20px;
    }

    .gg-discount-popup__eyebrow {
        margin-bottom: 10px;
        font-size: 10px;
    }

    .gg-discount-popup__badge {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
        font-size: 25px;
    }

    .gg-discount-popup__panel h2 {
        font-size: 25px;
    }

    .gg-discount-popup__panel > p:not(.gg-discount-popup__legal) {
        margin-bottom: 18px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gg-discount-popup,
    .gg-discount-popup__panel {
        transition: none;
    }
}

/* ==============================================
   FICHA DE PRODUCTO — ACCESO A RESEÑAS
============================================== */
.gg-review-cta,
.gg-review-cta * {
    box-sizing: border-box;
}

.gg-review-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 0 2px;
    padding: 18px 20px;
    border: 1px solid rgba(240, 0, 105, 0.22);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff7fb, #ffffff);
    font-family: var(--fuente);
}

.gg-review-cta__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.gg-review-cta__text strong {
    color: var(--negro);
    font-size: 14px;
    line-height: 1.35;
}

.gg-review-cta__text span {
    color: var(--gris-texto);
    font-size: 12px;
    line-height: 1.4;
}

.gg-review-cta__button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 11px 18px;
    border: 2px solid var(--rosa);
    border-radius: var(--radio);
    background: var(--rosa);
    color: var(--blanco);
    font-family: var(--fuente);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(240, 0, 105, 0.22);
    transition: background var(--trans), border-color var(--trans), transform var(--trans);
}

.gg-review-cta__button:hover,
.gg-review-cta__button:focus-visible {
    border-color: var(--rosa-oscuro);
    background: var(--rosa-oscuro);
    color: var(--blanco);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .gg-review-cta {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .gg-review-cta__button {
        width: 100%;
    }
}
