html {
  scroll-behavior: smooth;
  box-sizing: border-box;

}


/* wrapper cleanup */
/* ================================================
   NIYA: DELIVERY NOTICE BAR
   ================================================ */

.niya-delivery-notice {
  position: relative;        /* just after <body> */
  width: 100vw;              /* span the full viewport */
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* true full-width */
  margin-right: -50vw;
  background-color: #4C7A33; /* Niya green */
  z-index: 9999;             /* on top of everything */
}

.niya-delivery-notice p {
  max-width: 1200px;         /* optional: constrain text on very large screens */
  margin: 0 auto;            /* center the paragraph */
  padding: 0.5rem 1rem;      /* top/bottom + left/right spacing */
  color: #fff;               /* white text */
  text-align: center;        /* center text */
  font-size: 1rem;           /* tweak as you like */
  font-weight: 500;          /* match your theme’s weight */
  line-height: 1.4;
}


/* === Hero Section styles === */
.site-hero {
  position: relative;
  padding: 230px 0 150px;
  text-align: center;
  color: #fff;
  overflow: hidden; /* contain blur */
}

.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Layer 1: dark overlay for contrast
     Layer 2: your new hero image
     Layer 3: optional subtle Moroccan tile SVG pattern (commented out below) */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://niya-leeuwarden.nl/wp-content/uploads/2025/05/SiteHeroBG.png') center/cover no-repeat;
  /* for extra richness you could also add an SVG pattern over the photo: */
  /* , url('http://…/moroccan-pattern.svg') center/auto repeat */
  backdrop-filter: blur(6px);
}

.site-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: aliceblue;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.site-hero p {
  font-size: 1.125rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}



/* Rounded, padded button */
.ct-button {
  display: inline-block;
  background-color: #4C7A33;  /* or your brand green */
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;        /* pill shape */
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.ct-button:hover {
  background-color: #3e6429;
}


/* Food Menu Section */
.food-menu {
  padding: 4rem 0;
}

.food-menu-title {
  /* make it a block so margin:auto works */
  display: block;
  color: #312F2F;
  /* shrink width exactly to the text */
  width: fit-content;

  /* center that  text-width block */
  margin: 0 auto 2rem;

  position: relative;
  /* for the ::after underline */
  font-size: 2rem;
}

.food-menu-title::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  /* a little gap under the text */
  left: 0;
  /* flush to the text’s left edge */
  width: 5rem;
  /* length of your underline */
  height: 0.25rem;
  background: #5a8139;
}


/* Category Heading */
.food-menu-category {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
  color: #708090;
}

.food-menu-category::after {
  content: "";
  display: block;
  width: 7rem;
  height: 0.25rem;
  background: #708090;
  margin-top: 0.5rem;
}

/* 3-column grid at desktop, fixed to always be 3 even if fewer items */
.food-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
}

/* Card */
.food-menu-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
}

/* Image */
.food-menu-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.food-menu-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.food-menu-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.food-menu-desc {
  flex: 1;
  margin-bottom: 1rem;
  color: #666;
}

.food-menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.food-menu-price {
  font-weight: 700;
}


/* ——————————————————————————
   Newsletter Block
———————————————————————————————— */
.niya-newsletter {
  position: relative;
  background-color: #E6F0EE;
  /* light accent behind */
  padding: 4rem 1rem;
  text-align: center;
  z-index: 0;
}

.niya-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('http://localhost/wordpress/wp-content/uploads/2025/05/hero-bg-2.png') center/cover no-repeat;
  opacity: 0.04;
  /* dial this up or down as needed */
  pointer-events: none;
  z-index: -1;
  /* behind all your form content */
}

.niya-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.niya-newsletter-title {
  font-size: 2.5rem;
  color: #5a8139;
  /* your green */
  margin-bottom: 0.5rem;
}

