/* ======= CSS RESET & NORMALIZE ======= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #E8E1C5;
  color: #4F2A12;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
:focus {
  outline: 2px solid #A07643;
  outline-offset: 2px;
}

/* ======= ROOT & TOKENS ======= */
:root {
  --primary: #4F2A12;
  --primary-dark: #44230F;
  --secondary: #E8E1C5;
  --secondary-light: #FFFFFF;
  --accent: #A07643;
  --accent-light: #B6936B;
  --bg-gradient: linear-gradient(135deg, #E8E1C5 0%, #B6936B 100%);
  --cta-gradient: linear-gradient(90deg, #A07643 10%, #4F2A12 90%);
  --card-shadow: 0 4px 24px rgba(79, 42, 18, 0.07);
  --radius: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --primary: #E8E1C5;
    --secondary: #44230F;
    --secondary-light: #4F2A12;
    --accent: #B6936B;
    --bg-gradient: linear-gradient(135deg, #4F2A12 0%, #A07643 100%);
    --cta-gradient: linear-gradient(90deg, #B6936B 10%, #E8E1C5 90%);
  }
  body {
    background: var(--secondary);
    color: var(--primary);
  }
}

/* ======= TYPOGRAPHY ======= */
h1, .h1 {
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 18px;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary);
}
h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
}
p, li, .text-section {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 14px;
}
p:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 600;
}
.em {
  font-style: italic;
}
small {
  font-size: 0.92em;
}

