/* ============================================================
   GORILLA GRILLZ - MI CUENTA / WOOCOMMERCE ACCOUNT
   Sustituye el CSS anterior por este completo
   ============================================================ */

:root {
    --gg-account-bg: #fff7e6;
    --gg-account-card: #efefef;
    --gg-account-card-2: #f4ecd9;
    --gg-account-white: #ffffff;
    --gg-account-black: #111111;
    --gg-account-yellow: #f7b500;
    --gg-account-border: #111111;
    --gg-account-muted: rgba(17, 17, 17, 0.72);
    --gg-account-shadow: 0 10px 0 rgba(0, 0, 0, 0.08);
    --gg-account-radius-xl: 26px;
    --gg-account-radius-lg: 22px;
    --gg-account-radius-md: 18px;
    --gg-account-radius-sm: 14px;
}

/* ============================================================
   BASE
   ============================================================ */

body.woocommerce-account {
    background: var(--gg-account-bg);
}

body.woocommerce-account .site-main,
body.woocommerce-account .gg-normal-page-main {
    background: var(--gg-account-bg);
}

body.woocommerce-account .container,
body.woocommerce-account .gg-normal-page-container {
    max-width: 1280px;
}

body.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    padding: 34px 0 64px;
}

/* Sin login: columna única centrada */
body.woocommerce-account:not(.logged-in) .woocommerce {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: none;
}

body.woocommerce-account:not(.logged-in) .woocommerce .gg-login-wrap {
    width: 100%;
}

body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper:empty {
    display: none;
}

body.woocommerce-account .woocommerce::after,
body.woocommerce-account .woocommerce::before {
    content: none !important;
    display: none !important;
}

/* ============================================================
   NAV LATERAL
   ============================================================ */

body.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none !important;
    width: 100% !important;
    background: var(--gg-account-card);
    border: 2px solid var(--gg-account-border);
    border-radius: var(--gg-account-radius-xl);
    padding: 14px;
    box-shadow: var(--gg-account-shadow);
    position: sticky;
    top: calc(var(--gg-sticky-header-height, 64px) + var(--gg-sticky-nav-height, 45px) + 18px);
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #f3ecd8;
    color: var(--gg-account-black);
    text-decoration: none;
    border: 2px solid transparent;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a::after {
    content: "›";
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    margin-left: 12px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: var(--gg-account-yellow);
    border-color: var(--gg-account-black);
    transform: translateX(2px);
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a {
    background: #f8f8f8;
    border-color: rgba(17, 17, 17, 0.16);
}

body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
}

/* ============================================================
   CONTENIDO PRINCIPAL
   ============================================================ */

body.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
    min-width: 0;
    background: var(--gg-account-card);
    border: 2px solid var(--gg-account-border);
    border-radius: var(--gg-account-radius-xl);
    padding: 24px;
    box-shadow: var(--gg-account-shadow);
}

body.woocommerce-account .woocommerce-MyAccount-content > :last-child {
    margin-bottom: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
    color: var(--gg-account-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 10px;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--gg-account-black);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: #8e6500;
}

/* ============================================================
   TITULOS
   ============================================================ */

body.woocommerce-account .woocommerce-MyAccount-content h1,
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3,
body.woocommerce-account .woocommerce-MyAccount-content h4 {
    margin: 0 0 16px;
    color: var(--gg-account-black);
    font-weight: 950;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.94;
}

body.woocommerce-account .woocommerce-MyAccount-content h1 {
    font-size: clamp(26px, 2.7vw, 42px);
}

body.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: clamp(23px, 2.2vw, 34px);
}

body.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: clamp(19px, 1.7vw, 26px);
}

body.woocommerce-account .woocommerce-MyAccount-content h4 {
    font-size: clamp(16px, 1.4vw, 20px);
}