.niya-newsletter-subtitle {
  font-size: 1rem;
  color: #434f58;
  /* dark charcoal */
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

/* 1) Stack everything & clear WPForms inline-fields rules */
.niya-newsletter .wpforms-form {
  display: flex !important;
  flex-direction: column !important;

}

.niya-newsletter .wpforms-container.inline-fields .wpforms-field-container {
  display: block !important;
}

/* 2) Force every wrapper to full width/no extra padding */
.niya-newsletter .wpforms-field-container,
.niya-newsletter .wpforms-submit-container {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 3) Inputs & button exactly same size, full-width */
.niya-newsletter .wpforms-field-container input,
.niya-newsletter .wpforms-submit-container button {
  width: 100% !important;
  /* 🔑 override any WPForms “medium” widths */
  height: 3rem;
  box-sizing: border-box;
  font-size: 1rem;
}

/* 4) Base styling for inputs */
.niya-newsletter .wpforms-field-container input {
  padding: 0 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* 5) Reposition the envelope icon flush with the email field */
.niya-newsletter .wpforms-field-email {
  position: relative;
}

.niya-newsletter .wpforms-field-email::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5a8139;
  color: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}

/* make sure the text inside doesn’t get cut off */
.niya-newsletter .wpforms-field-email input {
  padding-left: calc(3rem + 0.75rem);
}

/* 6) Button styling */
.niya-newsletter .wpforms-submit-container button {
  background-color: #5a8139;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s;
}

.niya-newsletter .wpforms-submit-container button:hover {
  background-color: #48682b;
}


/* ────────────────────────────────────────────────────────────────────
   1) Break out of WPForms’ inline-fields sizing entirely:
──────────────────────────────────────────────────────────────────── */
#wpforms-112 .wpforms-container.inline-fields .wpforms-field-container {
  display: block !important;
}

/* ────────────────────────────────────────────────────────────────────
     2) Force each inner field WRAPPER to span 100% + reset padding/margins
  ──────────────────────────────────────────────────────────────────── */
#wpforms-112 .wpforms-field-name,
#wpforms-112 .wpforms-field-email,
#wpforms-112 .wpforms-submit-container {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ────────────────────────────────────────────────────────────────────
     3) Now make the <input> and <button> full-width & equal height
  ──────────────────────────────────────────────────────────────────── */
#wpforms-112 .wpforms-field-name input,
#wpforms-112 .wpforms-field-email input,
#wpforms-112 .wpforms-submit-container button {
  width: 100% !important;
  height: 3rem;
  box-sizing: border-box;
  font-size: 1rem;
}

/* ────────────────────────────────────────────────────────────────────
     4) Re-style the two <input> boxes so they look identical
  ──────────────────────────────────────────────────────────────────── */
#wpforms-112 .wpforms-field-name input,
#wpforms-112 .wpforms-field-email input {
  padding: 0 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ────────────────────────────────────────────────────────────────────
     5) Re-position your email icon exactly inside its wrapper
  ──────────────────────────────────────────────────────────────────── */
#wpforms-112 .wpforms-field-email {
  position: relative;
}

#wpforms-112 .wpforms-field-email::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5a8139;
  color: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}

/* make sure the text doesn’t get clipped */
#wpforms-112 .wpforms-field-email input {
  padding-left: calc(3rem + 0.75rem);
}

/* ────────────────────────────────────────────────────────────────────
     6) Finally, style your Subscribe button
  ──────────────────────────────────────────────────────────────────── */
#wpforms-112 .wpforms-submit-container button {
  background-color: #5a8139;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s;
}

#wpforms-112 .wpforms-submit-container button:hover {
  background-color: #48682b;
}


#wpforms-112 .wpforms-field-name,
#wpforms-112 .wpforms-field-email,
#wpforms-112 .wpforms-submit-container {
  margin-bottom: 1rem !important;
  /* adjust as desired */
}

/* 1) Make the Name field wrapper positionable */
#wpforms-112 .wpforms-field-name {
  position: relative;
}

/* 2) Inject the FA “user” icon exactly like the envelope */
#wpforms-112 .wpforms-field-name::before {
  content: "\f007";
  /* user icon */
  font-family: "Font Awesome 5 Free";
  /* your kit */
  font-weight: 900;
  /* solid style */
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  /* same as field-height */
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5a8139;
  color: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}

/* 3) Pad the input so text never sits under the icon */
#wpforms-112 .wpforms-field-name input {
  padding-left: calc(3rem + 0.75rem);
}


/* ——————————————————————————————————————————————
   Mini “About” Section with Tajine Background
—————————————————————————————————————————————— */
.home-about {
  position: relative;
  padding: 6rem 1rem;
  /* generous vertical padding */
  color: #fff;
  text-align: center;
  background: url('http://localhost/wordpress/wp-content/uploads/2025/05/homeAbout.png') center/cover no-repeat;
  overflow: hidden;
}

