/* ── Nav Cart Icon ── */
.nav-cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; color: #000; text-decoration: none; transition: background 0.2s ease; flex-shrink: 0; }
.nav-cart-btn:hover, .nav-cart-btn.active { background: rgba(0,0,0,0.07); color: #000; }
.nav-cart-btn svg { width: 26px; height: 26px; pointer-events: none; }
.nav-cart-count { position: absolute; top: 1px; right: 1px; min-width: 18px; height: 18px; border-radius: 999px; background: #C4006E; color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 3px; line-height: 1; pointer-events: none; }
@media (min-width: 992px) { .nav-cart-btn { margin-left: 20px; } }