/* ============================================================
   BLOQUES GENERALES / MENSAJES / DASHBOARD
   ============================================================ */

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 2px solid var(--gg-account-border);
    border-radius: var(--gg-account-radius-md);
    background: #ffffff;
    color: var(--gg-account-black);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    box-shadow: none;
}

body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-error::before {
    color: var(--gg-account-black);
}

body.woocommerce-account .gg-ref-card {
    margin: 0 0 20px;
    padding: 22px;
    background: var(--gg-account-yellow);
    border: 2px solid var(--gg-account-border);
    border-radius: var(--gg-account-radius-lg);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.09);
}

body.woocommerce-account .gg-ref-card h3 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2vw, 34px);
    color: var(--gg-account-black);
}

body.woocommerce-account .gg-ref-card strong {
    display: block;
    color: var(--gg-account-black);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 900;
}

/* Párrafos del dashboard */
body.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
    margin: 0 0 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #050505;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

body.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type strong {
    color: var(--gg-account-yellow);
    font-weight: 950;
}

body.woocommerce-account .woocommerce-MyAccount-content > p:nth-of-type(2) {
    margin: 0;
    padding: 18px 20px;
    background: #f3ecd8;
    border: 2px solid var(--gg-account-border);
    border-radius: 18px;
}

body.woocommerce-account .woocommerce-MyAccount-content > p:nth-of-type(2) a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 3px 4px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1.5px solid var(--gg-account-border);
    background: #ffffff;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

body.woocommerce-account .woocommerce-MyAccount-content > p:nth-of-type(2) a:hover {
    background: var(--gg-account-yellow);
}

/* ============================================================
   TABLAS - PEDIDOS / DESCARGAS / PUNTOS
   ============================================================ */

body.woocommerce-account table.shop_table,
body.woocommerce-account .woocommerce-MyAccount-content table:not(.variations):not(.shop_attributes) {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid var(--gg-account-border);
    border-radius: 20px;
    box-shadow: none;
}

body.woocommerce-account table.shop_table thead th,
body.woocommerce-account .woocommerce-MyAccount-content table:not(.variations):not(.shop_attributes) thead th {
    padding: 15px 14px;
    background: #050505;
    color: #ffffff;
    border: 0;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
}

body.woocommerce-account table.shop_table tbody td,
body.woocommerce-account .woocommerce-MyAccount-content table:not(.variations):not(.shop_attributes) tbody td {
    padding: 16px 14px;
    background: #ffffff;
    color: var(--gg-account-black);
    border-top: 1px solid rgba(17, 17, 17, 0.12);
    font-size: 15px;
    line-height: 1.45;
    vertical-align: middle;
}

body.woocommerce-account table.shop_table tbody tr:hover td,
body.woocommerce-account .woocommerce-MyAccount-content table:not(.variations):not(.shop_attributes) tbody tr:hover td {
    background: #fffdf8;
}

body.woocommerce-account .woocommerce-orders-table__cell-order-actions,
body.woocommerce-account td.woocommerce-orders-table__cell-order-actions {
    white-space: nowrap;
}

body.woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
body.woocommerce-account table.shop_table .button,
body.woocommerce-account .woocommerce-MyAccount-content table .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 16px;
    border: 2px solid var(--gg-account-border) !important;
    border-radius: 999px !important;
    background: var(--gg-account-yellow) !important;
    color: var(--gg-account-black) !important;
    text-decoration: none !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: none !important;
}

body.woocommerce-account .woocommerce-orders-table__cell-order-actions .button:hover,
body.woocommerce-account table.shop_table .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content table .button:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

/* Para que las tablas no queden pegadas */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table {
    margin: 0;
}

/* ============================================================
   DIRECCIONES
   ============================================================ */

body.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

body.woocommerce-account .woocommerce-Address {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 310px;
    padding: 26px;
    background: #f3ecd8;
    border: 2px solid var(--gg-account-border);
    border-radius: 24px;
}

body.woocommerce-account .woocommerce-Address-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
}

body.woocommerce-account .woocommerce-Address-title h2 {
    margin: 0;
    max-width: 70%;
    font-size: clamp(24px, 2.3vw, 38px);
}

body.woocommerce-account .woocommerce-Address-title .edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border: 2px solid var(--gg-account-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--gg-account-black);
    text-decoration: none;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
}

body.woocommerce-account .woocommerce-Address-title .edit:hover {
    background: var(--gg-account-yellow);
}

body.woocommerce-account address {
    margin: auto 0 0;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 18px;
    font-style: normal;
    color: var(--gg-account-muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 340px;
}

body.woocommerce-account .woocommerce-MyAccount-content > p:has(+ .woocommerce-Addresses),
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses + p {
    margin-top: 0;
}

/* Notita de direcciones por defecto */
body.woocommerce-account .woocommerce-MyAccount-content > p:not(:first-of-type):not(:nth-of-type(2)) {
    margin: 0 0 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #050505;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 800;
}

/* ============================================================
   FORMULARIOS - DETALLES CUENTA / DIRECCIONES
   ============================================================ */

body.woocommerce-account form.woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-address-fields form,
body.woocommerce-account form.edit-account,
body.woocommerce-account form.edit-address {
    display: grid;
    gap: 16px;
    margin: 0;
}

body.woocommerce-account form fieldset {
    margin: 8px 0 0;
    padding: 20px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 18px;
    background: #f8f8f8;
}

body.woocommerce-account form fieldset legend {
    padding: 0 8px;
    color: var(--gg-account-black);
    font-size: 15px;
    font-weight: 900;
}

body.woocommerce-account form .form-row {
    margin: 0;
    padding: 0;
}

body.woocommerce-account form .clear {
    display: none;
}

body.woocommerce-account form label {
    display: block;
    margin-bottom: 7px;
    color: var(--gg-account-black);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 950;
    text-transform: uppercase;
}

body.woocommerce-account form .required {
    color: #d83e00;
    font-weight: 900;
}

body.woocommerce-account form input.input-text,
body.woocommerce-account form input[type="text"],
body.woocommerce-account form input[type="email"],
body.woocommerce-account form input[type="password"],
body.woocommerce-account form input[type="tel"],
body.woocommerce-account form select,
body.woocommerce-account form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    border: 1.8px solid rgba(17, 17, 17, 0.45);
    border-radius: 12px;
    background: #ffffff;
    color: var(--gg-account-black);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    box-shadow: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

body.woocommerce-account form textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 12px;
}

body.woocommerce-account form input.input-text:focus,
body.woocommerce-account form input[type="text"]:focus,
body.woocommerce-account form input[type="email"]:focus,
body.woocommerce-account form input[type="password"]:focus,
body.woocommerce-account form input[type="tel"]:focus,
body.woocommerce-account form select:focus,
body.woocommerce-account form textarea:focus {
    border-color: var(--gg-account-black);
    outline: none;
    box-shadow: 0 0 0 4px rgba(247, 181, 0, 0.22);
}

body.woocommerce-account .woocommerce-form-row em,
body.woocommerce-account .form-row em,
body.woocommerce-account .woocommerce-MyAccount-content em {
    color: #5d5d5d;
    font-size: 14px;
    line-height: 1.45;
    font-style: italic;
}

/* Botones formularios */
body.woocommerce-account .woocommerce-Button,
body.woocommerce-account button.button,
body.woocommerce-account input.button,
body.woocommerce-account a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 2px solid var(--gg-account-border) !important;
    border-radius: 999px !important;
    background: var(--gg-account-yellow) !important;
    color: var(--gg-account-black) !important;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: none !important;
    cursor: pointer;
}

body.woocommerce-account .woocommerce-Button:hover,
body.woocommerce-account button.button:hover,
body.woocommerce-account input.button:hover,
body.woocommerce-account a.button:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

/* ============================================================
   SELECT2
   ============================================================ */

body.woocommerce-account .select2-container {
    width: 100% !important;
}

