/* ═══════════════════════════════════════════════════
   FLEETIX — style.css  v2
   Modern · Clean · Professional · Mobile-First
═══════════════════════════════════════════════════ */

/* ── 1. TOKENS ──────────────────────────────────── */
:root {
  --navy:        #001428;
  --navy-2:      #00204a;
  --navy-3:      #002f6c;
  --gold:        #FFCC00;
  --gold-2:      #FFD740;
  --gold-dim:    rgba(255,204,0,0.12);
  --white:       #ffffff;
  --surface:     #f7f8fb;
  --border:      rgba(0,20,40,0.09);
  --border-dark: rgba(255,255,255,0.09);
  --text-1:      #0a1628;
  --text-2:      #4a5568;
  --text-3:      #8a94a6;
  --text-inv:    rgba(255,255,255,0.92);
  --text-inv-2:  rgba(255,255,255,0.55);

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Syne', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  26px;
  --r-full: 999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.2s var(--ease);

  --nav-h: 64px;
}

/* ── 2. RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── 3. NAVBAR ───────────────────────────────────── */
.fx-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(0,20,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.fx-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fx-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fx-nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.fx-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fx-location-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-inv);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.fx-location-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.fx-nav__track {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  padding: 7px 14px;
  border-radius: var(--r-full);
  transition: background var(--t);
}
.fx-nav__track:hover {
  background: var(--gold-dim);
}

/* ── Cart icon button (navbar, all pages) ────────── */
.fx-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background var(--t), color var(--t), border-color var(--t);
  flex-shrink: 0;
}
.fx-cart-btn:hover {
  background: rgba(255,204,0,0.12);
  color: var(--gold);
  border-color: rgba(255,204,0,0.25);
}
.fx-cart-btn--active {
  background: rgba(255,204,0,0.12);
  color: var(--gold);
  border-color: rgba(255,204,0,0.25);
}

.fx-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  pointer-events: none;
}

/* ── Toast notification (all pages) ─────────────── */
.fx-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(0,14,32,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r-full);
  backdrop-filter: blur(12px);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.fx-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.fx-toast--error {
  border-color: rgba(239,68,68,0.3);
  color: #fca5a5;
}

/* ── Dark body (detalii + cart pages) ────────────── */
body.fx-dark {
  background: #000d1f;
  color: rgba(255,255,255,0.9);
}
body.fx-dark .fx-nav {
  background: rgba(0,10,28,0.98);
}
body.fx-dark .fx-footer {
  background: var(--navy);
}

/* ── Shared btn overrides for dark pages ─────────── */
body.fx-dark .fx-btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(255,204,0,0.28);
}
body.fx-dark .fx-btn--primary:hover {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,204,0,0.4);
}
.fx-btn--lg {
  padding: 15px 28px;
  font-size: 0.96rem;
  border-radius: var(--r-lg);
}
.fx-btn--block {
  width: 100%;
  justify-content: center;
}

/* ── 4. HERO ─────────────────────────────────────── */
.fx-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  overflow: hidden;
}

/* Background layers */
.fx-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fx-geo {
  position: absolute;
  border-radius: 50%;
}

.fx-geo--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,204,0,0.06) 0%, transparent 70%);
}

.fx-geo--2 {
  width: 400px;
  height: 400px;
  bottom: -160px;
  left: -80px;
  background: radial-gradient(circle, rgba(0,47,108,0.8) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.04);
}

.fx-dots {
  position: absolute;
  inset: 0;
  opacity: 1;
}

/* Hero content */
.fx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,204,0,0.1);
  border: 1px solid rgba(255,204,0,0.22);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
  animation: fadeUp 0.55s var(--ease) both;
}

.fx-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255,204,0,0.5);
  animation: pulseRing 1.8s infinite;
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(255,204,0,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(255,204,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,204,0,0); }
}

.fx-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.08s var(--ease) both;
}

.fx-hero__accent {
  color: var(--gold);
  position: relative;
}

.fx-hero__desc {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-inv-2);
  max-width: 480px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.15s var(--ease) both;
}

.fx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.22s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust bar */
.fx-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeUp 0.6s 0.3s var(--ease) both;
}

.fx-trust__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fx-trust__item strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.fx-trust__item span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-inv-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fx-trust__sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}

/* ── 5. HERO VISUAL (card stack) ────────────────── */
.fx-hero__visual {
  position: relative;
  width: 320px;
  height: 200px;
}

.fx-preview-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  width: 280px;
}

.fx-preview-card--back {
  top: 0;
  left: 40px;
  opacity: 0.6;
  transform: rotate(-3deg);
}

.fx-preview-card--front {
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: rotate(1.5deg);
}

.fx-preview-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fx-preview-card__info { flex: 1; }
.fx-preview-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.fx-preview-card__sub {
  font-size: 0.76rem;
  color: var(--text-inv-2);
  margin-top: 2px;
}

.fx-open-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 3px 8px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.fx-delivery-chip {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(255,204,0,0.35);
}

/* ── 6. BUTTONS ──────────────────────────────────── */
.fx-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), opacity var(--t);
  text-decoration: none;
  white-space: nowrap;
}

.fx-btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(255,204,0,0.32);
}
.fx-btn--primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,204,0,0.42);
  color: var(--navy);
}

.fx-btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
}
.fx-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.fx-btn--card {
  background: var(--navy);
  color: var(--white);
  font-size: 0.83rem;
  padding: 10px 18px;
  width: 100%;
  justify-content: space-between;
  border-radius: var(--r-sm);
  transition: background var(--t), transform var(--t);
}
.fx-btn--card:hover {
  background: var(--navy-3);
  color: var(--white);
  transform: none;
}

