:root {
  --font-main: 'Roboto', sans-serif;
}

body {
  font-family: var(--font-main);
}

/* ✅ Layout tổng thể website */
.container {
  width: 100%;
  max-width: 1260px;     /* 📏 Giới hạn chiều rộng tối đa */
  margin: 0 auto;        /* Căn giữa */
  padding: 0 20px;       /* khoảng đệm hai bên */
  box-sizing: border-box;
}

/* ✅ Reset & font chung */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* ✅ Grid mặc định 4 cột */
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ✅ Responsive breakpoints */
@media (max-width: 1024px) {
  .grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
  }
}
