:root {
  --primary-color: #402000;
  --accent-color: #c4021f;
  --text-color: #333;
  --bg-color: #F5EFE6;
  --header-text: #F5EFE6;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: var(--primary-color);
  color: var(--header-text);
  padding: 1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-branding {
  display: flex;
  align-items: center;
}
.logo {
  max-height: 60px;
  margin-right: 1rem;
}
.shop-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
}
.site-nav {
  display: flex;
  gap: 0.5rem;
}
.nav-button {
  background: var(--accent-color);
  color: var(--header-text);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-button:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Main fills remaining space */
main {
  flex: 1;
}

/* Landing */
.landing {
  padding: 2rem 1rem;
}
.landing-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.slideshow {
  overflow: hidden;
  max-width: 100%;
  max-height: 400px;
}
.slide {
  width: 100%;
  height: 400px;
  display: none;
  object-fit: cover;
}
.intro-text {
  max-width: 400px;
}
.intro-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}
.btn-book {
  padding: 0.75rem 1.5rem;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}
.btn-book:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .landing-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* Appointment */
.appointment-page {
  padding: 2rem 1rem;
  text-align: center;
}
.info {
  font-style: italic;
  margin-bottom: 1rem;
}
.pw-form {
  background: #fff;
  border: 1px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: 0 auto 2rem;
}
.pw-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.pw-form input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.pw-form button {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.pw-form button:hover {
  opacity: 0.9;
}
.error-msg {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.input-error {
  border-color: var(--accent-color);
}

/* Embed box */
.square-widget {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.square-widget iframe {
  width: 100% !important;
  height: calc(100vh - 160px) !important;
  border: none;
}

/* Footer */
.site-footer {
  background: var(--primary-color);
  color: var(--header-text);
  padding: 1.5rem 0;
  text-align: center;
}
.site-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