.home-about__overlay {
  position: absolute;
  inset: 0;
  /* darken + blur the bg image */
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.home-about__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.home-about__title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #f5e8d0;
  /* a warm, sandy highlight */
}

.home-about__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #f0f0e8;
}

.home-about__link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #9B2822;
  /* your rich hero red */
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color .2s;
}

.home-about__link:hover {
  background-color: #7d201c;
  color: #fff;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .home-about {
    padding: 4rem 1rem;
  }

  .home-about__title {
    font-size: 1.75rem;
  }
}



/* ——————————————————————————————————————————————
   Home “Services” Section (no background)
—————————————————————————————————————————————— */
.niya-services {
  padding: 4rem 1rem;
  text-align: center;
}

.niya-services-title {
  font-size: 2rem;
  color: #312F2F;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}


.niya-services-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  /* sit at the very bottom of the text */
  left: 0;
  /* flush to the left edge */
  width: 7rem;
  /* length of your underline */
  height: 0.25rem;
  /* thickness of your underline */
  background: #5a8139;
  /* same color as the title text */
}


/* ——————————————————————————
   Services Section (no more red squares, FA icons in red)
———————————————————————————————— */
.niya-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.niya-service {
  /* remove the old background */
  background: none;
  /* if you want a subtle border around each item, uncomment: */
  /* border: 1px solid #eaeaea; */
  padding: 2rem 1rem;
  text-align: center;
}

.niya-service i {
  font-size: 2rem;
  margin-bottom: 1rem;
  /* make the icon itself red */
  color: #9B2822;
  /* remove any square behind it */
  background: none;
}

.niya-service h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #333;
}