/* ── 7. CATEGORIES ───────────────────────────────── */
.fx-cats-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}

.fx-cats {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.fx-cats::-webkit-scrollbar { display: none; }

.fx-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  padding: 18px 22px 16px;
  cursor: pointer;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.fx-cat:hover { color: var(--text-1); }
.fx-cat--active {
  color: var(--navy);
  font-weight: 600;
  border-bottom-color: var(--gold);
}

.fx-cat__icon { font-size: 0.95rem; }

/* ── 8. STORES SECTION ───────────────────────────── */
.fx-stores {
  padding: 52px 0 80px;
  background: var(--surface);
}

.fx-stores__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.fx-stores__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fx-stores__sub {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 5px;
}

.fx-sort-wrap { flex-shrink: 0; }

.fx-sort {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--r-md);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath d='M1 1.5l4 4 4-4' stroke='%234a5568' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ── 9. STORE CARD ───────────────────────────────── */
.fx-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.fx-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,20,40,0.1);
  border-color: rgba(0,20,40,0.16);
}

.fx-card__body { padding: 20px 20px 14px; flex: 1; }

.fx-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fx-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.fx-status-dot {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #16a34a;
}

.fx-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.fx-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fx-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  background: rgba(0,20,40,0.07);
  padding: 3px 9px;
  border-radius: var(--r-full);
}

.fx-card__eta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-3);
}

.fx-card__footer {
  padding: 0 16px 16px;
}

/* ── 10. EMPTY STATE ─────────────────────────────── */
.fx-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fx-empty p { font-size: 0.95rem; }

/* ── 11. FOOTER ──────────────────────────────────── */
.fx-footer {
  background: var(--navy);
  padding: 36px 0 24px;
}

.fx-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fx-footer__brand { display: flex; flex-direction: column; gap: 8px; }

.fx-footer__tag {
  font-size: 0.8rem;
  color: var(--text-inv-2);
  margin: 0;
  padding-left: 2px;
}

.fx-footer__links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fx-footer__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-inv-2);
  padding: 6px 12px;
  border-radius: var(--r-md);
  transition: color var(--t), background var(--t);
}
.fx-footer__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.fx-footer__copy {
  padding-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

/* ── 12. RESPONSIVE ──────────────────────────────── */
@media (max-width: 575.98px) {
  .fx-hero__actions { flex-direction: column; }
  .fx-btn--primary,
  .fx-btn--ghost { width: 100%; justify-content: center; }

  .fx-trust { gap: 14px; }
  .fx-trust__sep { display: none; }

  .fx-stores__head { flex-direction: column; align-items: flex-start; }

  .fx-footer__inner { flex-direction: column; align-items: flex-start; }
  .fx-footer__links { padding-left: 0; }

  .fx-nav__track { display: none; }
  .fx-cart-btn { display: inline-flex; }
}

@media (max-width: 767.98px) {
  .fx-cats-wrap { top: var(--nav-h); }
}

/* Buton Suport (Alarm) */
.fx-support-btn {
    background: #ff3b30;
    color: white !important;
    border: none;
    border-radius: 10px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.fx-support-btn:active { transform: scale(0.95); }

/* Animație puls discretă doar pe iconiță */
.fx-support-btn .pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: fx-pulse 1.5s infinite;
}

@keyframes fx-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* Buton Info (Minimalist) */
.fx-info-btn {
    background: rgba(0, 20, 40, 0.05);
    border: none;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001428;
}

/* Ajustări pentru Mobil */
@media (max-width: 576px) {
    .fx-support-btn span { display: none; } /* Ascundem textul 'Suport', lăsăm doar iconița pe mobil */
    .fx-support-btn { padding: 8px; }
}
/* Stil unitar pentru butoanele din Nav */
.fx-nav-item {
  background: rgba(255, 255, 255, 0.05); /* Fundal semi-transparent ca la celelalte */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  height: 38px; /* Aceeași înălțime cu locația */
}

.fx-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Butonul de Suport - Accentuăm doar iconița cu roșu, nu tot butonul */
.fx-nav-item--support .support-icon {
  color: #ff4444;
  display: flex;
  align-items: center;
}

/* Stil pentru iconița Info */
.fx-nav-item--info {
  width: 38px; /* Îl facem pătrat pentru Info, la fel ca iconițele moderne */
  justify-content: center;
  padding: 0;
}

/* Puls discret pe iconița de suport */
.support-pulse {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff4444;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}
/* Design de bază pentru butoanele noi - Stil Glassmorphism */
.fx-nav-item {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px;
  color: white !important;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
}

/* Bulina de suport */
.support-pulse {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff4444;
}

/* REPARAȚIA PENTRU RESPONSIVE (Mobil) */
@media (max-width: 500px) {
  .fx-nav__right {
      gap: 4px !important; /* Apropie butoanele să nu iasă din ecran */
  }

  .fx-nav-item, .fx-location-btn, .fx-cart-btn {
      height: 32px !important; /* Mai scunde pe mobil */
      padding: 0 8px !important; /* Padding mai mic lateral */
      font-size: 12px !important; /* Text mai mic să încapă */
  }

  .fx-nav-item--info {
      width: 32px !important; /* Pătrat pe mobil */
      padding: 0 !important;
  }

  .fx-nav-item--info svg {
      width: 14px;
      height: 14px;
  }

  .fx-location-btn svg:last-child {
      display: none; /* Ascundem săgeata de la locație pe mobil pentru spațiu */
  }
}
