@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="buttton"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: var(--transtn);
  -o-transition: var(--transtn);
  transition: var(--transtn);
  text-decoration: none;
  font-style: normal;
}

button {
  border: none;
}

a:hover,
a:focus,
button:focus,
input:focus,
input[type="buttton"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  scroll-behavior: smooth;
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
  color: inherit;
}

figure {
  -webkit-transition: var(--transtn);
  -o-transition: var(--transtn);
  transition: var(--transtn);
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* variables */
:root {
  --transtn: 400ms all ease-in-out;
  --body_font: "Poppins", sans-serif;
  --heading_font_bold: "LEMONMILK-Bold";
  --heading_font_medium: "LEMONMILK-Medium";
  --heading_font_regular: "LEMONMILK-Regular";
  --sec_padding: 150px 0px;
  --body_color: #664a26;
  --sub_title_color: #ff8a8a;
  --butt_back_color: #d4943a;
}

/* global */
body {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--body_color);
  font-family: var(--body_font);
  min-height: 100vh;
  overflow-x: hidden;
}

a:hover {
  color: var(--sub_title_color);
}

h1 {
  font-size: 70px;
  line-height: 83px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #5a2914;
}

h1 span {
  color: #c81e4d;
}

h2 {
  font-size: 54px;
  line-height: 78px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #5a2914;
}

h2 span {
  color: #c81e4d;
}

h3 {
  font-size: 30px;
  line-height: 46px;
  letter-spacing: 0px;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading_font_medium);
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
  color: inherit;
}

sup {
  font-size: 50%;
  top: -10px;
}

b,
strong {
  font-weight: 950;
}

/* site_btn */

.site_btn {
  padding: 20px 50px 20px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  border-radius: 200px;
  background-color: var(--butt_back_color);
  position: relative;
  transition: var(--transtn);
  text-align: center;
  text-transform: capitalize;
}

.site_btn:hover {
  background-color: var(--sub_title_color);
  color: #fff;
}

.site_btn:hover:after {
  background-image: url(../images/butn_img_after.png);
}

.site_btn::after {
  background-image: url(../images/butn_img.png);
  background-repeat: no-repeat;
  background-size: 46px;
  background-position: center right;
  position: absolute;
  content: "";
  top: -4px;
  right: -5px;
  width: 50px;
  height: 39px;
  transition: var(--transtn);
}

/* site_btn */

.ste_ttle {
  text-align: center;
  font-weight: 300;
  font-size: 35px;
  line-height: 1;
  color: var(--brwn_clr);
}

.ste_ttle>*+* {
  margin-top: 40px;
}

/* heading */

.sec_center_headig {
  max-width: 960px;
  text-align: center;
  margin: 0px auto 50px;
}

.sec_center_headig h2 {
  margin-bottom: 15px;
}

.sub_title {
  color: rgb(255, 138, 138);
  font-family: var(--heading_font_medium);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 2.7px;
  text-transform: uppercase;
  margin: auto;
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 0px 50px;
  margin-bottom: 10px;
}

.sub_title:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #ff8a8a;
  left: 0;
  top: 15px;
}

.sub_title:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #ff8a8a;
  right: 0;
  top: 15px;
}

.sec_side_headig .sub_title:after {
  display: none;
}

.sec_side_headig h6 {
  padding-left: 0;
}

.sec_side_headig h2 {
  margin-bottom: 15px;
}

/* heading */

/* header */
.site_hdr {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: var(--transtn);
}

.site_hdr .navbar {
  padding: 60px 0 30px;
  background-color: #fff;
}

.site_hdr .container {
  position: relative;
}

.site_hdr .ste_logo_wrp a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-75%, -60%);
  display: inline-block;
  max-width: 135px;
}

.nav_link {
  font-size: 16px;
  line-height: 1;
  color: #4d4549;
  position: relative;
}

.nav_link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 2px;
  background-color: #4d4549;
  transform: scale(0);
  transition: var(--transtn);
  bottom: -10px;
}

.nav_link.current:before,
.nav_link:hover:before {
  transform: scale(1);
}

.site_hdr .navbar-nav {
  width: 100%;
  align-items: center;
}

.site_hdr .navbar-nav li:nth-last-child(6) {
  margin-left: auto;
}

.site_hdr .navbar-nav li {
  padding: 0 10px;
  position: relative;
}

.site_hdr .navbar-nav li:last-child {
  padding-right: 0;
}

.nav_item.active {
  font-weight: 700;
}

/* fixed_header */

.site_hdr.fixed {
  background-color: #fff;
}

.site_hdr.fixed .navbar {
  padding: 20px 0 20px;
}

.site_hdr.fixed .ste_logo_wrp a {
  max-width: 90px;
  top: 63%;
}

.site_hdr.fixed .site_btn {
  padding: 17px 40px;
}

.site_hdr.fixed .nav_link {
  font-size: 14px;
}

/* upper_header */
.uper_header {
  background-color: #fda7b4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
}

.uper_header p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* upper_header */

/* banner */
.banner {
  padding: 204px 0px 0px;
  background-color: #ffe7eb;
  position: relative;
  overflow: hidden;
}

.ban_img {
  width: 100%;
  height: 100%;
}

.ban_img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.ban_text {
  max-width: 512px;
  margin-left: auto;
  padding: 0px 15px 0 0px;
}

.baner_row_wrap .row {
  align-items: center;
}

.ban_text p {
  color: #83565d;
  margin: 20px 0px 30px;
}

.ban_tomato {
  position: absolute;
  top: 30px;
  left: -27px;
}

.ban_glaps {
  position: absolute;
  bottom: 50px;
  left: -30px;
}

.baner_row_wrap {
  position: relative;
}

/* product */
.product_sec {
  padding: var(--sec_padding);
  position: relative;
  overflow-x: hidden;
}

.cok_tom {
  position: absolute;
  top: 60px;
  right: -60px;
}

.cok_ha {
  top: 23%;
  position: absolute;
  left: -33px;
}

.prduct_tab_wrap ul.nav-pills {
  border-radius: 90px;
  background: rgb(255, 241, 243);
  max-width: fit-content;
  justify-content: center;
  margin: auto;
  padding: 5px 5px;
}

.prduct_tab_wrap ul .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 50px 10px 10px;
  border-radius: 50px;
  background: rgb(255, 255, 255);
  transition: var(--transtn);
}