.niya-service p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* stack on mobile */
@media (max-width: 768px) {
  .niya-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* SERVICES PAGE */
/* —————————————————————————————————————————————— 
   Hero Subtitle (reuses your .site-hero background/spacing)
—————————————————————————————————————————————— */
.site-hero .hero-subtitle {
  font-size: 14px;
  color: #5a8139;
  /* your green */
  text-transform: uppercase;
  font-weight: 700;
}

.site-hero .hero-title {
  font-size: 3rem;
  margin: 0;

}

.site-hero .hero-subtitle {
  margin-bottom: 0;
}

.site-hero .hero-title {
  margin-top: 0.25rem;
}

/* —————————————————————————————————————————————— 
     Services Intro Layout
  —————————————————————————————————————————————— */
.services-intro {
  padding: 4rem 1rem;
  background-color: #E6F0EE;
  /* light accent */
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left column text */
.services-intro .services-overline {
  text-transform: uppercase;
  color: #5a8139;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.services-heading {
  font-size: 2rem;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.services-text p {
  color: #434f58;
  line-height: 2;
  margin-bottom: 1rem;
  /* fully justify everything except the last line */
  text-align: justify;
  /* keep the last line left-aligned rather than stretched */
  text-align-last: left;
  /* ensure inter-word justification in WebKit/Firefox */
  -webkit-text-align-last: left;
  -ms-text-align-last: left;
  text-justify: inter-word;
}

/* Right column cards */
.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card i {
  font-size: 2rem;
  color: #9B2822;
  /* your hero red */
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
}





/* —————————————————————————————————————————————— 
     Responsive tweaks
  —————————————————————————————————————————————— */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}



/* ——————————————————————————————————————————————
   Services Extras (Hours & Payments)
—————————————————————————————————————————————— */
/* ——————————————————————————————————————————————
   Services Extras (Opening Hours & Payment Logos)
—————————————————————————————————————————————— */
/* —————————————————————————————
   Services Extras (4 blocks)
———————————————————————————————— */
.services-extra {
  padding: 4rem 1rem;
  background-color: #E6F0EE;
}

.services-extra .container {
  max-width: 1100px;
  /* or whatever maximum width you’d like */
  margin: 0 auto;
  /* auto-center it */
  padding: 0 1rem;
  /* 1rem of gutter on each side */
}

.services-extra-grid {
  display: grid;
  /* 4 columns on desktop, then wrap */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-extra-grid .extras-block h3 {
  font-size: 1.25rem;
  /* keep your 4-column size */
  font-weight: 700;
  /* force the same boldness */
  color: #708090;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.services-extra-grid .opening-hours ul,
.services-extra-grid .reservation-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-extra-grid .opening-hours li,
.services-extra-grid .reservation-hours li {
  margin-bottom: 0.5rem;
  color: #434f58;
  font-size: 1rem;
}

.services-extra-grid .delivery-area p {
  color: #434f58;
  font-size: 1rem;
  line-height: 1.5;
}

.services-extra .reservation-hours .contact-link {
  color: #9B2822;
  /* your hero red */
  text-decoration: underline;
  font-weight: 600;
}

.services-extra .reservation-hours .contact-link:hover {
  opacity: 0.8;
}

.services-extra-grid .payment-methods .method-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-extra-grid .method-icons img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;

  transition: opacity .2s, transform .2s;
}

.services-extra-grid .method-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Responsive tweak */
@media (max-width: 600px) {
  .services-extra {
    padding: 3rem 1rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .food-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .food-menu-grid {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 999px) {
  .site-hero {
    padding: 120px 0 70px;
  }
}

/* reset any inner margins if you wrapped it in a container */
.site-hero .container {
  margin: 0;
  padding: 0;
}

.food-menu>.container {
  max-width: 1200px;
  /* or whatever breakpoint you like */
  margin: 0 auto;
  /* center it */
  padding: 0 1rem;
  /* keep 1rem of breathing room on each side */
}








/* ——————————————————————————————————
   Contact Page
——————————————————————————————————— */
.contact-block {
  padding: 4rem 1rem;
  background-color: #E6F0EE;
}

.contact-block .container {
  max-width: 1100px;
  margin: 0 auto;
}


.contact-block .contact-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  /* ensure it fills its container */
  width: 100%;
}

.contact-form-wrap h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #312F2F;
}

.contact-form-wrap p {
  margin-bottom: 1.5rem;
  color: #434F58;
  line-height: 1.6;
}

/* Make WPForms inputs full width within this wrapper */
.contact-form-wrap .wpforms-form input,
.contact-form-wrap .wpforms-form textarea {
  width: 100% !important;
  box-sizing: border-box;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-block {
    padding: 3rem 1rem;
  }
}


/* ——————————————————————————————————
   Contact Page – Info Cards
——————————————————————————————————— */
.contact-info {
  background-color: #E6F0EE;
  padding: 3rem 1rem;
}

.contact-info .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-block {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.info-icon {
  display: inline-block;
  font-size: 2rem;
  color: #5a8139;
  margin-bottom: 0.5rem;
}

.info-block h3 {
  font-size: 1.25rem;
  color: #5a8139;
  margin-bottom: 0.75rem;
}

.info-block p {
  color: #434f58;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .contact-info {
    padding: 2rem 1rem;
  }
}




/* — About Intro — */
.about-intro {
  padding: 4rem 1rem;
  text-align: center;
}

.about-intro .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #312F2F;
}

.about-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #434f58;
}

/* — Core Values — */
.about-values {
  background-color: #E6F0EE;
  padding: 4rem 1rem;
  text-align: center;
}

.about-values h2 {
  font-size: 2.25rem;
  color: #312F2F;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card i {
  font-size: 2rem;
  color: #9B2822;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #312F2F;
  margin-bottom: .5rem;
}

.value-card p {
  color: #666;
  font-size: .9rem;
  line-height: 1.5;
}

/* — About Intro — */
.about-intro {
  padding: 4rem 1rem;
  text-align: center;
}

.about-intro .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #312F2F;
}

.about-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #434f58;
}

/* — Core Values — */
.about-values {
  background-color: #E6F0EE;
  padding: 4rem 1rem;
  text-align: center;
}

.about-values h2 {
  font-size: 2.25rem;
  color: #312F2F;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card i {
  font-size: 2rem;
  color: #9B2822;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #312F2F;
  margin-bottom: .5rem;
}

.value-card p {
  color: #666;
  font-size: .9rem;
  line-height: 1.5;
}

