@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@800&display=swap');

/* Hide the shopping cart widget in header (desktop & mobile) */
.w-commerce-commercecartwrapper {
  display: none !important;
}

/* Adjust top menu cards spacing */
.top-menu-card-body {
  padding-top: 24px !important;
}

.top-menu-card-title {
  margin-bottom: 20px !important;
  display: inline-block;
}

/* Footer overrides */
.nav-logo {
  width: 188px !important;
  height: auto !important;
  object-fit: contain !important;
}

.footer-section {
  background-color: #0b250c !important;
}

.footer-logo-img {
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 140px !important;
  height: 140px !important;
  object-fit: contain;
}

.pycha-footer__logo-img {
  width: 170px !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.pycha-callback-brand {
  width: 170px !important;
}

@media screen and (max-width: 767px) {
  .pycha-footer__logo-img,
  .pycha-callback-brand {
    width: 150px !important;
  }
}

.footer-title-override {
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  margin-bottom: 20px;
}

.top-menu-section .text-medium {
  margin-bottom: var(--_spacing---padding--margin--spacing-0) !important;
  font-family: var(--font-family--rubik) !important;
  color: #7f6c2c !important;
  font-size: var(--_text---text-medium--font-size) !important;
  line-height: var(--line-height--line-height-150) !important;
  font-weight: var(--font-weight--normal) !important;
}

/* Party Section Enhancements */
.party-cards-style {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.party-card-link {
  display: inline-flex;
  align-items: center;
  color: #c2a43f;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.party-card-link svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.party-card-link:hover {
  transform: translateX(5px);
}

.party-cards-image {
  overflow: hidden;
  border-radius: 12px;
  margin-top: 20px;
}

.party-cards-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* For the 5th card to span across */
@media screen and (min-width: 992px) {
  .party-card-span-2 {
    grid-column: span 2;
  }

  .party-card-span-2 .party-cards-image {
    max-height: 400px;
  }
}

/* Fix z-index for home-about text vs image */
.home-about-content {
  position: relative;
  z-index: 10 !important;
}

.home-about-image-two,
.home-about-img-two-box {
  z-index: 1 !important;
}

/* Change product grid to 4 columns */
@media screen and (min-width: 992px) {
  .product-collection {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Bento Box UI */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.bento-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.bento-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s ease;
}

.bento-card:hover .bento-img {
  transform: scale(1.05);
}

.bento-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px;
  background: rgba(11, 37, 12, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bento-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-family--rubik);
  text-transform: uppercase;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #d4ecd0;
  margin-bottom: 15px;
}

.bento-link {
  color: #c2a43f;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.bento-link svg {
  margin-left: 5px;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 1;
}

.bento-link:hover svg {
  transform: translateX(5px);
}

/* Sizes */
.bento-span-2 {
  grid-column: span 2;
}

.bento-span-3 {
  grid-column: span 3;
}

.bento-tall {
  min-height: 450px;
}

@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-span-2,
  .bento-span-3 {
    grid-column: span 1;
  }
}

.home-hero-title {
  margin-top: var(--_spacing---padding--margin--spacing-34);
  margin-bottom: var(--_spacing---padding--margin--spacing-24);
  color: var(--_colors---accent-color--accent-3);
  line-height: var(--line-height--line-height-88);
  font-weight: var(--font-weight--bold);
  letter-spacing: var(--letter-spacing--letter-spacing-0-02em);
  text-transform: uppercase;
  font-family: "Baloo 2", var(--font-family--rubik), sans-serif;
}

.top-menu-title {
  margin-top: var(--_spacing---padding--margin--spacing-0);
  margin-bottom: var(--_spacing---padding--margin--spacing-0);
  font-size: var(--_text---h4--font-size);
  line-height: var(--line-height--line-height-100);
  font-weight: var(--font-weight--semi-bold);
  text-transform: uppercase;
  color: #415a2b;
}

.categories-eyebrow {
  margin-bottom: 36px;
  color: rgb(104 110 104 / 44%);
  font-family: 'Baloo 2';
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 6px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.products-redesign {
  position: relative;
  background-color: #6fa64f;
  padding: 120px 0;
  overflow: hidden;
  font-family: var(--font-family--rubik), sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s, border-color 0.4s, box-shadow 0.4s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(194, 164, 63, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(194, 164, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: transform 0.4s ease, background-color 0.4s;
}

.value-card:hover .value-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: rgba(194, 164, 63, 0.2);
}

.value-icon-box svg {
  width: 32px;
  height: 32px;
}

.value-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--font-family--rubik), sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-desc {
  color: #a1b89f;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 767px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.ecommerce-mini-card:hover {
  transform: translateY(-5px);
  border-color: #c2a43f !important;
  box-shadow: 0 15px 30px rgba(194, 164, 63, 0.15) !important;
}

/* Page Reveal Animation */
body {
  animation: pageRevealFade 1s ease-out forwards;
}

/* Przyjazny wjazd nawigacji z góry */
.header-section {
  animation: slideDownHeader 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Przyjazny wjazd głównej sekcji od dołu */
.header-section+div,
.header-section+section {
  animation: slideUpContent 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes pageRevealFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideDownHeader {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUpContent {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* User requested beige background for footer and visible text */
.footer-section {
  background-color: #FFF9EA !important;
  color: #315B26 !important;
}

.footer-section h1,
.footer-section h2,
.footer-section h3,
.footer-section .title-white,
.footer-section .footer-link-title,
.footer-section .footer-link-text,
.footer-section .footer-copy-right-text,
.footer-section .left-braket,
.footer-section .right-braket,
.footer-section p {
  color: #315B26 !important;
}

.footer-section .footer-link {
  color: #5D675C !important;
}

.footer-section .footer-link:hover .footer-link-text,
.footer-section .footer-link:hover .left-braket,
.footer-section .footer-link:hover .right-braket {
  color: #6FA245 !important;
}

.footer-section .dash-hr {
  border-color: rgba(49, 91, 38, 0.2) !important;
}

[data-wf-bgvideo-fallback-img] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-wf-bgvideo-fallback-img] {
    position: absolute;
    z-index: -100;
    display: inline-block;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.catering-categories-section {
  padding: 78px 0 86px;
  background: #fbf7ea;
  position: relative;
}

.categories-eyebrow {
  margin-bottom: 36px;
  color: rgba(11, 37, 12, 0.44);
  font-family: var(--font-family--rubik);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  align-items: end;
  gap: 28px;
}

.category-card {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
}

.category-image-wrap {
  height: 132px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.category-image {
  max-width: 150px;
  max-height: 132px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(60, 80, 40, 0.08));
}

.category-card:nth-child(2) .category-image {
  max-width: 136px;
}

.category-card:nth-child(4) .category-image {
  max-width: 142px;
}

.category-card:nth-child(6) .category-image {
  max-width: 132px;
}

.category-title {
  margin: 0;
  color: #0b250c;
  font-family: var(--font-family--rubik);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .categories-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    row-gap: 34px;
  }
}

@media (max-width: 767px) {
  .catering-categories-section {
    padding: 58px 0 66px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 30px 22px;
  }

  .category-image-wrap {
    height: 118px;
    margin-bottom: 14px;
  }

  .category-image {
    max-width: 130px;
    max-height: 118px;
  }

  .category-title {
    font-size: 12px;
  }
}

.about-redesign {
  --about-cream: #fff8e8;
  --about-cream-deep: #f7eed8;
  --about-green: #78a44f;
  --about-green-soft: #c3d9ad;
  --about-dark: #111315;
  position: relative;
  padding: 92px 0 124px;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 94% 18%, rgba(224, 207, 161, 0.34) 0 12%, transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.62) 0 14%, transparent 36%),
    linear-gradient(180deg, var(--about-cream) 0%, #fffaf0 52%, var(--about-cream-deep) 100%);
}

.about-redesign::before,
.about-redesign::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  z-index: 1;
  height: 200px;
  background-image: url('https://i.imgur.com/yCZcPAo.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
}

.about-redesign::before {
  top: 34px;
}

.about-redesign::after {
  bottom: 38px;
}

.about-redesign .container {
  position: relative;
  z-index: 10;
  max-width: 940px;
  margin: 0 auto;
}

.about-text-content {
  position: relative;
  z-index: 3;
  padding: 0 16px;
}

.about-subtitle {
  color: var(--about-green);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-subtitle-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.about-subtitle span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-subtitle span::before,
.about-subtitle span::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(120, 164, 79, 0.55) 0 12px, transparent 12px 22px);
  margin: 0 15px;
}

.about-title {
  max-width: 930px;
  margin: 0 auto 30px;
  color: var(--about-dark);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
}

.about-title span {
  color: var(--about-green);
}

.about-desc {
  max-width: 730px !important;
  margin: 0 0 56px !important;
  color: #1b1b1b !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  text-align: left !important;
  font-family: var(--font-family--rubik) !important;
}

.about-desc strong {
  color: var(--about-green);
  font-weight: 800;
}

.about-features {
  display: grid !important;
  grid-template-columns: repeat(4, 140px) !important;
  justify-content: start !important;
  gap: 28px !important;
  margin-bottom: 90px !important;
}

.about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.about-feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  color: var(--about-green);
  background-color: transparent;
}

.about-feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.about-feature-text {
  width: 100%;
  color: var(--about-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-btn {
  min-width: 220px;
  min-height: 68px;
  margin: 0 auto;
  background-color: var(--about-green);
  color: #fff;
  padding: 18px 34px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 26px rgba(120, 164, 79, 0.24);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.about-btn:hover {
  background-color: #5f8b3d;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(120, 164, 79, 0.32);
}

.about-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 14px;
}

.img-burger {
  position: absolute;
  left: max(-74px, calc(50% - 1040px));
  bottom: -30px;
  width: 540px;
  max-width: 33vw;
  border-radius: 18px;
  border-style: solid;
  border-width: 1px 8px 8px 1px;
  border-color: var(--about-green);
  box-shadow: 0 34px 70px rgba(24, 32, 18, 0.18);
  z-index: 5;
  transform: rotate(-2.5deg);
  pointer-events: none;
}

.img-sandwich {
  position: absolute;
  right: max(48px, calc(50% - 935px));
  top: 70px;
  width: 440px;
  max-width: 28vw;
  border-radius: 18px;
  border-style: solid;
  border-width: 1px 8px 8px 1px;
  border-color: var(--about-green);
  box-shadow: 0 28px 60px rgba(24, 32, 18, 0.16);
  z-index: 5;
  pointer-events: none;
}

.about-leaf,
.about-spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  color: var(--about-green);
}

.about-leaf {
  width: 128px;
  height: 112px;
  opacity: 0.38;
}

.about-leaf::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 20px;
  width: 2px;
  height: 80px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(36deg);
  transform-origin: bottom center;
}

.about-leaf span {
  position: absolute;
  width: 44px;
  height: 22px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50% 5px 50% 50%;
}

.about-leaf span:nth-child(1) {
  left: 6px;
  top: 48px;
  transform: rotate(18deg);
}

.about-leaf span:nth-child(2) {
  left: 38px;
  top: 34px;
  transform: rotate(-42deg);
}

.about-leaf span:nth-child(3) {
  left: 58px;
  top: 12px;
  transform: rotate(-62deg);
}

.about-leaf-left {
  top: 116px;
  left: max(220px, calc(50% - 620px));
}

.about-leaf-bottom {
  right: max(190px, calc(50% - 690px));
  bottom: 28px;
  transform: scale(0.72);
}

.about-spark {
  width: 74px;
  height: 54px;
}

.about-spark span {
  position: absolute;
  display: block;
  width: 6px;
  height: 34px;
  background: currentColor;
  border-radius: 999px;
}

.about-spark span:nth-child(1) {
  left: 6px;
  top: 17px;
  transform: rotate(-22deg);
}

.about-spark span:nth-child(2) {
  left: 34px;
  top: 7px;
  transform: rotate(4deg);
}

.about-spark span:nth-child(3) {
  left: 58px;
  top: 15px;
  transform: rotate(42deg);
}

.about-spark-left {
  left: max(250px, calc(50% - 620px));
  bottom: 332px;
}

.about-spark-right {
  right: max(420px, calc(50% - 730px));
  top: 118px;
  transform: rotate(84deg) scale(0.78);
}

@media (max-width: 1280px) {
  .about-redesign {
    padding-top: 84px;
  }

  .about-redesign .container {
    max-width: 840px;
  }

  .about-title {
    font-size: 52px;
  }

  .about-desc {
    max-width: 740px;
    font-size: 18px;
  }

  .img-burger {
    width: 430px;
    max-width: 34vw;
    left: -90px;
  }

  .img-sandwich {
    width: 350px;
    max-width: 30vw;
    right: 28px;
  }

  .about-leaf-left {
    left: 190px;
  }

  .about-spark-left {
    left: 220px;
  }
}

@media (max-width: 991px) {
  .about-redesign {
    padding: 76px 0 90px;
  }

  .about-redesign::before,
  .about-redesign::after {
    left: 24px;
    right: 24px;
  }

  .about-redesign .container {
    max-width: 720px;
  }

  .about-title {
    font-size: 42px;
  }

  .about-desc {
    font-size: 17px;
  }

  .about-features {
    grid-template-columns: repeat(2, minmax(124px, 1fr));
    gap: 28px 24px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .img-burger {
    left: -150px;
    bottom: -36px;
    width: 340px;
    max-width: none;
    opacity: 0.2;
  }

  .img-sandwich {
    right: -140px;
    top: 54px;
    width: 320px;
    max-width: none;
    opacity: 0.18;
  }

  .about-leaf,
  .about-spark {
    opacity: 0.18;
  }
}

@media (max-width: 767px) {
  .about-redesign {
    padding: 70px 0 82px;
  }

  .about-text-content {
    padding-left: 0;
    padding-right: 0;
  }

  .about-subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .about-subtitle-icon {
    width: 50px;
    height: 50px;
  }

  .about-subtitle span::before,
  .about-subtitle span::after {
    width: 48px;
    margin: 0 10px;
  }

  .about-title {
    font-size: 38px;
    line-height: 1.06;
    text-align: center;
  }

  .about-desc {
    font-size: 16px;
    text-align: center;
  }

  .about-btn {
    min-width: 196px;
    min-height: 58px;
    padding: 16px 28px;
  }
}

@media (max-width: 479px) {
  .about-redesign {
    padding-top: 62px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-desc {
    margin-bottom: 34px;
    font-size: 15px;
  }

  .about-features {
    grid-template-columns: repeat(2, minmax(112px, 1fr));
    gap: 22px 14px;
    margin-bottom: 34px;
  }

  .about-feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
  }

  .about-feature-icon img {
    width: 56px;
    height: 56px;
  }

  .about-feature-text {
    font-size: 12px;
  }

  .img-burger,
  .img-sandwich {
    opacity: 0.12;
  }

  .about-leaf,
  .about-spark {
    display: none;
  }
}

.about-redesign {
  --about-cream: #fbf7ea;
  --about-cream-soft: #faf6e8;
  --about-blob: #f4e8c8;
  --about-green: #6fa64f;
  --about-green-hover: #5f9643;
  --about-dark: #071b0b;
  min-height: 820px;
  padding: 54px 0 84px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.56) 0 12%, transparent 35%),
    radial-gradient(circle at 88% 22%, rgba(244, 232, 200, 0.38) 0 16%, transparent 34%),
    linear-gradient(180deg, var(--about-cream) 0%, var(--about-cream-soft) 54%, #f7efd9 100%);
}

.about-redesign::before,
.about-redesign::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  z-index: 2;
  height: 200px;
  background-image: url('https://i.imgur.com/yCZcPAo.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
}

.about-redesign::before {
  top: 28px;
}

.about-redesign::after {
  bottom: 34px;
}

.about-redesign .container {
  max-width: 1220px;
  min-height: 660px;
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
}

.about-text-content {
  max-width: 880px;
  margin-left: 110px;
  padding: 24px 0 34px;
  position: relative;
  z-index: 8;
}

.about-line,
.about-blob,
.about-ray,
.about-photo-large,
.about-photo-small {
  position: absolute;
  pointer-events: none;
}

.about-line {
  left: 5%;
  width: 90%;
  height: auto;
  z-index: 1;
  opacity: 0.7;
}

.about-line-top {
  top: 28px;
}

.about-line-bottom {
  bottom: 34px;
}

.about-blob {
  width: 520px;
  height: 310px;
  max-width: 36vw;
  right: max(-30px, calc(50% - 970px));
  top: 28px;
  z-index: 1;
  border-radius: 42% 58% 52% 48% / 46% 42% 58% 54%;
  background: rgba(244, 232, 200, 0.42);
  opacity: 0.46;
}

.about-ray {
  z-index: 5;
  width: 76px;
  height: 58px;
  color: var(--about-green);
  opacity: 0.72;
}

.about-ray span {
  position: absolute;
  display: block;
  width: 6px;
  height: 30px;
  background: currentColor;
  border-radius: 999px;
}

.about-ray span:nth-child(1) {
  left: 8px;
  top: 18px;
  transform: rotate(-28deg);
}

.about-ray span:nth-child(2) {
  left: 36px;
  top: 8px;
  transform: rotate(2deg);
}

.about-ray span:nth-child(3) {
  left: 62px;
  top: 18px;
  transform: rotate(42deg);
}

.about-ray-left {
  left: max(390px, calc(50% - 590px));
  bottom: 480px;
  transform: rotate(35deg);
}

.about-ray-right {
  right: max(420px, calc(50% - 530px));
  top: 70px;
  transform: rotate(-65deg);
}

.about-photo-large,
.about-photo-small {
  z-index: 4;
  object-fit: cover;
  border-style: solid;
  border-color: var(--about-green);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(60, 80, 40, 0.12);
}

.about-photo-large {
  border-width: 2px 8px 8px 2px;
  width: 560px;
  height: 680px;
  left: max(-120px, calc(50% - 1100px));
  bottom: -80px;
  transform: rotate(-3deg);
}

.about-photo-small {
  border-width: 2px 8px 8px 2px;
  width: 500px;
  height: 375px;
  right: max(-90px, calc(50% - 1050px));
  top: 40px;
  transform: rotate(1deg);
}

.about-leaf-left {
  left: max(282px, calc(50% - 660px));
  top: 118px;
  opacity: 0.42;
}

.about-leaf-bottom {
  right: max(190px, calc(50% - 700px));
  bottom: 20px;
  opacity: 0.42;
}

.about-subtitle {
  width: min(540px, 100%);
  margin: 0 auto 14px;
  gap: 8px;
  color: var(--about-green);
}

.about-subtitle::before,
.about-subtitle::after {
  display: none;
}

.about-subtitle-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(251, 247, 234, 0.74);
}

.about-subtitle-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--about-green) !important;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.about-subtitle-icon svg * {
  fill: none !important;
  stroke: var(--about-green) !important;
}

