body {
  --theme-bg: #fff5ca;
  --theme-bg-soft: #16c7b7;
  --theme-card: rgba(255, 255, 255, 0.92);
  --theme-border: #171327;
  --theme-text: #171327;
  --theme-muted: #5f5870;
  --theme-accent: #ff5ea8;
  --theme-accent-hover: #171327;
  --theme-chip: #ffffff;
  --theme-input-bg: #ffffff;
  --theme-input-focus-bg: #ffffff;
  --theme-input-disabled-bg: var(--theme-chip);
  --theme-radius: 18px;
  --theme-shadow: 8px 8px 0 rgba(23, 19, 39, 0.95);
  --text-primary: var(--theme-text);
  --text-secondary: var(--theme-muted);
  --bg-primary: var(--theme-bg);
  --bg-secondary: var(--theme-bg-soft);
  --card-bg: var(--theme-card);
  --border-color: var(--theme-border);
  --accent: var(--theme-accent);
  --accent-hover: var(--theme-accent-hover);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 94, 168, 0.28), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(22, 199, 183, 0.28), transparent 24%),
    var(--theme-bg);
  color: var(--theme-text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, label, span, strong, small, li, td, th,
.profile-name, .detail-title, .section-head h2, .checkout-main-form h1, .checkout-main-form h2,
.price-row strong, .pricing-box strong, .meta-card strong, .card-body h3 {
  color: var(--theme-text);
}

.section, .product-card, .service-card, .empty-state, .detail-panel, .purchase-card, .checkout-panel, .checkout-summary, .checkout-main-form, .listing-detail, .listing-description, .booking-details, .form-section, .listing-summary, .card {
  border: 3px solid var(--theme-border);
  border-radius: var(--theme-radius);
  background: var(--theme-card);
  color: var(--theme-text);
  box-shadow: var(--theme-shadow);
}

.product-card:hover, .service-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 rgba(23, 19, 39, 0.95); }
.profile-img, .media-main, .media-placeholder, .card-img, .main-image, .summary-image img, .checkout-summary img, .gallery-thumb, .gallery .gallery-thumb {
  border: 2px solid var(--theme-border);
  border-radius: var(--theme-radius);
  background: var(--theme-bg-soft);
}

.profile-img { border-radius: 999px; color: var(--theme-text); }
.profile-handle, .detail-eyebrow, .card-type, .card-price, .price-display { color: var(--theme-accent); }
.profile-bio, .detail-copy, .rich-text, .card-body p, .muted, .storefront-footer { color: var(--theme-muted); }
.profile-badge, .section-count, .card-type, .social-links a, .time-slot-badge, .free-badge, .badge {
  border: 2px solid var(--theme-border);
  background: var(--theme-chip);
  color: var(--theme-text);
}

.btn, .back-link {
  border: 2px solid var(--theme-border);
  border-radius: 12px;
  background: var(--theme-chip);
  color: var(--theme-text);
  box-shadow: 3px 3px 0 rgba(23, 19, 39, 0.9);
}
.btn:hover, .back-link:hover, .btn-primary, .btn.primary { background: var(--theme-accent); color: var(--theme-text); }
input, textarea, select, .input, .form-control, .form-select {
  border: 2px solid var(--theme-border);
  border-radius: 12px;
  background: #fff;
  color: var(--theme-text);
}
.toast { border: 2px solid #0b684a; background: #eafaf3; color: #0b684a; }
.toast.error { border-color: #9f2d2b; background: #fff1f1; color: #9f2d2b; }
