/*
Theme Name: Microsoft Keys
Theme URI: https://www.microsoft-keys.nl/
Author: MMGroup
Author URI: https://mmgroup.web.id/
Description: Custom WooCommerce theme for Microsoft-Keys.nl — a faithful, hand-built rebuild of the live design (replacing the newstore + Elementor stack). Plain CSS, runtime design tokens, one stylesheet per page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: microsoftkeys
WC requires at least: 6.0
WC tested up to: 9.0
*/

/* =============================================================
   Design tokens — sourced from the live Elementor global palette
   ============================================================= */
:root {
  /* Brand */
  --mk-primary: #090062;        /* deep indigo — headers, nav, section titles */
  --mk-primary-dark: #060042;
  --mk-primary-100: #eceaf6;    /* tint for section backgrounds */
  --mk-secondary: #489cb7;      /* teal accent */
  --mk-accent: #f85924;         /* orange accent */
  --mk-cta: #4caf50;            /* green add-to-cart */
  --mk-cta-dark: #43a047;

  /* Neutrals */
  --mk-ink: #212529;            /* body text */
  --mk-ink-soft: #555555;       /* muted text / prices */
  --mk-line: #e4e1e3;           /* borders */
  --mk-bg: #ffffff;
  --mk-bg-soft: #f5f5f5;

  /* Type */
  --mk-font-body: "Roboto", -apple-system, "Segoe UI", Arial, sans-serif;
  --mk-font-head: "Roboto Slab", Georgia, "Times New Roman", serif;

  /* Layout */
  --mk-maxw: 1200px;
  --mk-gap: 24px;
  --mk-radius: 4px;
  --mk-shadow: 0 6px 22px rgba(9, 0, 98, 0.10);
  --mk-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* =============================================================
   Base / reset
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--mk-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--mk-ink);
  background: var(--mk-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mk-primary); text-decoration: none; }
a:hover { color: var(--mk-accent); }
h1, h2, h3, h4, h5 {
  font-family: var(--mk-font-head);
  color: var(--mk-primary);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

/* Layout helpers */
.mk-container { width: 100%; max-width: var(--mk-maxw); margin: 0 auto; padding: 0 20px; }
.mk-section { padding: 56px 0; }
.mk-section--soft { background: var(--mk-bg-soft); }
.mk-section-head { text-align: center; margin-bottom: 36px; }
.mk-section-head h2 { font-size: 2rem; margin-bottom: .25em; }
.mk-section-head .mk-sub { color: var(--mk-ink-soft); margin: 0; }
.mk-eyebrow {
  display: inline-block; font-family: var(--mk-font-body); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; font-size: .75rem;
  color: var(--mk-secondary); margin-bottom: .6em;
}

/* Buttons */
.mk-btn {
  display: inline-block; cursor: pointer; border: 0; border-radius: var(--mk-radius);
  padding: 12px 26px; font-family: var(--mk-font-body); font-weight: 600; font-size: 1rem;
  line-height: 1.2; text-align: center; transition: background-color .15s ease, transform .05s ease;
}
.mk-btn--primary { background: var(--mk-primary); color: #fff; }
.mk-btn--primary:hover { background: var(--mk-primary-dark); color: #fff; }
.mk-btn--cta { background: var(--mk-cta); color: #fff; }
.mk-btn--cta:hover { background: var(--mk-cta-dark); color: #fff; }
.mk-btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); }
.mk-btn--ghost:hover { background: #fff; color: var(--mk-primary); }
.mk-btn:active { transform: translateY(1px); }

/* Utility */
.mk-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