.about-subtitle-text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--about-green);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
}

.about-subtitle-text::before,
.about-subtitle-text::after {
  content: "";
  display: inline-block;
  width: 112px;
  height: 1px;
  margin: 0 16px;
  background-image: linear-gradient(90deg, rgba(111, 166, 79, 0.58) 0 12px, transparent 12px 24px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-title {
  max-width: 880px;
  margin: 0 0 24px;
  font-family: "Baloo 2", var(--font-family--rubik), sans-serif;
  color: var(--about-dark);
  font-size: 62px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}

.about-title span {
  color: var(--about-green);
}

.about-desc {
  max-width: 730px;
  margin: 0 0 36px;
  color: #1b1b1b;
  font-size: 18px;
  line-height: 1.65;
  text-align: left;
}

.about-desc strong {
  color: var(--about-green);
  font-weight: 800;
}

.about-features {
  grid-template-columns: repeat(4, 140px);
  justify-content: start;
  gap: 28px;
  margin-bottom: 36px;
}

.about-feature-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 13px;
}

.about-feature-icon img {
  width: 72px;
  height: 72px;
}

.about-feature-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-text {
  color: var(--about-dark);
  font-size: 13px;
  line-height: 1.18;
}

.about-btn {
  min-width: 220px;
  min-height: 64px;
  margin: 0 0 0 252px;
  padding: 18px 34px;
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  background: var(--about-green);
  box-shadow: 0 12px 24px rgba(111, 166, 79, 0.24);
}

.about-btn::before,
.about-btn::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 14px;
  background-image: radial-gradient(circle, var(--about-cream) 0 6px, transparent 7px);
  background-size: 14px 17px;
  opacity: 0.98;
}

