/* Customer Cabinet v2 — phone shell correction.
 * The responsive WooCommerce account navigation is the only signed-in surface
 * that exposes every account endpoint, including the canonical logout action.
 * Keep it visible on phones; the fixed public bottom navigation is a shortcut
 * bar, not a replacement for account actions.
 * Presentation only; endpoints and handlers remain untouched.
 */

@media (max-width: 640px) {
    .ag-account-page.logged-in .woocommerce:has(.ag-account-nav) > .ag-account-nav {
        display: block !important;
        margin-bottom: 12px !important;
    }

    .ag-account-page.logged-in .woocommerce:has(.ag-account-nav) {
        margin-top: 10px !important;
    }
}
