/* Custom styling popup css start*/
/* Popup background (color + optional image) */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

.text-theme {
  color: #A32430 !important;
}

.bg-theme {
  background: #A32430 !important;
}

.bg-cream {
  background: #F5F1E7 !important;
}

.section-padding {
  padding: 100px 0;
}

.order-btn {
  border-radius: 30px;
  padding: 10px 20px;
  color: #fff;
  background-color: #A32430;
  transition: all 0.3s ease;
  border: none !important;
  text-decoration: none;
  text-transform: capitalize;
}

.order-btn:hover {
  background: #d43b4a;
  transform: scale(1.02);
}

.btn-primary {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  background: #A32430;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none !important;
}

.btn-primary:hover {
  background: #d43b4a;
  transform: scale(1.02);
}

/* font-family css start */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

/* font-family css end */
/* menu css start */
/* Custom black hamburger icon */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
}

.navbar-nav li a:hover {
  color: #A32430 !important;
}

.navbar-nav li a.active {
  color: #A32430 !important;
  font-weight: bold;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  color: #000;
  /* adjust text color */
  text-decoration: none;
  transition: color 0.3s ease;
}

/* The animated underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  /* line thickness */
  width: 100%;
  background-color: #A32430;
  /* underline color */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

/* On hover - animate underline */
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Optional: Active page underline stays */
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* Hidden state */
/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

/* Fade-up (default) */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* From left */
.reveal-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* From right */
.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


/* Logo aligned left */
.navbar-brand {
  margin-right: auto;
}

/* Order Now button aligned right */
.navbar .btn-danger {
  margin-left: auto;
}

.nav-item a.nav-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
  color: #000000;
}

