/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4f46e5;      /* Modern Indigo */
    --secondary: #ec4899;    /* Pink for gradients */
    --dark: #0f172a;
    --light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--dark);
    margin: 0;
    padding-bottom: 90px; /* Bottom Nav Space */
    min-height: 100vh;
}

/* Background Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🔥 Modern Glass Card (Pro Level) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #fff;
}

/* Modern Gradient Buttons */
.btn-main {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 50px; /* Pill Shape */
    padding: 8px 20px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-main:hover {
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

/* Navbar (Floating Island Style) */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Bottom Navigation (Floating) */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
}

.nav-item-b {
    text-align: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 10px;
    flex: 1;
    transition: 0.3s;
    position: relative;
}

.nav-item-b i {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
    transition: 0.3s;
}

.nav-item-b.active {
    color: var(--primary);
}

.nav-item-b.active i {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

/* Product Image */
.prod-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.glass-card:hover .prod-img {
    transform: scale(1.02);
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(90deg, #ff9966, #ff5e62);
    color: white;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 94, 98, 0.3);
}

/* Badge Styling */
.badge {
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 500;
}
