/* Minimal frontend override reset.
 * Kept intentionally lightweight so the original frontend stylesheet chain remains stable.
 */

:root {
  --theme-bg: #f5f7fb;
  --theme-surface: #ffffff;
  --theme-surface-alt: #f8fafc;
  --theme-text: #17212b;
  --theme-text-muted: #64748b;
  --theme-border: #d7dce3;
  --theme-accent: #2563eb;
}

body,
.wrapper,
.page-wrapper,
#wrap,
main,
section,
article,
aside,
.container,
.container-fluid {
  background-color: var(--theme-bg) !important;
  color: var(--theme-text) !important;
}

.card,
.panel,
.box,
.service-box,
.feature-box,
.category-item,
.product-item,
.listing-card,
.profile-card,
.widget,
.item-box {
  background-color: var(--theme-surface) !important;
  color: var(--theme-text) !important;
  border: 1px solid var(--theme-border) !important;
}

.form-control,
input,
select,
textarea,
.custom-select-new {
  background-color: var(--theme-surface) !important;
  color: var(--theme-text) !important;
  border: 1px solid var(--theme-border) !important;
}

a {
  color: var(--theme-accent) !important;
}
