/* LUVV BY BELLA — shared styles */
:root {
  --luvv-teal: #aedde6;
  --luvv-teal-deep: #6fbac7;
  --luvv-ink: #0f0f10;
  --luvv-ink-soft: #1b1c1c;
  --luvv-cream: #faf9f9;
  --luvv-cream-2: #f5f3f3;
  --luvv-line: #e7e5e5;
  --luvv-muted: #5a5a60;
}
html { scroll-behavior: smooth; }
body { background: var(--luvv-cream); color: var(--luvv-ink); font-family: Manrope, system-ui, sans-serif; }
.serif { font-family: "Noto Serif", Georgia, serif; }
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24; }
.text-luvv-ink { color: var(--luvv-ink); }
.bg-luvv-ink { background: var(--luvv-ink); }
.border-luvv-ink { border-color: var(--luvv-ink); }
.text-luvv-teal { color: var(--luvv-teal-deep); }
.bg-luvv-teal { background: var(--luvv-teal); }
.bg-luvv-cream { background: var(--luvv-cream); }
.bg-luvv-cream-2 { background: var(--luvv-cream-2); }
.btn-ink { background: var(--luvv-ink); color: #fff; padding: 14px 36px; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; transition: opacity .2s; cursor: pointer; border: 0; }
.btn-ink:hover { opacity: .85; }
.btn-outline-ink { background: transparent; color: var(--luvv-ink); border: 1px solid var(--luvv-ink); padding: 14px 36px; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; transition: all .2s; cursor: pointer; }
.btn-outline-ink:hover { background: var(--luvv-ink); color: #fff; }
.label-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--luvv-muted); }
.divider-line { width: 60px; height: 1px; background: var(--luvv-ink); }
.product-card { transition: transform .35s ease; }
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-img { transition: transform .6s ease; }
header.lbb-nav { backdrop-filter: blur(8px); background: rgba(255,255,255,.92); }
.lbb-logo-mark { font-family: "Noto Serif", serif; font-weight: 900; letter-spacing: .12em; }
.lbb-cart-badge { background: var(--luvv-ink); color: #fff; font-size: 10px; min-width: 18px; height: 18px; border-radius: 999px; display:inline-flex; align-items:center; justify-content:center; padding: 0 5px; font-weight: 700; }
.empty-state { padding: 80px 20px; text-align: center; color: var(--luvv-muted); }
input.lbb-input, textarea.lbb-input, select.lbb-input { width: 100%; border: 1px solid var(--luvv-line); background: #fff; padding: 14px 16px; font-size: 15px; color: var(--luvv-ink); }
input.lbb-input:focus, textarea.lbb-input:focus, select.lbb-input:focus { outline: none; border-color: var(--luvv-ink); }
.lbb-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--luvv-ink); color: #fff; padding: 12px 24px; border-radius: 4px; z-index: 100; opacity: 0; pointer-events: none; transition: opacity .3s; font-size: 14px; }
.lbb-toast.show { opacity: 1; }
@media (max-width: 768px) {
  .display-lg { font-size: 36px; line-height: 1.15; }
  .headline-lg { font-size: 26px; }
}

/* ─── Social Wall ─── */
.social-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
}
.social-wall .tile {
  position: relative;
  overflow: hidden;
  background: var(--luvv-cream-2);
  display: block;
  aspect-ratio: 4/5;
}
.social-wall .tile img,
.social-wall .tile video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s ease;
}
.social-wall .tile-video { background: var(--luvv-cream-2); }
.social-wall .tile:hover img { transform: scale(1.05); }
.social-wall .tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 50%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 16px;
  pointer-events: none;
}
.social-wall .tile:hover .tile-overlay { opacity: 1; }
.social-wall .tile-overlay span {
  color: #fff; font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 1024px) { .social-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .social-wall { grid-template-columns: repeat(2, 1fr); gap: 4px; } }

/* ─── Marquee handles strip ─── */
.handles-strip {
  background: var(--luvv-ink); color: #fff;
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.handles-strip .track {
  display: inline-flex; gap: 48px; animation: marquee 38s linear infinite;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase; font-weight: 600;
}
.handles-strip .dot { color: var(--luvv-teal); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