.prduct_tab_wrap ul .nav-link span {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prduct_tab_wrap ul.nav-pills .nav-link p {
  flex-grow: 1;
  margin-left: 20px;
  color: rgb(102, 74, 38);
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 20px;
}

.prduct_tab_wrap .nav-pills .nav-link.active,
.prduct_tab_wrap .nav-pills .show>.nav-link {
  border-radius: 50px;
  background: rgb(253, 167, 180);
}

.prduct_tab_wrap .nav-pills .nav-link.active p,
.prduct_tab_wrap .nav-pills .show>.nav-link p {
  letter-spacing: 0px;
  color: #fff;
}

.prduct_tab_wrap ul li.nav-item:not(:first-child) {
  margin-left: 30px;
}

ul.prd_rang {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating_wrap {
  display: flex;
  justify-content: center;
}

.rating_wrap ul {
  display: flex;
  justify-content: center;
  padding-right: 10px;
}

.rating_wrap ul li {
  color: #ff9b0d;
}

.produc_text {
  text-align: center;
}

.product_img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 60px;
}

.produc_text h4 {
  color: #5a2914;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

ul.prd_rang li {
  color: rgb(102, 74, 38);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  position: relative;
  padding: 5px 10px;
}

ul.prd_rang li:after {
  position: absolute;
  width: 1px;
  height: 16px;
  content: "";
  background-color: #664a26;
  top: 9px;
  left: 0;
}

ul.prd_rang li:first-child:after {
  display: none;
}

.rating_wrap p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  position: relative;
  padding-left: 10px;
}

.rating_wrap p:after {
  position: absolute;
  width: 1px;
  height: 16px;
  content: "";
  background-color: #664a26;
  top: 5px;
  left: 0;
}

.product_img {
  margin-bottom: 30px;
  position: relative;
}

.product_img:after {
  background-image: url(../images/slider_corner.png);
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  top: 10px;
  right: -4px;
  width: 79px;
  height: 94px;
  background-size: 71px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transtn);
}

/* .product_slider_item {
  padding: 0px 15px;
} */

.slick-prev:before {
  content: "";
  position: absolute;
  content: "\f053";
  position: absolute;
  font-family: "fontawesome";
  color: #c81e4d;
  opacity: 1;
  transition: var(--transtn);
}

.slick-next:before {
  content: "";
  position: absolute;
  content: "\f054";
  position: absolute;
  font-family: "fontawesome";
  color: #c81e4d;
  opacity: 1;
  transition: var(--transtn);
}

.slick-prev,
.slick-next {
  width: 60px;
  height: 60px;
  top: 40%;
  border: 1px solid rgb(200, 30, 77);
  border-radius: 50px;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-prev:hover::before,
.slick-next:hover::before {
  color: #94727c;
}

.slick-prev:hover,
.slick-next:hover {
  border: 1px solid #94727c;
}

.slick-next {
  right: -70px;
}

.slick-prev {
  left: -70px;
}

.product_slider .slick-slide .product_item_wrp {
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.product_slider .slick-center .product_item_wrp {
  transform: scale(1.1);
  z-index: 2;
}

.product_slider .slick-center .product_item_wrp .product_img:after {
  opacity: 1;
  visibility: visible;
}

.product_slider .slick-track {
  padding: 90px 0;
}

/* .product_slider .slick-center .product_item_wrp .product_img {
  filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
} */

/* .product_slider .product_item_wrp .product_img::before {
  position: absolute;
  content: "";
  filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;

} */

.limited_sarot {
  position: absolute;
  bottom: 100px;
  right: -70px;
}

.limited_tomato {
  position: absolute;
  bottom: 40px;
  left: 60px;
}

/* product */

/* limited_sec */
.limited_sec {
  padding: var(--sec_padding);
  padding-top: 0;
  position: relative;
  overflow-x: hidden;
}

.low_perticle {
  position: absolute;
  right: -40px;
  bottom: 78px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  margin-top: 40px;
}

.menu-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.heart {
  width: 50px;
  height: 40px;
  background: url("../images/love_glow.png") no-repeat center/cover;
  position: relative;
  flex-shrink: 0;
}

.heart::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 1.5s infinite;
  z-index: -1;
}

.text strong {
  color: white;
  font-family: var(--heading_font_bold);
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
}

.text span {
  color: rgb(200, 30, 77);
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: left;
}

.text small {
  color: rgb(255, 255, 255);
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0px;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.limited_block_wrap {
  display: flex;
  border-radius: 60px;
  overflow: hidden;
}

.limited_right {
  width: 60%;
  flex: 0 0 auto;
  background-color: #fda7b4;
  position: relative;
  padding: 60px 30px 50px 60px;
}

.limited_left {
  width: 40%;
  flex: 0 0 auto;
}

.limited_left img {
  height: 100%;
}

.limited_shape {
  position: absolute;
  top: 0;
  left: -58px;
}

.limited_right .sec_side_headig h2 {
  color: #fff;
}

.limited_right .sec_side_headig p {
  color: rgb(255, 255, 255);
  line-height: 27px;
  letter-spacing: 0px;
}

.limited_right .sec_side_headig h6 {
  color: #c81e4d;
}

.limited_right h6.sub_title:before {
  background-color: #c81e4d;
}

/* limited_sec */

/* about_sec */
.about_sec {
  background-color: #fef2f4;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 118px;
}

.abt_tp {
  top: 50px;
  right: 40px;
  position: absolute;
}

.ab_bottom {
  position: absolute;
  bottom: -16px;
  right: -27px;
}

.abo_imag_all_wrp {
  position: relative;
  width: 100%;
  padding-right: 100px;
}

.abo_imag_all_wrp .about_img {
  width: 100%;
}

.abo_imag_all_wrp .about_img img {
  width: 100%;
}

.cookii_wrp {
  position: absolute;
}

.cookii_wrp {
  position: absolute;
  bottom: -90px;
  left: 0;
}

.about_btn {
  margin-top: 40px;
}

.about_para p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}

.about_para p+p {
  margin-top: 12px;
}

.about_para p strong {
  font-weight: 600;
}

.about_text {
  padding-top: 100px;
}

/* about_sec */

/* happy_customer */
.hapy-customer {
  padding: var(--sec_padding);
  position: relative;
  overflow-x: hidden;
  padding-bottom: 220px;
}

.customer_item {
  border-radius: 60px;
  background: rgb(252, 248, 245);
  padding: 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cus_rating_wrap ul {
  display: flex;
}

.cus_rating_wrap ul li {
  color: #ff9b0d;
}

.client_img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.client_img_wrap {
  display: flex;
  align-items: center;
}

.client_name h6 {
  color: rgb(90, 41, 20);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: left;
  font-family: var(--heading_font_regular);
  margin-right: 10px;
}

.client_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 40px;
}

.client_name {
  width: calc(100% - 65px);
  margin-left: 15px;
}

.client_img_al_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-top: auto;
}

.customer_card {
  padding: 20px 20px;
  height: auto;
}

