:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f3;
  --surface: #ffffff;
  --text: #0a0a0a;
  --muted: #6b6b6b;
  --border: #ececea;
  --accent: #ff4d2e;
  --accent-soft: #fff0eb;
}

/* DARK MODE (auto, based on local time 7pm–7am) */
[data-theme="dark"] {
  --bg: #0b0b0e;
  --bg-soft: #16161c;
  --surface: #18181f;
  --text: #f5f5f3;
  --muted: #9090a0;
  --border: #2a2a35;
  --accent: #ff5e3d;
  --accent-soft: #2a1812;
}
[data-theme="dark"] body { background: var(--bg); color: var(--text); }
[data-theme="dark"] .site-header {
  background: rgba(11, 11, 14, 0.85);
  border-bottom-color: var(--border);
}
[data-theme="dark"] .product,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .cart-drawer,
[data-theme="dark"] .video-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .sub-card,
[data-theme="dark"] .checkout-summary,
[data-theme="dark"] .secret-modal-card,
[data-theme="dark"] .confirmation-card,
[data-theme="dark"] .shop-unavailable-card,
[data-theme="dark"] .prelaunch-card,
[data-theme="dark"] .promo-applied,
[data-theme="dark"] .modal-image,
[data-theme="dark"] .summary-thumb,
[data-theme="dark"] .cart-thumb,
[data-theme="dark"] .confirmation-thumb {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .checkout-form input,
[data-theme="dark"] .promo-input,
[data-theme="dark"] .notify-form input[type="email"],
[data-theme="dark"] .search-wrap input {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
[data-theme="dark"] .filter {
  border-color: var(--border);
  color: var(--muted);
}
[data-theme="dark"] .filter:hover { color: var(--text); border-color: var(--text); }
[data-theme="dark"] .filter.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
[data-theme="dark"] .hamburger { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .hamburger span { background: var(--text); }
[data-theme="dark"] .mobile-nav { background: var(--bg); border-color: var(--border); }
[data-theme="dark"] .back-to-top { background: var(--surface); border-color: var(--border); color: var(--text); }
[data-theme="dark"] .modal-close,
[data-theme="dark"] .modal-icon-btn { background: var(--surface); border-color: var(--border); color: var(--text); }
[data-theme="dark"] .close-cart { background: var(--bg-soft); color: var(--text); }
[data-theme="dark"] .qty-btn { background: var(--bg-soft); color: var(--text); }
[data-theme="dark"] .demo-warning { background: #2a230a; border-color: #4a3a0a; color: #f5d97a; }
[data-theme="dark"] .demo-warning strong { color: #fff2c0; }
[data-theme="dark"] .pay-tabs { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .pay-tab.active { background: var(--surface); color: var(--text); }
[data-theme="dark"] .demo-note { background: #2a230a; border-color: #4a3a0a; color: #f5d97a; }
[data-theme="dark"] .pay-method-stub { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .payment-placeholder { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .video-stub { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .video-stub-icon { background: var(--surface); color: var(--text); }
[data-theme="dark"] .secret-code,
[data-theme="dark"] .summary-items,
[data-theme="dark"] .confirmation-items,
[data-theme="dark"] .confirmation-meta { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .secret-close { background: var(--bg-soft); border-color: var(--border); color: var(--text); }
[data-theme="dark"] .toast-item { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
[data-theme="dark"] .cart-foot { background: var(--bg-soft); }
[data-theme="dark"] .lore-inner { background: #050505; }
[data-theme="dark"] .stats-strip-inner .stat-card:hover { border-color: var(--accent); }
[data-theme="dark"] .milestones-inner { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .milestone-marker { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .community-card {
  background: linear-gradient(135deg, #1f1410 0%, #1f1c08 100%);
  border-color: var(--border);
}
[data-theme="dark"] .age-chip { background: var(--bg-soft); border-color: var(--border); color: var(--muted); }
[data-theme="dark"] .age-chip strong { color: var(--text); }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* SECTION REVEAL ON SCROLL */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ACCESSIBILITY: focus styles */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
input:focus-visible,
.promo-input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

/* ACCESSIBILITY: reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .live-dot, .drop-dot {
    animation: none !important;
  }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ==========================================
   HOMEPAGE (index.html)
   ========================================== */

.shop-cta-button {
  background: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.shop-cta-button:hover { opacity: 0.85; }

/* HOME HERO */
.home-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  position: relative;
}
.home-hero-text, .home-hero > .sub-card { position: relative; z-index: 1; }

/* Animated gradient blobs behind the hero */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  border-radius: 28px;
}
.hero-blob {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.55;
  animation: blob-drift 22s ease-in-out infinite;
  will-change: transform;
}
.hero-blob-1 {
  background: var(--accent);
  top: -140px;
  left: -120px;
  opacity: 0.35;
}
.hero-blob-2 {
  background: #b9b9ff;
  top: 60px;
  right: -160px;
  animation-delay: -7s;
  opacity: 0.4;
}
.hero-blob-3 {
  background: #ffe066;
  bottom: -160px;
  left: 25%;
  animation-delay: -14s;
  opacity: 0.32;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -50px) scale(1.12); }
  66%      { transform: translate(-30px, 35px) scale(0.93); }
}
[data-theme="dark"] .hero-blob { opacity: 0.5; filter: blur(110px); }
[data-theme="dark"] .hero-blob-1 { opacity: 0.4; }

/* CHANNEL AGE CHIP */
.age-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 24px;
  font-weight: 500;
}
.age-chip[hidden] { display: none; }
.age-chip strong {
  color: var(--text);
  font-weight: 700;
}
.age-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.6);
  animation: pulse 1.6s ease-out infinite;
}

.home-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  margin: 14px 0 22px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
}
.hero-greeting-sub {
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* SUB CARD */
.sub-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sub-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 22%;
  background: var(--accent-soft);
}
.sub-card-channel {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}
.sub-card-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sub-card-count {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 6px 0 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.sub-card-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.sub-card-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff8a4d);
  border-radius: 999px;
  transition: width 0.8s ease;
  width: 0%;
}

.sub-card-goal {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.sub-card-cta {
  margin-top: 4px;
  display: inline-block;
  padding: 12px 18px;
  background: var(--text);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: opacity 0.15s, transform 0.15s;
}
.sub-card-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* CHANNEL STATS STRIP */
.stats-strip {
  max-width: 1200px;
  margin: 20px auto 60px;
  padding: 0 32px;
}

/* "Live" indicator above the stats grid */
.live-stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.live-stats-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2bb14d;
  box-shadow: 0 0 0 0 rgba(43, 177, 77, 0.6);
  animation: live-stats-pulse 1.8s ease-out infinite;
}
.live-stats-dot.offline {
  background: var(--muted);
  animation: none;
  box-shadow: none;
}
@keyframes live-stats-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(43, 177, 77, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(43, 177, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 177, 77, 0); }
}

/* Brief flash on a stat number when it ticks to a new value */
@keyframes stat-pulse-flash {
  0%   { color: var(--accent); }
  100% { color: inherit; }
}
.stat-pulse {
  animation: stat-pulse-flash 0.9s ease-out;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: #d8d8d4;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 4px;
}
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin: 0 0 4px;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
.stat-value-text {
  font-size: 1.15rem;
  letter-spacing: -0.4px;
  font-weight: 700;
}
.stat-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-strip-inner { grid-template-columns: 1fr; }
  .stat-value { font-size: 1.7rem; }
}

/* MILESTONES TIMELINE */
.milestones {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 32px;
}
.milestones-inner {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 36px 40px;
}
.milestones-head {
  margin-bottom: 36px;
}
.milestones-head .eyebrow { margin-bottom: 8px; }
.milestones-head h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin: 0;
}

.milestones-track-wrap {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 8px;
  /* hide scrollbar in webkit */
}
.milestones-track-wrap::-webkit-scrollbar { height: 6px; }
.milestones-track-wrap::-webkit-scrollbar-track { background: transparent; }
.milestones-track-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.milestones-line {
  position: absolute;
  top: 30px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 50%, var(--border) 50%, var(--border) 100%);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.milestones-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.milestone {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 6px;
}
.milestone-marker {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  background: white;
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.18s;
}
.milestone-icon { line-height: 1; }
.milestone-done .milestone-marker {
  background: var(--text);
  border-color: var(--text);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.milestone-upcoming .milestone-marker {
  background: white;
  border: 2px dashed var(--border);
  opacity: 0.85;
}
.milestone-upcoming .milestone-icon {
  filter: grayscale(0.4);
  opacity: 0.7;
}

.milestone-date {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 4px;
}
.milestone-done .milestone-date { color: var(--accent); }
.milestone-title {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 4px;
  line-height: 1.25;
}
.milestone-upcoming .milestone-title { color: var(--muted); }
.milestone-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 600px) {
  .milestones { padding: 0 18px; }
  .milestones-inner { padding: 36px 24px 30px; border-radius: 22px; }
  .milestones-track { grid-auto-columns: 200px; }
}

/* LORE SECTION */
.lore {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 32px;
}
.lore-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: var(--text);
  color: white;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.lore-text {
  padding: 60px 50px;
}
.lore-text .eyebrow {
  color: var(--accent);
}
.lore-text h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin: 8px 0 20px;
  background: linear-gradient(90deg, #ffffff, var(--accent) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lore-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 480px;
}
.lore-visual {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}
.lore-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.05);
}
.lore-glitch {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
  z-index: 1;
}
.lore-glitch-1 {
  width: 220px;
  height: 220px;
  background: rgba(255, 77, 46, 0.35);
  top: -40px;
  left: -40px;
}
.lore-glitch-2 {
  width: 180px;
  height: 180px;
  background: rgba(155, 209, 255, 0.3);
  bottom: -40px;
  right: -40px;
}
@media (max-width: 900px) {
  .lore-inner { grid-template-columns: 1fr; gap: 0; }
  .lore-text { padding: 40px 28px 30px; }
  .lore-visual { min-height: 240px; }
}

/* COMMUNITY CTA */
.community {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 32px;
}
.community-card {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff7d6 100%);
  border-radius: 28px;
  padding: 60px 40px 50px;
  text-align: center;
  border: 1px solid var(--border);
}
.community-badge {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.community-card h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0 0 12px;
  line-height: 1.05;
}
.community-tagline {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 480px;
  opacity: 0.75;
}
.community-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 600px) {
  .community-card { padding: 40px 24px 36px; }
}

/* HOME ABOUT */
.home-about {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.home-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}
.home-about-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  object-fit: cover;
  object-position: center 22%;
  background: var(--accent-soft);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}
