.cta-section-new {
  padding: 100px 0;
  background-image: url('https://i.imgur.com/TFvjG9W.png');
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: var(--font-family--rubik), sans-serif;
  overflow: hidden;
}

/* Background Doodles */
.cta-doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  color: #1E3F20;
  z-index: 1;
}

.doodle-pizza {
  top: 8%;
  left: 1.5%;
  width: 110px;
  height: 110px;
  transform: rotate(-15deg);
}

.doodle-burger {
  top: 12%;
  right: 2%;
  width: 95px;
  height: 95px;
  transform: rotate(15deg);
}

.doodle-hat {
  bottom: 22%;
  left: 2%;
  width: 95px;
  height: 95px;
  transform: rotate(-10deg);
}

.doodle-pot {
  bottom: 8%;
  right: 2.5%;
  width: 110px;
  height: 110px;
  transform: rotate(10deg);
}

.doodle-dots-tl {
  top: 3%;
  left: 4%;
  width: 70px;
  height: 70px;
}

.doodle-dots-tr {
  top: 3%;
  right: 8%;
  width: 70px;
  height: 70px;
}

.doodle-dots-bl {
  bottom: 5%;
  left: 1%;
  width: 70px;
  height: 70px;
}

.doodle-dots-br {
  bottom: 2%;
  right: 10%;
  width: 70px;
  height: 70px;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #EEF7E8;
  color: #4A7C3D;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 100px;
}

.cta-badge svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.cta-title-new {
  font-family: 'Baloo 2', 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: #1E3F20;
  text-align: center;
  margin: 0 0 12px 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 18px;
  color: #5E6D5D;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  line-height: 1.5;
}

.cta-redesign-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .cta-redesign-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-title-new {
    font-size: 40px;
  }

  .cta-section-new {
    padding: 70px 0;
  }
}

/* Steps Column Timeline Layout */
.cta-steps-column {
  position: relative;
}

/* Vertical dashed line on the left */
.cta-steps-column::before {
  content: '';
  position: absolute;
  left: 13px;
  /* Centers under the heading icon */
  top: 40px;
  /* Starts below the heading icon */
  bottom: 24px;
  /* Ends near the rosette box */
  width: 2px;
  border-left: 2px dashed #B9CBB7;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .cta-steps-column::before {
    left: 13px;
  }
}

.cta-steps-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cta-steps-header-icon {
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4A7C3D;
  flex-shrink: 0;
  z-index: 2;
}

.cta-steps-header-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.cta-steps-title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1E3F20;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}

.brush-stroke {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;
  opacity: 0.8;
  pointer-events: none;
}

.cta-timeline {
  padding-left: 45px;
  /* Shifts step items to the right of the dashed line */
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.cta-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cta-step-icon-circle {
  width: 92px;
  height: 92px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1E3F20;
  flex-shrink: 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.cta-step-icon-circle svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
}

.cta-step-item:hover .cta-step-icon-circle {
  color: #4A7C3D;
  transform: scale(1.05);
  background-color: transparent;
}

.cta-step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.cta-step-title-text {
  font-size: 18px;
  font-weight: 800;
  color: #1E3F20;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-step-desc {
  color: #5E6D5D;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* Why Us Box */
.why-us-box {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 246, 236, 0.86) 100%);
  border-radius: 16px;
  padding: 12px 22px 12px 18px;
  border: 1px solid rgba(74, 124, 61, 0.2);
  box-shadow: 0 14px 34px rgba(30, 63, 32, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.why-us-box::before {
  content: '';
  width: 4px;
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, #8bb769 0%, #2f7b37 100%);
  flex: 0 0 4px;
}

@media screen and (max-width: 767px) {
  .cta-timeline {
    padding-left: 35px;
  }

  .why-us-box {
    width: 100%;
  }

  .cta-steps-column::before {
    bottom: 40px;
  }
}

.why-us-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #7fb85d 0%, #3e873d 45%, #1f602c 100%);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(37, 103, 45, 0.22);
}

.why-us-badge-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-us-title {
  font-family: 'Baloo 2', 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1E3F20;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us-desc {
  max-width: 560px;
  font-size: 12.5px;
  color: #5E6D5D;
  margin: 0;
  line-height: 1.4;
}

/* Right Column Card & Form */
.cta-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(74, 124, 61, 0.05);
  border: 1px solid rgba(74, 124, 61, 0.08);
  position: relative;
  z-index: 2;
}

.cta-form-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
}

.cta-card-gift-badge {
  width: 50px;
  height: 50px;
  background-color: #FAF6EC;
  border: 2px solid #D1DEC7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4A7C3D;
}

.cta-card-gift-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}