.client_coment p {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0px;
}

.client_name p {
  color: rgb(145, 140, 134);
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0px;
}

.qutetion {
  max-width: 50px;
}

.love_qutetion {
  position: absolute;
  top: -30px;
  left: 30px;
}

.cus_rating_wrap {
  margin: 35px 0px 15px;
}

.customer_slider .slick-track {
  padding: 60px 0px 60px;
  display: flex;
  height: 100%;
}

.customer_slider .slick-arrow {
  top: unset;
  border-radius: 50%;
  bottom: -140px;
  transform: translate(0, -50%);
  right: unset;
  left: 45%;
}

.customer_slider .slick-next {
  margin-left: 90px;
}

.client_coment {
  margin-bottom: 20px;
}

/* .customer_card.slick-slide.slick-center .customer_item {
  background: rgb(255, 255, 255);
  filter: drop-shadow(0px 8px 6px rgba(0, 0, 0, 0.13));
} */

.hapy_top {
  position: absolute;
  top: 100px;
  left: 30px;
}

.hapy_tomato {
  position: absolute;
  top: 21%;
  right: -60px;
}

.hapy-customer .sec_center_headig {
  max-width: 970px;
}

/* happy_customer */

/* refund_sec */
.refund_sec {
  padding: var(--sec_padding);
  position: relative;
  overflow-x: hidden;
}

.refund_sec h2 {
  font-size: 52px;
}

.refund_para p {
  color: rgb(102, 74, 38);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}

.refund_para p strong {
  font-weight: 500;
}

.refund_para p+p {
  margin-top: 10px;
}

.refund_butn {
  margin-top: 30px;
}

.refund_text {
  padding-top: 140px;
}

.sweet_top {
  position: absolute;
  top: 70px;
  right: -36px;
}

.sw_ri_cor {
  position: absolute;
  right: -30px;
  bottom: 0;
}

.sweet_lf_corner {
  position: absolute;
  bottom: 0;
  left: -90px;
}

/* refund_sec */

/* dev===========================================2 */

/* sweet sec Start */
.sweet_sec .dish_slider.slick-slider {
  padding-top: 0px;
}

.sweet_sec .dish_slider .slider_card {
  width: 295px;
}

/* sweet sec End */
/* Faq Section Start */
/* .faq_wrap {
  border-radius: 70px;
  background: rgb(255, 232, 235);
  padding: 55px 30px;
} */
.faq_wrap {
  border-radius: 70px;
  background: rgb(255, 232, 235);
  padding: 55px 30px 40px;
}

.faq_wrap .sub_title {
  color: #c81e4d;
}

.faq_wrap .sub_title::after,
.faq_wrap .sub_title::before {
  color: #c81e4d;
}

.cstm_acdrion .accordion-item {
  border: none;
  border-radius: 0;
  background: transparent;
}

/* 
.cstm_acdrion .accordion-item:has(.accordion-collapse.show) {
  border-radius: 24px;
  background: rgb(255, 124, 144);
} */

.cstm_acdrion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-radius: 24px;
  background: rgb(255, 124, 144);
}