.home-about-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 8px 0 18px;
}
.home-about-body {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 600px;
}

.socials-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
}
.social-link:hover { border-color: var(--text); transform: translateY(-1px); }
.social-icon { font-size: 0.95rem; }

/* SHOP PROMO */
.shop-promo {
  max-width: 1200px;
  margin: 80px auto 60px;
  padding: 0 32px;
}
.shop-promo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}
.shop-promo-image {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.shop-promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-promo-text {
  padding: 50px 50px 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.shop-promo-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.8px;
  margin: 4px 0;
  line-height: 1;
}
.shop-promo-text p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

/* RESPONSIVE for homepage */
@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 40px;
  }
  .sub-card { max-width: 420px; }
  .home-about-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .home-about-avatar { max-width: 240px; margin: 0 auto; }
  .home-about-body { margin-left: auto; margin-right: auto; }
  .socials-row { justify-content: center; }
  .shop-promo-card { grid-template-columns: 1fr; }
  .shop-promo-image { min-height: 240px; }
  .shop-promo-text { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .home-hero { padding: 40px 18px 30px; }
  .home-about { padding: 50px 18px; }
  .shop-promo { padding: 0 18px; margin: 50px auto; }
  .sub-card-count { font-size: 2.6rem; }
}

/* DROP BANNER */
.drop-banner {
  background: var(--text);
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  --progress: 0%;
}
.pre-launch-mode .drop-banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: var(--progress);
  background: linear-gradient(90deg, var(--accent), #ff8a4d);
  transition: width 0.6s ease;
}
.drop-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.7);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 77, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 46, 0); }
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 22%;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.back-link {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}
.back-link:hover { color: var(--text); }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav a { transition: color 0.15s; }
.nav a:hover { color: var(--text); }

