.sawi-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.sawi-header-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.sawi-header-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sawi-cart-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3b3b;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sawi-cart-bubble.updating {
    transform: scale(1.3);
}

/* Theme Toggle Icons */
.sawi-theme-toggle-icon .icon-moon { display: none; }
body.sawi-dark-mode .sawi-theme-toggle-icon .icon-sun { display: none; }
body.sawi-dark-mode .sawi-theme-toggle-icon .icon-moon { display: block; }