.cstm_acdrion .accordion-item .accordion-button {
  background: transparent;
  border-top: 1px solid rgb(255, 189, 199);
  padding: 32px 16px;
  color: rgb(90, 41, 20);
  font-family: var(--heading_font_medium);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.cstm_acdrion .accordion-item:has(.accordion-button:not(.collapsed))+.accordion-item .accordion-button {
  border-top: 1px solid transparent;
}

.cstm_acdrion .accordion-item .accordion-button:not(.collapsed) {
  border-top: none;
  box-shadow: none;
  padding: 15px 20px 15px;
  color: #fff;
}

.accordion-collapse .accordion-body {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  padding-top: 0;
}

.cstm_acdrion .accordion-item:first-of-type .accordion-button {
  border-top: 1px solid transparent;
}

.accordion-button::after {
  content: "\2b";
  font-family: "FontAwesome";
  position: absolute;
  background-image: none;
  transform: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c81e4d;
  right: 16px;
  transition: none;
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  background-image: none;
}

/* Faq Section End */

/* Our_Dish Section Start */
.our_dish_sec {
  overflow: hidden;
  padding: var(--sec_padding);
}

.sweet_sec {
  padding-top: 0;
}

.our_dish_wrap {
  display: flex;
}

.dish_txt_wrap {
  max-width: 446px;
}

.dish_txt_wrap .sec_side_headig h2 span {
  display: contents;
}

.dish_txt_wrap a {
  margin-top: 32px;
}

.dish_slider.slick-slider {
  width: 100vw;
  height: 100%;
  padding-top: 50px;
}

.dish_slider .slider_card {
  padding: 0 16px;
}

.slider_card_wrap {
  border-radius: 60px;
  background: rgb(252, 248, 245);
  padding: 9px;
  transition: var(--transtn);
}

.slider_card_wrap .slider_img {
  border-radius: 54px;
  overflow: hidden;
}

.slider_card_wrap .slider_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dish_slider.slick-slider .slick-list {
  height: 100%;
}

.slider_card_wrap h6 {
  color: rgb(90, 41, 20);
  font-family: var(--heading_font_regular);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  margin-top: 15px;
}

.dish_slider .slider_card.slick-current .slider_card_wrap {
  border-radius: 60px;
  box-shadow: 0px 2px 25px 0px rgba(93, 66, 27, 0.1);
  background: rgb(255, 255, 255);
}

.dish_slider .slider_card.slick-current .slider_card_wrap .slider_img {
  border-radius: 51px;
}

/* Our_Dish Section End */

/* Follow_Us Section Start */
.follow_us_sec {
  padding-bottom: 190px;
  overflow: hidden;
  position: relative;
}

.follow_us_sec::after {
  content: "";
  position: absolute;
  background: url("../images/follow_us_after_img2.png") no-repeat center;
  width: 156px;
  height: 180px;
  right: -63px;
  top: -19px;
}

.follow_us_sec .sub_title {
  color: rgb(255, 138, 138);
}

.follow_us_sec .sub_title::after,
.follow_us_sec .sub_title::before {
  background-color: #ff8a8a;
}

.follow_us_sec h2 {
  text-transform: lowercase;
  font-family: var(--body_font);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
}

.follow_us_sec h2 img {
  height: 54px;
  width: 54px;
}

.follow_us_sec .sec_center_headig p {
  max-width: 833px;
  margin: 0 auto;
}

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

.insta_btn {
  text-align: center;
  margin-top: 50px;
}

.insta_btn .site_btn {
  display: flex;
  max-width: 200px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  column-gap: 8px;
}

.follow_us_sec .container {
  position: relative;
}

.follow_us_sec .container::before {
  content: "";
  position: absolute;
  background: url("../images/follow_us_after_img1.png") no-repeat center;
  width: 144px;
  height: 144px;
  left: -70px;
  top: -1px;
}

.contact_frm_sec::after {
  content: "";
  position: absolute;
  background: url("../images/mixed_spoon.png") no-repeat center;
  width: 208px;
  height: 250px;
  right: 0;
  top: -180px;
}

/* Follow_Us Section End */

/* Contact_Us Section Start */
.contact_frm_sec {
  position: relative;
}

.cntct_frm_wrap {
  border-radius: 60px;
  background: #fda7b4;
  position: relative;
  padding: 60px 100px;
  margin-bottom: -122px;
  z-index: 2;
}

.cntct_frm_wrap::before {
  content: "";
  position: absolute;
  top: -153px;
  left: 41px;
  width: 300px;
  height: 210px;
  z-index: 1;
  background: url("../images/two_cookies.png") no-repeat center;
}

.cntct_frm_wrap h6 {
  color: rgb(200, 30, 77);
}

.cntct_frm_wrap h6::before,
.cntct_frm_wrap h6::after {
  background-color: #c81e4d;
}

.cntct_frm_wrap h2 {
  color: #fff;
}

.cntct_frm_wrap h2 span {
  color: #c81e4d;
}

.cntct_frm_wrap p {
  color: rgb(255, 242, 244);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
}

.cntct_frm_wrap form {
  display: flex;
  align-items: center;
}

.inp_fld {
  padding: 17px 25px;
  border: 1px solid rgba(128, 74, 17, 0.15);
  border-radius: 90px;
  background: rgb(255, 255, 255);
  min-width: 299px;
  color: #804a11;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  transition: var(--transtn);
  margin-right: 18px;
}

.email {
  min-width: 376px;
  margin-right: 26px;
}

.inp_fld::placeholder {
  color: #804a11;
}

.cntct_btn {
  background-color: #c81e4d;
}

.cntct_btn.site_btn::after {
  background-image: url("../images/contact_us_btn_after.png");
}

.cntct_btn:hover {
  background-color: rgba(200, 30, 78, 0.507);
}

.cntct_frm_wrap .sec_center_headig {
  margin-bottom: 35px;
}

/* Contact_Us Section End */

/* Footer Section Start */
.footer_sec {
  background: rgb(255, 232, 235);
  padding: 221px 0 35px;
  overflow: hidden;
  position: relative;
}

.footer_sec::before {
  content: "";
  position: absolute;
  background: url("../images/footer_cookee_img2.png") no-repeat center;
  width: 205px;
  height: 199px;
  left: -108px;
  top: 149px;
}

.footer_sec .ftr_frst_para h3 span {
  color: #c81e4d;
}

.ftr_frst_para p {
  color: rgb(102, 74, 38);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.ftr_frst_para {
  margin-right: -30px;
  margin-top: 30px;
}

.footer_socal {
  margin-top: 30px;
}

.footer_logo {
  max-width: 224px;
  margin: 0 auto;
}

.footer_socal {
  text-align: right;
}

.footer_socal ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 14px;
}

.footer_socal ul li a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(251, 205, 211);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_socal ul li a i {
  color: #c81e4d;
  font-size: 16px;
}

.ftr_frst_para h3 {
  margin-bottom: 15px;
}

.footer_socal h3 {
  margin-bottom: 5px;
}

.ftr_links ul {
  border-top: 0.5px solid rgb(255, 192, 201);
  border-bottom: 0.5px solid rgb(255, 192, 201);
  padding: 11px 0;
  display: flex;
  align-items: center;
}

.ftr_links ul li {
  padding: 13px 48px;
  border-left: 0.5px solid rgb(255, 192, 201);
  transition: var(--transtn);
}

.ftr_links ul li:first-child {
  padding-left: 20px;
  border-left: none;
}

.ftr_links ul li:last-child {
  padding-right: 20px;
}

.ftr_links ul li a {
  color: rgb(202, 83, 116);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: var(--transtn);
}

.ftr_links ul li a.active {
  color: #c81e4d;
  font-weight: 600;
}

.ftr_links ul li a:hover {
  color: #c81e4d;
}

.ftr_links {
  margin-top: 115px;
  margin-bottom: 80px;
  position: relative;
}

.disclamer {
  background: rgb(248, 212, 217);
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
  padding: 50px 0;
  overflow: hidden;
}

.main_ftr_part {
  position: relative;
}

.main_ftr_part::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -140px;
  background: url("../images/footer_cookee_img1.png") no-repeat;
  width: 175px;
  height: 169px;
  z-index: 1;
}

.disclamer h4 {
  margin-bottom: 9px;
}

.disclamer p {
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
}

.disclamer p a {
  color: #c81e4d;
  transition: var(--transtn);
}