/* LIVE INDICATOR */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0eb;
  color: #c92a00;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 42, 0, 0.15);
  margin-left: 12px;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s;
}
.live-indicator[hidden] { display: none; }
.live-indicator:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 42, 0, 0.18);
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #d62800;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(214, 40, 0, 0.7);
  animation: live-pulse 1.4s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214, 40, 0, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(214, 40, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 40, 0, 0); }
}

/* HAMBURGER BUTTON (mobile only) */
.hamburger {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}
.hamburger:hover { background: var(--border); }
.hamburger span {
  display: block;
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, top 0.25s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }

.hamburger.open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* MOBILE NAV PANEL */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 100px 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 40;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

body.nav-open { overflow: hidden; }

.cart-button {
  position: relative;
  background: var(--text);
  border: none;
  color: white;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.15s, opacity 0.15s;
}
.cart-button:hover { opacity: 0.85; transform: translateY(-1px); }

.cart-icon { font-size: 0.95rem; }

.cart-count {
  background: white;
  color: var(--text);
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
  transform-origin: center;
}
.cart-count.bump {
  animation: bump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.4); background: var(--accent); color: white; }
  100% { transform: scale(1); }
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 22px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
}

.tagline {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 440px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, opacity 0.15s;
}
.cta:hover { opacity: 0.85; transform: translateY(-1px); }

