@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --font_family_primary: "Fredoka One", sans-serif;
  --font_family_secondery: "Archivo", sans-serif;
  --color_white: #fff !important;
  --color_black: #000 !important;
  --color_black_one: #333333 !important;
  --color_black_two: #aaaaaa !important;
  --color_red: #ff6b82 !important;
  --color_yellow: #ffe866 !important;
  --color_green_one: #4fbf84 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-size: 18px;
  line-height: 24px;
  font-style: normal;
  font-family: var(--font_family_primary);
  color: var(--color_black_one);
  background-color: var(--color_white);
  overflow-x: hidden;
}

body:not(.page-loaded) .mob-nav,
body:not(.page-loaded) .header_logo img {
  visibility: hidden;
}

.font_two {
  font-family: var(--font_family_secondery);
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img,
svg,
path,
a,
img:hover,
svg:hover,
a:hover,
button,
button:hover {
  transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity .4s ease-in-out;
}

img.lazyloaded {
  opacity: 1;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.page-template-template-lezzet-home h2,
.page-template-template-lezzet-home h2 a {
  font-style: normal !important;
  font-variant: normal !important;
  font-stretch: normal !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}


/* FONT-SIZE */
.heading_text_1 {
  font-size: 64px !important;
  line-height: 75px !important;
}

.heading_text_2 {
  font-size: 48px !important;
  line-height: 50px !important;
}

.heading_text_3 {
  font-size: 36px !important;
  line-height: 48px !important;
}

.heading_text_4 {
  font-size: 28px !important;
  line-height: 36px !important;
}

.heading_text_5 {
  font-size: 24px;
  line-height: 30px;
}

.heading_text_6 {
  font-size: 20px;
  line-height: 28px;
}

p {
  font-size: 18px;
  line-height: 24px;
}

.text_18 {
  font-size: 18px;
  line-height: 20px;
}

.text_16 {
  font-size: 16px;
  line-height: 18px;
}

.text_14 {
  font-size: 14px;
  line-height: 18px;
}

/* FONT-WEIGHT */
.fw_100 {
  font-weight: 100 !important;
}

.fw_200 {
  font-weight: 200 !important;
}

.fw_300 {
  font-weight: 300 !important;
}

.fw_400 {
  font-weight: 400 !important;
}

.fw_500 {
  font-weight: 500 !important;
}

.fw_600 {
  font-weight: 600 !important;
}

.fw_700 {
  font-weight: 700 !important;
}

.fw_800 {
  font-weight: 800 !important;
}

.fw_900 {
  font-weight: 900 !important;
}

/* COLOR-CLASS */
.color_white {
  color: var(--color_white) !important;
}

.bg_white {
  background-color: var(--color_white);
}

.color_black {
  color: var(--color_black);
}

.bg_black {
  background-color: var(--color_black);
}

.color_black_one {
  color: var(--color_black_one);
}

.bg_black_one {
  background-color: var(--color_black_one);
}

.color_black_two {
  color: var(--color_black_two);
}

.bg_black_two {
  background-color: var(--color_black_two);
}

.color_red {
  color: var(--color_red);
}

.bg_red {
  background-color: var(--color_red);
}

.color_yellow {
  color: var(--color_yellow) !important;
}

.bg_yellow {
  background-color: var(--color_yellow);
}

.color_green {
  color: var(--color_green_one);
}

.bg_green {
  background-color: var(--color_green_one);
}

.transparent_color {
  background-color: transparent;
}

.close_info span,
.footer_bottom p,
.about_contact_info>* {
  line-height: 24px;
}

main {
  overflow-x: hidden;
}

.form-select:focus {
  border-color: var(--color_red);
  box-shadow: none;
}

.sec_padding {
  padding: 100px 0;
  background-color: white;
}

.sec_padding_top {
  padding-top: 100px;
}

.sec_padding_bottom {
  padding-bottom: 100px;
}

/* ========================= Buttons CSS ========================= */
.line_btn,
.line_btn_red {
  display: inline-flex;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: underline;
  position: relative;
  z-index: 0;
}

.line_btn_red {
  color: var(--color_red);
}

.common_btn,
.red_btn,
.green_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 12px;
  background: var(--color_red);
  color: var(--color_white);
  margin: 8px;
  position: relative;
  z-index: 0;
}

.green_btn {
  background: var(--color_green_one);
}

.common_btn::after,
.red_btn::after,
.green_btn::after {
  content: "";
  position: absolute;
  right: -8px;
  border: 3px solid var(--color_red);
  width: 95%;
  height: 100%;
  padding: 35px 0;
  border-radius: 12px;
}

.green_btn::after {
  border: 3px solid var(--color_green_one);
}

/* ========================= Header CSS ========================= */
.header_section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

div#header_sec {
  position: relative;
  z-index: 999;
  background: transparent;
  box-shadow: none;
}