.about-btn::before {
  left: -7px;
}

.about-btn::after {
  right: -7px;
}

.about-btn:hover {
  background: var(--about-green-hover);
}

.about-btn svg,
.about-btn .about-btn-text {
  position: relative;
  z-index: 1;
}

@media (max-width: 1280px) {
  .about-redesign {
    min-height: 780px;
  }

  .about-redesign .container {
    max-width: 1120px;
  }

  .about-text-content {
    max-width: 760px;
    margin-left: 104px;
  }

  .about-title {
    font-size: 54px;
    max-width: 760px;
  }

  .about-desc {
    max-width: 650px;
    font-size: 17px;
  }

  .about-features {
    grid-template-columns: repeat(4, 126px);
    gap: 22px;
  }

  .about-btn {
    margin-left: 210px;
  }

  .about-photo-large {
    width: 490px;
    height: 600px;
    left: -180px;
    bottom: -60px;
  }

  .about-photo-small {
    width: 420px;
    height: 315px;
    right: -50px;
    top: 50px;
  }

  .about-blob {
    width: 440px;
    right: -40px;
  }
}

@media (max-width: 991px) {
  .about-redesign {
    min-height: auto;
    padding: 78px 0 92px;
  }

  .about-redesign .container {
    min-height: 0;
    display: block;
    max-width: 760px;
  }

  .about-text-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .about-title,
  .about-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-title {
    font-size: 46px;
  }

  .about-features {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    justify-content: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .about-photo-large,
  .about-photo-small {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: block;
    transform: none;
    pointer-events: auto;
  }

  .about-photo-small {
    width: min(380px, calc(100% - 40px));
    height: auto;
    aspect-ratio: 1448 / 1086;
    margin: 34px auto 0;
  }

  .about-photo-large {
    width: min(430px, calc(100% - 40px));
    height: auto;
    aspect-ratio: 1122 / 1402;
    margin: 28px auto 0;
  }

  .about-blob {
    width: 460px;
    max-width: 72vw;
    right: -150px;
    top: 42px;
  }

  .about-ray-left,
  .about-ray-right,
  .about-leaf-left,
  .about-leaf-bottom {
    opacity: 0.28;
  }
}

@media (max-width: 767px) {
  .about-redesign {
    padding: 68px 0 78px;
  }

  .about-title {
    font-size: 40px;
    line-height: 1.02;
  }

  .about-desc {
    font-size: 16px;
  }

  .about-subtitle-text::before,
  .about-subtitle-text::after {
    width: 60px;
    margin: 0 10px;
  }

  .about-btn {
    width: min(100%, 330px);
  }

  .about-line {
    left: 18px;
    width: calc(100% - 36px);
  }
}

@media (max-width: 479px) {
  .about-title {
    font-size: 34px;
  }

  .about-subtitle-icon {
    width: 50px;
    height: 50px;
  }

  .about-subtitle-icon svg {
    width: 29px;
    height: 29px;
  }

  .about-subtitle-text {
    font-size: 13px;
  }

  .about-subtitle-text::before,
  .about-subtitle-text::after {
    width: 34px;
    margin: 0 8px;
  }

  .about-features {
    grid-template-columns: repeat(2, minmax(118px, 1fr));
    gap: 22px 14px;
  }

  .about-feature-icon {
    width: 64px;
    height: 64px;
  }

  .about-feature-icon img {
    width: 62px;
    height: 62px;
  }

  .about-feature-text {
    font-size: 12px;
  }
}

.bg-image-wrapper {
  display: none;
}

.products-redesign {
  position: relative;
  background-color: #4f8033;
  padding: 120px 0;
  overflow: hidden;
  font-family: var(--font-family--rubik), sans-serif;
}

.products-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.products-header {
  position: relative;
  text-align: left;
  margin-bottom: 45px;
}

.header-decor-leaf {
  position: absolute;
  top: -30px;
  left: -50px;
  width: 40px;
  transform: rotate(-15deg);
  filter: invert(1) grayscale(1) brightness(10);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.header-decor-spark {
  position: absolute;
  top: 20px;
  left: 600px;
  width: 50px;
  opacity: 0.9;
  filter: invert(1) grayscale(1) brightness(10);
  mix-blend-mode: screen;
}

.products-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.products-title span {
  color: #B2D270;
}

.products-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 550px;
  line-height: 1.5;
}

/* Filters */
.products-filters {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.products-filter {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-filter img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  filter: invert(1) grayscale(1) brightness(10);
  mix-blend-mode: screen;
}

.products-filter:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.products-filter.active {
  background-color: #ffffff;
  color: #2b5016;
  border-color: #ffffff;
}

.products-filter.active img {
  mix-blend-mode: multiply;
  filter: none;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.menu-card {
  background-color: #ffffff;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  min-height: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.menu-card-img-wrapper {
  width: 42%;
  position: relative;
  flex-shrink: 0;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.menu-card-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  width: 58%;
  position: relative;
}

.menu-card-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  mix-blend-mode: multiply;
}

.menu-card-title {
  color: #4A7A31;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.menu-card-desc {
  font-size: 11px;
  color: #5d665a;
  line-height: 1.4;
  margin-bottom: 10px;
}

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

.menu-card-price {
  font-size: 16px;
  font-weight: 800;
  color: #4A7B31;
}

.menu-card-btn {
  width: 32px;
  height: 32px;
  background-color: #4A7B31;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-card-btn img {
  width: 16px;
  height: 16px;
  filter: invert(1) grayscale(1) brightness(10);
  mix-blend-mode: screen;
}

/* Footer */
.products-footer {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.products-footer-text {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.products-footer img.decor {
  width: 20px;
  filter: invert(1) grayscale(1) brightness(10);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.products-footer-line {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 2px;
}

.products-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.products-btn {
  background-color: #ffffff;
  color: #2b5016;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.products-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.products-btn .btn-icon-left {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  mix-blend-mode: multiply;
}

.products-btn .btn-icon-right {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  mix-blend-mode: multiply;
}

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

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

  .products-title {
    font-size: 42px;
  }
}

.bestseller-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 991px) {
  .bestsellers-section .hit-card {
    flex-direction: column !important;
  }

  .bestsellers-section .hit-card>div {
    width: 100% !important;
    margin: 0 !important;
  }

  .bestsellers-section .hit-card>div:last-child {
    margin-top: -50px !important;
    padding: 40px !important;
  }
}

@media (max-width: 479px) {
  .bestsellers-section .hit-card>div:last-child {
    padding: 30px 20px !important;
  }
}

/* Redesigned Event Catering Section Styles */
.event-catering-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #FAF6EC;
  font-family: var(--font-family--rubik), sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-catering-section .container,
.event-catering-section .w-container {
  max-width: 1480px !important;
  width: 100% !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  box-sizing: border-box !important;
}

.event-doodle {
  position: absolute;
  pointer-events: none;
  color: #1E3F20;
}

.event-redesign-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

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

/* Left Column Typography */
.event-catering-kicker {
  display: inline-flex;
  align-items: center;
  color: #709951;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.event-catering-title-new {
  font-family: 'Baloo 2', 'Rubik', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #1E3F20;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.event-catering-copy-new {
  font-size: 17px;
  color: #5E6D5D;
  line-height: 1.65;
  margin: 0 0 40px 0;
  max-width: 500px;
}

@media screen and (max-width: 767px) {
  .event-catering-title-new {
    font-size: 38px;
  }

  .event-catering-section {
    padding: 80px 0;
  }
}

.event-ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #709951;
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(112, 153, 81, 0.15);
  transition: all 0.3s ease;
}

.event-ask-btn svg {
  transition: transform 0.3s ease;
}

.event-ask-btn:hover {
  background-color: #5C8545;
  box-shadow: 0 12px 25px rgba(112, 153, 81, 0.25);
  transform: translateY(-2px);
}

.event-ask-btn:hover svg {
  transform: translateX(4px);
}

/* Right Column Orbit Container */
.event-orbit-container {
  position: relative;
  width: 100%;
  height: 680px;
}

.orbit-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 260px;
  height: 260px;
  transition: all 0.4s ease;
}

.orbit-pos-center {
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 260px;
  height: 260px;
}

.orbit-pos-tl {
  left: calc(50% - 165px);
  top: calc(50% - 190px);
}

.orbit-pos-tr {
  left: calc(50% + 165px);
  top: calc(50% - 190px);
}

.orbit-pos-ml {
  left: calc(50% - 265px);
  top: 50%;
}

.orbit-pos-mr {
  left: calc(50% + 265px);
  top: 50%;
}

.orbit-pos-b {
  left: 50%;
  top: calc(50% + 250px);
}

.orbit-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(49, 91, 38, 0.05);
  box-shadow: 0 10px 30px rgba(49, 91, 38, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.orbit-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(49, 91, 38, 0.08);
  border-color: rgba(111, 162, 69, 0.2);
}

.orbit-circle.is-center {
  background: #1E3F20;
  color: #FFFFFF;
  border: none;
  justify-content: center;
  padding: 30px;
  text-shadow: none;
}

.orbit-circle.is-center:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(30, 63, 32, 0.3);
}