.cta-ghost {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 14px 8px;
  transition: color 0.15s;
}
.cta-ghost:hover { color: var(--text); }

/* hero visual — banner image card with overlapping avatar */
.hero-visual {
  position: relative;
  aspect-ratio: 16 / 11;
}

.hero-banner {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-avatar {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 6px solid white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* SECTION SHELL */
.section-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.shop-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* Search bar */
.search-wrap {
  position: relative;
  width: min(280px, 100%);
}
.search-wrap input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: inherit;
  background: white;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-wrap input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  pointer-events: none;
  opacity: 0.6;
}

/* Saved filter */
.filter-saved .filter-heart { color: var(--accent); }
.filter-saved.active .filter-heart { color: white; }

.shop-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.shop-header h2 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
}
.filter:hover { color: var(--text); border-color: var(--text); }
.filter.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* products: rounded cards, but image area inside is only slightly rounded.
   Adds a deliberate radius mix. */
.product {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  padding: 14px;
  cursor: pointer;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  border-color: #d8d8d4;
}

.product-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: 12px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

/* Product badges (Limited / stock count) */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.badge-limited {
  background: var(--text);
  color: white;
}
.badge-stock {
  background: var(--accent-soft);
  color: var(--accent);
}

/* Wishlist heart on product cards */
.wish-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s, color 0.15s, background 0.15s;
  backdrop-filter: blur(6px);
}
.wish-btn:hover {
  color: var(--accent);
  transform: scale(1.08);
}
.wish-btn.active {
  color: var(--accent);
  background: white;
  border-color: var(--accent);
  animation: heart-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes heart-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.product-image span {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
}

/* per-card pastel bg, set inline in JS via data attribute */
.product[data-color="peach"]    .product-image { background: #fff0eb; }
.product[data-color="sky"]      .product-image { background: #ebf3ff; }
.product[data-color="mint"]     .product-image { background: #e8f7ee; }
.product[data-color="cream"]    .product-image { background: #fff5d6; }
.product[data-color="lavender"] .product-image { background: #f2eeff; }
.product[data-color="pink"]     .product-image { background: #ffeef3; }
.product[data-color="sage"]     .product-image { background: #ebf2ee; }
.product[data-color="butter"]   .product-image { background: #fff8e0; }
.product[data-color="coral"]    .product-image { background: #ffe8e0; }

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  padding: 4px 6px 8px;
}

.product-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 600;
}

.product-name {
  font-weight: 600;
  font-size: 1rem;
  margin: 2px 0 0;
  letter-spacing: -0.2px;
}

.product-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 4px 0 14px;
  flex: 1;
  line-height: 1.45;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
}

.add-btn {
  background: var(--text);
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.15s, background 0.15s;
}
.add-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ABOUT — square edges to break up the rounded rhythm */
.about {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 80px 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-avatar {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 22%;
  background: var(--accent-soft);
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
.about h2 {
  font-size: 2rem;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -1px;
}
.about p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 40px 20px 50px;
  color: var(--muted);
  font-size: 0.85rem;
}
.site-footer p { margin: 4px 0; }
.fine { font-size: 0.78rem; opacity: 0.7; }

/* CART DRAWER — sharp left edge, soft right disappears off-screen */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: white;
  border-left: 1px solid var(--border);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.04);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.close-cart {
  background: var(--bg-soft);
  border: none;
  color: var(--text);
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.close-cart:hover { background: var(--border); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 60px 20px;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-thumb {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--bg-soft);
  border-radius: 12px;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 2px;
  letter-spacing: -0.2px;
}
.cart-item-price { color: var(--muted); font-size: 0.85rem; font-weight: 500; }
.cart-item-size { color: var(--muted); font-weight: 500; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.qty-btn {
  background: var(--bg-soft);
  border: none;
  color: var(--text);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--border); }
.qty-num {
  min-width: 24px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.remove-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.8rem;
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s;
}
.remove-btn:hover { color: var(--accent); }

.cart-foot {
  border-top: 1px solid var(--border);
  padding: 18px 24px 22px;
  background: var(--bg-soft);
}

/* Promo code row */
.promo-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.promo-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-family: inherit;
  background: white;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: border-color 0.15s, transform 0.1s;
}
.promo-input:focus {
  outline: none;
  border-color: var(--text);
}
.promo-input.shake {
  animation: shake 0.3s;
  border-color: var(--accent);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  50%      { transform: translateX(4px); }
  75%      { transform: translateX(-2px); }
}
.promo-apply {
  padding: 10px 16px;
  background: var(--text);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 10px;
  transition: opacity 0.15s;
}
.promo-apply:hover { opacity: 0.85; }

.promo-applied {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.promo-applied.invalid {
  border-color: var(--accent);
  color: var(--accent);
}
.promo-applied-text strong { letter-spacing: 0.5px; }
.promo-remove {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s;
}
.promo-remove:hover { color: var(--accent); }

/* Totals stack */
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}
.cart-total-row.discount-row {
  color: var(--accent);
  font-weight: 600;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.2px;
  color: var(--text);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.cart-checkout {
  width: 100%;
  padding: 14px;
  background: var(--text);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: opacity 0.15s, transform 0.15s;
}
.cart-checkout:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.cart-checkout:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* PRODUCT MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal.open { opacity: 1; pointer-events: auto; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  transform: scale(0.96);
  transition: transform 0.2s;
}
.modal.open .modal-content { transform: scale(1); }

.modal-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.modal-icon-btn,
.modal-close {
  background: white;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  color: var(--text);
}
.modal-icon-btn:hover,
.modal-close:hover {
  background: var(--bg-soft);
  border-color: var(--text);
  transform: translateY(-1px);
}
.modal-icon-btn { font-size: 1.05rem; font-weight: 600; }

.modal-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  max-height: 90vh;
  overflow: auto;
}

.modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  min-height: 360px;
  position: relative;
}
.modal-image .badge {
  top: 20px;
  left: 20px;
  font-size: 0.75rem;
  padding: 6px 12px;
}
.modal-stock {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}
.modal-image[data-color="peach"]    { background: #fff0eb; }
.modal-image[data-color="sky"]      { background: #ebf3ff; }
.modal-image[data-color="mint"]     { background: #e8f7ee; }
.modal-image[data-color="cream"]    { background: #fff5d6; }
.modal-image[data-color="lavender"] { background: #f2eeff; }
.modal-image[data-color="pink"]     { background: #ffeef3; }
.modal-image[data-color="sage"]     { background: #ebf2ee; }
.modal-image[data-color="butter"]   { background: #fff8e0; }
.modal-image[data-color="coral"]    { background: #ffe8e0; }

.modal-image span {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.1));
}

.modal-info {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 600;
}
.modal-name {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin: 0;
  line-height: 1.15;
}
.modal-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}
.modal-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 4px;
}

.modal-section { margin-top: 8px; }
.modal-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 8px;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 44px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.15s;
}
.size-btn:hover { border-color: var(--text); }
.size-btn.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.modal-qty .qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
}
.modal-qty .qty-num {
  min-width: 32px;
  font-size: 1rem;
}

.modal-add {
  margin-top: 12px;
  width: 100%;
  padding: 16px;
  background: var(--text);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  transition: opacity 0.15s, transform 0.15s;
}
.modal-add:hover { opacity: 0.9; transform: translateY(-1px); }

/* SHOP UNAVAILABLE (when LAUNCH_CONFIG.shopHidden is true) */
.shop-unavailable {
  display: flex;
  justify-content: center;
  padding: 80px 20px 100px;
}
.shop-unavailable-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 40px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.shop-unavailable-icon {
  font-size: 3.4rem;
  margin-bottom: 6px;
  display: inline-block;
}
.shop-unavailable-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin: 8px 0 14px;
  line-height: 1.1;
}
.shop-unavailable-tagline {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 26px;
}
.shop-unavailable-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .shop-unavailable-card { padding: 40px 24px 28px; }
  .shop-unavailable-card h2 { font-size: 1.6rem; }
}

/* PRE-LAUNCH TEASER BLOCK (replaces product grid) */
.prelaunch-block {
  display: flex;
  justify-content: center;
  padding: 40px 0 60px;
}
.prelaunch-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 40px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.prelaunch-icon {
  font-size: 3.4rem;
  margin-bottom: 6px;
  display: inline-block;
  filter: drop-shadow(0 6px 16px rgba(255, 77, 46, 0.3));
}
.prelaunch-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 8px 0 14px;
  line-height: 1.05;
}
.prelaunch-tagline {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 26px;
}
.prelaunch-tagline strong {
  color: var(--text);
}
.prelaunch-progress {
  width: 100%;
  height: 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.prelaunch-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff8a4d);
  border-radius: 999px;
  transition: width 0.8s ease;
  width: 0%;
}
.prelaunch-progress-text {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 24px;
  font-variant-numeric: tabular-nums;
}
.prelaunch-card .cta {
  width: 100%;
  margin-bottom: 12px;
}
.prelaunch-fine {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 600px) {
  .prelaunch-card { padding: 40px 24px 28px; }
  .prelaunch-card h2 { font-size: 1.7rem; }
}

/* PRE-LAUNCH OVERRIDES */
.product.pre-launch .add-btn {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}
.product.pre-launch .add-btn:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
  transform: translateY(-1px);
}
.product.pre-launch .product-price.pre-launch-price {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pre-launch-mode .product-image {
  filter: saturate(0.6);
  transition: filter 0.25s;
}
.pre-launch-mode .product:hover .product-image {
  filter: saturate(1);
}

/* NOTIFY MODAL */
.notify-content {
  max-width: 460px;
  text-align: center;
}
.notify-body, .notify-success {
  padding: 48px 36px 36px;
}
.notify-art {
  font-size: 3rem;
  margin-bottom: 12px;
  display: inline-block;
}
.notify-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
}
.notify-desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 22px;
}
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.notify-form input[type="email"] {
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  text-align: center;
  background: white;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.notify-form input[type="email"]:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}
.notify-submit {
  padding: 14px 20px;
  background: var(--text);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.notify-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.notify-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.notify-fine {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

/* CONFETTI (easter egg) */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 250;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: -20px;
  border-radius: 2px;
  animation: confetti-fall linear forwards;
}
@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.9; }
}

/* SECRET MODAL (easter egg) */
.secret-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.secret-modal.open { opacity: 1; pointer-events: auto; }
.secret-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
}
.secret-modal-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.secret-modal.open .secret-modal-card { transform: scale(1); }

/* While the modal is "locked" (first 1s after open), close button is dimmed
   and overlay clicks don't fire — so rapid avatar clicks don't close it instantly. */
.secret-modal.secret-locked .secret-close {
  opacity: 0.5;
  cursor: wait;
}
.secret-modal.secret-locked .secret-modal-overlay {
  cursor: wait;
}
.secret-modal-art {
  font-size: 3rem;
  margin-bottom: 6px;
}
.secret-modal-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 6px 0 10px;
}
.secret-modal-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 18px;
}
.secret-code {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
  justify-content: space-between;
}
.secret-code code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}
.secret-copy {
  background: var(--text);
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.secret-copy:hover { opacity: 0.9; }
.secret-close {
  width: 100%;
  padding: 12px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.secret-close:hover { background: var(--bg-soft); border-color: var(--text); }

/* CONFIRMATION PAGE */
.confirmation {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 32px 80px;
}
.confirmation-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 40px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.confirmation-icon {
  font-size: 3.4rem;
  margin-bottom: 6px;
  display: inline-block;
  animation: gentle-bounce 0.6s ease-out;
}
@keyframes gentle-bounce {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.confirmation-card h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 4px 0 12px;
  line-height: 1.1;
}
.confirmation-tagline {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 28px;
}
.confirmation-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 28px;
  text-align: left;
}
.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 4px;
}
.meta-value {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
  margin: 0;
}
.confirmation-items {
  text-align: left;
  margin-bottom: 28px;
  padding: 18px;
  background: var(--bg-soft);
  border-radius: 14px;
}
.confirmation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.confirmation-item:last-child { border-bottom: none; }
.confirmation-thumb {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.confirmation-item-info { flex: 1; min-width: 0; }
.confirmation-item-name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.confirmation-item-meta {
  font-size: 0.78rem;
  color: var(--muted);
}
.confirmation-line-price {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.demo-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  padding: 10px;
  background: #fff7d6;
  border-radius: 10px;
  border: 1px solid #f3e0a3;
  color: #6b4e00;
}
.confirmation-empty {
  text-align: center;
  padding: 80px 20px;
}
.confirmation-empty h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 10px;
}
.confirmation-empty p {
  color: var(--muted);
  margin: 0 0 22px;
}