@keyframes fixedheader {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5) !important;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  animation: fixedheader 600ms ease 0ms alternate;
}

.sticky>.container {
  max-width: 95%;
}

.header_upper {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
}

.header_upper>.container-fluid {
  padding: 0 24px;
}

.header_upper_location_area,
.header_location_inner {
  gap: 8px;
}

.header_upper_login_area_inner {
  display: flex;
  align-items: center;
  background: var(--color_green_one);
  color: var(--color_white);
  padding: 12px 22px;
  width: max-content;
  margin: 0 0 0 auto;
}

.header_upper_login_area_inner a.shop_btn,
.delivery_time span {
  display: block;
  width: 36px;
  height: 36px;
}

.header_login_box {
  display: flex;
  gap: 6px;
  border-left: 1px solid var(--color_white);
  padding-left: 12px;
  margin-left: 12px;
}

.header_login_box span.user_img img {
  display: block;
}

span.user_img {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
}

.login_area_inner>* {
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color_white);
}

.login_area_inner {
  display: flex;
  gap: 6px;
}

.header_logo a {
  display: block;
  width: 120px;
  height: 100px;
  place-content: center;
}

.navbar_content nav.navbar ul.navbar-nav {
  flex-direction: row;
}

.navbar_content nav.navbar {
  justify-content: center;
  align-items: center;
}

.navbar_content nav.navbar ul.navbar-nav li a.nav-link {
  padding: 10px;
  font-size: 18px !important;
  line-height: 24px !important;
  color: #ffe866;
  position: relative;
  z-index: 0;
}

.navbar_content nav.navbar ul.navbar-nav li a.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #ffe866;
  z-index: -1;
  transition: all 0.5s ease;
}

.navbar_content nav.navbar ul.navbar-nav li a.nav-link:hover::after {
  width: 100%;
}

.footer_navs_title {
  width: fit-content;
  border-bottom: 5px solid;
}

.footernavs ul {
  gap: 15px;
}

.footernavs ul a {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  color: #fff;
  line-height: 24px;
}

.footer_area {
  padding: 80px 0;
  border-bottom: 8px solid #ffe866;
}

/* ========================= Footer CSS ========================= */
.footer_section {
  background: #4fbf84;
}

.footer_logo {
  max-width: 140px;
}

.footer_info_box {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  border-radius: 16px;
  background: #ff6b82;
  color: #fff;
}

.close_info span {
  margin: 12px 0 4px;
  display: block;
  text-decoration: underline;
  text-underline-position: from-font;
}

.footer_bottom {
  padding: 40px 0;
}

.footer_info_left>a {
  color: var(--color_yellow);
}

.footer_info_right>a {
  color: var(--color_white);
}

.footer_outter_img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.footer_area>.row {
  gap: 24px 0;
}

/* ========================= Banner CSS ========================= */

.banner_slider_section {
  background-image: url(../images/banner_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  min-height: 100vh;
  padding: 260px 0 152px;
  place-content: center;
  position: relative;
  z-index: 0;
}

.small_title_red {
  color: var(--color_red);
}

.small_title_green {
  color: var(--color_green_one);
}

.small_title_yellow {
  color: var(--color_yellow);
}

.banner_slider_item_inner {
  display: grid;
  align-items: center;
  grid-template-columns: max-content 1fr;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  justify-items: stretch;
}

.banner_slider_box {
  max-width: 508px;
}

.banner_slider_info p {
  max-width: 415px;
}

.banner_slider_box_img {
  max-width: 100%;
  margin: 0 0 0 auto;
}

.banner_btn_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.delivery_time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 34px;
  border: 1px solid var(--color_white);
  border-radius: 30px;
}