/* — How It Works Section — */
.about-how {
  background-color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.about-how .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-how h2 {
  font-size: 2.25rem;
  color: #312F2F;
  margin-bottom: 2rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.how-step {
  background: #E6F0EE;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.how-step i {
  font-size: 2rem;
  color: #9B2822;
  margin-bottom: 1rem;
}

.how-step h3 {
  font-size: 1.25rem;
  color: #312F2F;
  margin-bottom: 0.75rem;
}

.how-step p {
  color: #434f58;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* apply the green underline to our About Us titles */
.about-intro h2,
.about-values h2,
.about-how h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 3rem;
  /* give space for the underline */
}

.about-intro h2::after,
.about-values h2::after,
.about-how h2::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 5rem;
  /* adjust length as you like */
  height: 0.25rem;
  background: #5a8139;
}

.browse-link {
  color: #5a8139;
  /* that signature green */
  font-weight: 600;
  text-decoration: underline;
}

.browse-link:hover {
  opacity: 0.8;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .about-how {
    padding: 3rem 1rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* — Responsive tweaks — */
@media (max-width: 768px) {

  .about-intro,
  .about-values,
  .about-team {
    padding: 3rem 1rem;
  }
}


/* — Responsive tweaks — */
@media (max-width: 768px) {

  .about-intro,
  .about-values,
  .about-team {
    padding: 3rem 1rem;
  }
}




/* ===========================
   Niya front‑page overrides
   =========================== */

/* — layout — */
.fp-menu {
  display: flex;
  gap: 3rem;
  padding: 0 1rem;
}

.fp-catalog {
  flex: 1 1 0;
}

.fp-cart {
  width: 320px;
  max-width: 100%;
}

@media(max-width:992px) {
  .fp-menu {
    flex-direction: column;
  }

  .fp-cart {
    width: 100%;
    margin-top: 3rem;
  }
}

/* — mini cart “card” — */
.cart-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  position: sticky;
  top: 6.5rem;
}

/* — category bar — */
.cat-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .25rem 1.5rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.cat-btn,
.cat-search {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px #e0e0e0;
  background: #fff;
  cursor: pointer;
}

.cat-btn:hover,
.cat-search:hover {
  background: #f5f5f5
}

.cat-track {
  flex: 1;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cat-track::-webkit-scrollbar {
  display: none;
}

.cat-track a {
  position: relative;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  color: #312F2F;
  text-decoration: none;
}

.cat-track a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: .25rem;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #f8b701;
}

/* — anchor offset so titles don’t hide under bar — */
.fp-cat-title {
  scroll-margin-top: 110px;
}

/* — plus‑price pill — */
.price-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #5a8139;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: .4rem 1.1rem;
  cursor: pointer;
  transition: .15s;
}

.price-btn:hover {
  background: #48682b
}

.price-btn .plus {
  font-size: 1.2em;
  line-height: 0
}

/* arrow icon centring */
.cat-btn svg {
  pointer-events: none
}



/* spinner & tick for the price button */
.price-btn.is-adding .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin .8s linear infinite;
}

.price-btn.is-added .tick {
  font-size: 1rem;
  line-height: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ensure the mini‑cart always gets the fresh Woo fragment */
.fp-cart .woocommerce-mini-cart {
  opacity: 1;
}

/* optional – make arrows visually centred */
.cat-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}


/* make Woo’s default empty‑cart paragraph fit your “card” style */
.cart-card p.woocommerce-mini-cart__empty-message {
  margin: 0;
  color: #586075;
  text-align: center;
}


/* ────────────────────────────────────────────────────────────────
   CARD LAYOUT  (wide rectangular, image on the left)
───────────────────────────────────────────────────────────────── */

/* 2‑column grid on desktop so the cart has space */
.food-menu-grid {
  grid-template-columns: repeat(2, 1fr);
  /* desktop */
}

/* 1 column on ≤ 768 px (you already had this, just keep it) */
@media (max-width: 768px) {
  .food-menu-grid {
    grid-template-columns: 1fr;
  }
}

/* turn each card into a two‑column mini‑grid               */
/* (170 px image column + flexible text column)              */
.food-menu-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  min-height: 170px;
  /* keep it low & wide        */
  padding: 1.25rem;
  /* add some breathing room   */
  gap: 1.5rem;
  /* space between img & text  */
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
}

/* shrink the image & keep its aspect ratio */
.food-menu-image {
  overflow: hidden;
  /* round corners fluently */
  border-radius: 10px;
}

.food-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* reset inner layout to classic block flow */
.food-menu-content {
  padding: 0;
  display: block;
}

.food-menu-name {
  font-size: 1.35rem;
  margin: 0 0 .25rem;
}

.food-menu-desc {
  font-size: .95rem;
  margin: 0 0 1rem;
  color: #586075;
}