/* TOAST STACK (queueable) */
.toast-stack {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  pointer-events: none;
  align-items: center;
}
.toast-item {
  background: var(--text);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  max-width: min(90vw, 480px);
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.toast-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s, border-color 0.15s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}
@media (max-width: 600px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* VIDEOS SECTION */
.videos {
  max-width: 1200px;
  margin: 60px auto 20px;
  padding: 0 32px;
}

.videos-inner {
  border-top: 1px solid var(--border);
  padding-top: 50px;
}

.videos-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.videos-head .eyebrow { margin-bottom: 8px; }
.videos-head h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.video-card {
  background: var(--bg-soft);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-stub {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
}
.video-stub-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.video-stub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 999px;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.video-stub code {
  background: white;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* 404 PAGE */
.error-page main {
  text-align: center;
}

.error-main {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  text-align: center;
}

.error-art {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 30px;
}
.error-doggo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 22%;
  background: var(--accent-soft);
  border: 6px solid white;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  filter: hue-rotate(-15deg);
}
.error-glitch {
  position: absolute;
  bottom: -12px;
  right: -16px;
  background: var(--text);
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: rotate(-6deg);
}

.error-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0 0 14px;
  line-height: 1.1;
}
.error-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 32px;
}
.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* CHECKOUT PAGE */
.checkout-page main {
  padding-top: 50px;
}

