/* ============================================================
   Скин Android (Material 3), формы и движение.
   Цвета берутся из темы, поэтому это COIF Bank, а не
   стандартное гугловское приложение.
   ============================================================ */

[data-skin="material"] {
    --font: Roboto, 'Google Sans', 'Segoe UI', Inter, system-ui, sans-serif;
    --gutter: 16px;

    --radius-logo: 26px;
    --radius-card: 18px;
    --radius-bankcard: 22px;
    --radius-btn: 100px;
    --radius-input: 14px;
    --radius-sheet: 28px;
    --radius-ico: 50%;
    --radius-chip: 8px;
    --radius-toast: 6px;

    --nav-h: 60px;
    --nav-blur: none;
    --nav-title-size: 21px;
    --nav-title-weight: 500;

    --large-title-size: 30px;
    --large-title-weight: 500;
    --large-title-tracking: 0;
    --large-title-margin: 4px 4px 18px;

    --section-title-size: 13.5px;
    --section-title-weight: 500;
    --section-title-transform: none;
    --section-title-tracking: .01em;

    --tabbar-h: 66px;
    --tab-icon-size: 23px;
    --tab-label-size: 11.5px;
    --tab-label-weight: 500;
    --tab-gap: 4px;
    --tab-active-icon-transform: none;
    --tab-in-from: translateY(10px);

    --btn-h: 52px;
    --btn-weight: 500;
    --btn-shadow: none;
    --tap-scale: .985;

    --row-h: 52px;
    --row-pad: 16px;
    --row-divider-inset: 0px;
    --row-ico-size: 40px;

    --input-h: 54px;
    --label-size: 12.5px;
    --label-weight: 500;
    --label-transform: none;
    --label-tracking: .01em;

    --sheet-pad: 22px;
    --shadow-push: -6px 0 24px rgba(0, 0, 0, .3);
}

/* Панель Material, заголовок слева и крупнее */
[data-skin="material"] .nav { padding-inline: 4px 12px; }
[data-skin="material"] .nav-title { padding-left: 6px; }

/* Пилюля-индикатор под активной вкладкой */
[data-skin="material"] .tab-ico::before {
    content: '';
    position: absolute;
    width: 62px; height: 32px;
    border-radius: 16px;
    background: var(--accent-soft);
    transform: scale(.4);
    opacity: 0;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    z-index: -1;
}
[data-skin="material"] .tab.active .tab-ico::before { transform: none; opacity: 1; }
[data-skin="material"] .tab-badge { margin-left: 10px; top: 6px; }

[data-skin="material"] .btn { letter-spacing: .01em; }
[data-skin="material"] .list, [data-skin="material"] .card { border-radius: 18px; }

/* Поля ввода в стиле filled */
[data-skin="material"] .input {
    border-radius: 14px 14px 4px 4px;
    border-bottom: 1.5px solid var(--text-mute);
}
[data-skin="material"] .input:focus { border-bottom-color: var(--accent); }

/* Heads-up уведомление Android */
[data-skin="material"] .notif {
    border-radius: 26px;
    background: var(--notif-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .3), 0 1px 3px rgba(0, 0, 0, .2);
    padding: 14px 16px;
}
[data-skin="material"] .notif-ico { border-radius: 50%; }
[data-skin="material"] .notif-app { font-size: 11.5px; text-transform: none; letter-spacing: 0; }

/* Рябь при нажатии */
[data-skin="material"] .ripple {
    position: absolute;
    border-radius: 50%;
    background: currentColor;
    opacity: .16;
    transform: scale(0);
    pointer-events: none;
    animation: ripple 560ms var(--ease) forwards;
}
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }
