/* GAYA – konto klienta, koszyk, EkoPunkty
   Uwaga: bazuje na minimalnym resetcie Kadence / WooCommerce. */

.gaya-account {
    max-width: 1160px;
    margin: 80px auto 120px;
    padding: 0 24px;
}

.gaya-account__header {
    text-align: center;
    margin-bottom: 32px;
}

.gaya-account__hello-label {
    font-size: 18px;
    letter-spacing: 0.02em;
    margin: 0 0 8px;
}

.gaya-account__points {
    margin: 0;
    font-size: 14px;
    color: #111;
}

.gaya-account__points-label {
    margin-right: 4px;
}

.gaya-account__points-value {
    color: #3AB83A;
    font-weight: 600;
    margin-right: 4px;
}

.gaya-account__points-icon img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* Nawigacja – zakładki */
.gaya-account__nav {
    margin-bottom: 40px;
}

.gaya-account-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gaya-account-nav__item {
    position: relative;
    padding-bottom: 10px;
}

.gaya-account-nav__link {
    text-decoration: none;
    font-size: 14px;
    color: #b2b2b2;
}

.gaya-account-nav__item.is-active .gaya-account-nav__link {
    color: #000;
}

.gaya-account-nav__item.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #000;
}

/* Dashboard – logout */
.gaya-dashboard {
    text-align: center;
    margin-bottom: 8px;
}

.gaya-dashboard__logout {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.gaya-dashboard__logout a {
    color: #111;
    text-decoration: none;
}

.gaya-dashboard__logout a:hover {
    text-decoration: underline;
}

/* Formularze w koncie */
.gaya-account-form__title {
    text-align: center;
    margin: 40px 0 32px;
    font-size: 18px;
}

.gaya-account-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    max-width: 800px;
    margin: 0 auto 32px;
}
.gaya-account-form__grid  > p {width: 100% !important;}
.gaya-account-form__field label {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
}

.gaya-account-form__field .input-text,
.gaya-account-form__field input[type="text"],
.gaya-account-form__field input[type="email"],
.gaya-account-form__field input[type="tel"] {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 10px 18px;
    font-size: 14px;
    outline: none;
}

.gaya-account-form__field .input-text:focus {
    border-color: #000;
}

.gaya-account-form__field .input-text:disabled {
    background: #fafafa;
    color: #333;
    cursor: default;
    border-color: #eee;
}

.gaya-account-form__actions {
    text-align: center;
    margin-top: 8px;
}