.hero {
  position: relative;
  width: 100%;
  height: 65vh;
  /* fixed height */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.hero-content p.lead {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

/* footer css start */
footer {
  background: #A32430;
  color: #fff;
  min-height: 575px;
  padding: 3rem 0 10rem 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 30px;
  /* spacing between columns */
}

.footer-list li {
  line-height: 28px;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: #ffdfdf;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-list {
  columns: 1;
  /* normal single column */
  -webkit-columns: 1;
  -moz-columns: 1;
}

/* footer bottom sits below waves */
.footer-bottom {
  padding: 40px 0;
  position: absolute;
  width: 100%;
  bottom: 0px;
  z-index: 2;
}

.footer-bottom p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.footer-logo {
  width: 250px;
}

footer .footer-waves {
  background: url('../img/footer-mask.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 340px;
  width: 100%;
}


/* menu css end */
/* model css start */
.custom-modal .modal-content {
  background: #fdf7ef url('../img/popup_bg.png') center/cover no-repeat;
  border-radius: 0;
  border: none;
  text-align: center;
  width: 780px;
  height: 540px;
  max-width: 95%;
  max-height: 95%;
  margin: auto;
  padding: 2rem;
}

.modal-header.custom-header {
  /* margin-bottom: 50px; */
}

.custom-modal .close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 10;
}

.custom-modal .close-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.custom-modal .modal-body .logo {
  margin: 0 auto 2rem;
}

.custom-modal h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #A32430;
  margin-bottom: 1rem;
  /* margin-top: 25px; */
}

.custom-modal p {
  font-size: 16px;
  line-height: 17px;
  color: #000000;
  margin-bottom: 1.5rem;
}

.custom-modal .form-control {
  /* width: 270px !important; */
  /* height: 45px; */
  background: transparent;
  border: 1px solid #A32430;
  border-radius: 5px;
  background: transparent;
  padding: 0.75rem;
}

.custom-modal .form-control:focus {
  box-shadow: 0 0 0 .25rem rgb(163 36 48 / 15%) !important;
}

.custom-modal .form-control::placeholder {
  color: #A32430;
  opacity: 1;
  font-weight: 400;
}

/* brand slider css start */
.brand-slider {
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.css-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.css-slider {
  display: flex;
  animation: slide 30s linear infinite;
  width: max-content;
}

.css-slider:hover {
  animation-play-state: paused;
}

.slider-item {
  flex: 0 0 auto;
  margin-right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.slider-item img {
  width: 150px;
  height: 100px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider-item img:hover {
  transform: scale(0.9);
  cursor: pointer;
}

.slider-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  text-decoration: none;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-item {
    margin-right: 40px;
    min-width: 120px;
  }

  .slider-item img {
    width: 120px;
    height: 80px;
  }

  .slider-item a {
    height: 80px;
  }
}

/* About us section*/
/* 🔹 Common Section */
/* Default desktop styles */
.common-section.about-section {
  background: url("../img/about_us.png") center/cover no-repeat;
}

.common-section.foodies-section {
  background: url("../img/to_talk.png") center/cover no-repeat;
}

.common-section.catering-section {
  background: url("../img/catering.png") center/cover no-repeat;
}

.common-section.collabbites-section {
  background: url("../img/collabbites.png") center/cover no-repeat;
}

.common-section {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.common-section.left {
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.common-section.right {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
}

.common-content {
  max-width: 38%;
  color: #000;
  padding: 40px;
  position: relative;
}

.common-section.right {
  justify-content: flex-end;
}

.common-section.collabbites-section {
  display: flex;
  justify-content: center;
  min-height: 750px;
  align-items: flex-start;
  padding: 30px;
}

.common-section.collabbites-section .common-content {
  margin: 0 auto;
  padding: 0px;
  max-width: 700px;
  /* optional: control width */
  color: #000;
}

/* .common-section.right .common-content {
  margin-right: 40px;
} */


.common-content ul li {
  line-height: 20px;
  color: #000000;
}

.common-content p {
  margin-bottom: 20px;
  line-height: 19px;
  color: #000000;
  font-size: 14px;
}

.common-content ul li {
  line-height: 19px;
  color: #000000;
  font-size: 14px;
}

.customP {
  margin-bottom: 0px;
  line-height: 19px;
  color: #000000;
  font-size: 14px;
}

.getOffer {
  height: 120px;
  width: 120px;
  border-radius: 120px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  text-align: center;
  text-transform: uppercase;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  /* line-height: 120px; */
  box-shadow: 6px 5px 30px #a5a5a5;
  padding-top: 40px;
  display: none;
  /* Hide by default */
  cursor: pointer;
}

.getOffer a {
  text-decoration: none;
  color: black;
}

/* Fly-to-offer animation clone */
.modal-fly {
  position: fixed;
  z-index: 1060;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center center;
  will-change: transform, opacity;
}

/* ✅ Mobile: content absolutely at bottom */
@media (max-width: 768px) {

  .footer-list:not(.our-brands .footer-list) {
    columns: 2;
    /* now 2 columns on small screens */
    -webkit-columns: 2;
    -moz-columns: 2;
  }

  footer .footer-waves {
    height: 170px;
    background-size: 108% 100% !important;
  }

  footer {
    min-height: 800px;
  }

  .footer-logo {
    width: 150px;
  }

  .common-section {
    border-radius: 0;
    min-height: 500px !important;
  }

  .footer-bottom {
    padding: 15px 0;
    bottom: 20px;
  }

  .ambassador {
    padding: 30px !important;
  }

  .taster {
    padding: 30px !important;
  }
}

/* About us section*/

/* Owl Dots + Nav */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  margin: 5px;
  border-radius: 50%;
  transition: background 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #A32430;
  /* your brand red */
}

/* brand slider css end */
/* model css end */
/* Responsive */
/* Fullscreen effect for mobile menu */
@media (max-width: 991px) {
  .navbar-collapse.fullscreen-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100%;
    width: 280px;
    background: #fff;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1050;
  }

  .fullscreen-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-collapse.fullscreen-menu.show {
    transform: translateX(0);
  }

  .fullscreen-menu ul.navbar-nav {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start !important;
    /* stop centering */
    text-align: left !important;
  }

  .fullscreen-menu .btn-danger {
    display: inline-block;
    margin-top: 10px;
    margin-left: 0;
    border-radius: 20px;
    padding: 6px 20px;
  }

  .fullscreen-menu .nav-item {
    width: 100%;
    /* make full width for nice left alignment */
  }

  .fullscreen-menu .nav-item a.nav-link {
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    height: 80vh;
    /* shorter on tablet */
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}



.partnerships {
  background: url('../img/partnerships.png') center/cover no-repeat;
}

.powered {
  background: url('../img/powered.png') center/cover no-repeat;
}

/* .our-values {
  background: url('../img/our-values.png') center/cover no-repeat;
}

.community {
  background: url('../img/community.png') center/cover no-repeat;
}

.quality {
  background: url('../img/quality.png') center/cover no-repeat;
} */

.breadMainLogo {
  width: 388px;
}

.breadcrumbs {
  min-height: 82vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  /* keep content towards bottom */
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  box-sizing: border-box;
}

.breadcrumbs .breadcover {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.breadcrumbs .breadcover img {
  display: block;
  width: 100%;
  height: auto;
}

.breadcrumbs .bread-text {
  position: absolute;
  bottom: 30px;
  /* aligns text/logo/button with wave */
  left: 0;
  width: 100%;
  /* text-align: center; */
  z-index: 2;
  /* above wave image */
  padding: 10px 100px 10px 100px;
}

.breadcrumbs .bread-text2 h1 {
  color: #A32430;
  font-size: 50px;
  font-weight: bold;
}

.breadcrumbs .breadLogo {
  max-width: 180px;
  height: auto;
}

.breadcrumbs .order-btn {
  margin: 15px 0;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
}

.breadcrumbs .bread-social {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  position: absolute;
  bottom: 27px;
  /* margin-top: 15px; */
}

.bread-available-platforms {
  display: flex;
  justify-content: end;
  position: absolute;
  bottom: 27px;
  right: 100px;
  flex-direction: column;
}

.bread-available-platforms h6 {
  font-size: 20px;
}

.breadcrumbs .bread-social img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}

.breadcrumbs .bread-social img:hover {
  transform: scale(1.1);
}

/* For 4K Ultra-wide Screens (>=2560px) */
@media screen and (min-width: 2560px) {
  .breadcrumbs .breadLogo {
    max-width: 380px;
  }

  .breadcrumbs .breadcover {
    bottom: -17px;
  }

  .breadcrumbs .order-btn {
    zoom: 2;
  }

  .breadcrumbs .bread-social {
    zoom: 2;
  }
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .breadcrumbs .bread-text {
    padding: 10px;
    bottom: 0px;
  }

  .breadcrumbs .bread-text2 h1 {
    color: #A32430;
    font-size: 56px;
    font-weight: bold;
  }

  .breadMainLogo {
    width: 300px;
  }


  .breadcrumbs {
    min-height: 80vh;
    padding: 30px 15px;
  }

  .breadcrumbs .breadLogo {
    max-width: 120px;
  }

  .breadcrumbs .order-btn {
    font-size: 15px;
    padding: 9px 22px;
  }


  .breadcrumbs .breadcover {
    bottom: -10px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs .bread-text {
    padding: 10px;
    bottom: 0px;
  }

  .breadcrumbs .bread-text2 h1 {
    color: #A32430;
    font-size: 38px;
    font-weight: bold;
  }

  .breadMainLogo {
    width: 250px;
  }

  .breadcrumbs {
    min-height: 46vh;
    padding: 20px 15px;
  }

  .breadcrumbs .breadLogo {
    max-width: 95px;
  }

  .breadcrumbs .order-btn {
    font-size: 14px;
    padding: 8px 20px;
    margin: 0;
  }

  .breadcrumbs .bread-social img {
    width: 24px;
    height: 24px;
  }

  .breadcrumbs .bread-text {
    padding: 10px;
  }

  .breadcrumbs .bread-social {
    position: absolute;
    bottom: 14px;
  }

  .breadcrumbs .breadcover {
    bottom: -10px;
  }
}

@media (max-width: 479px) {
  .breadcrumbs .bread-text2 h1 {
    color: #A32430;
    font-size: 38px;
    font-weight: bold;
  }

  .breadcrumbs .bread-text2 {
    bottom: 0px !important;
  }

  .breadcrumbs .breadLogo {
    max-width: 70px;
  }

  .breadcrumbs .order-btn {
    font-size: 13px;
    padding: 7px 18px;
    margin: 0;
  }

  .breadcrumbs .bread-text {
    padding: 10px;
    bottom: 0px;
  }

  .breadcrumbs .bread-social {
    position: absolute;
    bottom: 14px;
    gap: 5px;
  }

  .breadcrumbs .breadcover {
    bottom: 0;
  }

  .breadMainLogo {
    width: 220px;
  }
}


.brand-item {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  /* dim background */
}

.brand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  /* subtle overlay */
}

.brand-logo {
  position: relative;
  z-index: 2;
  text-align: center;
}

.brand-logo img {
  height: 250px !important;
  width: 250px !important;
  object-fit: contain;
}

.home-brands-section .brand-logo img {
  height: 150px !important;
  width: 150px !important;
  object-fit: contain;
}

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

form .txtLbl {
  font-weight: bold;
  display: block;
}

form small {
  font-style: italic;
}

form .txt {
  width: 100%;
  background-color: #F5F1E7;
  padding: 15px;
  border: none;
  border-radius: 5px;
}

.ambassador {
  padding: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 20px;
}

.taster {
  padding: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 20px;
}

.customPara ul,
.customParaCream ul {
  padding: 0;
}

.customPara ul,
.customPara li,
.customPara p,
.customPara b,
.customPara span {
  color: #fff !important;
}

.customPara ul li {
  display: block;
  /* border: 1px solid #fff; */
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  /* border-left-width: 10px; */
}

.customParaCream ul,
.customParaCream li,
.customParaCream p,
.customParaCream b,
.customParaCream span {
  color: #000 !important;
}

.customParaCream ul li {
  display: block;
  /* border: 1px solid #000; */
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  /* border-left-width: 10px; */
}


.brands-nav {
  text-align: center;
  margin-bottom: 40px;
}

.brands-nav button {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent !important;
}


.theme-heading-red {
  font-size: 60px;
  font-weight: bold !important;
  color: #A32430 !important;
}

.theme-heading-cream {
  font-size: 60px;
  font-weight: bold !important;
  color: #F5F1E7 !important;
}

.theme-subheading-red {
  font-size: 40px;
  font-weight: bold !important;
  color: #A32430 !important;
}

.theme-subheading-cream {
  font-size: 40px;
  font-weight: bold !important;
  color: #F5F1E7 !important;
}

.emailBtn {
  background-color: #A32430;
  color: #fff;
  border: none;
  border-radius: 45px;
  margin-left: 5px; 
  transition: .5s;
  width: 10%;
  height: 45px;
  line-height: 0;
}

.emailBtn:hover {
  background-color: #000;
}

.bestSeller .subContent {
  background-color: #F5F1E7;
  padding: 25px;
}

.customPopup {
  display: none;
  position: absolute;
  top: 68px;
  right: 0;
  width: 322px;
  height: 452px;
  background: url(../img/popup/back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.order-btn:hover+.customPopup,
.customPopup:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.customPopupContent {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.customPopupContent a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.customPopupContent a:hover img {
  transform: scale(1.05);
}