.footer_sec .cpy_right {
  color: rgb(183, 107, 128);
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

/* Footer Section End */

/* Process Start */

.treats_wrap ul {
  display: flex;
  position: relative;
}

.treats_wrap ul::after {
  content: "";
  position: absolute;
  background: url(../images/treatswrap_vector.png) no-repeat center;
  left: -7px;
  top: 21px;
  height: 200px;
  width: 1126px;
  scale: 1.01;
  pointer-events: none;
}

.treates_card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.treates_card p {
  color: #5a2914;
  line-height: 26px;
}

.treates_card p+p {
  margin-top: 10px;
}

.process_nmbr {
  color: #5a2914;
  font-size: 74px;
  font-weight: 500;
  line-height: 78px;
  opacity: 0.05;
  font-family: var(--heading_font_medium);
  margin: 36px 0 20px;
}

.process_section {
  padding: var(--sec_padding);
  background: #fef2f4;
  overflow: hidden;
}

.treates_card .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.treates_card .icon::after {
  content: "";
  position: absolute;
  background: url(../images/pink_circle.png) no-repeat center;
  width: 87px;
  height: 87px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon img {
  z-index: 1;
  position: relative;
}

.treats_wrap ul li:nth-child(even) .icon::after {
  background: url(../images/amber_circle.png) no-repeat center;
}

.treats_wrap ul li:nth-child(even) .treates_card {
  flex-direction: column-reverse;
  height: 230px;
}

.treats_wrap ul li:nth-child(even) .process_nmbr {
  margin: 20px 0 36px;
}

.treats_wrap ul li:nth-child(even) .treates_card p+p {
  margin-top: 0;
  margin-bottom: 10px;
}

.treats_wrap ul li {
  width: 20%;
  flex: 0 0 auto;
}

.treats_wrap {
  margin-top: 80px;
  margin-bottom: 40px;
}

.rolling_belna {
  position: absolute;
  left: -220px;
  bottom: -200px;
}

.cookie_icon {
  position: absolute;
  right: -220px;
  top: -100px;
  max-width: 176px;
}

.process_section .container {
  position: relative;
}

/* Process End */

/* inner_page_start */
.inner_baner_full {
  padding: 204px 0px 0px;
  background-color: #fef2f4;
  overflow: hidden;
}

.inr_ban_text {
  max-width: 960px;
  margin: auto;
  text-align: center;
  padding-top: 150px;
}

.inr_ban_text h1 {
  font-size: 54px;
  font-weight: 500;
  line-height: 78px;
  margin-bottom: 10px;
}

.inner_baner_full .container {
  position: relative;
}

.top_perticle {
  position: absolute;
  top: 36%;
  right: -20%;
}

.product_main_sec {
  padding: var(--sec_padding);
  position: relative;
  overflow: hidden;
  background-color: #fef2f4;
  padding-top: 100px;
}

.tp_pr_perticle {
  position: absolute;
  top: 0px;
  left: -30px;
}

.min_prd_heading {
  margin-bottom: 50px;
}

.min_prd_heading h3 {
  display: flex;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.min_prd_heading h3 span {
  width: 44px;
  height: 44px;
  margin-right: 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* prodect_sec */
.prd_item_wap {
  width: 100%;
}

.prd_item_wap a {
  display: block;
  width: 100%;
  padding: 0px 5px;
}

.prd_item_wap a:hover .product_img:after {
  opacity: 1;
  visibility: visible;
}

.prd_item_wap a:hover .produc_text {
  color: #5a2914;
}

.prd_item_wap a:hover .produc_text p {
  color: var(--body_color);
}

.prd_item_wap a:hover .product_img {
  filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
}

.prd_item_wap a:hover .product_item_wrp {
  transform: scale(1.1);
}

.prd_item_wap a .product_item_wrp {
  transition: var(--transtn);
  transform: scale(1);
}

.produc_text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 10px;
}

.prd_main_row_wrp .row>* {
  margin-top: 50px;
}

.prd_main_row_wrp .row {
  margin-top: -50px;
}

.lo_hand {
  position: absolute;
  bottom: 70px;
  right: -50px;
}

.product_tomato {
  position: absolute;
  bottom: 40%;
  left: -3%;
}

/* prodect_sec */

/* delights_sec */
.sesonal_delights {
  padding: var(--sec_padding);
  position: relative;
  overflow: hidden;
}

.sesonal_delights .tp_pr_perticle {
  position: absolute;
  top: 30px;
  left: 0px;
}

.sesonal_delights .lo_hand {
  position: absolute;
  bottom: 40%;
  right: -23px;
}

.sesonal_delights .product_tomato {
  position: absolute;
  bottom: 10%;
  left: -12px;
}

/* delights_sec */
/* special_edits */
.special_edits {
  background-color: #fef2f4;
  padding: var(--sec_padding);
  overflow: hidden;
  position: relative;
}

.special_edits .container {
  position: relative;
}

.fr_prd_page {
  background-color: #fff;
}

.special_tp_perticle {
  position: absolute;
  top: -50px;
  right: -167px;
}

.special_tomato {
  position: absolute;
  top: 50%;
  left: -210px;
}

.fr_prd_page:after {
  display: none;
}

.special_edit_hand {
  position: absolute;
  bottom: -60px;
  right: -130px;
}

.fr_prd_page .rolling_belna {
  position: absolute;
  left: -110px;
  top: -110px;
}

/* special_edits */
/* inner_page_start */

/* About Us Page Start ============ */
.about_page_sec .abo_imag_all_wrp {
  padding-right: 0;
  padding-left: 100px;
}

.about_page_sec {
  padding-top: 230px;
  padding-bottom: 85px;
}

.about_page_sec .cookii_wrp {
  position: absolute;
  bottom: -100px;
  right: -82px;
  left: auto;
}

.about_page_sec .container {
  position: relative;
}

.about_page_sec .container::before {
  content: "";
  position: absolute;
  left: -99px;
  top: 20px;
  width: 117px;
  height: 123px;
  background: url("../images/ban_glaps.png") no-repeat center;
}

.about_page_sec::before {
  content: "";
  position: absolute;
  left: -54px;
  bottom: 129px;
  width: 150px;
  height: 145px;
  background: url("../images/abou_perticl_top.png") no-repeat center;
  background-size: cover;
}

.about_page_sec::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 259px;
  width: 161px;
  height: 150px;
  background: url("../images/ban_tomato.png") no-repeat center;
  background-size: cover;
}

.flw_me_sec {
  padding: var(--sec_padding);
  padding-bottom: 224px;
  position: relative;
  overflow: hidden;
}

.flw_me_sec::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 176px;
  width: 250px;
  height: 145px;
  background: url("../images/cok_han.png") no-repeat center;
}

.flw_me_sec::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 161px;
  height: 150px;
  background: url("../images/ban_tomato.png") no-repeat center;
  background-size: cover;
}

.flw_icn {
  max-width: 825px;
  margin: 0 auto;
}

.about_page_sec .sub_title {
  padding-left: 0;
}

.flw_icn ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 70px;
}

.flw_icn ul li {
  width: calc(25% - 70px);
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.flw_icn ul li .icon_img {
  width: 115px;
  height: 100px;
  margin-bottom: 30px;
}

.flw_icn ul li .icon_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .flw_icn ul li a {
  color: rgb(102, 74, 38);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
} */
.flw_icn ul li a {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1px;
}

.flw_icn ul li a:hover .icon_img {
  opacity: 0.7;
}

.flw_icn ul li a:hover {
  color: #c81e4d;
}

.abt_cntct_frm::after {
  display: none;
}

.contact_form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 46px;
  row-gap: 25px;
}

.contact_form .cntct_frm_input {
  width: calc(50% - 29px);
}

.contact_form .cntct_frm_input .cntct_box {
  width: 100%;
  color: rgb(128, 74, 17);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 15px 20px;
  border: 1px solid rgba(128, 74, 17, 0.15);
  border-radius: 90px;
  background: rgb(255, 255, 255);
  outline: none;
  min-width: 256px;
}

.contact_form .cntct_frm_input .cntct_box::placeholder {
  color: rgb(128, 74, 17);
}

.help_box {
  width: 100%;
}

.help_box .help_ask {
  width: 100%;
  color: rgb(128, 74, 17);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 20px 20px;
  border: 1px solid rgba(128, 74, 17, 0.15);
  border-radius: 30px;
  background: rgb(255, 255, 255);
  outline: none;
  resize: none;
  height: 136px;
}

.help_box .help_ask::placeholder {
  color: rgb(128, 74, 17);
}