/* align the one action button left, not stretched */
.food-menu-meta {
  display: block;
}

/* price‑plus button – match your existing green palette      */
/* (just tighter padding + slightly more rounded like the ref) */
.price-btn {
  padding: .55rem 1.6rem .55rem 1.45rem;
  border-radius: 8px;
  font-size: .95rem;
}

.price-btn .plus {
  margin-left: .5rem;
  font-size: 1.05rem;
}

/* tiny look‑and‑feel niceties */
@media (max-width:480px) {
  .food-menu-card {
    grid-template-columns: 120px 1fr;
    gap: 1rem;
  }

  .food-menu-name {
    font-size: 1.2rem;
  }
}


/* ─────────  card: make image occupy full left side ───────── */
.food-menu-card {
  grid-template-columns: 220px 1fr;
  /* a bit wider picture   */
  align-items: stretch;
  /* stretch both columns  */
}

.food-menu-image {
  /* remove the old padding gap */
  height: 100%;
  /* ← key: fill card height  */
  border-radius: 10px 0 0 10px;
  /* round only left corners   */
  overflow: hidden;
}

.food-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* crop nicely              */
}


/* ─────────  fancy orange badge style ───────── */
.price-btn {
  background: linear-gradient(180deg, #ff8978 0%, #ff644e 100%);
  border: none;
  box-shadow: 0 4px 10px rgba(255, 100, 78, .25);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .03em;
  padding: .6rem 1.8rem .6rem 1.6rem;
  /* a bit roomier          */
}

.price-btn .plus {
  font-size: 1.25rem;
  line-height: 0;
  margin-left: .8rem;
  /* keep it away from price */
}

.price-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 100, 78, .30);
}


/* 1️⃣  – catalogue always ONE column, nice vertical rhythm */
.food-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* ← one column on every device   */
  gap: 2.25rem;
  /* a little breathing room        */
}

/* 2️⃣  – card stretches full width of that column */
.food-menu-card {
  width: 100%;
  /* span whole row                 */
  max-width: 100%;
  /* never squeeze beside the cart  */
}

/* keep the “add to cart” badge flush with the picture’s bottom edge */
.food-menu-content {
  display: flex;
  /* stack title, desc, badge            */
  flex-direction: column;
  /* vertical flow                        */
  height: 100%;
  /* let it fill the full card height     */
}

.food-menu-meta {
  margin-top: auto;
  /* ⬅️  push the badge to the bottom     */
}

/* slightly softer corners for the badge */
.price-btn {
  border-radius: 10px !important;
  /* was 10 px – tweak as you like        */
}


/* ——— green gradient badge (replaces the orange) ——— */
.price-btn {
  background: linear-gradient(180deg,
      #7fbb5c 0%,
      /* light tint of your green */
      #5a8139 100%
      /* the familiar Niya green  */
    ) !important;

  /* green‑tinted drop‑shadow for a gentle lift */
  box-shadow: 0 4px 10px rgba(90, 129, 57, .25) !important;
}

/* optional – make the hover state pop a hair more */
.price-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(90, 129, 57, .35) !important;
}




/* keep the image perfectly flush, even if it was taller */
.food-menu-image,
.food-menu-image img {
  height: 100% !important;
  /* 📏 2) picture follows card */
  width: 100%;
  object-fit: cover;
  /* crop if wider/taller       */
}


.food-menu-desc {
  margin-bottom: 1rem;
  color: #586075;
  white-space: pre-wrap; /* enables line breaks */
}



/*
            
.food-menu-desc {
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
*/

/* let the button hug the bottom edge, no matter what            */
.food-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* fill the fixed 200 px      */
}

.food-menu-meta {
  margin-top: auto;
  /* push €‑button to the base  */
}


@media (max-width:680px) {
  .food-menu-card {
    grid-template-columns: 120px 1fr;
    /* skinnier image column   */
    height: auto;
    /* let card stretch        */
    min-height: 150px;
    /* but never shorter than  */
  }

  .food-menu-image,
  .food-menu-image img {
    height: 100%;
    /* still fill the column   */
  }

  .food-menu-desc {
    -webkit-line-clamp: 3;
    /* one more visible line   */
  }
}