.cta-form-card-title-container {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.cta-form-card-title-container .brush-stroke {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 80%;
  height: 6px;
}

.cta-form-card-title {
  font-family: 'Baloo 2', 'Rubik', sans-serif;
  font-size: 22px;
  color: #1E3F20;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.cta-form-group {
  margin-bottom: 20px;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 479px) {
  .cta-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
  }

  .cta-form-row>div {
    margin-bottom: 20px;
  }

  .cta-form-card {
    padding: 24px;
  }
}

.cta-form-label {
  color: #1E3F20;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.cta-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-input-icon {
  position: absolute;
  left: 16px;
  color: #8CA089;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.cta-input-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.cta-new-input {
  width: 100%;
  box-sizing: border-box;
  background: #fdfdfd;
  border: 1px solid rgba(74, 124, 61, 0.15);
  border-radius: 12px;
  padding: 14px 20px 14px 48px;
  color: #1E3F20;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.cta-new-input:focus {
  border-color: #4A7C3D;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(74, 124, 61, 0.15);
  outline: none;
}

.cta-new-input::placeholder {
  color: rgba(30, 63, 32, 0.35);
}

.cta-select-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%234A7C3D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 45px;
}

.cta-textarea-wrapper .cta-input-icon {
  top: 16px;
  align-items: flex-start;
}

.cta-textarea {
  resize: vertical;
  min-height: 90px;
  padding-top: 14px;
}

.cta-submit-btn {
  width: 100%;
  background: #4A7C3D;
  color: #ffffff;
  border: 1px solid #4A7C3D;
  padding: 18px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(74, 124, 61, 0.15);
  transition: all 0.3s ease;
  font-family: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cta-submit-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.cta-submit-btn:hover {
  background: #3D6832;
  border-color: #3D6832;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(74, 124, 61, 0.25);
}

.cta-form-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: #5E6D5D;
  text-align: center;
}

.cta-form-footer svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(30, 65, 32, 0.6) !important;
  border-color: #dcb846 !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5) !important;
}

#__framer-badge-container,
#__framer-badge,
[data-framer-badge],
a[href*="framer.com/?utm_source=framer-banner-"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important
}

.w-webflow-badge {
  display: none !important
}

#interactive-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 37, 12, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

#interactive-menu-overlay.active {
  pointer-events: auto;
}

.interactive-menu-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(194, 164, 63, 0.4);
  border-radius: 20px;
  padding: 50px;
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.5);
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  position: relative;
  text-align: left;
}

.interactive-menu-card::-webkit-scrollbar {
  width: 6px;
}

.interactive-menu-card::-webkit-scrollbar-track {
  background: transparent;
}

.interactive-menu-card::-webkit-scrollbar-thumb {
  background: #c2a43f;
  border-radius: 10px;
}

.interactive-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #c2a43f;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #0b250c;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  line-height: 1;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.interactive-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #c2a43f;
  color: #fff;
  border-color: #c2a43f;
}

.interactive-menu-title {
  font-size: 40px;
  color: #0b250c;
  margin-bottom: 40px;
  font-weight: 800;
  font-family: var(--font-family--rubik, sans-serif);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.interactive-menu-title span {
  color: #c2a43f;
}

.interactive-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.interactive-menu-item {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(194, 164, 63, 0.2);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  position: relative;
}

.interactive-menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(194, 164, 63, 0.15);
  border-color: #c2a43f;
}

.interactive-menu-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c2a43f;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(194, 164, 63, 0.4);
  letter-spacing: 0.5px;
}

.badge-green {
  background: #0b250c;
  box-shadow: 0 4px 10px rgba(11, 37, 12, 0.4);
}

.interactive-menu-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.interactive-menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.interactive-menu-item:hover .interactive-menu-img {
  transform: scale(1.1);
}

.interactive-menu-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.interactive-menu-item-name {
  font-weight: 800;
  font-size: 24px;
  color: #0b250c;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.interactive-menu-item:hover .interactive-menu-item-name {
  color: #c2a43f;
}

.interactive-menu-item-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.interactive-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(194, 164, 63, 0.2);
  padding-top: 15px;
}

.interactive-menu-price {
  font-weight: 800;
  font-size: 20px;
  color: #0b250c;
}

.interactive-menu-price span {
  color: #c2a43f;
  font-size: 14px;
  font-weight: 600;
}

.interactive-menu-btn {
  background-color: transparent;
  color: #c2a43f;
  padding: 8px 18px;
  border: 1px solid #c2a43f;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.interactive-menu-item:hover .interactive-menu-btn {
  background-color: #c2a43f;
  color: #fff;
  transform: translateX(5px);
}

/* Old catering modal CSS removed to allow the new GSAP/Bento Grid design in weekly-menu-popup.css to take full effect */

