/* ============================================================
   VITRINE DO CLIENTE — store.css
   ============================================================ */

.store-banner {
  height: 150px;
  background: linear-gradient(135deg, #FF4D1C 0%, #FF8A50 60%, #FFC4A8 100%);
  display: flex; align-items: flex-end; padding: .9rem 1.1rem;
}
.store-logo {
  width: 58px; height: 58px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 14px rgba(0,0,0,.15);
  margin-right: 10px; flex-shrink: 0;
}
.store-info { color: #fff; }
.store-info h2 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; }
.store-info p  { font-size: .74rem; opacity: .9; }
.s-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.2); border-radius: 20px;
  padding: 2px 9px; font-size: .7rem; margin-top: 3px; backdrop-filter: blur(4px);
}
.sdot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }

.store-nav-scroll {
  display: flex; overflow-x: auto; gap: 5px;
  padding: .5rem .9rem; background: var(--surface);
  border-bottom: 1px solid var(--border); scrollbar-width: none;
}
.store-nav-scroll::-webkit-scrollbar { display: none; }

.cpill {
  flex-shrink: 0; padding: .3rem .85rem; border-radius: 20px;
  border: 1.5px solid var(--border); font-size: .76rem; font-weight: 500;
  background: none; cursor: pointer; color: var(--text-muted); transition: all .15s;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.cpill.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.search-wrap {
  padding: .5rem .9rem; background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.search-wrap input {
  width: 100%; padding: .42rem .75rem; border: 1px solid var(--border);
  border-radius: 10px; font-size: .81rem; font-family: 'DM Sans', sans-serif;
  background: var(--bg); color: var(--text);
}
.search-wrap input:focus { outline: none; border-color: var(--brand); }

.store-body { padding: .8rem .9rem 5rem; }
.cat-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: .5rem; margin-top: .25rem; }

.prod-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center;
  padding: .75rem .85rem; gap: 9px; margin-bottom: .45rem;
  cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.prod-card:hover { border-color: rgba(255,77,28,.35); box-shadow: 0 2px 10px rgba(255,77,28,.07); }
.prod-emoji { font-size: 1.7rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 9px; background: var(--bg); flex-shrink: 0; }
.prod-info { flex: 1; }
.prod-info h3 { font-size: .84rem; font-weight: 600; margin-bottom: 1px; }
.prod-info p { font-size: .71rem; color: var(--text-muted); line-height: 1.3; }
.prod-badges { display: flex; gap: 3px; margin-top: 3px; flex-wrap: wrap; }
.prod-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.prod-price { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--brand); font-size: .9rem; }

/* CART FAB */
.cart-fab {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; border: none; border-radius: 30px;
  padding: .75rem 1.6rem; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .85rem; cursor: pointer; box-shadow: 0 4px 18px rgba(255,77,28,.4);
  display: flex; align-items: center; gap: 9px; z-index: 100;
  white-space: nowrap; transition: transform .15s;
}
.cart-fab:hover { transform: translateX(-50%) scale(1.03); }
.fab-badge {
  background: #fff; color: var(--brand); width: 20px; height: 20px;
  border-radius: 50%; font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Closed overlay */
.closed-banner {
  background: var(--red-bg); border-bottom: 1px solid #fca5a5;
  padding: .6rem 1rem; text-align: center;
  font-size: .8rem; color: var(--red); font-weight: 500;
}