@media (max-width:480px) {
  .food-menu-card {
    /* picture row + content row */
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  /* picture becomes a banner */
  .food-menu-image {
    height: 180px;
    border-radius: 10px 10px 0 0;
    /* soft top corners only   */
  }

  /* give the text block nice padding under the photo */
  .food-menu-content {
    padding-top: 0.9rem;
  }

  /* a little more space for reading */
  .food-menu-desc {
    -webkit-line-clamp: 4;
  }
}

:root {
  --card-pad: 1.25rem;
  /* single source of truth       */
}

.food-menu-card {
  padding: var(--card-pad);
}

.food-menu-image {
  border-radius: 10px;
}

.price-btn {
  border-radius: 10px;
}

/* same roundness        */


/* ===============  A)  add‑to‑cart notice  =============== */
.woocommerce-message .button.wc-forward,
/* ===============  B)  mini‑cart footer buttons  =============== */
.cart-card .woocommerce-mini-cart__buttons .button {
  /* 1. background & shadow borrowed from .price-btn */
  background: linear-gradient(180deg, #7fbb5c 0%, #5a8139 100%);
  box-shadow: 0 4px 10px rgba(90, 129, 57, .25);
  /* 2. dimensions / radius */
  padding: .6rem 1.8rem;
  border-radius: 10px;
  /* 3. text */
  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
  /* 4. remove Woo’s default */
  border: none !important;
}

/* a little lift on hover/focus */
.woocommerce-message .button.wc-forward:hover,
.cart-card .woocommerce-mini-cart__buttons .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(90, 129, 57, .35);
}



/*CART*/


/* lay items out in a tidy single row */
.cart-card .woocommerce-mini-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid #ececec;
}

/* line‑height & colour tweaks for clarity */
.cart-card .woocommerce-mini-cart-item a {
  font-weight: 600;
  color: #5a8139;
  line-height: 1.35;
}

/* quantity × price line underneath the title */
.cart-card .quantity {
  font-size: .9rem;
  color: #555;
  margin-top: .1rem;
}

/* spit‑out subtotal & buttons with breathing room */
.cart-card .woocommerce-mini-cart__total {
  margin: 1rem 0 1.25rem;
}

.cart-card .woocommerce-mini-cart__buttons .button {
  width: 100%;
  margin-top: .75rem;
  text-align: center;
}

/* ────────────────────────────────────────────────
   “View cart” link that appears after add‑to‑cart
   (class = added_to_cart wc-forward)
   ────────────────────────────────────────────────*/
.added_to_cart.wc-forward {
  background: linear-gradient(180deg, #7fbb5c 0%, #5a8139 100%) !important;
  box-shadow: 0 4px 10px rgba(90, 129, 57, .25) !important;
  border: none !important;

  display: inline-flex;
  /* keeps it same height everywhere */
  align-items: center;
  justify-content: center;
  margin-left: .75rem;
  padding: .6rem 1.8rem;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  text-decoration: none;
}

.added_to_cart.wc-forward:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(90, 129, 57, .35) !important;
}

/* (optional) hide Woo’s green message bar & tick icon */
.woocommerce-message {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 1.25rem 0 !important;
}

.woocommerce-message::before {
  display: none !important;
}





/* ============ MINI CART: Layout & Buttons ============ */

/* Mini-cart item layout: bin | qty | title — then price on row 2 */
.cart-card .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 24px auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "bin qty title"
    ".   price price";
  align-items: center;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid #ececec;
}

/* Bin (delete) icon */
.cart-card .remove_from_cart_button {
  grid-area: bin;
  width: 24px;
  height: 24px;
  line-height: 0;
}

/* Quantity wrapper */
.mini-qty {
  grid-area: qty;
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 88px;
}

/* Quantity number */
.mini-qty-num {
  font-weight: 600;
}

/* Quantity +/- buttons */
.mini-qty-btn {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 2px solid #5a8139;
  border-radius: 50%;
  background: none;
  color: #5a8139;
  font-weight: 700;
  font-size: 12px;
  line-height: 0;
  padding: 0;
  cursor: pointer;
}

.mini-qty-btn:hover {
  background: #eef6ea;
}


.mini-qty-btn i {
    font-style: normal !important;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
}

i::before {
  display: inline-block;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}


