/*
Theme Name: Elektranu
Theme URI: https://elektranu.nl
Author: Elektranu
Description: Custom block theme voor Elektranu - Nederlandse elektrotechnische webshop. Mobile-first, geforceerde lichte modus, gebouwd voor grootschalige productfeeds.
Version: 0.1.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elektranu
Tags: e-commerce, block-theme, full-site-editing, custom-colors
*/

/* ------------------------------------------------------------------
   Forced light mode.
   The shop is deliberately light-only: product photography and
   technical spec tables must render identically for every visitor.
   No prefers-color-scheme queries anywhere in this theme.
   ------------------------------------------------------------------ */
:root {
  color-scheme: only light;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--text);
  -webkit-font-smoothing: antialiased;
}

/* Keyboard focus must stay visible - accessibility baseline */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--wp--preset--color--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link for keyboard and screen reader users */
.enu-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--wp--preset--color--primary);
  color: #fff;
  text-decoration: none;
}
.enu-skip-link:focus {
  left: 0;
}
