* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg-light-green);
  color: var(--text);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-consent__inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent__text {
  flex: 1 1 250px;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-consent__button {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-consent__button--secondary {
  background: transparent;
  border: 1px solid #fff;
}

/* Push content below fixed header */
main {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 20px;
  transition: padding-top 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  background: var(--light);
}

/* Ensure booking layout doesn't overflow */
.booking-layout {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: var(--dark);
}

button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 500;
}

button:hover {
  opacity: 0.9;
}

form {
  margin: 8px 0;
}

input {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  width: 100%;
}

input:focus {
  outline: none;
  border-color: var(--primary);
}

