/* =========================================================
   RK TRAINING ENGINE
   Bottom Navigation v3.0
   Corporate Colors:
   Basis:  #1c2539
   Akzent: #ea5e20
========================================================= */


/* =========================================================
   1. NAV CONTAINER
========================================================= */

.rk-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 72px;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #1c2539;
    border-top: 1px solid rgba(255,255,255,0.06);

    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
    padding-bottom: env(safe-area-inset-bottom);

    box-shadow: 0 -8px 30px rgba(28,37,57,0.35);

    z-index: 9999;
}


/* =========================================================
   2. NAV ITEM BASE
========================================================= */

.rk-bottom-nav__item {
    flex: 1;
    min-width: 0;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    position: relative;

    transition: all 0.25s ease;
}


/* =========================================================
   3. DISABLED STATE
========================================================= */

.rk-bottom-nav__item.is-disabled {
    opacity: 0.25;
    pointer-events: none;
}


/* =========================================================
   4. SVG ICON BASE STYLE
========================================================= */

.rk-nav-svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: rgba(255,255,255,0.55);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: all 0.25s ease;
}


/* =========================================================
   5. ACTIVE STATE
========================================================= */

.rk-bottom-nav__item.active .rk-nav-svg {
    stroke: #ea5e20;
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(234,94,32,0.6));
}


/* Optional kleiner Indikator unter aktivem Icon */
.rk-bottom-nav__item.active::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ea5e20;
}


/* =========================================================
   6. HOVER (Desktop Preview)
========================================================= */

.rk-bottom-nav__item:hover .rk-nav-svg {
    stroke: #ffffff;
}


/* =========================================================
   7. BODY OFFSET (CONTENT SAFETY)
========================================================= */

body {
    padding-bottom: 72px;
}

body.rk-app-shell {
    padding-top: 58px;
}


/* ========================================
   WALLET BAR
======================================== */

.rk-wallet-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;

    background: #1c2539;
    padding: 12px 16px;
    box-sizing: border-box;

    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


/* INNER */

.rk-wallet-inner {
    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 620px;
    margin: 0 auto;
}


/* COINS */

.rk-wallet-coins {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 18px;
    font-weight: 700;

    color: #ea5e20;
}


/* HERO ICON */

.rk-hero-icon {
    width: 22px;
    height: 22px;

    fill: #ea5e20;

    flex-shrink: 0;
}