body.woocommerce-account .select2-container .select2-selection--single {
    height: 46px;
    border: 1.8px solid rgba(17, 17, 17, 0.45);
    border-radius: 12px;
    background: #ffffff;
}

body.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 14px;
    padding-right: 34px;
    color: var(--gg-account-black);
    font-size: 15px;
    line-height: 44px;
    font-weight: 700;
}

body.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}

body.woocommerce-account .select2-dropdown {
    border: 1.8px solid rgba(17, 17, 17, 0.45);
    border-radius: 12px;
    overflow: hidden;
}

/* ============================================================
   MIS PUNTOS - refuerzo visual extra
   ============================================================ */

/* Si tu endpoint mete un título propio, lo hacemos más vistoso */
body.woocommerce-account .woocommerce-MyAccount-content .gg-points-title,
body.woocommerce-account .woocommerce-MyAccount-content .my-points-title,
body.woocommerce-account .woocommerce-MyAccount-content .ywpar-title,
body.woocommerce-account .woocommerce-MyAccount-content .ywpar-wrapper h2:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: clamp(28px, 2.8vw, 46px);
}

/* Resumen puntos */
body.woocommerce-account .woocommerce-MyAccount-content .gg-points-summary,
body.woocommerce-account .woocommerce-MyAccount-content .ywpar-summary,
body.woocommerce-account .woocommerce-MyAccount-content .my-points-summary,
body.woocommerce-account .woocommerce-MyAccount-content .points-summary {
    margin: 0 0 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #050505;
    color: var(--gg-account-yellow);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 900;
}

/* ============================================================
   DESCARGAS / VISTA PEDIDO / DETALLES PEDIDO
   ============================================================ */

body.woocommerce-account .woocommerce-order-details,
body.woocommerce-account .woocommerce-customer-details,
body.woocommerce-account .woocommerce-order-downloads {
    margin-top: 24px;
}

body.woocommerce-account .woocommerce-order-details .shop_table,
body.woocommerce-account .woocommerce-order-downloads .shop_table,
body.woocommerce-account .woocommerce-customer-details address {
    margin-top: 14px;
}

body.woocommerce-account .woocommerce-column--billing-address,
body.woocommerce-account .woocommerce-column--shipping-address {
    background: #f3ecd8;
    border: 2px solid var(--gg-account-border);
    border-radius: 22px;
    padding: 22px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    body.woocommerce-account .woocommerce {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 22px;
    }

    body.woocommerce-account .woocommerce-Address {
        min-height: 280px;
    }
}

