/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
body {
  background-color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0A0A0A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography hierarchy ── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.025em;
}
.text-display {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
h2 { font-weight: 800; letter-spacing: -0.03em; }
h3 { font-weight: 700; letter-spacing: -0.02em; }
.label-cap {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.body-lg { font-size: 1.125rem; line-height: 1.75; font-weight: 400; }
.body-md { font-size: 0.9375rem; line-height: 1.7; font-weight: 400; }

/* ── Brand ── */
.gradient-btn {
  background: linear-gradient(135deg, #1B6CF3 0%, #0D4CB8 100%);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.18s, box-shadow 0.18s;
}
.gradient-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27,108,243,0.35);
}
.gradient-text {
  background: linear-gradient(135deg, #FF5C00, #7B2FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Cards ── */
.card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1.5px solid #DBEAFE;
  box-shadow: 0 1px 6px rgba(27,108,243,0.06);
}
.card-hover { transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.card-hover:hover {
  box-shadow: 0 8px 28px rgba(27,108,243,0.12);
  transform: translateY(-2px);
  border-color: #93C5FD;
}

/* ── Pricing tiles ── */
.product-tile {
  cursor: pointer;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  transition: all 0.18s;
  background: #F9FAFB;
}
.product-tile:hover { border-color: #93C5FD; background: #EFF6FF; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(27,108,243,0.10); }
.product-tile.active { border-color: #1B6CF3; background: #EFF6FF; box-shadow: 0 0 0 2px rgba(27,108,243,0.20), 0 6px 24px rgba(27,108,243,0.12); }
.product-tile .tile-name { color: #0A0A0A; font-size: 0.8125rem; font-weight: 700; line-height: 1.3; }
.product-tile .tile-price { color: #6B7280; font-size: 0.8125rem; margin-top: 0.2rem; font-weight: 600; }
.product-tile .tile-badge { background: #DBEAFE; color: #1D4ED8; border: 1px solid #BFDBFE; border-radius: 0.25rem; padding: 0.15rem 0.4rem; font-size: 0.6875rem; font-weight: 700; line-height: 1; }

/* ── Sticky price bar ── */
.mobile-price-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(5,5,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

/* ── Bottom sheet ── */
.bottom-sheet-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-end;
}
.bottom-sheet-panel {
  background: #ffffff;
  border-radius: 1.25rem 1.25rem 0 0;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 2rem;
}
.bottom-sheet-handle {
  width: 2.5rem; height: 4px;
  background: #E5E7EB; border-radius: 2px;
  margin: 0 auto 1.25rem;
}

/* ── Size buttons ── */
.size-btn {
  border: 1.5px solid #E5E7EB;
  border-radius: 0.5rem;
  padding: 0.4rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.15s;
  cursor: pointer;
  color: #0A0A0A;
  background: #ffffff;
}
.size-btn:hover { border-color: #1B6CF3; color: #1B6CF3; }
.size-btn.active { border-color: #1B6CF3; background: #1B6CF3; color: white; }

/* ── Sections ── */
.section-white { background: #ffffff; }
.section-cream { background: #F7F8FA; }

/* ── Image category cards ── */
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  min-height: 380px;
  cursor: pointer;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.08) 100%);
  transition: background 0.3s ease;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.15) 100%);
}
.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
}
.cat-btn {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #0A0A0A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.4rem 1.1rem;
  text-decoration: none;
  white-space: nowrap;
}
.cat-card:hover .cat-btn { opacity: 1; transform: translateY(0); }

/* ── Dividers ── */
.section-divider { border-top: 1px solid #F3F4F6; }

/* ── Misc ── */
[x-cloak] { display: none !important; }
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.gallery-img { overflow: hidden; border-radius: 0.75rem; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-img:hover img { transform: scale(1.06); }

/* ── Trust pill ── */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0A0A0A;
}

/* ── Announcement bar ── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track { animation: marquee 22s linear infinite; display: inline-flex; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }

/* ── Hero carousel ── */
.hero-slide { position: absolute; inset: 0; overflow: hidden; transition: opacity 0.9s ease; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-dot { height: 3px; border-radius: 2px; transition: all 0.35s ease; background: rgba(255,255,255,0.35); }
.hero-dot.active { background: #ffffff; width: 2rem; }
.hero-dot:not(.active) { width: 0.5rem; }
.float-card { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.55); border: 1.5px solid rgba(255,255,255,0.18); position: absolute; transition: transform 0.3s ease; }
.float-card:hover { transform: scale(1.04) translateY(-4px) !important; }
.float-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.float-card .label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); padding: 0.6rem 0.75rem; }
