/* css/base.css */
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #d0011b; /* Màu đỏ cho giá/sale */
  --text-color: #333333;
  --text-light: #777777;
  --bg-light: #f9f9f9;
  --border-color: #e5e5e5;
  --header-height: 80px;
  --font-main: "Montserrat", sans-serif;
}

/* --- YÊU CẦU CỦA BẠN --- */
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem; /* 16px */
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--secondary-color);
  margin: 0;
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

/* --- TIỆN ÍCH --- */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px; /* Chuẩn màn hình rộng giống web thời trang */
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}
.hidden {
  display: none !important;
}

/* Typography chuẩn Fashion */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h1 {
  font-size: 3.6rem;
}
h2 {
  font-size: 2.8rem;
}
