#topbar-v2 {
    background: #fff;
    padding: 10px 15px;
    top: 0;
    z-index: 1100;
/*    border-bottom: 1px solid #eee;*/
}

    /* Logo */
    #topbar-v2 .logo-v2 img {
        max-height: 70px;
    }

    /* Search Bar */
    #topbar-v2 .search-bar-v2 {
        display: flex;
        width: 100%;
        background: #f1f1f1;
        border-radius: 50px;
        padding: 0 10px;
        height: 42px;
        align-items: center;
    }

        #topbar-v2 .search-bar-v2 input {
            border: none;
            background: transparent;
            outline: none;
            flex: 1;
            padding: 0 10px;
            font-size: 14px;
            color: #333;
        }

            #topbar-v2 .search-bar-v2 input::placeholder {
                color: #888;
            }

        #topbar-v2 .search-bar-v2 button {
            border: none;
            background: transparent;
            font-size: 16px;
            color: #666;
            cursor: pointer;
        }

    /* Login/Register Buttons */
    #topbar-v2 .btn-login-v2 {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 6px 12px;
        border-radius: 8px;
        background: #fff;
        font-size: 14px;
        transition: 0.3s;
    }

        #topbar-v2 .btn-login-v2:hover {
            background: #f5f5f5;
            border-color: #ccc;
        }

    #topbar-v2 .btn-register-v2 {
        padding: 6px 14px;
        border-radius: 12px;
        border: none;
        background: #000;
        color: #fff !important;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        #topbar-v2 .btn-register-v2:hover {
            background: #111;
            transform: translateY(-1px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }

    /* Cart Button */
    #topbar-v2 .btn-cart-v2 {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        position: relative;
        transition: 0.3s;
    }

        #topbar-v2 .btn-cart-v2:hover {
            background: #e5e5e5;
        }

        #topbar-v2 .btn-cart-v2 .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: red;
            color: #fff;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50%;
        }

/* Responsive adjustments */
@media (min-width: 992px) {
    #topbar-v2 .search-bar-v2 {
        max-width: 450px;
    }
}
