#topbar-v3 .navbar {
    min-height: 70px;
}

/* Logo dot */
#topbar-v3 .dot {
    width: 10px;
    height: 10px;
    background-color: #ff3b30;
    border-radius: 50%;
    display: inline-block;
}

/* Search */
#topbar-v3 .search-input {
    border-radius: 25px;
    padding: 10px 20px;
    background-color: #f1f1f1;
    border: none;
}

    #topbar-v3 .search-input:focus {
        box-shadow: none;
        background-color: #e9e9e9;
    }

/* Icons */
#topbar-v3 .icon {
    cursor: pointer;
}

    #topbar-v3 .icon:hover {
        color: #ff3b30;
    }

/* Notification dot */
#topbar-v3 .badge-dot {
    position: absolute;
    top: 0;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
}

/* Fix mobile top spacing */
.mobile-top {
    position: relative;
    height: 50px;
}
/* Auth buttons */
#topbar-v3 .btn-auth {
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.25s ease;
    color: white;
}

    /* Hover effect */
    #topbar-v3 .btn-auth:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    }

/* Dark button stronger hover */
#topbar-v3 .btn-dark.btn-auth:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Cart button */
#topbar-v3 .btn-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.25s ease;
    font-size: 18px;
}

    /* Cart hover */
    #topbar-v3 .btn-cart:hover {
        background: #f5f5f5;
        color: #fff;
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    }

    /* Cart icon alignment fix */
    #topbar-v3 .btn-cart i {
        line-height: 1;
    }

    /* Optional badge */
    #topbar-v3 .btn-cart .badge {
        font-size: 10px;
        padding: 4px 6px;
    }