/*
Theme Name: Minao
Theme URI: https://minao.com
Author: Minao Team
Description: A modern WordPress theme for lingerie e-commerce.
Version: 1.0.0
Requires at least: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minao
Domain Path: /languages
Tags: e-commerce, custom-menu, featured-images, theme-options
*/

@font-face {
  font-family: 'Badoga';
  /* Only woff2: the .woff export from this source has a malformed OS/2
     table (version 5 fields) that browsers warn about / can't parse.
     woff2 covers every browser still in use, so no fallback is needed. */
  src: url('assets/fonts/Badoga.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  /* Colors */
  --color-bg-primary: #FFFFFF;
  --color-bg-cream: #FDFBFB;
  --color-accent-pink: #F5EAEF;
  --color-accent-mauve: #D7C4CB;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #4A4A4A;
  --color-text-muted: #999999;
  --color-footer-bg: #0B0B0B;
  --color-footer-text: #CCCCCC;
  --color-border: #EAEAEA;
  --color-overlay: rgba(0, 0, 0, 0.4);

  /* Fonts */
  --font-primary: 'Jost', sans-serif;
  --font-serif: 'Badoga', serif;

  /* Text sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2.5rem;
  --text-3xl: 3.5rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  --spacing-2xl: 7rem;

  /* Layout */
  --container-max: 1400px; /* matches Figma content area (1920px canvas, 260px side margins) */
  --container-padding: 5%;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: #FEF9F9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Screen reader only (WordPress core convention) */
.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-width: 0;
}