.gaya-btn.gaya-btn--primary {
    border-radius: 999px;
    background: #111;
    color: #fff;
    padding: 14px 64px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.gaya-btn.gaya-btn--primary:hover {
    opacity: .9;
}

/* Checkbox VAT */
.gaya-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.gaya-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

/* Karta adresu */
.gaya-account-addresses {
    max-width: 480px;
    margin: 0 auto;
}

.gaya-address-card {
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    padding: 18px 24px;
    margin-bottom: 16px;
}

.gaya-address-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.gaya-address-card__name {
    font-size: 14px;
    margin: 0;
}

.gaya-address-card__badge {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #3AB83A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gaya-address-card__badge-icon {
    color: #fff;
    font-size: 14px;
}

.gaya-address-card__body {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.gaya-address-card__footer {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    font-size: 13px;
}

.gaya-address-card__link {
    color: #000;
    text-decoration: none;
}

.gaya-address-card__link--muted {
    color: #999;
}

.gaya-account-addresses__add {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
}

/* Zamówienia */
.gaya-account-orders {
    max-width: 900px;
    margin: 0 auto;
}

.gaya-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.gaya-orders-table__row {
    border-bottom: 1px solid #e5e5e5;
}

.gaya-orders-table__products {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.gaya-orders-table__thumb-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f5f5f3;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.gaya-orders-table__thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.gaya-orders-table__date,
.gaya-orders-table__total,
.gaya-orders-table__actions {
    font-size: 15px;
    white-space: nowrap;
    padding: 20px 0;
    vertical-align: middle;
}

.gaya-orders-table__date {
    width: 140px;
    font-weight: 500;
}

.gaya-orders-table__total {
    width: 120px;
    font-weight: 400;
}

.gaya-orders-table__actions {
    text-align: right;
}

.gaya-orders-table__link {
    color: #000;
    text-decoration: none;
    margin-left: 16px;
    font-size: 14px;
}

.gaya-orders-table__link--invoice {
    text-decoration: underline;
}

.gaya-orders-table__link--buy-again {
    text-decoration: none;
}

/* Status badge */
.gaya-orders-table__status {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
}

.gaya-orders-table__status--completed {
    color: #3AB83A;
}

.gaya-orders-table__status--processing {
    color: #E89B0C;
}

.gaya-orders-table__status--on-hold {
    color: #E89B0C;
}

.gaya-orders-table__status--pending {
    color: #999;
}

.gaya-orders-table__status--cancelled,
.gaya-orders-table__status--failed {
    color: #D94040;
}

.gaya-orders-table__status--refunded {
    color: #999;
}

/* Opłać zamówienie (form-pay) */
.gaya-pay {
    max-width: 640px;
    margin: 0 auto;
}

.gaya-pay__title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 40px 0 32px;
}

.gaya-pay__summary {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
}

.gaya-pay__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.gaya-pay__th {
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
}

.gaya-pay__th--qty {
    text-align: center;
    width: 60px;
}

.gaya-pay__th--total {
    text-align: right;
    width: 100px;
}

.gaya-pay__product-name {
    padding: 16px 20px;
    font-size: 14px;
}

.gaya-pay__product-qty {
    padding: 16px 20px;
    text-align: center;
    color: #666;
}

.gaya-pay__product-total {
    padding: 16px 20px;
    text-align: right;
    font-weight: 500;
}

.gaya-pay__table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.gaya-pay__table tbody tr:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.gaya-pay__footer-label {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    color: #666;
}

.gaya-pay__footer-value {
    padding: 12px 20px;
    text-align: right;
    font-size: 14px;
}

.gaya-pay__table tfoot tr:last-child .gaya-pay__footer-label,
.gaya-pay__table tfoot tr:last-child .gaya-pay__footer-value {
    font-weight: 600;
    color: #111;
    font-size: 15px;
}

/* Payment methods */
.gaya-pay__payment {
    background: transparent;
}

.gaya-pay__methods {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.gaya-pay__methods li {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 8px;
}

.gaya-pay__methods label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.gaya-pay__methods img {
    max-height: 28px !important;
    width: auto !important;
    object-fit: contain;
}

.gaya-pay__methods .payment_box {
    margin-top: 12px;
    padding: 12px 0 0;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #f0f0f0;
}

.gaya-pay__submit-row {
    margin-top: 8px;
}

.gaya-pay__submit-row .woocommerce-terms-and-conditions-wrapper {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.gaya-pay__btn {
    width: 100%;
    border-radius: 999px !important;
    background: #111 !important;
    color: #fff !important;
    padding: 16px 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gaya-pay__btn:hover {
    background: #000 !important;
}

/* Subskrypcje */
.gaya-account-subscriptions {
    max-width: 900px;
    margin: 0 auto;
}

.gaya-subscriptions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e5e5e5;
}

.gaya-subscriptions-list__item {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, auto);
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    column-gap: 24px;
}

.gaya-subscriptions-list__product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gaya-subscriptions-list__thumb {
    width: 48px !important;
    height: auto !important;
}

.gaya-subscriptions-list__name {
    font-size: 14px;
}

.gaya-subscriptions-list__meta {
    font-size: 12px;
    color: #999;
}

.gaya-subscriptions-list__delivery {
    font-size: 13px;
}

.gaya-subscriptions-list__actions {
    text-align: right;
    font-size: 13px;
}

.gaya-subscriptions-list__link {
    color: #000;
    text-decoration: none;
    margin-left: 16px;
}

.gaya-subscriptions-list__link--muted {
    color: #999;
}

/* Reset hasła – komunikat po wysłaniu formularza */
.gaya-reset-notice {
    max-width: 480px;
    margin: 48px auto 0;
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #525252;
}

.gaya-reset-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.gaya-reset-notice--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

/* Reset hasła – formularz Woo trzymamy, tylko centrowanie */
.woocommerce-lost-password .woocommerce form {
    max-width: 480px;
    margin: 32px auto 0;
}

.woocommerce-lost-password .woocommerce form .input-text {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    padding: 10px 18px;
}

/* Koszyk – prawa kolumna z EkoPunktami (makieta nowego koszyka) */

.gaya-cart-summary {
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    padding: 24px 28px 28px;
    background: #fff;
    font-size: 14px;
}

/* Tooltip EkoPunkty */
.gaya-eco {
    position: relative;
    border-radius: 12px;
    border: 1px solid #3AB83A;
    padding: 12px 14px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gaya-eco__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #3AB83A;
}

.gaya-eco__icon img {
    width: 18px;
    height: 18px;
}

.gaya-eco__points {
    font-weight: 600;
}

.gaya-eco__tooltip {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,.12);
    padding: 16px 20px;
    width: 260px;
    font-size: 12px;
    z-index: 5;
    display: none;
}

.gaya-eco.is-open .gaya-eco__tooltip {
    display: block;
}

/* Przyciski/inputs w podsumowaniu koszyka */
.gaya-cart-summary .button.checkout-button {
    width: 100%;
    border-radius: 999px;
    background: #111;
    color: #fff;
    padding: 14px 0;
}

/* Responsywność */
@media (max-width: 768px) {
    /* --- Wrapper: mniej marginesu, pełna szerokość --- */
    .gaya-account {
        margin: 24px 0 48px;
        padding: 0 16px;
    }

    .gaya-account__header {
        margin-bottom: 20px;
    }

    .gaya-account__hello-label {
        font-size: 16px;
    }

    /* --- Nawigacja: scroll z podkreśleniem --- */
    .gaya-account__nav {
        margin-bottom: 24px;
        border-bottom: 1px solid #ededed;
    }
    .gaya-account-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 28px;
        margin: 0;
        padding: 0;
        scrollbar-width: none;
    }
    .gaya-account-nav::-webkit-scrollbar {
        display: none;
    }
    .gaya-account-nav__item {
        flex-shrink: 0;
    }
    .gaya-account-nav__link {
        white-space: nowrap;
        font-size: 13px;
    }

    /* --- Formularze: 1 kolumna, full width --- */
    .gaya-account-form__title {
        font-size: 16px;
        margin: 24px 0 20px;
    }

    .gaya-account .gaya-account-form__grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px;
        max-width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }

    .gaya-account .gaya-account-form__field .input-text,
    .gaya-account .gaya-account-form__field .woocommerce-Input,
    .gaya-account .gaya-account-form__field input[type="text"],
    .gaya-account .gaya-account-form__field input[type="email"],
    .gaya-account .gaya-account-form__field input[type="tel"] {
        border-radius: 12px !important;
        padding: 14px 16px !important;
        font-size: 15px;
        width: 100% !important;
        box-sizing: border-box;
    }

    .gaya-account .gaya-btn.gaya-btn--primary {
        width: 100%;
        padding: 14px 24px;
        border-radius: 12px;
    }

    /* --- Adresy --- */
    .gaya-account-addresses {
        max-width: 100%;
    }

    .gaya-address-card {
        padding: 16px 18px;
    }

    /* --- Subskrypcje --- */
    .gaya-subscriptions-list__item {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 8px;
        text-align: left;
    }

    .gaya-subscriptions-list__actions {
        text-align: left;
    }

    /* --- Zamówienia – mobile karty --- */
    .gaya-orders-table,
    .gaya-orders-table tbody {
        display: block;
    }

    .gaya-orders-table__row {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "thumb date"
            "thumb total"
            "actions actions";
        gap: 2px 12px;
        padding: 14px 0;
        align-items: start;
    }

    .gaya-orders-table__products {
        grid-area: thumb;
        padding: 0;
    }

    .gaya-orders-table__thumb-wrap {
        width: 56px;
        height: 56px;
        border-radius: 10px;
    }

    .gaya-orders-table__date {
        grid-area: date;
        padding: 0;
        white-space: normal;
        font-size: 14px;
    }

    .gaya-orders-table__status {
        font-size: 12px;
    }

    .gaya-orders-table__total {
        grid-area: total;
        padding: 0;
        font-size: 14px;
        font-weight: 500;
        white-space: normal;
    }

    .gaya-orders-table__actions {
        grid-area: actions;
        display: flex;
        gap: 16px;
        padding: 8px 0 0;
        white-space: normal;
    }

    .gaya-orders-table__link {
        margin-left: 0;
        margin-right: 0;
        font-size: 13px;
    }

    /* --- Opłać – mobile --- */
    .gaya-pay {
        padding: 0 4px;
    }

    .gaya-pay__th,
    .gaya-pay__product-name,
    .gaya-pay__product-qty,
    .gaya-pay__product-total,
    .gaya-pay__footer-label,
    .gaya-pay__footer-value {
        padding-left: 12px;
        padding-right: 12px;
    }
}


