.meal-consent[hidden] {
  display: none;
}

.meal-consent {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  margin: 0 auto;
  max-width: 760px;
  color: #28231f;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid rgba(72, 57, 45, 0.16);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(53, 40, 31, 0.18);
  backdrop-filter: blur(16px);
}

.meal-consent__inner {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  padding: 22px;
}

.meal-consent__copy { flex: 1; }

.meal-consent__copy h2 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.25;
}

.meal-consent__copy p {
  margin: 0 0 8px;
  color: #5d534b;
  font-size: 14px;
  line-height: 1.55;
}

.meal-consent__copy a {
  color: #4c6253;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meal-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  gap: 10px;
}

.meal-consent__button {
  min-height: 44px;
  padding: 10px 18px;
  color: #28342d;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  background: #edf2ed;
  border: 1px solid #cad5cc;
  border-radius: 999px;
  cursor: pointer;
}

.meal-consent__button:hover { background: #e1e9e2; }

.meal-consent__button:focus-visible,
.meal-consent-settings:focus-visible {
  outline: 3px solid rgba(62, 91, 70, 0.35);
  outline-offset: 2px;
}

.meal-consent-settings {
  position: fixed;
  z-index: 999;
  left: 16px;
  bottom: 16px;
  min-height: 38px;
  padding: 8px 14px;
  color: #4d4540;
  font: inherit;
  font-size: 12px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(72, 57, 45, 0.2);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(53, 40, 31, 0.12);
  cursor: pointer;
}

@media (max-width: 680px) {
  .meal-consent { right: 12px; bottom: 12px; left: 12px; }
  .meal-consent__inner { display: block; padding: 18px; }
  .meal-consent__actions { margin-top: 16px; }
}