.checkout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 32px 80px;
}

.checkout-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 0 0 36px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-form h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 4px;
}

.form-section-h { margin-top: 12px !important; }

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.checkout-form input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.checkout-form input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-row:has(label:nth-child(3)) {
  grid-template-columns: 2fr 2fr 1fr;
}

.payment-placeholder {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.payment-placeholder span {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.payment-placeholder p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* DEMO WARNING (above payment tabs) */
.demo-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff7d6;
  border: 1px solid #f3e0a3;
  color: #6b4e00;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.demo-warning-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.demo-warning strong {
  color: #4a3700;
}

/* PAYMENT TABS */
.pay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  margin-top: 4px;
}
.pay-tab {
  background: transparent;
  border: none;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.pay-tab:hover { color: var(--text); }
.pay-tab.active {
  background: white;
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}
.pay-tab-icon { font-size: 0.95rem; }

/* PAYMENT PANELS */
.pay-panel {
  margin-top: 14px;
  display: none;
  flex-direction: column;
  gap: 14px;
}
.pay-panel.active { display: flex; }

.card-number-wrap {
  position: relative;
}
.card-number-wrap input {
  padding-right: 60px !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}
.card-brand {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
  transition: background 0.15s, color 0.15s;
}
.card-brand-visa     { background: #1434cb; color: white; }
.card-brand-mastercard { background: #eb001b; color: white; }
.card-brand-amex     { background: #006fcf; color: white; }
.card-brand-discover { background: #ff6000; color: white; }

.pay-trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 4px;
  letter-spacing: 0.3px;
}
.pay-brands {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* STUB PANELS (PayPal / Apple Pay placeholders) */
.pay-method-stub {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
}
.pay-method-stub-art {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.pay-method-stub h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.pay-method-stub p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkout-summary {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  position: sticky;
  top: 90px;
}

.checkout-summary h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-thumb {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.summary-info { flex: 1; min-width: 0; }
.summary-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-qty {
  font-size: 0.78rem;
  color: var(--muted);
}

.summary-line-price {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.summary-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text);
}
.summary-row.muted, .summary-row .muted {
  color: var(--muted);
  font-size: 0.85rem;
}
.summary-row.discount-row {
  color: var(--accent);
  font-weight: 600;
}
.summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.place-order {
  width: 100%;
  padding: 14px;
  background: var(--text);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: opacity 0.15s, transform 0.15s;
}
.place-order:hover { opacity: 0.9; transform: translateY(-1px); }

.summary-fine {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

.checkout-empty {
  text-align: center;
  padding: 80px 20px;
}
.checkout-empty p {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 24px;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 24px 40px;
  }
  .hero-avatar { width: 90px; height: 90px; bottom: -20px; left: -10px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav { display: flex; }
  .live-indicator { font-size: 0.7rem; padding: 5px 10px 5px 8px; margin-left: 8px; }
}

@media (max-width: 720px) {
  .shop-controls {
    align-items: stretch;
    width: 100%;
  }
  .search-wrap { width: 100%; }
}

@media (max-width: 600px) {
  .site-header { padding: 14px 18px; }
  main { padding: 20px 18px 60px; }
  .hero { padding: 50px 18px 30px; }
  .hero h1 { letter-spacing: -2px; }
  .about { padding: 60px 18px; }
  .checkout { padding: 30px 18px 60px; }
  .confirmation { padding: 30px 18px 60px; }
  .confirmation-card { padding: 36px 22px 28px; }
  .confirmation-card h1 { font-size: 1.7rem; }
  .confirmation-meta { grid-template-columns: 1fr; }
  .checkout-title { font-size: 2rem; }
  .field-row { grid-template-columns: 1fr; }
  .field-row:has(label:nth-child(3)) { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-image { min-height: 220px; font-size: 6rem; }
  .modal-info { padding: 24px; }
  .modal-name { font-size: 1.4rem; }
}