@media (max-width: 1100px) {
  .catering-meal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .catering-meal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .catering-days {
    grid-template-columns: repeat(4, minmax(86px, 1fr));
    gap: 12px;
  }

  .catering-header-botanical {
    opacity: 0.28;
  }

  .catering-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .catering-footer-col {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .catering-meal-grid {
    grid-template-columns: 1fr;
  }

  .catering-header {
    padding: 16px 20px;
  }

  .catering-tabs-container {
    padding: 14px 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .catering-body {
    padding: 18px 18px 20px;
  }

  .catering-footer {
    padding: 0 22px 22px;
  }

  .catering-days {
    grid-template-columns: repeat(2, minmax(86px, 1fr));
    width: 100%;
  }

  .catering-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .catering-card-img {
    height: 98px;
  }
}

/* NEW REDESIGN TWEAKS FOR PRODUCTS SECTION */

.products-redesign {
  background-color: #26471e !important;
  /* rich dark olive-forest green */
  background-image: url('https://i.imgur.com/6dx0VJH.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 120px 0 !important;
}

.products-container {
  max-width: 1400px !important;
}

.bg-image-wrapper {
  position: absolute !important;
  top: -50px !important;
  right: 20px !important;
  width: 850px !important;
  height: 850px !important;
  background-image: none !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.products-title {
  color: #ffffff !important;
  font-size: 88px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
  position: relative !important;
  display: inline-block !important;
  font-family: 'Baloo 2';
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.products-title span {
  color: #C3DB8A !important;
  position: relative !important;
}

.header-decor-leaf {
  position: absolute !important;
  top: -24px !important;
  left: -32px !important;
  width: 34px !important;
  height: auto !important;
}

.header-decor-spark {
  position: absolute !important;
  top: -6px !important;
  right: -48px !important;
  width: 40px !important;
  height: auto !important;
}

.products-subtitle {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin-top: 15px !important;
  opacity: 0.9 !important;
}

.products-filters {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  margin-bottom: 45px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

.products-filter {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  background-color: transparent !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  border-radius: 100px !important;
  padding: 12px 30px !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.products-filter.active {
  background-color: #ffffff !important;
  color: #26471e !important;
  border-color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.products-filter svg {
  width: 18px !important;
  height: 18px !important;
  margin-right: 8px !important;
  transition: all 0.3s ease !important;
}

.products-filter.active svg {
  /* Color inherited from parent .active text color */
}

.menu-card {
  background-color: #FFFFFF !important;
  border-radius: 30px !important;
  min-height: 230px !important;
  padding: 0 !important;
  align-items: stretch !important;
  flex-direction: row !important;
  border: 1px solid rgba(111, 166, 79, 0.15) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease !important;
}

.menu-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(111, 166, 79, 0.1) !important;
  border-color: rgba(111, 166, 79, 0.4) !important;
}

.menu-card-content {
  width: 53% !important;
  padding: 26px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.menu-card-img-wrapper {
  width: 47% !important;
  position: relative !important;
  border-radius: 130px 0 0 130px !important;
  overflow: hidden !important;
  margin-left: auto !important;
}

.menu-card-img {
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.08) !important;
}

.menu-card-badge {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid #e2ebd5 !important;
  border-radius: 100px !important;
  padding: 5px 12px !important;
  margin-bottom: 12px !important;
  background: #FFFFFF !important;
  align-self: flex-start !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
}

.badge-icon {
  width: 13px !important;
  height: 13px !important;
  margin-right: 6px !important;
}

.menu-card-badge span {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #6C9449 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.menu-card-title {
  color: #1a3015 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  margin-top: 4px !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
}

.menu-card-desc {
  color: #5d665a !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  margin-bottom: 16px !important;
}

.menu-card-bottom {
  margin-top: auto !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.menu-card-price {
  font-size: 20px !important;
  color: #1a3015 !important;
  font-weight: 800 !important;
}

.menu-card-btn {
  width: 36px !important;
  height: 36px !important;
  background-color: #26471e !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: transform 0.2s ease, background-color 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

.card-btn-svg {
  width: 16px !important;
  height: 16px !important;
  transition: transform 0.2s ease !important;
}

.menu-card:hover .menu-card-btn {
  background-color: #3b6e32 !important;
  transform: scale(1.08) !important;
}

.menu-card:hover .card-btn-svg {
  transform: translateX(2px) !important;
}

.products-btn {
  background-color: #ffffff !important;
  color: #26471e !important;
  border-radius: 100px !important;
  padding: 16px 36px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
}

.products-btn svg path {
  stroke: #26471e !important;
}

.products-btn:hover {
  transform: translateY(-3px) !important;
  background-color: #f7f9f5 !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18) !important;
}

/* Ograniczenie wysokosci dla sekcji food-tab-section.my-section */
.food-tab-section.my-section {
  max-height: 700px !important;
  overflow: hidden !important;
}


/* ============================================================
   NOWA STOPKA: Culini-style z parallax (Pycha Catering)
   ============================================================ */

/* ---- Parallax Strip ---- */
.pf-parallax-strip {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #071b0b;
  display: flex;
  align-items: center;
}

.pf-parallax-track {
  display: flex;
  gap: 0;
  width: 100%;
  height: 100%;
  align-items: stretch;
}

.pf-parallax-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  will-change: transform;
  position: relative;
}

.pf-parallax-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.05s linear;
}

/* ---- Footer wrapper ---- */
.pf-footer {
  background-color: #071b0b;
  color: #b8d4a8;
  font-family: var(--font-family--rubik), 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.pf-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 40px;
}

/* ---- Top row ---- */
.pf-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pf-brand {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pf-logo-link {
  display: inline-block;
  flex-shrink: 0;
}

.pf-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  display: block;
}

.pf-tagline {
  color: #8aab7a;
  font-size: 13px;
  line-height: 1.65;
  max-width: 240px;
  margin: 0;
}

.pf-contact-social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pf-phone {
  color: #c2a43f;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}

.pf-phone:hover {
  color: #e0bf5a;
}

.pf-social-divider {
  width: 1px;
  height: 28px;
  background: rgba(138, 171, 122, 0.25);
}

.pf-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pf-social-icon {
  color: #8aab7a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(138, 171, 122, 0.2);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.pf-social-icon:hover {
  color: #c2a43f;
  border-color: rgba(194, 164, 63, 0.5);
  background-color: rgba(194, 164, 63, 0.06);
}

/* ---- Divider ---- */
.pf-divider {
  height: 1px;
  background: rgba(138, 171, 122, 0.18);
  margin: 36px 0;
}

/* ---- Main row ---- */
.pf-main-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 60px;
}

/* ---- Photos ---- */
.pf-photos {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.pf-photo-item {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.pf-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.pf-photo-item:hover img {
  transform: scale(1.07);
}

/* ---- Nav columns ---- */
.pf-nav-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pf-nav-col-title {
  font-family: var(--font-family--rubik), 'Rubik', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5d7d52;
  margin-bottom: 18px;
}

.pf-nav-link {
  display: block;
  color: #9ab98b;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s, padding-left 0.2s;
}

.pf-nav-link:hover {
  color: #c2a43f;
  padding-left: 6px;
}

/* ---- Bottom bar ---- */
.pf-bottom-bar {
  border-top: 1px solid rgba(138, 171, 122, 0.12);
  padding: 22px 48px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pf-copyright,
.pf-credits {
  margin: 0;
  font-size: 12px;
  color: #4d6645;
}

/* ---- Responsive ---- */
@media screen and (max-width: 991px) {
  .pf-parallax-strip {
    height: 280px;
  }

  .pf-footer-inner {
    padding: 44px 28px 32px;
  }

  .pf-main-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pf-photos {
    justify-content: center;
  }

  .pf-nav-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .pf-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media screen and (max-width: 640px) {
  .pf-parallax-strip {
    height: 200px;
  }

  .pf-parallax-item:nth-child(4),
  .pf-parallax-item:nth-child(5) {
    display: none;
  }

  .pf-footer-inner {
    padding: 36px 20px 24px;
  }

  .pf-photos {
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pf-photo-item {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .pf-nav-columns {
    grid-template-columns: 1fr 1fr;
  }

  .pf-bottom-bar {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pf-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Inverted button styles for Nasze Menu in products section */
#openMenuModal3 {
  color: #4A7C3D !important;
}

#openMenuModal3 .button-text {
  color: #4A7C3D !important;
}

#openMenuModal3 .main-button-bg {
  background-color: #ffffff !important;
}

#openMenuModal3 .main-button-bg-line-left,
#openMenuModal3 .main-button-bg-line-right {
  background-color: #4A7C3D !important;
}

#openMenuModal3 img {
  filter: invert(41%) sepia(21%) saturate(1005%) hue-rotate(69deg) brightness(97%) contrast(85%) !important;
}

/* Custom hover color for Zobacz menu button */
#openMenuModal2 .main-button-bg-line-left,
#openMenuModal2 .main-button-bg-line-right {
  background-color: #64814a !important;
}

/* Custom hover color for header Nasze menu button */
#openMenuModal .main-button-bg-line-left,
#openMenuModal .main-button-bg-line-right {
  background-color: #5a7c3b !important;
}


/* Fix products section title on mobile */
@media screen and (max-width: 768px) {
  .products-header {
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .products-title {
    font-size: 42px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 480px) {
  .products-title {
    font-size: 32px !important;
  }
}
