/* footer.css - Common Footer Styles */

/* 1. Bottom Bar Container */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #333;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

/* 2. Normal Icons (Home, Wallet, etc.) */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666; /* Inactive Color */
    font-size: 0.75rem;
    width: 20%;
    transition: 0.3s;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

/* 3. Active Color (Blue) - Jis page pe ho wo blue dikhega */
.nav-item.active {
    color: #38bdf8;
}

/* 4. CENTER RED BUTTON (+) WRAPPER */
.nav-center {
    position: relative;
    top: -25px; /* Upar uthane ke liye */
    background: #050505; /* Body color se match hona chahiye */
    padding: 5px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 5. THE RED BUTTON ITSELF */
.plus-btn-nav {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000, #cc0000); /* Red Gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    color: white;
    font-size: 1.5rem;
    border: 2px solid #111;
    text-decoration: none;
    transition: transform 0.2s;
}

.plus-btn-nav:active {
    transform: scale(0.9);
}
/* --- HEADER BUY BUTTON STYLES --- */

/* 1. Grouping Buy Button & Coin Badge together */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between Button and Coins */
}

/* 2. The Green BUY Button */
.btn-buy-header {
    background: linear-gradient(135deg, #22c55e, #16a34a); /* Green Color */
    color: white;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem; /* Mobile friendly text size */
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #14532d;
    box-shadow: 0 2px 5px rgba(34, 197, 94, 0.3);
    transition: transform 0.2s;
}

.btn-buy-header:active {
    transform: scale(0.95);
}

.btn-buy-header i {
    font-size: 0.8rem;
}