/* css/theme.css */

/* Font (Poppins + system fallback) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

:root {
  /* Generelle farger */
  --page-bg: #ffffff;
  --ink: #111111;
  --ink-inv: #ffffff;
  --muted: #cfcfcf;

  /* Brand / aksentfarger */
  --accent: #ff8000;
  --accent-soft: #ffa733;
  --line: #312783;

  /* Mørk bakgrunn / header/footer */
  --dark: #000000;
  --dark-surface: #0b0b0b;

  /* Header/layout-variabler (helt fint å ha her) */
  --desk-header-h: 150px;
  --mob-header-h: 120px;
  --container-w: 1200px;

  /* Produktside-palett (hentet fra Produkt.aspx) */
  --product-text: #1c1c1c;
  --product-muted: #6c6c6c;
  --product-line: #e9e9ee;
  --product-chip: #f4f6ff;
  --product-chip-text: #3b3b3b;

  /* Cart-side brand (fra Cart.aspx) */
  --cart-brand: #3a33a5;
  --cart-ink: #222222;
  --cart-muted: #6b7280;
}

/* Generell base-typografi */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--page-bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-soft);
  text-decoration: underline;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