/* Tło strony logowania/rejestracji */
body.woocommerce-account,
body.page-id-XX { /* podmień XX na ID strony logowania, jeśli chcesz */
    background: #FAFAFA;
}

/* Wrapper */
.woocommerce form.login, .woocommerce form.checkout_coupon, .woocommerce form.register {
    border: none !important;
}
.woocommerce form .form-row .button {
    border-radius: 999px;
    background: #393535 !important;
    margin-top: 10px;
}
.gaya-auth-wrapper {
    max-width: 480px;
    margin: 32px auto 96px;
    padding: 32px 40px 40px;
    font-family: inherit;
    border:0 !important;
}

/* Zakładki */
.gaya-auth-tabs {
    margin-bottom: 20px;
    text-align: center;
}

.gaya-auth-tab {
    position: relative;
    padding: 0 0 14px;
    margin: 0;
    border: 0;
    background: transparent !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: none;
    color: #B0B0B0 !important;
    cursor: pointer;
    margin-right: 20px;
    outline: none;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.gaya-auth-tab:focus,
.gaya-auth-tab:focus-visible,
.gaya-auth-tab:active {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #B0B0B0 !important;
}

.gaya-auth-tab.is-active,
.gaya-auth-tab.is-active:focus,
.gaya-auth-tab.is-active:focus-visible,
.gaya-auth-tab.is-active:active {
    color: #111111 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.gaya-auth-tab:hover {
    color: #111111 !important;
    background: transparent !important;
}

.gaya-auth-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #111111;
}