.review_box {
  position: absolute;
  top: 0;
  right: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 6px 4px 5px rgb(0 0 0 / 25%);
}

.review_box span {
  padding: 20px 0 18px;
}

.review_box h2,
.review_box p {
  letter-spacing: 2px;
}

.banner_review {
  line-height: 20px;
}

.banner_slider_inner .slick-custom-arrow {
  position: absolute;
  bottom: -85px;
  left: 0;
  right: auto;
  z-index: 1;
  margin-top: 48px;
  cursor: pointer;
}

.banner_slider_inner .slick-custom-arrow.slick-custom-arrow-right {
  right: 0;
  left: auto;
}

.banner_slider_inner ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
}

.banner_slider_inner ul.slick-dots li button {
  width: 24px;
  height: 24px;
  font-size: 0;
  border-radius: 999px;
}

.banner_slider_inner ul.slick-dots li.slick-active button {
  background-color: var(--color_red);
}

/* ========================= About CSS ========================= */
ul.about_tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about_tabs_area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about_tabs_area_inner {
  width: 100%;
  max-width: 350px;
}

ul.about_tabs li {
  position: relative;
}

.abt_tab_shap {
  position: absolute !important;
  width: 0%;
  height: 100%;
  background: var(--color_green_one) !important;
  z-index: -1;
  margin: 5px 0 0 10px !important;
  border-radius: 80px !important;
  transition: all 0.5s ease-in-out;
}

ul.about_tabs li.active .abt_tab_shap {
  width: 100%;
}

ul.about_tabs li a {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 35px 20px 24px;
  color: var(--color_black_one);
  position: relative;
  z-index: 0;
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
  background: var(--color_yellow);
  border-radius: 80px;
}

ul.about_tabs li a>img {
  position: absolute;
  right: 0;
  margin-right: -30px;
  z-index: 0;
}

.about_content_tabs_inner_box {
  display: grid;
  grid-template-columns: 450px 1fr;
  justify-items: center;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.about_contact_area {
  gap: 20px;
}

.about_contact_area a {
  color: var(--color_black);
}

.about_area_inner img.abt_arrow_shap {
  position: absolute;
  left: 0;
}

img.abt_arrow_shap:nth-child(2) {
  left: auto;
  right: 45%;
  bottom: 0;
}


/* ========================= Food Menu Section CSS ========================= */
/* WRAPPER */
.best_food_op_section {
  background: #F3274C33;
  padding: 0 15px 100px;
  position: relative;
  margin-top: 27px;
}

/* HEADING */
.best_food_op_heading {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 48px;
}

.best_food_op_heading h4 {
  color: var(--color_green_one);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
}

.best_food_op_heading_line {
  max-width: 476px;
  width: 100%;
  height: 8px;
  background: var(--color_green_one);
  margin: 6px auto 0;
  border-radius: 14px;
}

/* CATEGORY SLIDER */
.best_food_op_category_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 12px; */
  margin-bottom: 40px;
}

