/* ================= RESET ================= */

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

html, body {
  margin: 0;
  padding: 0;
}

/* ================= GLOBAL ================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #fff9f3, #fff3ea);
  color: #222;
}

/* ================= INTERACTION SAFETY ================= */

button,
input,
textarea {
  font-family: inherit;
  outline: none;
}

button {
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ================= SECTION TITLES ================= */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 48px;
  color: #a31212;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  font-size: 18px;
}

/* ================= UTILITIES ================= */

.hidden {
  display: none !important;
}

/* ================= MEDIA SAFETY ================= */

img {
  max-width: 100%;
  display: block;
}

/* ================= INPUTS ================= */

input,
textarea {
  width: 100%;
  font-size: 16px;
}

/* ================= OPTIONAL BODY LOCK (USED BY JS) ================= */

body.cart-open,
body.modal-open {
  overflow: hidden;
}