/* Nagłówek */
.gaya-auth-header {
    margin-bottom: 28px;
    text-align: center;
}

.gaya-auth-title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 6px;
    font-weight: 600;
}

.gaya-auth-subtitle {
    margin: 0;
    font-size: 14px;
    color: #888888;
}

/* Panele */
.gaya-auth-panel {
    display: none;
}

.gaya-auth-panel.is-active {
    display: block;
}

/* Pola formularza */
.gaya-auth-wrapper .woocommerce-form-row {
    margin-bottom: 18px;
}

.gaya-auth-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111111;
}

.gaya-auth-wrapper .input-text,
.gaya-auth-wrapper input[type="text"],
.gaya-auth-wrapper input[type="email"],
.gaya-auth-wrapper input[type="password"] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background: #fafafa;
    padding: 14px 14px;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: none;
}

.gaya-auth-wrapper .input-text:focus,
.gaya-auth-wrapper input[type="text"]:focus,
.gaya-auth-wrapper input[type="email"]:focus,
.gaya-auth-wrapper input[type="password"]:focus {
    outline: none;
    border-color: #111111;
    background: #ffffff;
}

/* Główny przycisk */
.gaya-auth-btn-primary {
    width: 100%;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 24px;
    border: none;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

.gaya-auth-btn-primary:hover {
    background: #000000;
    transform: translateY(-1px);
}

/* Rząd z checkboxem + przycisk logowania */
.gaya-auth-login-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gaya-auth-login-row .woocommerce-form-login__rememberme {
    font-size: 13px;
    color: #444;
}

/* Link „Nie pamiętasz hasła?” */
.gaya-auth-lost-password {
    margin-top: 10px;
    text-align: right;
}

.gaya-auth-lost-password a {
    font-size: 13px;
    color: #111111;
    text-decoration: none;
}

.gaya-auth-lost-password a:hover {
    text-decoration: underline;
}

/* Divider "lub kontynuuj z" */
.gaya-auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.gaya-auth-divider::before,
.gaya-auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e3e3e3;
}

.gaya-auth-divider span {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

/* Social login buttons (Nextend Social Login overrides) */
.gaya-auth-social {
    margin-bottom: 8px;
}

.gaya-auth-social .nsl-container {
    margin: 0 !important;
    padding: 0 !important;
}

.gaya-auth-social .nsl-container-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gaya-auth-social .nsl-button {
    width: 100% !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: opacity .2s ease, transform .1s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    box-shadow: none !important;
}

.gaya-auth-social .nsl-button:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* Google button — white outline */
.gaya-auth-social .nsl-button-google,
.gaya-auth-social [data-provider="google"] {
    background: #fff !important;
    border: 1px solid #e3e3e3 !important;
    color: #111 !important;
}

/* Facebook button — brand blue */
.gaya-auth-social .nsl-button-facebook,
.gaya-auth-social [data-provider="facebook"] {
    background: #1877F2 !important;
    border: 1px solid #1877F2 !important;
    color: #fff !important;
}

.gaya-auth-social .nsl-button-facebook:hover,
.gaya-auth-social [data-provider="facebook"]:hover {
    background: #166FE5 !important;
}

/* Icon sizing inside Nextend buttons */
.gaya-auth-social .nsl-button svg,
.gaya-auth-social .nsl-button img {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

/* Label text */
.gaya-auth-social .nsl-button-label {
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Hide Nextend default separator if rendered */
.gaya-auth-social .nsl-container-login-layout-below-separator,
.gaya-auth-social .nsl-container-register-layout-below-separator {
    display: none !important;
}

/* Mobile */
@media (max-width: 600px) {
    .gaya-auth-wrapper {
        margin: 40px 16px 64px;
        padding: 24px 20px 28px;
        border-radius: 20px;
    }

    .gaya-auth-tabs {
        gap: 32px;
        margin-bottom: 20px;
    }

    .gaya-auth-title {
        font-size: 24px;
    }
}