/* Product title */
.cart-card .woocommerce-mini-cart-item a:not(.remove_from_cart_button) {
  grid-area: title;
  font-weight: 600;
  color: #5a8139;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product price */
.mini-line-price {
  grid-area: price;
  font-weight: 600;
  white-space: nowrap;
  margin-top: .25rem;
  color: #555;
}



.mobile-cart-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #5a8139;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  z-index: 9999;
  cursor: pointer;
  display: block;
}

.mobile-cart-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 9999;
}

.popup-cart-inner {
  background: #fff;
  width: 90%;
  max-width: 480px;
  max-height: 80%;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  padding: 1rem;
}

.popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}




@media (max-width: 992px) {
  .fp-cart:not(.mobile) {
    display: none !important;
  }

  .mobile-cart-btn {
    display: block !important;
  }
}

@media (min-width: 993px) {
  .mobile-cart-btn,
  .mobile-cart-popup {
    display: none !important;
  }
}



/* turn off the sticky sidebar styling inside the mobile popup */
.mobile-cart-popup .cart-card {
  position: static !important;
  top: auto !important;
}

#mobile-cart-popup.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-cart-inner {
  border-radius: 16px;  /* was 8px */
}

.mobile-cart-btn {
  border-radius: 16px !important;
}


/* WebKit browsers */
.popup-cart-inner::-webkit-scrollbar {
  width: 8px;
}

.popup-cart-inner::-webkit-scrollbar-track {
  background: rgba(90, 129, 57, 0.1);
  border-radius: 4px;
}

.popup-cart-inner::-webkit-scrollbar-thumb {
  background: #5a8139;
  border-radius: 4px;
  transition: background 0.2s;
}

.popup-cart-inner::-webkit-scrollbar-thumb:hover {
  background: #48682b;
}

/* Firefox */
.popup-cart-inner {
  scrollbar-width: thin;
  scrollbar-color: #5a8139 rgba(90, 129, 57, 0.1);
}



.cart-card .woocommerce-mini-cart-item img {
  display: none;
}



/* base style */
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 1.2rem;
  line-height: 1;
  color: #5a8139;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s, transform .1s;
}

/* hover/focus state */
.popup-close:hover,
.popup-close:focus {
  background: #f0f6f0;
  transform: scale(1.1);
  outline: none;
}

/* optional: larger hit-area on mobile */
@media (max-width: 480px) {
  .popup-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}


/* ──────────────────────────────────────────────────
   Policy Pages (Privacy & Terms) Styles
────────────────────────────────────────────────── */

/* Wrap the content for max-width and centering */
.policy-content {
  padding: 4rem 1rem;
  color: #333;
  background: #fff;
}

.policy-content .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Section headings */
.policy-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #4C7A33; /* use your brand green */
  position: relative;
}
.policy-content h2::before {
  content: '';
  display: block;
  width: 3rem;
  height: 4px;
  background: #4C7A33;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
.policy-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Lists */
.policy-content ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}
.policy-content ul li {
  margin-bottom: 0.75rem;
}

/* Links inside policy text */
.policy-content a {
  color: #9B2822; /* use your brand accent */
  text-decoration: underline;
}
.policy-content a:hover {
  color: #4C7A33;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .policy-content {
    padding: 2rem 1rem;
  }
  .policy-content h2 {
    font-size: 1.5rem;
  }
}


/* Disable pointer on product titles in the mini-cart */
.woocommerce-mini-cart .product-title,
.woocommerce.widget_shopping_cart .product-title {
  cursor: default !important;      /* no hand icon */
  pointer-events: none !important; /* make the link non-clickable */
  
  
}


/* put this at the very bottom of child.css, after everything else */
.site-hero .hero-hours {
  font-size: 0.85rem;      /* or whatever you like */
  padding: 0.25rem 0.5rem; /* make it compact */ 
  margin-top: 1rem;        
  background: rgba(0,0,0,0.5);
  color: #fff;
  line-height: 1.3;
  border-radius: 0.375rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}


/* Theme-aware NIYA footer styling */
.niya-footer-copyright {
  text-align: center;          /* center the text */
  padding: 1.5em 0;            /* space above & below */
  background-color: #f9f9f9;   /* subtle light background */
  font-size: 0.9rem;           /* slightly smaller type */
  color: #555;                 /* medium-dark gray text */
  border-top: 1px solid #e0e0e0; /* thin top border for separation */
}

.niya-footer-copyright p {
  margin: 0;                   /* remove default paragraph margins */
  line-height: 1.4;            /* improve readability */
}


