/* Layout base 420px - metodologia BEM */
@import url("header.css");
@import url("home.css");
@import url("menu.css");
@import url("cart.css");
@import url("checkout.css");
@import url("footer.css");

:root {
  --width: min(100vw, 420px);
  --curry: #a6281d;
  --spice: #c6a664;
  --cream: #faf7f2;
  --ink: #1e1e1e;
  --muted: #8f8f8f;
  --line: #e7e2d9;
  --bg: #f4f1eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

html,
body {
  background-color: var(--bg); /* bianco panna */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Poppins",
    sans-serif;
}

body.app {
  width: min(100%, var(--width));
  margin: 0 auto;
  background-color: #faf7f2;
  color: #2b2b2b;
}

.app-main{
  margin-bottom: 3rem;
}

.app-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--width));
  background-color: #faf7f2;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.app-footer__nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 4px;
}

.app-footer__link {
  text-decoration: none;
  color: #a6281d;
  font-weight: 500;
  font-size: 14px;
}

/* Bottoni */
.btn {
  display: inline-block;
  border-radius: 999px;
  border: none;
  background-color: #c6a664; /* oro spezia */
  color: #faf7f2;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background-color: #a6281d;
  font-weight: 700;
}

.btn--small {
  padding: 6px 10px;
  font-size: 12px;
}