/* cstm Checkbox */
.form-group {
  display: block;
  margin-bottom: 15px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #804a11;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -14px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  /* margin-top: 1px; */
  top: 4px;
}

.form-group input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 8px;
  width: 5px;
  height: 11px;
  border: solid #804a11;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* cstm Checkbox */

.chk_box label {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.contact_page_sec .about_para p {
  color: rgb(102, 74, 38);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 35px;
}

.frm_btn {
  width: 100%;
}

.frm_btn .site_btn {
  display: block;
  width: 100%;
}

.contact_page_sec .container::before {
  display: none;
}

.contact_page_sec .sub_title {
  color: #c81e4d;
}

.contact_page_sec .sub_title::before {
  background-color: #c81e4d;
}

.cntct_footer_sec {
  padding-top: 150px;
}

.contact_page_sec .cookii_wrp {
  position: absolute;
  bottom: -40px;
  right: -190px;
  left: auto;
}

.contact_page_sec::after {
  display: none;
}

.contact_page_sec .container {
  position: relative;
}

.contact_page_sec .container::after {
  content: "";
  position: absolute;
  right: -124px;
  top: 30px;
  width: 101px;
  height: 100px;
  background: url("../images/lov_lw_perticl.png") no-repeat center;
  background-size: cover;
}

.contact_page_sec::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 429px;
  width: 160px;
  height: 145px;
  background: url("../images/ban_tomato.png") no-repeat center;
  background-size: cover;
}

/* .contact_page_sec::after {
    
} */

.footer_socal ul li a:hover {
  background-color: #c3164b;
  color: #fff;
}

.footer_socal ul li a:hover i {
  color: #fff;
}

/* About Us Page End ============ */

/* own_set */
.choose_box_sec {
  background-color: #fef2f4;
  position: relative;
  overflow: hidden;
  padding: var(--sec_padding);
  padding-top: 70px;
}

.choose_box_sec .tp_pr_perticle {
  position: absolute;
  top: -70px;
  left: -200px;
}

.choose_box_sec .container {
  position: relative;
}

.choose_sec_tab ul.nav {
  justify-content: center;
}

.box_img {
  margin-left: 15px;
  max-width: 90px;
}

.choose_sec_tab .nav-pills .nav-link {
  border-radius: 20px;
  background: rgb(255, 255, 255);
  color: rgb(102, 74, 38);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
  height: 100%;
  padding: 54px 10px 20px 15px;
}

.choose_sec_tab .nav-pills .nav-link.active,
.choose_sec_tab .nav-pills .show>.nav-link {
  background: rgb(253, 167, 180);
  color: rgb(255, 255, 255);
}

.choose_sec_tab .nav-pills li.nav-item:not(:first-child) {
  margin-left: 40px;
}

.box_item {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.box_img img {
  height: 90px;
  margin-top: -100px;
  width: 90px;
}

.box_text {
  margin-top: auto;
  flex-grow: 1;
}

.choose_tab_item_list ul li:first-child {
  border-radius: 60px;
  background: rgb(200, 30, 77);
  padding: 25px 15px;
}

.choose_tab_item_list ul li:first-child h5 {
  color: rgb(255, 255, 255);
  font-family: var(--heading_font_medium);
  font-size: 18px;
  letter-spacing: 0px;
}

.choose_tab_item_list ul li:first-child .serial_no {
  color: rgb(255, 255, 255);
}

.choose_tab_item_list ul li {
  display: flex;
  align-items: center;
  border-radius: 28px;
  background: rgb(255, 255, 255);
  margin-bottom: 20px;
  padding: 15px 15px;
}

.product_details {
  width: 50%;
}

.serial_no {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(128, 74, 17);
  font-family: var(--heading_font_medium);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0px;
  text-align: left;
}

.price {
  display: flex;
  align-items: center;
  width: 20%;
}

.prd_content_wrap {
  display: flex;
}

.quantity {
  flex: 1;
}

.prd_content_wrap span {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
  flex: 0 0 auto;
}

.prd_content_wrap span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quantity_list {
  display: flex;
  align-items: center;
}

.choos_pr_quntity .quantity_list .item_list {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
}

.choos_pr_quntity .quantity_list .item_list:not(:first-child) {
  margin-left: 10px;
  padding-left: 10px;
}

.choos_pr_quntity .quantity_list .item_list:not(:first-child)::after {
  position: absolute;
  width: 1px;
  height: 16px;
  content: "";
  background-color: #664a26;
  top: 4px;
  left: 0;
}

.choos_pr_quntity {
  width: calc(100% - 90px);
  flex: 0 0 auto;
  margin-left: 20px;
}

.choos_pr_quntity h4 {
  font-family: var(--heading_font_medium);
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #5a2914;
}

.new {
  color: rgb(115, 19, 46);
  font-family: var(--heading_font_medium);
  font-size: 24px;
  line-height: 78px;
  letter-spacing: 0px;
  text-align: left;
}

.old {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  text-decoration-line: line-through;
  margin-left: 13px;
}

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

.tab-content {
  margin-top: 40px;
}

.total_product {
  display: flex;
  align-items: center;
  border-radius: 28px;
  background: rgb(255, 255, 255);
  padding: 15px 15px;
}

.total_product h6 {
  width: 23%;
  color: rgb(128, 74, 17);
  font-family: var(--heading_font_medium);
  font-size: 16px;
  letter-spacing: 0px;
  text-align: left;
  padding-left: 22px;
}

.tax {
  width: 30%;
}

.total {
  display: flex;
  width: 20%;
  align-items: center;
}

.total p {
  margin-right: 10px;
}

.order_now {
  flex: 1;
}

.order_now a.site_btn {
  display: block;
  width: 100%;
}

.choose_box_sec .lo_hand {
  position: absolute;
  bottom: -32px;
  right: -203px;
}

.choose_box_sec .product_tomato {
  position: absolute;
  bottom: 40%;
  left: -17%;
}

/* plus--product */
.number-dropdown {
  position: relative;
  width: 140px;
  background: #fff5f6;
  border-radius: 25px;
  display: flex;
  align-items: center;
}

.number-input {
  width: 100%;
  padding: 8px 30px 8px 21px;
  border: none;
  background: transparent;
  color: #5c2d1f;
  font-weight: bold;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
}

.number-input:focus {
  outline: none;
}

.dropdown-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 20px;
  color: #000000;
}

.number-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 165px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: none;
  z-index: 3;
  margin-top: 4px;
  list-style: none;
  padding: 0;
  padding-left: 10px;
}

.number-list li {
  cursor: pointer;
  color: #5c2d1f;
}

/* .number-list li:hover {
  background-color: #ffeaea;
} */

