/* Reset and Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

:root {
    --bg-black: #000000;
    --accent-cyan: #00e5d1;
    --glass-white: rgba(255, 255, 255, 0.1);
}

body {
    background-color: #121212; /* Dark theme base */
}

/* Header Main Style */
.navbar {
    background-color: var(--bg-black);
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 1. Logo Styling */
.logo a {
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 209, 0.3);
}

/* 2. Search Bar Styling (Croma Style) */
.search-wrapper {
    flex: 0 1 500px; /* Search bar ki width */
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 20px;
}

.search-wrapper input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-icon-btn {
    background: #f1f1f1;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    color: #333;
}

/* 3. User Nav (Login/Cart) */
.user-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.nav-item:hover {
    color: var(--accent-cyan);
}

.cart {
    position: relative;
    padding-right: 10px;
}

.badge {
    background: var(--accent-cyan);
    color: black;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 20px;
    position: absolute;
    top: -8px;
    right: -5px;
}