/* ═══════════════════════════════════════
   Wooten Pet — Global App Styles
   Applies to all views via <link href="/app.css">
   ═══════════════════════════════════════ */

/* ── Font rendering ── */
*, *::before, *::after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html {
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

/* ── Mobile font bump ──
   Scales all rem values up ~6% on small screens
   so tiny labels (0.72rem→0.78rem effective) become readable */
@media (max-width: 768px) {
    html { font-size: 17px; }
}

/* ── Smooth scrolling on iOS ── */
* { -webkit-overflow-scrolling: touch; }

/* ── Back button global style ── */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #888;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    transition: .2s;
}
.btn-back:hover, .btn-back:active {
    background: rgba(255,255,255,.09);
    color: #e8e8e8;
}

/* ── Touch target minimum ── */
@media (max-width: 768px) {
    button, a, [role="button"] {
        min-height: 44px;
    }
}