@media (max-width: 991px) {
    body.woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0 42px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        position: static;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation a {
        justify-content: center;
        text-align: center;
        min-height: 44px;
        font-size: 12px;
        padding: 10px 12px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation a::after {
        display: none;
    }

    body.woocommerce-account .woocommerce-MyAccount-content {
        padding: 18px;
    }

    body.woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account .woocommerce-Address-title h2 {
        max-width: 100%;
    }

    body.woocommerce-account .woocommerce-Address {
        min-height: unset;
    }
}

@media (max-width: 767px) {
    body.woocommerce-account .woocommerce-MyAccount-content h1 {
        font-size: 30px;
    }

    body.woocommerce-account .woocommerce-MyAccount-content h2 {
        font-size: 24px;
    }

    body.woocommerce-account .woocommerce-MyAccount-content h3 {
        font-size: 20px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation,
    body.woocommerce-account .woocommerce-MyAccount-content {
        border-radius: 20px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        padding: 10px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation ul {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account .woocommerce-MyAccount-content {
        padding: 15px;
    }

    body.woocommerce-account .gg-ref-card {
        padding: 18px;
        border-radius: 18px;
    }

    body.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type,
    body.woocommerce-account .woocommerce-MyAccount-content > p:nth-of-type(2),
    body.woocommerce-account .woocommerce-MyAccount-content > p:not(:first-of-type):not(:nth-of-type(2)) {
        padding: 14px 15px;
        border-radius: 16px;
    }

    body.woocommerce-account .woocommerce-Address {
        padding: 18px;
        border-radius: 20px;
    }

    body.woocommerce-account .woocommerce-Address-title {
        flex-direction: column;
        align-items: flex-start;
    }

    body.woocommerce-account .woocommerce-Address-title .edit {
        min-height: 38px;
        font-size: 10px;
    }

    body.woocommerce-account address {
        max-width: 100%;
        font-size: 14px;
    }

    body.woocommerce-account table.shop_table,
    body.woocommerce-account .woocommerce-MyAccount-content table:not(.variations):not(.shop_attributes) {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    body.woocommerce-account table.shop_table thead th,
    body.woocommerce-account table.shop_table tbody td,
    body.woocommerce-account .woocommerce-MyAccount-content table:not(.variations):not(.shop_attributes) thead th,
    body.woocommerce-account .woocommerce-MyAccount-content table:not(.variations):not(.shop_attributes) tbody td {
        padding: 12px 11px;
        font-size: 13px;
    }

    body.woocommerce-account form fieldset {
        padding: 16px;
        border-radius: 16px;
    }

    body.woocommerce-account form input.input-text,
    body.woocommerce-account form input[type="text"],
    body.woocommerce-account form input[type="email"],
    body.woocommerce-account form input[type="password"],
    body.woocommerce-account form input[type="tel"],
    body.woocommerce-account form select,
    body.woocommerce-account form textarea {
        font-size: 14px;
    }
}

/* ============================================================
   FIX DEFINITIVO - MI CUENTA / DIRECCIONES
   /mi-cuenta/edit-address/
   ============================================================ */

/* Contenedor general de direcciones */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
    margin: 18px 0 0 !important;
}

/* Limpia floats clásicos de Woo */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::after,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set::before,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set::after {
    content: none !important;
    display: none !important;
}

/* Cada tarjeta de dirección */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .col-1.woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .col-2.woocommerce-Address {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 18px !important;
    background: #fff7e6 !important;
    border: 2px solid #111111 !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    position: relative !important;
}

/* Header de la tarjeta */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Título */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
    margin: 0 !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    color: #111111 !important;
    font-size: clamp(20px, 2vw, 30px) !important;
    line-height: .95 !important;
    font-weight: 950 !important;
    letter-spacing: -.04em !important;
    text-transform: uppercase !important;
}

/* Botón editar */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 36px !important;
    max-width: 150px !important;
    padding: 8px 12px !important;
    background: #ffffff !important;
    border: 2px solid #111111 !important;
    border-radius: 999px !important;
    color: #111111 !important;
    text-decoration: none !important;
    font-size: 10px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    white-space: normal !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover {
    background: #f7b500 !important;
    color: #111111 !important;
}

/* Caja de dirección */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 14px 16px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17, 17, 17, .14) !important;
    border-radius: 14px !important;
    color: rgba(17, 17, 17, .78) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    font-style: normal !important;
}

/* Texto superior de direcciones */
body.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    margin: 0 0 18px !important;
    padding: 15px 18px !important;
    background: #111111 !important;
    color: #ffffff !important;
    border: 2px solid #111111 !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 800 !important;
}

/* Evita que el CSS del dashboard convierta este párrafo en otra cosa rara */
body.woocommerce-account .woocommerce-MyAccount-content > p:first-child a {
    color: #f7b500 !important;
}

/* Responsive */
@media (max-width: 900px) {
    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
    body.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses,
    body.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
    body.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address,
    body.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address,
    body.woocommerce-account .woocommerce-MyAccount-content .col-1.woocommerce-Address,
    body.woocommerce-account .woocommerce-MyAccount-content .col-2.woocommerce-Address {
        padding: 15px !important;
        border-radius: 18px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,
    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
        font-size: 24px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
        max-width: none !important;
        width: auto !important;
        min-height: 34px !important;
        font-size: 10px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
        font-size: 13px !important;
        padding: 13px 14px !important;
    }
}