/* ======= CONTAINER & SECTIONS STRUCTURE ======= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section,
.hero,
.features,
.cta,
.testimonials,
.services-section,
.pricing-section,
.faq-section,
.contact-section,
.thank-you-section,
.privacy-policy,
.gdpr-policy,
.cookie-policy,
.about-section,
.values,
.ambience-features,
.about-cafe,
.terms-section,
.hours-location,
.process,
.contact-prompt {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--bg-gradient);
  box-shadow: var(--card-shadow);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section, .contact-information, .map {
  margin-bottom: 20px;
}

/* ======= HEADER & NAVIGATION ======= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(79,42,18,0.04);
  padding: 0 1.2rem;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.logo img {
  height: 45px;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-left: 28px;
}
nav.main-nav a {
  color: #B6936B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.17s;
  position: relative;
  padding: 6px 0;
}
nav.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  width: 0;
  transition: width 0.22s;
  margin: 2px 0 0 0;
}
nav.main-nav a:hover:after, nav.main-nav a:focus:after {
  width: 100%;
}

.cta-primary {
  background: var(--cta-gradient);
  color: #fff;
  border-radius: 25px;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  padding: 10px 26px;
  margin-left: 24px;
  box-shadow: 0 4px 18px 0 rgba(160,118,67,0.13);
  transition: background 0.23s, color 0.17s, transform 0.13s;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 18px 0 rgba(160,118,67,0.22);
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--accent-light);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(160,118,67,0.13);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 14px;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary-dark);
  color: var(--accent-light);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: var(--bg-gradient);
  box-shadow: 2px 0 35px 0 rgba(79,42,18,0.17);
  z-index: 101;
  padding: 30px 28px 28px 28px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.76,0,.24,1);
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--primary-dark);
  background: transparent;
  border: none;
  margin-bottom: 26px;
  cursor: pointer;
  transition: color 0.23s;
  z-index: 103;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 12px;
  transition: background 0.15s, color 0.12s;
  margin: 0 -8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1080px) {
  nav.main-nav {
    gap: 18px;
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  nav.main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: 12px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ======= HERO SECTION ======= */
.hero {
  background:#B6936B;
  min-height: 340px;
  display: flex;
  margin-bottom: 60px;
  align-items: center;
  box-shadow: 0 8px 48px 0 rgba(79,42,18,0.07);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 280px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary-dark);
}
.hero p {
  font-size: 1.26rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.hero .cta-primary {
  margin-top: 12px;
}

@media (max-width: 700px) {
  .hero, .hero .container {
    min-height: 200px;
    margin-bottom: 36px;
    padding: 32px 0 20px 0;
  }
  .hero .content-wrapper h1 {
    font-size: 2rem;
  }
}

/* ======= SECTION: FEATURES & CARDS ======= */
.features, .feature-grid, .service-list, .about-cafe ul, .ambience-features ul, .values .value-list, .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.features {
  gap: 0;
  background: #B6936B;
}
.feature-grid, .service-list {
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-grid > div, .service-list > div, .about-cafe ul li, .ambience-features ul li, .values .value-list li {

  flex: 1 1 220px;
  min-width: 230px;
  max-width: 310px;
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 17px 0 rgba(79,42,18,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  transition: box-shadow 0.23s, transform 0.13s;
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 4px 24px rgba(160,118,67,0.17);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img, .service-list img, .about-cafe ul li img, .ambience-features ul li img, .values .value-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .feature-grid > div, .service-list > div {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }
  .features, .feature-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ======= TESTIMONIALS ======= */
.testimonials {
  background: linear-gradient(113deg, #FFFFFF 50%, #B6936B 100%);
  box-shadow: 0 3px 17px 0 rgba(79,42,18,0.06);
}
.testimonial-slider,
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 5px 22px 0 rgba(160,118,67,0.07);
  padding: 20px 28px 20px 24px;
  margin-bottom: 20px;
  position: relative;
  color: #2b2217;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #2b2217;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.testimonial-meta {
  font-size: 0.97rem;
  color: var(--primary-dark);
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--accent);
}
.testimonial-card:before {
  content: '\201C';
  font-size: 3.2rem;
  color: var(--accent);
  position: absolute;
  left: 8px; top: -4px;
  z-index: 1;
  opacity: 0.19;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: 0 8px 42px 0 rgba(160,118,67,0.22);
  background: #fffbe5;
}

/* ======= CTA BLOCK ======= */
.cta {
  background: linear-gradient(92deg, #A07643 12%, #E8E1C5 100%);
  text-align: center;
  box-shadow: 0 5px 23px 0 rgba(160,118,67,0.10);
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 6px;
}
.cta p {
  color: var(--primary);
  font-size: 1.12rem;
}

/* ======= FOOTER ======= */
footer {
  background: linear-gradient(90deg, #4F2A12 60%, #B6936B 100%);
  color: #fff;
  padding: 0 0 0 0;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 20px 0;
}
.footer-logo-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 210px;
}
.footer-logo-contact img {
  height: 39px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.01rem;
  transition: color 0.17s;
  letter-spacing: 0.01em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent-light);
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 4px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(255,255,255,0.16);
  transition: box-shadow 0.21s, filter 0.18s;
}
.footer-social a:hover img {
  filter: brightness(1.3) contrast(1.1);
  box-shadow: 0 4px 18px rgba(255,247,133,0.33);
}
.footer-bottom {
  margin-top: 18px;
  padding-bottom: 22px;
  text-align: center;
  font-size: 0.98rem;
  color: #efe8da;
}
.contact-details a {
  color: #fff;
  text-decoration: underline;
}
.contact-details a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-logo-contact, .footer-nav, .footer-social {
    min-width: 0;
    margin-bottom: 12px;
  }
  .footer-social {
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

/* ======= PRICING TABLE ======= */
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0 20px 0;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 2px 12px rgba(79,42,18,0.05);
  font-size: 1.07rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #e0dbc5;
}
.pricing-table th {
  background: var(--accent-light);
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.01rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  color: #4F2A12;
}

@media (max-width: 700px) {
  .pricing-table th, .pricing-table td {
    padding: 11px 7px;
  }
}

/* ======= ACCORDIONS / FAQ ======= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(79,42,18,0.08);
  padding: 14px 18px;
  font-size: 1.03rem;
}
.faq-accordion h3 {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.11rem;
  font-family: 'Roboto Slab', serif;
}

/* ======= PROCESS STEPS ======= */
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 20px 13px;
  padding: 0;
}
.steps li {
  background: #fff;
  border-radius: var(--radius);
  padding: 13px 18px;
  box-shadow: 0 2px 12px rgba(160,118,67,0.07);
  margin-bottom: 10px;
  font-size: 1.01rem;
}

/* ======= SPECIAL LAYOUTS & ALIGNMENTS ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 14px 0 rgba(160,118,67,0.10);
  padding: 26px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.15s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 7px 27px 0 rgba(160,118,67,0.24);
  transform: translateY(-4px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .feature-grid, .service-list {
    gap: 12px;
  }
}

/* ======= THANK YOU PAGE ======= */
.thank-you-section .cta-primary {
  margin-top: 18px;
}

/* ======= MODALS & ANIMATIONS ======= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.open .cookie-modal {
  animation: fadeInUp 0.38s cubic-bezier(.76,0,.24,1);
}

/* ======= COOKIE CONSENT BANNER & MODAL ======= */
#cookie-consent-banner, .cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: linear-gradient(92deg, #FFFFFF 70%, #B6936B 100%);
  color: #44230F;
  box-shadow: 0 -6px 32px 0 rgba(79,42,18,0.11);
  border-radius: 22px 22px 0 0;
  padding: 26px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  font-size: 1rem;
}
.cookie-consent-banner p {
  text-align: center;
  max-width: 670px;
  margin: 0 auto 7px auto;
  color: #44230F;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 8px;
}
.cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  background: var(--cta-gradient);
  color: #fff;
  border-radius: 19px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 22px;
  transition: background 0.14s, color 0.14s, transform 0.13s;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(79,42,18,0.10);
}
.cookie-btn:hover, .cookie-btn:focus { background: var(--accent-light); color: var(--primary-dark); }
.cookie-btn-accept { background: var(--accent); }
.cookie-btn-accept:hover, .cookie-btn-accept:focus { background: var(--accent-light); color: var(--primary-dark); }
.cookie-btn-reject { background: #B6936B; }
.cookie-btn-reject:hover, .cookie-btn-reject:focus { background: #b57e43; color: #fff; }
.cookie-btn-settings { background: var(--primary); }
.cookie-btn-settings:hover, .cookie-btn-settings:focus { background: #a07643; color: #fff; }

.cookie-modal-overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(47,32,12,0.32);
  z-index: 1150;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: var(--primary-dark);
  border-radius: 22px;
  box-shadow: 0 8px 44px 0 rgba(79,42,18,0.17);
  padding: 32px 28px 22px 28px;
  min-width: 300px;
  max-width: 90vw;
  min-height: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal h2 {
  color: var(--accent);
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--primary-dark);
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e0dbc5;
  border-radius: 11px;
  position: relative;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(79,42,18,0.13);
  transition: left 0.18s cubic-bezier(.84,0,.16,1);
}
.cookie-toggle:checked:before { left: 18px; }
.cookie-category .always-on { color: #A07643; font-weight: 600; font-size: 0.97rem; }
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 24px;
  background: none;
  border: none;
  color: #A07643;
  cursor: pointer;
}
@media (max-width: 648px) {
  .cookie-modal { padding: 17px 10px 17px 10px; }
}
@media (max-width:500px) {
  #cookie-consent-banner, .cookie-consent-banner {
    border-radius: 10px 10px 0 0;
    padding: 17px 7px 14px 7px;
    font-size: 0.99rem;
  }
  .cookie-btns { flex-direction: column; gap: 7px; }
  .cookie-modal { min-width: 0; }
}


/* ============= RESPONSIVE ADJUSTMENTS ============= */
@media (max-width: 900px) {
  .section, .hero, .features, .cta, .testimonials, .services-section, .pricing-section, .faq-section, .contact-section, .thank-you-section, .privacy-policy, .gdpr-policy, .cookie-policy, .about-section, .values, .ambience-features, .about-cafe, .terms-section, .hours-location, .process, .contact-prompt {
    padding: 30px 6px;
    margin-bottom: 38px;
  }
}
@media (max-width: 600px) {
  .section, .hero, .features, .cta, .testimonials, .services-section, .pricing-section, .faq-section, .contact-section, .thank-you-section, .privacy-policy, .gdpr-policy, .cookie-policy, .about-section, .values, .ambience-features, .about-cafe, .terms-section, .hours-location, .process, .contact-prompt {
    padding: 17px 3px;
    margin-bottom: 28px;
    border-radius: 7px;
  }
}

/* ============= GENERAL INTERACTIONS ============= */
button:not(.mobile-menu-toggle):not(.mobile-menu-close):not(.cookie-btn):not(.cookie-btn-accept):not(.cookie-btn-reject):not(.cookie-btn-settings), input[type="submit"], input[type="button"] {
  background: var(--cta-gradient);
  color: #fff;
  border-radius: 22px;
  font-size: 1.08rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  padding: 7px 26px;
  box-shadow: 0 2px 11px 0 rgba(160,118,67,0.11);
  cursor: pointer;
  transition: background 0.18s, color 0.11s, transform 0.13s;
  border: none;
}
button:hover, button:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-1px) scale(1.013);
}

/* ============= MISC FIXES ============= */
::-webkit-input-placeholder { color: #B6936B; }
::-moz-placeholder { color: #B6936B; }
:-ms-input-placeholder { color: #B6936B; }
::placeholder { color: #B6936B; }

::selection {
  background: var(--accent-light);
  color: #fff;
}

/* ============= FORM ELEMENTS ============= */
input, textarea, select {
  border: 1.5px solid #b6936b39;
  border-radius: 13px;
  padding: 10px 13px;
  font-size: 1rem;
  margin-bottom: 15px;
  background: #fff;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

/* Hide scroll on mobile-menu overlay when open */
body.mobile-menu-open {
  overflow: hidden;
}
