/* Remin Care Wholesale — bodycare.tuce.app
   Apothecary modern: ink forest + copper + bone (not purple / not cream-serif cliché) */
:root {
  --ink: #0b1f17;
  --ink-2: #132a20;
  --leaf: #1f4d3a;
  --moss: #3d6b52;
  --copper: #c4784a;
  --copper-hot: #e08a55;
  --bone: #f3ede3;
  --mist: #d9e0d4;
  --chart: #c5d86d;
  --danger: #b33a3a;
  --ok: #2f7d4a;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(11, 31, 23, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--bone);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(197, 216, 109, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(196, 120, 74, 0.18), transparent 50%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 45%, #0a1812 100%);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--chart); text-decoration: none; }
a:hover { color: var(--copper-hot); }

.announcement {
  text-align: center;
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, var(--leaf), var(--moss));
  color: var(--bone);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 4vw;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 31, 23, 0.72);
  border-bottom: 1px solid rgba(243, 237, 227, 0.08);
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.brand span { color: var(--copper); }
.nav-links { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.nav-links a { color: var(--mist); font-size: 0.95rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--copper-hot), var(--copper));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(196, 120, 74, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(243, 237, 227, 0.25);
}
.btn-chart {
  background: var(--chart);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: end;
  padding: 3.5rem 4vw 2rem;
  min-height: min(88vh, 920px);
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.hero-copy p {
  font-size: 1.1rem;
  color: var(--mist);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-stage {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/11;
  background: var(--ink-2);
}
.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: ken 18s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(11, 31, 23, 0.78);
  border: 1px solid rgba(197, 216, 109, 0.35);
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.82rem;
  max-width: 220px;
}

.marquee {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  padding: 1rem 0;
  border-block: 1px solid rgba(243, 237, 227, 0.08);
  color: var(--moss);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: slide 28s linear infinite;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 4rem 4vw; }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.5rem;
}
.section .lead { color: var(--mist); max-width: 50ch; margin-bottom: 2rem; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.mosaic figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(11, 31, 23, 0.9));
  font-size: 0.85rem;
}
.mosaic figure:first-child { grid-row: span 2; min-height: 460px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.chip {
  border: 1px solid rgba(243, 237, 227, 0.18);
  background: rgba(255,255,255,0.03);
  color: var(--mist);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font: inherit;
}
.chip.active, .chip:hover {
  background: rgba(197, 216, 109, 0.15);
  border-color: var(--chart);
  color: var(--bone);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.card {
  background: linear-gradient(180deg, rgba(31, 77, 58, 0.35), rgba(19, 42, 32, 0.9));
  border: 1px solid rgba(243, 237, 227, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: rgba(196, 120, 74, 0.45);
  transform: translateY(-3px);
}
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.card .cat { color: var(--copper); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.card h3 { margin: 0; font-family: var(--font-display); font-size: 1.25rem; }
.card .sub { color: var(--mist); font-size: 0.9rem; margin: 0; }
.price {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 0.75rem;
}
.price strong {
  font-size: 1.2rem;
  color: var(--chart);
}
.price small { color: var(--mist); }
.card-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
}
.card-actions input {
  width: 4rem;
  border-radius: 10px;
  border: 1px solid rgba(243, 237, 227, 0.2);
  background: rgba(0,0,0,0.25);
  color: var(--bone);
  padding: 0.55rem;
  font: inherit;
}

.checkout-panel {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(380px, calc(100vw - 2rem));
  background: rgba(11, 31, 23, 0.94);
  border: 1px solid rgba(197, 216, 109, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem 1.15rem;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.checkout-panel h3 { margin: 0 0 0.5rem; font-family: var(--font-display); }
.cart-lines { max-height: 140px; overflow: auto; font-size: 0.88rem; color: var(--mist); margin-bottom: 0.75rem; }
.checkout-panel label { display: block; font-size: 0.78rem; color: var(--mist); margin: 0.35rem 0 0.15rem; }
.checkout-panel input, .checkout-panel textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(243, 237, 227, 0.18);
  background: rgba(0,0,0,0.28);
  color: var(--bone);
  padding: 0.55rem 0.65rem;
  font: inherit;
}
.checkout-panel .total { margin: 0.75rem 0; font-size: 1.05rem; }
.toast {
  position: fixed;
  left: 50%;
  top: 5rem;
  transform: translateX(-50%);
  background: var(--ok);
  color: white;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  z-index: 60;
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(243, 237, 227, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.footer {
  padding: 2.5rem 4vw 3rem;
  border-top: 1px solid rgba(243, 237, 227, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--mist);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero, .about-grid, .mosaic { grid-template-columns: 1fr; }
  .mosaic figure:first-child { grid-row: auto; min-height: 260px; }
  .hero { min-height: auto; padding-top: 2rem; }
}
