/*
 Theme Name: Theandras
 Version: 1.0
 Description: Thème sur-mesure pour la boutique Theandras
 Author: Theandras
*/

:root {
  --color-bg: #efe9df;
  --color-card: #f7f2e7;
  --color-card-border: #e4d9bf;
  --color-ink: #241d15;
  --color-muted: #5c5142;
  --color-faint: #8a7d68;
  --color-teal: #3fa799;
  --color-teal-tint: #dcefeb;
  --color-purple: #7c4fd8;
  --color-gold: #a97a34;
  --color-pink: #c0577f;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Work Sans', 'Poppins', sans-serif;
}

/* Reset de base */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  margin: 0 0 0.6em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 6px;
  z-index: 1000;
  background: var(--color-ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font: 600 13px var(--font-sans);
}
.skip-link:focus {
  top: 6px;
}