ul.number-list li:first-child {
  background-color: transparent;
  padding: 5px 5px 5px 0px;
}

ul.number-list li {
  padding: 2px;
  margin-bottom: 5px;
  line-height: 1;
}

.own_pg .cookie_icon {
  position: absolute;
  left: -171px;
  top: -150px;
  max-width: 176px;
}

/* own_set */

/* Product Details Page Start ============ */
.product_dtls_sec {
  padding-top: 230px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
}

.product_img_prt {
  position: sticky;
  top: 0;
}

.brd_nav {
  margin-bottom: 14px;
}

.brd_nav ul {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.brd_nav ul li {
  position: relative;
}

.brd_nav ul li a {
  color: rgb(102, 74, 38);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.brd_nav ul li span {
  color: rgb(102, 74, 38);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.brd_nav ul li::after {
  content: "/";
  position: absolute;
  right: -14px;
  font-size: 16px;
  color: #664a26;
  font-weight: 400;
  top: 2px;
  bottom: 0;
  height: 100%;
}

.brd_nav ul li:last-child:after {
  display: none;
}

.slider_big_img {
  border-radius: 60px;
  height: 532px;
  overflow: hidden;
  margin-bottom: 30px;
  width: 476px;
}

.slider_big_img img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.small_img {
  width: 84px !important;
  height: 84px;
  border-radius: 20px;
  overflow: hidden;
  padding: 1;
  margin: 0 6px;
}

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

.slider_big_img .slick-list {
  height: 100%;
  width: 100% !important;
}

.slider_big_img .slick-track {
  height: 100%;
  width: 100% !important;
}

.slider_nav_img .slick-list {
  max-width: 382px;
  padding: 0;
  margin: auto;
}

.product_dtls_sec .row .col-md-5 {
  padding-right: 0;
}

.slider_nav_img .slick-prev,
.slider_nav_img .slick-next {
  width: 50px;
  height: 50px;
  top: 48%;
  border: 1px solid rgb(200, 30, 77);
  border-radius: 50px;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider_nav_img .slick-next {
  right: -18px;
}

.slider_nav_img .slick-prev {
  left: -13px;
}

.product_dets_part {
  padding-left: 95px;
}

.top_product_dtls {
  display: flex;
  align-items: center;
  column-gap: 25px;
  margin-bottom: 15px;
}

.rating p {
  position: relative;
  color: rgb(102, 74, 38);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.rating p span {
  color: rgb(146, 114, 72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.rating p::before {
  content: "|";
  position: absolute;
  top: 0;
  bottom: 0;
  color: #664a26;
  font-weight: 300;
  left: -16px;
}

.product_dets_part h1 {
  color: rgb(90, 41, 20);
  font-family: var(--heading_font_medium);
  font-size: 44px;
  font-weight: 500;
  line-height: 55px;
  margin-bottom: 20px;
}

.product_dets_part p {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.prdct_features {
  margin-top: 25px;
}

.prdct_features ul {
  margin-top: 15px;
}

.prdct_features ul li {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding-left: 45px;
  position: relative;
  margin-bottom: 10px;
}

.prdct_features ul li::before {
  content: "";
  position: absolute;
  background: url("../images/list_heart_small.png") no-repeat center;
  left: 0;
  top: 0;
  width: 30px;
  height: 25px;
}

.select_qunty {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.select_qunty h6 {
  color: rgb(102, 74, 38);
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}

.qunty_lists ul {
  display: flex;
  align-items: center;
  column-gap: 14px;
}

.qunty_lists ul li {
  min-width: 118px;
  position: relative;
}

.qunty_lists ul li p {
  position: absolute;
  bottom: -22px;
  color: rgb(115, 19, 46);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  left: 0;
  right: 0;
  text-align: center;
}

.qunty_lists ul li p span {
  font-weight: 600;
}

.quntity_box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.main_box {
  border-radius: 20px;
  padding: 13px 15px;
  background: rgb(252, 248, 245);
  border: 1px solid transparent;
  transition: var(--transtn);
  display: flex;
  flex-direction: column;
}

.main_box .gram {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.main_box .price_gram {
  color: rgb(102, 74, 38);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.quntity_box input:checked~.main_box {
  border: 1px solid rgb(253, 167, 180);
  background: rgb(255, 255, 255);
}

.price_main_con p {
  color: rgb(102, 74, 38);
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
}

.product_price_wrap {
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-bottom: 20px;
}

.price_wrap p {
  color: rgb(115, 19, 46);
  font-family: var(--heading_font_medium);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}

.off_price {
  color: rgb(102, 74, 38);
  font-family: var(--body_font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration-line: line-through;
  margin: 0 12px;
}

/* .save_price {
  padding: 6px 10px;
  font-family: var(--body_font);
  border-radius: 20px;
  background: rgb(115, 19, 46);
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
} */
.save_price {
  padding: 12px 20px;
  font-family: var(--body_font);
  border-radius: 20px;
  background: rgb(115, 19, 46);
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  display: flex;
}

.prdct_features p {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.care_instruction ul li {
  color: rgb(102, 74, 38);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding-left: 32px;
}

.care_instruction ul li span {
  font-weight: 600;
}

.care_instruction ul li::before {
  background: url("../images/verify_tick.png") no-repeat center;
  width: 23px;
  height: 27px;
}

.info_wrap {
  margin-top: 28px;
  margin-bottom: 30px;
}

.info_wrap h6 {
  color: rgb(128, 74, 17);
  font-family: var(--heading_font_medium);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration-line: underline;
  text-transform: capitalize;
  font-style: italic;
  margin-bottom: 10px;
}

.share_icon ul {
  display: flex;
  align-items: center;
  column-gap: 13px;
}

.share_icon ul li {
  padding-left: 0;
}

.share_icon ul li::before {
  display: none;
}

.share_icon ul li a {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(255, 239, 241);
  transition: var(--transtn);
  font-size: 18px;
  color: rgb(98, 15, 38);
}

.share_icon ul li a:hover {
  opacity: 0.7;
}

.reletad_product_sec {
  padding: var(--sec_padding);
}

.details_process_sec {
  padding-top: 0;
  position: relative;
}

.pd_r1 {
  position: absolute;
  bottom: 22%;
  left: -3%;
}

.pd_r2 {
  position: absolute;
  top: 20px;
  right: -40px;
}

.pd_r3 {
  position: absolute;
  top: 90px;
  left: -80px;
}

.pd_r5 {
  position: absolute;
  right: 10px;
  bottom: 100px;
}

.prdt_dtls_hppy_cstm {
  padding-bottom: 320px;
}

.pd_cntct_frm_sec::after {
  display: none;
}

.pd_img1 {
  position: absolute;
  top: 200pxright;
  top: 219px;
  right: -30px;
}

.pd_img2 {
  position: absolute;
  left: -20px;
  top: 540px;
}

.pd_img3 {
  position: absolute;
  left: 40px;
  bottom: 10px;
}

.prdct_features h4 {
  color: #804a11;
}

.disclamer p a:hover {
  text-decoration: underline;
}

/* Product Details Page End ============ */

.extra_hdr_icon_mob {
  display: none;
}

span.cart-count {
  position: absolute;
  top: -9px;
  right: -3px;
  background-color: #fda7b4;
  color: #fff;
  width: 10px;
  height: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 12px;
}

.page-template-template-home .banner .ban_text h1 {
  font-size: 50px;
  line-height: 60px;
}

/* return_refund_sec ==============17/06/25*/
.refund_rturn_sec {
  background-color: #fef2f4;
  padding: var(--sec_padding);
  padding-top: 350px;
  overflow: hidden;
}

.refund_rturn_sec .container {
  position: relative;
}

.had_perti {
  position: absolute;
  top: -90px;
  left: -244px;
}

.cookies_prti {
  position: absolute;
  bottom: 0;
  right: -290px;
}

.return_refund_content .sec_side_headig h1.sub_title {
  padding-left: 0;
}

.return_refund_content {
  max-width: 930px;
}

.return_refund_content .sec_side_headig {
  margin-bottom: 25px;
}

.return_refund_content p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.return_refund_content p strong {
  font-weight: 600;
}

.return_refund_content h5 {
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 18px;
  font-family: var(--body_font);
  text-transform: uppercase;
}

.return_refund_content h6 {
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 18px;
  font-family: var(--body_font);
}

.return_refund_content p+p {
  margin-top: 10px;
}

.ship_fr_text ul li span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.ship_fr_text ul li+li {
  margin-top: 20px;
}

/* return_refund_sec=============17/06/25 */

/* product details start  */
.price_wrap span.woocommerce-Price-amount.amount bdi {
  display: flex;
}

span.save_price bdi {
  margin-left: 8px;
}

/* product details end */

/* 18-07-2025 start */
.client_name h6 {
  font-size: 17px;
}

.no_user_img {
  border: 1px solid #000;
}

.no_user_img img {
  max-width: 25px;
}

.frm_btn .site_btn:hover {
  background-color: var(--sub_title_color);
  color: #fff;
  background-image: url(../images/butn_img_after.png);
}

/* 18-07-2025 end  */
/* 21-07-25 */
.small_img.slick-slide.slick-current img {
  border: 2px solid #d4943a;
  overflow: hidden;
  border-radius: 20px;
}

/* 21-07-25 */
/* 22-07-25 */
.cntct_btn:hover {
  background-color: rgba(200, 30, 78, 0.507);
  background-image: url(../images/contact_us_btn_hover.png);
}

.contact_frm_sec_rspns_cls .wpcf7 form .wpcf7-response-output {
  bottom: 10px;
  max-width: 70%;
}

.slider_card_wrap .slider_img {
  border-radius: 54px;
  overflow: hidden;
  height: 255px;
}

.woocommerce-account a.woocommerce-privacy-policy-link {
  color: #d4943a;
}

.woocommerce-account a.woocommerce-privacy-policy-link:hover {
  color: #fda7b4;
  text-decoration: underline;
}

header.site_hdr.header_user_has .nav_link {
  font-size: 14px;
}

header.site_hdr.header_user_has .ste_logo_wrp a {
  transform: translate(-110%, -60%);
  max-width: 100px;
}

span#user-greetings {
  font-size: 12px;
  padding-left: 5px;
  text-transform: capitalize;
}

.dish_slider .slider_card .slider_card_wrap {
  position: relative;
}

.slider_card_avable {
  position: absolute;
  background-color: #fda7b4;
  padding: 2px 10px;
  border-radius: 30px;
  left: 25px;
  top: 31px;
  font-size: 15px;
  color: #fff;
}

.new_shop_btn_cart {
  margin-top: 20px;
}

.new_shop_btn_cart a.site_btn {
  font-family: var(--body_font);
}

.dish_slider .slick-track {
  padding: 40px 0px;
}



/* 25-07-25 */

.product_img {
  filter: none;
  -webkit-filter: none;
  /* Safari fallback */
  box-shadow: none;
  position: relative;
  padding: 20px 20px;
}

.product_slider .slick-center .product_item_wrp .product_img::before {
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
  -webkit-filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
  position: absolute;
  left: 0;
  bottom: 20px;
  background-color: #fff;
  z-index: -1;
  border-radius: 60px;
  right: 0;
  margin: auto;
}

/* .product_slider .slick-center .product_item_wrp .product_img {
    filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
    -webkit-filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13)); 
} */
/* 
.product_slider_item {
    padding: 0px 20px;
} */


.customer_item {
  position: relative;
  filter: none;
  -webkit-filter: none;
  /* Safari fallback */
  box-shadow: none;
}


/* .customer_card.slick-slide.slick-current{
  filter: drop-shadow(0px 8px 6px rgba(0, 0, 0, 0.13));
   -webkit-filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13)); 
} */


.customer_card.slick-slide.slick-current .customer_item {
  background: rgb(255, 255, 255);
  filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
  -webkit-filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
}

/* .customer_card.slick-slide.slick-current::before {
    content: "";
  width: calc(100% - 40px);
    height: calc(100% - 40px);
    filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
    -webkit-filter: drop-shadow(0px 9px 15px rgba(0, 0, 0, 0.13));
    position: absolute;
    left: 0;
    bottom: 20px;
    background-color: #fff;
    z-index: -1;
    border-radius: 60px;
    right: 0;
    margin: auto;
} */

.our_dish_sec .dish_slider .slider_card {
  width: 295px;
}

.my_account_login_form_page_cls .woocommerce-notices-wrapper {
  width: 100%;
}

.my_account_login_form_page_cls .woocommerce {
  flex-wrap: wrap;
}

/* 25-07-25 */
/* ;we]f;];f][;]f tudfukuogi;fshytfilp9bpugerghrtghrsadfadetsdgdtefwetgeryrtgsjkkuferrthy7fsgdfhfsdfferterytryhsdfsdfoljgjkguyi8vsdgafsgrdgggggh*/

/* about-page_css-12-09-25 */
.about_awrd_img {
  position: absolute;
  bottom: -49px;
  left: -40px;
}



.about_awrd_img.about_awrd_img_home_cls {
  position: absolute;
  bottom: -113px;
  left: unset;
  right: 0px;
}

/* 12-09-25 */
/* about-page_css-12-09-25 */