.orbit-circle-icon {
  width: 40px;
  height: 40px;
  background: #EEF7E8;
  color: #4A7C3D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  flex-shrink: 0;
}

.orbit-circle.is-center .orbit-circle-icon {
  background: transparent !important;
  color: #FFFFFF !important;
  width: 42px !important;
  height: 42px !important;
  margin-top: 0;
}

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

.orbit-circle-title {
  font-family: 'Baloo 2', 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #1E3F20;
  text-transform: uppercase;
  margin: 10px 0 6px 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.orbit-circle-desc {
  font-size: 11px;
  line-height: 1.4;
  color: #5E6D5D;
  max-width: 200px;
  margin: 0 0 110px 0;
}

.orbit-circle.is-center .orbit-circle-desc {
  margin-bottom: 0 !important;
  color: #E2E8E1;
  max-width: 220px;
}

.orbit-circle-img {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 95px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.orbit-circle:hover .orbit-circle-img {
  transform: translateX(-50%) scale(1.1) translateY(-2px);
}

@media screen and (max-width: 991px) {
  .event-orbit-container {
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding: 40px 0;
  }

  .orbit-wrapper {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 260px !important;
    height: 260px !important;
  }

  .orbit-pos-center {
    order: -1;
    /* Center green bubble shown first on mobile grid */
    width: 260px !important;
    height: 260px !important;
  }
}

@media screen and (max-width: 479px) {
  .event-orbit-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .orbit-wrapper {
    width: 240px !important;
    height: 240px !important;
  }

  .orbit-pos-center {
    width: 240px !important;
    height: 240px !important;
  }

  .orbit-circle-desc {
    margin-bottom: 75px !important;
  }

  .orbit-circle-img {
    width: 140px;
    height: 75px;
  }
}

/* CTA Redesign Styles */
.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;
  }
}
