/* assets/shared.css */
:root {
  --primary: #b99e77;
  --primary-dark: #8a795a;
  --bg: #f7f6f5;
  --btn: #b99e77;
  --btn-hover: #a08865;
  --text: #222;
  --radius: 18px;
  --footer-height: 60px;
  --line: #e4dfd6;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  overscroll-behavior-y: contain;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.latote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 0 20px;
}

.latote-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #ecdec4;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: calc(var(--footer-height) + env(safe-area-inset-bottom, 0px));
  padding: 8px 12px env(safe-area-inset-bottom, 0px);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 -2px 10px #e4dfd6;
  z-index: 100;
}

.footer .icon-btn {
  color: var(--primary-dark);
  text-align: center;
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}

.footer .icon-btn img[data-icon] {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer .icon-btn span {
  font-size: 0.85em;
  font-weight: 400;
}