.best_food_op_arrow_left,
.best_food_op_arrow_right {
  position: relative;
  z-index: 10;          
  pointer-events: auto;
  background: var(--color_yellow);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.best_food_op_arrow_left {
  transform: matrix(1, 0, 0, 1, 12, 0);
}

.best_food_op_arrow_right {
  transform: matrix(1, 0, 0, 1, -12, 0);
}

.best_food_op_category_slider {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 16px;
  /* padding: 10px; */
  max-width: 1040px;
  width: 100%;
}

.best_food_op_category_slider::-webkit-scrollbar {
  display: none;
}

.best_food_op_tab {
  background: var(--color_green_one);
  border: none;
  padding: 14px;
  font-weight: 400;
  color: white;
  font-size: 20px;
  line-height: 24px;
  min-width: 148px;
  width: auto;
  flex: 0 0 auto; /* Ensure tabs don't grow or shrink */
  box-sizing: border-box; /* Include padding in width calculation */
}

.best_food_op_arrow_left:disabled,
.best_food_op_arrow_right:disabled {
  opacity: 0.5; /* Visually disable */
  cursor: not-allowed;
}

.best_food_op_grid_wrapper {
  max-width: 865px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.best_food_op_tab.active {
  background: #2F9B61;
}

/* GRID */
.best_food_op_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

/* CARD */
.best_food_op_card {
  border: 5px solid #FF6B82;
  border-radius: 30px;
  padding: 18px 18px 40px;
  position: relative;
  background: #fdd4db;
}

/* SALE TAG */
.best_food_op_sale {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #FFE45C;
  padding: 20px 12px;
  font-weight: 300;
  border-radius: 50px;
  font-size: 18px;
  line-height: 30px;
}

/* FAVORITE ICON */
.best_food_op_fav {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 50%;
  padding: 5px 3px;
  border: 1px solid #333333;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

/* IMAGE WRAP */
.best_food_op_image_wrap {
  position: relative;
  text-align: center;
  margin-top: 25px;
}

.best_food_op_red_oval {
  max-width: 339px;
  width: 100%;
  height: 147px;
  background: #EE274A;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
}

.best_food_op_image_wrap img {
  position: relative;
  width: 285px;
  z-index: 2;
}

/* RATING */
.best_food_op_rating {
  margin-top: 20px;
  font-size: 18px;
}

/* TITLE */
.best_food_op_title {
  margin-top: 4px;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
}

/* PRICE */
.best_food_op_price {
  margin-top: 10px;
  font-size: 28px;
  color: #AAAAAA;
  vertical-align: -webkit-baseline-middle;
  display: flex;
  align-items: center;
}

.best_food_op_price span {
  color: #888888;
  font-size: 20px;
  text-decoration: line-through;
  margin-left: 7px;
}

.best_food_op_price currency {
  color: #FF6B82;
}


/* CART BUTTON */
.best_food_op_cart_btn {
  background: var(--color_yellow);
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  float: right;
  position: absolute;
  right: 18px;
  bottom: 19px;
}

/* SECTION WRAPPER */
.location_filter_section {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* MAIN BOX */
.location_filter_box {
  background: #f42e51;
  width: 100%;
  max-width: 1040px;
  padding: 47px 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  background-image: url(../images/best_food/location-filter-bg.png);
  background-size: cover;
  background-position: center;
  margin-top: -47px;
}

/* INPUT WRAPPER */
.location_filter_input_wrap {
  position: relative;
  display: contents;
}

/* TEXT INPUT */
.location_filter_input {
  width: 320px;
  padding: 16px 22px;
  border-radius: 14px;
  border: none;
  background: #F9DCE5;
  font-size: 16px;
  color: #6A5858;
  outline: none;
}

/* SELECT INPUT */
.location_filter_select_input {
  max-width: 394px;
  border-radius: 7px;
  border: none;
  background: #ffffff;
  font-size: 16px;
  line-height: 26px;
  outline: none;
  width: 100%;
  display: block;
  font-weight: 400 !important;
  font-family: var(--font_family_secondery);

  /* Hide default browser arrow */
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/best_food/arrow-down.png);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 18px center;
}

.location_filter_icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.location_filter_select_input::placeholder {
  font-weight: 200;
}

/* DROPDOWN ARROW SVG */
.location_filter_icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* BUTTON */
.location_filter_btn {
  background: #FFD54F;
  border: 3px solid #F0C137;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  color: #3A2700;
  transition: 0.2s ease-in-out;
}

.location_filter_btn:hover {
  background: #FFCC33;
}

.location_filter_box .common_btn::after {
  padding: 29px 0;
}

.location_filter_box a.common_btn {
  width: 130px;
  padding: 11px;
}

img.best_se_right {
  position: absolute;
  top: 100px;
  left: 0;
}

img.best_se_left {
  position: absolute;
  bottom: 0;
  right: 0;
}


/* ========================= Restaurants CSS ========================= */
@keyframes marquee_right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.restaurants_marqueer_sec {
  padding: 40px 0;
  background-color: white;
}

.restaurants_marqueer_area>.row,
.trusted_partners_marqueer_area>.row {
  gap: 40px;
}

.restaurants_marqueer_slider_list .restaurants_marqueer_heading {
  font-style: italic;
  padding: 18px;
  text-align: center;
  color: #fff;
  background: #fc8a06;
}

.restaurants_marqueer_leftslide {
  width: -webkit-fill-available;
  height: max-content;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.marquee_content {
  width: fit-content;
  display: flex;
  line-height: 30px;
  animation: marquee_right 17s linear infinite forwards;
  justify-content: space-around;
}

.restaurants_marqueer_leftslide:hover .marquee_content {
  animation-play-state: paused;
}

ul.list-inline {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  align-items: center;
}

.restaurants_marqueer_slider_list li {
  border-radius: 12px;
  overflow: hidden;
  width: 238px;
}

/* ----------------------------------------------------
   FIX: Equal Image Size for All Restaurants Logos
----------------------------------------------------- */
.restaurants_marqueer_slider_list img {
  width: 140px;
  height: 120px;
  object-fit: contain;
  /* keeps logo proportion */
  object-position: center;
  background: #ffffff;
  padding: 10px;
  display: block;
  margin: 0 auto;
  /* centers image nicely */
}

/* Heading (kept same as your existing) */
.restaurants_marqueer_slider_list .restaurants_marqueer_heading {
  font-style: italic;
  padding: 18px;
  text-align: center;
  color: #fff;
  background: #fc8a06;
}

/* ========================= Location CSS ========================= */
.location_section {
  background-image: url(../images/location_bg.jpg);
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.our_location_area>.row {
  gap: 20px;
}

.map_filter_info {
  gap: 16px;
}

.map-controls select {
  /* padding: 18px 30px; */
  background-image: url(../images/drop-dowm_arrow.png);
  background-position: right 18px center;
  background-size: 25px 24px;
}

.location_info {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
  border-radius: 16px;
  background: #ffe866;
  color: #000;
}

.map-controls {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.map-card {
  width: 100%;
  height: 440px;
  border-radius: 18px;
  border: 6px solid #f3274c;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Wrapper */
.popup-wrapper {
  font-family: inherit;
  width: 100%;
  padding: 5px 2px;
}

/* Title + Logo Row */
.popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.popup-logo {
  width: 55px;
  height: auto;
  border-radius: 6px;
}

.popup-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* Each row of icon + text */
.popup-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}

.popup-icon {
  width: 20px;
  font-size: 16px;
  padding-top: 2px;
}

.popup-text {
  font-size: 14px;
  line-height: 1.3;
  flex: 1;
}

.popup-link {
  text-decoration: none;
  color: inherit;
}

.popup-link:hover .popup-title {
  text-decoration: underline;
  color: inherit;
}


/* ========================= Foodapp CSS ========================= */
.Phoneapp_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}

.Phoneapp_bg img {
  height: 100%;
  width: -webkit-fill-available;
}

.foodapp_area {
  max-width: 862px;
  margin: 0 auto;
}

.foodapp_area>.row {
  gap: 60px;
  align-items: center;
}

.foodapp_info_area {
  gap: 30px;
}

.foodapp_btn_area {
  gap: 14px;
}

.foodapp_info_area h2 {
  line-height: 60px;
}

.foodapp_img_area {
  height: 375px;
  padding-top: 40px;
  text-align: center;
}

.foodapp_img_area img {
  height: -webkit-fill-available;
}

/* ========================= Delivery CSS ========================= */
.delivery_sec {
  background-image: url(../images/Delivery_bg.jpg);
  background-size: cover;
  display: block;
  width: 100%;
  position: relative;
  z-index: 0;
}

.delivery_area_inner {
  display: grid;
  grid-template-columns: max-content max-content 200px;
  align-items: center;
  gap: 64px;
  max-width: max-content;
  justify-content: space-between;
  margin: 0 auto;
}

.delivery_title_box {
  max-width: 444px;
}

.delivery_img_box {
  max-width: 295px;
  margin: -44px 120px 48px 0;
}


/* ========================= Client Slider CSS ========================= */
/* ========================= Client Slider CSS ========================= */
.client_slider_sec {
  background-image: url(../images/client_bg.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
}

.client_slider_list {
  max-width: 862px;
  margin: 0 auto;
}

.client_review {
  margin: 20px 0;
}

.client_slider_list ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  /*margin-top: 64px;*/
  gap: 24px;
}

.client_slider_list ul.slick-dots li {
  background: #fff;
  padding: 18px 10px;
  border-radius: 7px;
  transition: all 0.5s ease;
}

.client_slider_list ul.slick-dots li.slick-active {
  background: #ffe866;
}

/* ★ Dynamic dot thumbnails ★ */
.client_slider_list ul.slick-dots li button.slick-thumb {
  font-size: 0;
  border: 5px solid #fff;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}


/* ========================= Trusted partners CSS ========================= */
.trusted_partners_slider_list {
  position: relative;
  z-index: 0;
  padding: 15px 0;
}

.trusted_partners_slider_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 242px;
  background: linear-gradient(90deg, #028643 -15%, #fff 50%);
  z-index: -1;
}

.trusted_partners_slider_list::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 242px;
  background: linear-gradient(270deg, #028643 -15%, #fff 50%);
  /* background: linear-gradient(90deg, #fff 50%, #028643 -15%); */
  z-index: -1;
}

/* SECTION WRAPPER */
.most_popular_section {
  padding: 0 0 70px;
}

/* MAIN CONTAINER */
.most_popular_container {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

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

.most_popular_card:hover {
  transform: translateY(-4px);
}


/* HEART FAVORITE */
.most_popular_fav_btn {
  background: transparent;
  border: none;
  color: #70D084;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}

/* IMAGE */
.most_popular_img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  /* display: block;
    margin: 20px auto; */
}

.most_popular_heading_wrapper {
  display: flex;
  align-items: center;
  gap: 21px;
}

/* TITLE */
.most_popular_title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0px;
}

.most_popular_heading {
  text-align: center;
}

.most_popular_heading p {
  margin-top: 9px;
  color: #4fbf84;
  letter-spacing: 0.1px;
}

.most_popular_card {
  position: relative;
  background: #fff;
  padding: 45px 20px 40px;
  border-radius: 7px;
  border: 1px solid #E8E8E8;
  transition: 0.2s ease;
}

.most_popular_status {
  position: absolute;
  top: 12px;
  left: -12px;
  background: #E6001A;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px 6px 13px;
  border-radius: 2px;
  line-height: 1;
  display: inline-block;
  display: flex;
  align-items: center;
}

.open_status_badge {
  position: absolute;
  top: 12px;
  left: -12px;
  background: #4fbf84;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.most_popular_title a {
  color: #000;
}


/* LEFT small triangle */
.most_popular_status::before
 {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 12px solid #E6001A;
  z-index: -1;
}

/* RIGHT pointed tail */
.most_popular_status::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 12px solid #E6001A;
  border-bottom: 12px solid #E6001A;
  border-left: 10px solid transparent;
  rotate: none;
  rotate: 181deg;
}




/* LEFT small triangle */
.open_status_badge::before
 {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 12px solid #4f9671;
  z-index: -1;
}

/* RIGHT pointed tail */
.open_status_badge::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 12px solid #4fbf84;
  border-bottom: 12px solid #4fbf84;
  border-left: 10px solid transparent;
  rotate: none;
  rotate: 181deg;
}

/* SECTION */
.gallery_grid_section {
  padding: 60px 12px 100px;
  box-sizing: border-box;
}

/* CONTAINER */
.gallery_grid_container {
  max-width: 1060px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  /* padding: 0 12px; */
}

/* ROW INNER COMMON */
.gallery_grid_row_inner {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.gallery_grid_row {
  margin-bottom: 60px;
}

.gallery_grid_row:nth-last-child(1) {
  margin-bottom: 0px;
}

.row1_grid {
  grid-template-columns: minmax(518px, 2fr) 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "hero mid-top right"
    "hero mid-bottom right";
  gap: 24px;
}

/* place items into areas */
.row1_grid .item-hero {
  grid-area: hero;
}

.row1_grid .item-mid-top {
  grid-area: mid-top;
}

.row1_grid .item-mid-bottom {
  grid-area: mid-bottom;
}

.row1_grid .item-right {
  grid-area: right;
}

/* ============================
   ROW 2: two wide banners (1fr 1fr)
   ============================ */
.row2_grid {
  grid-template-columns: repeat(2, 1fr);
  /* gap: 18px; */
}

/* ============================
   ROW 3: two partner cards (1fr 1fr)
   ============================ */
.row3_grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ITEM IMAGE (common rules) */
.gallery_grid_item {
  overflow: hidden;
  border-radius: 18px;
  /* matches screenshot rounded corners */
  background: #fff;
  /* a neutral fallback if images not loaded */
  display: block;
}

/* direct image styling */
.gallery_grid_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* crop images to fill their box */
}

.gallery_grid_video_wrap {
  position: relative;
  width: 100%;
}

.gallery_grid_video_thumb {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

.gallery_grid_play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
}

.gallery_grid_play_btn img {
  width: 70px;
}

.gallery_grid_video_iframe {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: none;
}

img.vector-img-right {
  position: absolute;
  top: 228px;
  left: -15%;
}

img.vector-img-left {
  position: absolute;
  right: -160px;
  top: 33%;
}


/* ========================= Responsvie CSS ========================= */
@media (min-width: 1199px) and (max-width: 1399px) {
  .delivery_area_inner {
    gap: 0;
  }
}

@media (max-width: 1600px) {
  .container {
    padding: 0 16px;
  }
  .gallery_grid_section, .most_popular_container{
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1399px) {

  /* About CSS */
  .about_content_tabs_inner_box {
    grid-template-columns: max-content 1fr;
  }

  img.abt_arrow_shap:nth-child(2) {
    right: 38%;
  }

  img.best_se_right, img.best_se_left{
      width: 201px;
  }
}

/* ============================================
   Large Screen Responsive Styles
   Applied at 1199px and below
   ============================================ */


@media (max-width: 1199px) {
  .heading_text_1 {
    font-size: 64px;
    line-height: 72px;
  }

  .heading_text_2 {
    font-size: 36px;
    line-height: 40px;
  }

  /* Header CSS */
  .navbar_content nav.navbar ul.navbar-nav li a.nav-link {
    font-size: 16px !important;
  }

  /* Banner CSS */
  .banner_slider_box {
    max-width: 435px;
  }

  /* About CSS */
  .about_content_tabs_inner_box {
    grid-template-columns: 275px 1fr;
  }

  .about_tabs_area_inner {
    max-width: 275px;
  }

  .about_area_inner img.abt_arrow_shap {
    top: -15%;
    left: -5%;
  }

  img.abt_arrow_shap:nth-child(2) {
    left: auto;
    top: auto;
    bottom: -15%;
  }

  /* Foodapp CSS */
  .Phoneapp_bg img {
    height: 100%;
    object-position: right;
  }

  /* Delivery CSS */
  .delivery_area_inner {
    display: grid;
    grid-template-columns: max-content max-content 200px;
    align-items: center;
    gap: 0;
    justify-content: space-between;
    margin: 0 auto;
  }

  .delivery_title_box {
    max-width: 360px;
  }

  .delivery_img_box {
    max-width: 295px;
    margin: -44px 20px 48px 0;
  }

  /* Row1: simpler layout on medium screens */
  .row1_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero hero"
      "mid-top mid-bottom"
      "right right";
  }

  .row1_grid .item-hero {
    grid-area: hero;
  }

  .row1_grid .item-mid-top {
    grid-area: mid-top;
  }

  .row1_grid .item-mid-bottom {
    grid-area: mid-bottom;
  }

  .row1_grid .item-right {
    grid-area: right;
  }

  img.vector-img-right,
  img.vector-img-left {
    display: none;
  }

  .best_food_op_heading_line {
    max-width: 376px;
  }

}

/* ============================================
   Medium Screen Responsive Styles  
   Applied at 991px and below
   ============================================ */


@media (max-width: 991px) {

  /* Header CSS */
  .header_area>.row>div:nth-child(2) {
    display: none;
  }

  .header_location_inner {
    grid-template-columns: 1fr max-content;
  }

  .header_location_inner>* {
    font-size: 14px;
    line-height: 20px;
  }

  /* Banner CSS */
  .banner_slider_section {
    background-image: url(../images/banner_bg_responsive.jpg);
    min-height: 100%;
  }

  .banner_slider_item_inner {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 0;
  }

  .banner_slider_box_img {
    max-width: 600px;
    height: 550px;
    place-content: center;
  }

  .banner_slider_box_img::after {
    content: "";
    background-image: url(../images/responsive_banner_shap.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .banner_slider_box {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .banner_slider_box,
  .banner_slider_info p {
    margin: 0 auto;
  }

  .banner_btn_area {
    justify-self: center;
    padding-bottom: 15px;
  }

  .review_box {
    width: 25%;
    text-align: center;
  }

  /* About CSS */
  .about_tabs_area {
    flex-direction: column;
  }

  .about_tabs_area_inner {
    max-width: 100%;
  }

  .about_area_inner img.abt_arrow_shap {
    display: none;
  }

  /* Foodapp CSS */
  .foodapp_area {
    padding-top: 60px;
  }

  .foodapp_img_area {
    padding: 0;
    margin-bottom: -10px;
  }

  .delivery_area_inner {
    grid-template-columns: max-content max-content;
  }

  .delivery_btn_box {
    max-width: 225px;
  }

  .most_popular_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery_grid_container {
    max-width: 600px;
  }

  .gallery_grid_row {
    margin-bottom: 18px;
  }

  img.best_se_right,
  img.best_se_left {
    width: 111px;
  }

  .best_food_op_section {
    padding-bottom: 60px;
  }

  .best_food_op_image_wrap img {
    width: 220px;
  }

  .best_food_op_red_oval {
    height: 130px;
  }

  .best_food_op_sale {
    padding: 16px 11px;
    font-size: 16px;
  }

  .best_food_op_red_oval {
    height: 130px;
  }

}


/* ============================================
   Responsive Styles for Tablets & Small Screens
   Breakpoint: Max-width 767px
   ============================================ */

@media (max-width: 767px) {
  .heading_text_1 {
    font-size: 48px;
    line-height: 64px;
  }

  .heading_text_2 {
    font-size: 36px;
    line-height: 40px;
  }

  .heading_text_3 {
    font-size: 28px;
    line-height: 36px;
  }

  .sec_padding {
    padding: 50px 0;
  }

  /* About CSS */
  ul.about_tabs li a {
    gap: 14px;
    padding: 16px 24px;
  }

  .about_tabs_info p {
    font-size: 15px;
    line-height: 18px;
  }

  .about_tabs_icon span {
    display: block;
    width: 30px;
    height: 30px;
  }

  .about_tabs_area_inner {
    max-width: 85%;
  }

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

  .about_tabs_img {
    display: none;
  }

  /* Location CSS */
  .location_section {
    padding: 50px 0;
  }

  .location_info {
    gap: 24px;
    padding: 40px 24px;
  }

  /* Client CSS */
  .client_slider_list ul.slick-dots {
    margin-top: 40px;
    gap: 16px;
  }

  .client_slider_sec {
    background-image: none;
  }

  /* Foodapp CSS */
  .Phoneapp_bg img {
    height: 100%;
    object-position: center;
  }

  /* Delivery CSS */
  .delivery_area_inner {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 60px;
  }

  /* Gallery fetured section */
  .gallery_grid_section{
        padding-top: 60px;
        padding-bottom: 60px;
  } 
  .row2_grid,
  .row3_grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .row1_grid{
    gap:18px;
  }  
  .row1_grid .item-hero,
  .row1_grid .item-mid-top,
  .row1_grid .item-mid-bottom,
  .row1_grid .item-right {
    order: initial;
  }
  .location_filter_box{
      flex-direction: column;
      padding: 30px 25px;
      border-radius: 25px;
  }

}


/* ============================================
   Responsive Styles for Mobile Devices  
   (Max-width: 575px)
   ============================================ */
@media (max-width: 575px) {

  /* Banner CSS */
  .banner_slider_section {
    padding: 100px 0 150px;
  }

  .banner_slider_box_img::after {
    background-size: contain;
    background-repeat: no-repeat;
  }

  .review_box {
    top: 15%;
    right: 10%;
    width: 30%;
    padding: 12px;
  }

  .review_box span {
    padding: 8px;
  }

  .banner_btn_area,
  .delivery_time {
    width: 100%;
  }

  .banner_btn_area {
    flex-direction: column-reverse;
  }

  .banner_slider_box_img {
    height: 400px;
  }

  .small_title {
    font-size: 18px;
    line-height: 20px;
  }

  /* Partner CSS */
  .trusted_partners_slider_list::before,
  .trusted_partners_slider_list::after {
    width: 100px;
  }

  .most_popular_grid{
    grid-template-columns: repeat(1, 1fr);
    gap:20px;
  }
    img.best_se_right, img.best_se_left {
      width: 80px;
  }
}