.nav-icons {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.nav-icons {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.nav-icons > .store-controls {
    order: 0;
}

.nav-icons > .cart-icon {
    order: 1;
}

.store-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    padding: 2px 4px;
    min-height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-family: 'Space Grotesk', 'Quicksand', sans-serif;
    vertical-align: middle;
}

.store-control-button {
    min-width: 30px;
    height: 20px;
    padding: 0 10px;
    border: 1px solid rgba(0,0,0,0.10);
    background: transparent;
    color: var(--black, #111);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    font-family: inherit;
    line-height: 1;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.store-control-button:hover,
.store-control-button.is-active {
    background: var(--black, #111);
    color: #fff;
    border-color: var(--black, #111);
}

.store-controls .store-control-button::after {
    content: '';
}

.store-cursor-trail {
    position: fixed;
    inset: 0;
    z-index: 9997;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.store-cursor-dot {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9998;
    width: 16px;
    height: 16px;
    pointer-events: none;
    opacity: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #315db8 38%, transparent 42%),
        radial-gradient(circle at center, #0d1b36 68%, transparent 72%),
        radial-gradient(circle at center, #edf4ff 100%, transparent 100%);
    box-shadow: 0 1px 4px rgba(9, 13, 24, .35);
    transition: opacity .25s ease;
}

.store-cursor-dot.is-visible {
    opacity: 1;
}

@media (pointer: fine) {
    body, body * {
        cursor: none !important;
    }
}

@media (pointer: coarse) {
    .store-cursor-trail, .store-cursor-dot {
        display: none;
    }
}