.woocommerce-MyAccount-navigation-link--downloads{display:none;}

body.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
    min-width: 0;
    background: var(--gg-account-card);
    border: 2px solid var(--gg-account-border);
    border-radius: var(--gg-account-radius-xl);
    padding: 24px;
   box-shadow: 0 0 0 rgba(0, 0, 0, 0.08);
   
}


body.woocommerce-account .woocommerce-MyAccount-navigation{
 box-shadow: 0 0 0 rgba(0, 0, 0, 0.08);
}


main div, main nav, main p, main tbody, main td, body.woocommerce-account form fieldset, .woocommerce a{
    background: #fff7e6 !important;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.08) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a, body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a, body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a{
color:black !important;}

a.woocommerce-button.button.view {
    margin-right: 5px;
}

.gg-form-field, .gg-form-actions, .woocommerce a.gg-lost-password {
    background: #f7b500 !important;
}

/* ============================================================
   MI CUENTA — GORILLA GRILLZ
   Fondo crema + caja amarilla #FAB300
   ============================================================ */

body.woocommerce-account .gg-myaccount-main {
    background: #fff7e6 !important;
    padding: clamp(28px, 4vw, 58px) 0 clamp(70px, 8vw, 120px) !important;
    min-height: 60vh !important;
}

body.woocommerce-account .gg-myaccount-main > .container {
    width: 100% !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.woocommerce-account.logged-in .gg-myaccount-main .woocommerce {
    display: grid !important;
    grid-template-columns: 285px minmax(0, 1fr) !important;
    gap: clamp(34px, 5vw, 90px) !important;

    background: #FAB300 !important;
    border: 2px solid #000 !important;
    border-radius: 5px !important;

    padding: 34px 18px 34px 18px !important;
    box-sizing: border-box !important;
}

/* ============================================================
   NAVEGACIÓN LATERAL
   ============================================================ */

body.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li::marker {
    content: "" !important;
    display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    min-height: 35px !important;
    padding: 8px 34px 8px 18px !important;

    border-radius: 5px !important;
    color: #000 !important;
    background: transparent !important;

    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li a::after {
    content: "›" !important;
    position: absolute !important;
    right: 11px !important;
    top: 50% !important;
    transform: translateY(-52%) !important;

    color: currentColor !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: #000 !important;
    color: #fff !important;
}

/* Quitar estrella visual de Mis Puntos si viene en texto */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--mis-puntos a {
    font-size: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--mis-puntos a::before {
    content: "Mis puntos" !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

/* Ocultar Descargas si no quieres que aparezca en el menú */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads {
    display: none !important;
}

/* ============================================================
   CONTENIDO
   ============================================================ */

body.woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;

    color: #000 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content > *:first-child {
    margin-top: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
    margin: 0 0 28px !important;
    color: #000 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
    color: #008b00 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline !important;
}

/* ============================================================
   TARJETA REFERIDO
   ============================================================ */

body.woocommerce-account .woocommerce-MyAccount-content .gg-ref-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 0 16px !important;
    color: #000 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .gg-ref-card h3 {
    margin: 0 0 16px !important;
    padding: 0 !important;

    color: #000 !important;
    font-size: clamp(26px, 2.2vw, 36px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .gg-ref-card strong {
    display: block !important;
    color: #000 !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
}

/* ============================================================
   TITULARES / TABLAS / FORMULARIOS DE WOOCOMMERCE
   ============================================================ */

body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3,
body.woocommerce-account .woocommerce-MyAccount-content legend {
    color: #000 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.34) !important;
    border: 1px solid #000 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

body.woocommerce-account .woocommerce-MyAccount-content table th,
body.woocommerce-account .woocommerce-MyAccount-content table td {
    border-color: rgba(0, 0, 0, 0.18) !important;
    color: #000 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input,
body.woocommerce-account .woocommerce-MyAccount-content select,
body.woocommerce-account .woocommerce-MyAccount-content textarea {
    background: #fff7e6 !important;
    border: 1.5px solid #000 !important;
    border-radius: 6px !important;
    color: #000 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content button,
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content input[type="submit"] {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
    border-radius: 6px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:hover {
    background: #fff7e6 !important;
    color: #000 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    body.woocommerce-account .gg-myaccount-main {
        padding-top: 28px !important;
    }

    body.woocommerce-account .gg-myaccount-main .woocommerce {
        display: block !important;
        padding: 18px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 28px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation ul {
        gap: 6px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation li a {
        min-height: 42px !important;
        padding: 10px 38px 10px 16px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content .gg-ref-card {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 520px) {
    body.woocommerce-account .gg-myaccount-main > .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.woocommerce-account .gg-myaccount-main .woocommerce {
        border-width: 2px !important;
        padding: 14px !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content p {
        font-size: 15px !important;
    }
}

.woocommerce-MyAccount-content , .woocommerce-MyAccount-content p, strong, a{
    border: none !important;
    background: transparent !important;
  color:black !important;
}

main div, main nav, main p, main tbody, main td, body.woocommerce-account form fieldset, .woocommerce a {
   border: none !important;
    background: transparent !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a, body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a, body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
    color: #fcf4e3 !important;
}

span.nobr {
    color: #fef6e5;
}

body.woocommerce-account .woocommerce-MyAccount-content > p:nth-of-type(2) a {
    display: inline-flex;
    align-items: center;
    text-transform: lowercase !important;
    font-size: 16px !important;
    min-height: 32px;
    margin: 0px;
  padding: 0px;}

.woocommerce-MyAccount-navigation-link--mis-puntos a::before{display:none;}

body.woocommerce-account .woocommerce-MyAccount-content button.show-password-input {
    background: #fff7e6 !important;
}

/* ============================================================
   MI CUENTA — FLECHA IMAGEN EN TODOS LOS ITEMS
   Normal negra / hover original
   ============================================================ */

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

/* Quita cualquier flecha anterior que pudiera venir del tema */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a::before {
    content: none !important;
    display: none !important;
}

/* Flecha nueva */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a::after {
    content: "" !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
    margin-left: auto !important;

    background-image: url("https://ndev.gorillagrillz.com/wp-content/uploads/2026/05/Group-40.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;

    /* Normal: flecha negra */
    filter: brightness(0) saturate(100%) !important;

    transition: filter .18s ease, transform .18s ease !important;
}

/* Hover / activo: imagen original */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a:hover::after,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.is-active > a::after,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active > a::after,
.woocommerce-MyAccount-navigation ul li.is-active > a::after {
    filter: none !important;
}

/* Pequeño movimiento opcional al hover */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a:hover::after {
    transform: translateX(2px) !important;
}

/* Mi cuenta — flecha fija, sin movimiento en hover */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a::after,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a:hover::after,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.is-active > a::after,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active > a::after,
.woocommerce-MyAccount-navigation ul li.is-active > a::after {
    transform: none !important;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link > a::after {
  margin-top: -8px;}

#menu-main a {
    border: none !important;
    background: transparent !important;
    color: #fff7e6 !important;
}

body.woocommerce-account table.shop_table thead th{
color: #fff7e6 !important;
}


body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address, body.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address, body.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address, body.woocommerce-account .woocommerce-MyAccount-content .col-1.woocommerce-Address, body.woocommerce-account .woocommerce-MyAccount-content .col-2.woocommerce-Address {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 18px !important;
    background: transparent !important;
    border: 2px solid #111111 !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    position: relative !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 14px 16px !important;
    background: #fab300 !important;
    border: 0px solid rgba(17, 17, 17, .14) !important;
    border-radius: 14px !important;
    color: rgba(17, 17, 17, .78) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    font-style: normal !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 36px !important;
    max-width: 150px !important;
    padding: 8px 12px !important;
    background: #fab300 !important;
    border: 2px solid #111111 !important;
    border-radius: 999px !important;
    color: #111111 !important;
    text-decoration: none !important;
    font-size: 10px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    white-space: normal !important;
}


/* Centrar pantalla de login de Mi Cuenta */
.woocommerce:has(.gg-login-wrap--solo) {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
}

/* Caja general del login */
.gg-login-wrap.gg-login-wrap--solo {
    width: 100% !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
}

/* Tarjeta */
.gg-login-wrap--solo .gg-auth-card {
    width: 100% !important;
    max-width: 480px !important;
    box-sizing: border-box !important;
}

/* Centrar pantalla de login de Mi Cuenta */
.woocommerce:has(.gg-login-wrap--solo) {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 65vh !important;
}

/* Caja general del login */
.gg-login-wrap.gg-login-wrap--solo {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
}

/* Tarjeta */
.gg-login-wrap--solo .gg-auth-card {
    width: 100% !important;
    max-width: 480px !important;
    box-sizing: border-box !important;
}
/* ============================================================
   MY ACCOUNT PAGE LAYOUT — extracted from page-9.php
   ============================================================ */

main.site-main.gg-myaccount-main {
    padding-top: 48px;
    padding-bottom: 48px;
}

main.site-main.gg-myaccount-main .container {
    padding-top: 8px;
}

body.logged-in main.site-main.gg-myaccount-main .woocommerce {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

main.site-main.gg-myaccount-main .woocommerce-MyAccount-navigation {
    flex: 0 0 260px;
}

main.site-main.gg-myaccount-main .woocommerce-MyAccount-content {
    flex: 1 1 700px;
    min-width: 0;
}

@media (max-width: 768px) {
    main.site-main.gg-myaccount-main {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    main.site-main.gg-myaccount-main .woocommerce {
        gap: 24px;
    }
}

/* ============================================================
   LOGIN / REGISTER FORM — extracted from woocommerce/myaccount/form-login.php
   ============================================================ */

.gg-login-wrap { max-width: 960px; margin: 0 auto; }
.gg-login-wrap--solo { max-width: 480px; }
.gg-login-wrap .u-columns { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.gg-auth-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    height: 100%;
}
.gg-auth-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    letter-spacing: .02em;
}
.gg-auth-welcome {
    background: var(--color-cream, #FFF5E4);
    border-left: 3px solid var(--color-yellow, #FFB800);
    padding: .65rem 1rem;
    border-radius: 0 .5rem .5rem 0;
    font-size: .88rem;
    margin-bottom: 1.25rem;
}
.gg-form-field { margin-bottom: 1rem; }
.gg-form-field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .3rem; color: #555; }
.gg-form-field input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: .5rem;
    padding: .65rem .9rem;
    font-size: .9rem;
    transition: border-color .15s;
    box-sizing: border-box;
}
.gg-form-field input:focus { border-color: var(--color-yellow, #FFB800); outline: none; }
.gg-form-actions { display: flex; justify-content: space-between; align-items: center; margin: .75rem 0 1.25rem; font-size: .82rem; }
.gg-remember { display: flex; align-items: center; gap: .4rem; cursor: pointer; }
.gg-lost-password { color: #999; text-decoration: none; }
.gg-lost-password:hover { text-decoration: underline; }
.gg-auth-note { font-size: .82rem; color: #777; margin-bottom: 1rem; }

.gg-auth-btn {
    width: 100%;
    background: var(--color-black, #1C1C1C);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: .8rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, color .15s;
    margin-top: .5rem;
}
.gg-auth-btn:hover { background: var(--color-yellow, #FFB800); color: #000; }
.gg-auth-btn--register { background: var(--color-yellow, #FFB800); color: #000; }
.gg-auth-btn--register:hover { background: var(--color-black, #1C1C1C); color: #fff; }
