/*
Theme Name: MosWPmall
Theme URI: https://www.moshos.se/moswpmall
Author: Mosho
Author URI: https://www.moshos.se/
Description: A classic WordPress theme built for learning and experimentation. Clean, minimal, and compatible with WP 6.8 and PHP 8.4.
Version: 0.1
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moswpmall
Tags: custom-theme, minimal, responsive
*/

/* --- CSS Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  background: #fff;
  color: #111;
}

/* Bilder och media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Formelement */
button,
input,
select,
textarea {
  font: inherit;
}

/* Länkar */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}