/* ============================================================
   LUMIERE SKINCARE — Home Page CSS
   ============================================================ */

/* Brand strip */
.brand-strip {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 18px 0;
  overflow: hidden;
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}
.brand-strip-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

/* Product section background */
.products-section { background: var(--white); }
.products-section .section { background: var(--white); }

@media (max-width: 480px) {
  .brand-strip-inner { gap: 24px; }
}