/* Top bar */
.top-bar {
    background: #111;
    font-size: 14px;
}

/* Header */
.main-header {
    background: #f5f5f5;
    padding: 12px 0;
}

/* Menu */
.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Search box */
.search-box input {
    width: 300px;
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    background: #e9ecef;
    outline: none;
}

/* Icons */
.icons i {
    font-size: 20px;
    cursor: pointer;
}

/* Cart badge */
.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}