@font-face {
  font-family: 'Lora-Regular';
  src: url('/assets/fonts/Lora-Regular.woff2') format('woff2'),
    url('/assets/fonts/Lora-Regular.woff') format('woff'),
    url('/assets/fonts/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Lora-Medium';
  src: url('/assets/fonts/Lora-Medium.woff2') format('woff2'),
    url('/assets/fonts/Lora-Medium.woff') format('woff'),
    url('/assets/fonts/Lora-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'GeneralSans-Light';
  src: url('/assets/fonts/GeneralSans-Light.woff2') format('woff2'),
    url('/assets/fonts/GeneralSans-Light.woff') format('woff'),
    url('/assets/fonts/GeneralSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'GeneralSans-Regular';
  src: url('/assets/fonts/GeneralSans-Regular.woff2') format('woff2'),
    url('/assets/fonts/GeneralSans-Regular.woff') format('woff'),
    url('/assets/fonts/GeneralSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'GeneralSans-Medium';
  src: url('/assets/fonts/GeneralSans-Medium.woff2') format('woff2'),
    url('/assets/fonts/GeneralSans-Medium.woff') format('woff'),
    url('/assets/fonts/GeneralSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'DancingScript-Regular';
  src: url('/assets/fonts/DancingScript-Regular.woff2') format('woff2'),
    url('/assets/fonts/DancingScript-Regular.woff') format('woff'),
    url('/assets/fonts/DancingScript-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'DancingScript-Bold';
  src: url('/assets/fonts/DancingScript-Bold.woff2') format('woff2'),
    url('/assets/fonts/DancingScript-Bold.woff') format('woff'),
    url('/assets/fonts/DancingScript-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --main-color: #a1079e;
  --main-hover-color: #8e068c;
  --serif-regular: 'Lora-Regular';
  --serif-medium: 'Lora-Medium';
  --sans-light: 'GeneralSans-Light';
  --sans-regular: 'GeneralSans-Regular';
  --sans-medium: 'GeneralSans-Medium';
  --dancing-script-regular: 'DancingScript-Regular';
  --dancing-script-bold: 'DancingScript-Bold';
}

body {
  font-family: var(--sans-regular);
  font-optical-sizing: auto;
  font-style: normal;
  color: #000000;
  font-size: 16px;
  line-height: 1.6em;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif-regular);
  clear: both;
  color: #000000;
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 1.3em;
  pointer-events: none;
  letter-spacing: .5px;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-family: var(--sans-regular);
  letter-spacing: .5px;
  line-height: 1.7;
  margin-bottom: 15px;
  pointer-events: none;
  font-weight: unset;
}

b,
strong {
  font-family: var(--sans-medium);
}

em {
  font-family: var(--dancing-script-bold);
}

a,
li,
button {
  font-family: var(--sans-medium);
  letter-spacing: .5px;
  font-size: 15px;
}

ul {
  list-style: none;
  margin: auto;
  padding: 0;
}

section {
  padding: 20px 0;
}

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

a {
  pointer-events: painted;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button:focus {
  border: none;
  outline: none;
}

select {
  color: #000;
}

select:invalid,
select option[value=""] {
  color: #757575
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #6f6f6f;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #525252;
}

input:focus {
  border: none;
  outline: none;
}

::selection {
  background: var(--main-color);
  color: #ffffff;
}

::-moz-selection {
  background: var(--main-color);
  color: #ffffff;
}

::-webkit-selection {
  background: var(--main-color);
  color: #ffffff;
}


.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

/*==========================================*
NavBar header
*==========================================*/

.navbar {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem 1rem;
  transition: all 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  position: absolute;
  top: 24%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-family: serif;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--main-color);
  z-index: 1001;
}

.scrolled .logo {
  top: 21%;
  font-size: 2.8rem;
}

.search,
.order,
.fav {
  position: absolute;
  top: 17%;
  right: auto;
  left: 85px;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 16px;
  border: 1px solid rgb(239 239 239);
  background-color: rgb(251 250 249);
  border-radius: 4px;
  height: 47px;
  padding: 2px 26px 0px 30px;
  color: #848484;
  align-content: center;
  z-index: 1001;
  transition: all ease-in-out .25s;
}

.order {
  right: 25px;
  left: auto;
  background-color: var(--main-color);
  color: #fff;
  padding: 3px 28px 0px 21px;
}

.fav {
  top: 16%;
  right: 0px;
  left: auto;
  border-radius: 50px;
  height: 50px;
  padding: 12px;
}

.fav span {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background-color: var(--main-color);
  color: #fff;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 4px 5px 3px;
}

.order:hover,
.search:hover,
.fav:hover {
  background-color: var(--main-hover-color);
  transform: translateX(-50%) scale(1.03);
}

.search:hover,
.fav:hover {
  background-color: rgb(239, 239, 239);
}

.order img,
.search img {
  position: relative;
  width: 25px;
  bottom: 1px;
  left: -3px;
  font-size: 17px;
}

.search img {
  width: 16px;
  bottom: 2px;
  left: -9px;
  filter: invert(.48);
}

.fav img {
  width: 26px;
}

.fav:hover img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(77%) saturate(7154%) hue-rotate(298deg) brightness(88%) contrast(98%);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 30px;
  height: 24px;
  position: absolute;
  top: 2.5rem;
  left: 25px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #333;
  height: 2.5px;
  border-radius: 3px;
  position: absolute;
  width: 100%;
  transition: 0.3s ease;
}

.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span::before {
  content: '';
  top: -8px;
}

.nav-toggle-label span::after {
  content: '';
  top: 8px;
}

.nav-toggle:checked+.nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked+.nav-toggle-label span::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle:checked+.nav-toggle-label span::after {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 5.5rem;
  transition: all ease-in-out 0.25s;
}

.scrolled .nav-menu {
  margin-top: 4rem;
}

.nav-menu li {
  transition: all ease-in-out 0.25s;
}

.nav-menu li a {
  font-size: 14.5px;
  line-height: 21px;
  color: #333;
  padding: 2px 0.5rem;
}

.nav-menu li:hover {
  transform: scale(1.05);
}

.nav-menu li:nth-child(3) a {
  color: var(--main-color);
}

.order-toggle,
.search-toggle {
  display: none;
}

.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0009;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2000;
}

.search-bar-inner {
  position: relative;
  width: 100%;
  height: 136px;
  background-color: #fff;
  margin: 0 auto;
  padding: 0;
  display: block;
  align-content: center;
  text-align: center;
}

.search-input {
  position: relative;
  top: -5px;
  left: -15px;
  font-family: var(--sans-regular);
  font-size: 15px;
  width: 60%;
  max-width: 700px;
  padding: 1rem 2.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.search-bar-inner::before {
  position: relative;
  top: 22px;
  right: -48px;
  content: '';
  display: inline-block;
  background-image: url(/assets/icons/search.png);
  width: 30px;
  height: 30px;
  background-size: 18px;
  background-repeat: no-repeat;
  margin-right: 13px;
  margin-bottom: 13px;
  z-index: 10;
  filter: invert(.5);
}

input:focus {
  border: 1px solid var(--main-color);
  outline: none;
}

.search-input::placeholder {
  color: #888;
}

.search-close {
  position: absolute;
  right: 55px;
  top: 45px;
  border: 1px solid #bdbdbd;
  border-radius: 50px;
  font-family: var(--sans-light);
  background: rgb(250 248 248);
  font-size: 1.8rem;
  line-height: 1;
  width: 43px;
  height: 42px;
  display: block;
  align-content: center;
  cursor: pointer;
  color: #8e8989;
  transition: all ease-in-out .25s;
}

.search-close:hover {
  transform: scale(1.03);
}

.nav-menu .nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: visible;
}

.nav-menu .nav-link .path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.6s ease-in-out;
}

.nav-menu .nav-link .svg {
  position: absolute;
  bottom: -4px;
  left: -6px;
  width: 117%;
  height: 35px;
  pointer-events: none;
}

.nav-menu .nav-link:hover .path {
  stroke-dashoffset: 0;
}

.m-btn {
  display: none;
}

@media (min-width: 1700px) {


  .logo {
    font-size: 3.3rem;
  }

  .nav-menu li a {
    font-size: 16.5px;
  }

  .search,
  .order {
    font-size: 16px;
  }

  .scrolled .nav-menu {
    margin-top: 5.5rem;
  }

  .scrolled .logo {
    top: 24%;
  }

}

@media (max-width: 992px) {

  .scrolled .nav-menu {
    margin-top: 5rem;
  }

}

@media (max-width: 768px) {

  .navbar {
    padding: 2.5rem 1rem;
  }

  .nav-toggle-label {
    display: block;
  }

  .logo {
    position: relative;
    top: 0rem;
    left: 9px;
  }

  .scrolled .logo {
    font-size: 3rem;
  }

  .fav {
    top: 27%;
    right: 47px;
  }

  .search {
    top: 29%;
    right: -15px;
    left: auto;
    border-radius: 50px;
    height: 49px;
    padding: 14px;
  }

  .order {
    top: 27%;
    right: 107px;
    height: 50px;
    padding: 8px;
    border-radius: 50px;
  }

  .order img {
    width: 33px;
    left: 0;
    bottom: -0.5px;
  }

  .search img {
    width: 22px;
    bottom: 2px;
    left: 0px;
    filter: brightness(0.5);
  }

  .search span,
  .order span {
    display: none;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    width: 100%;
    display: block;
    font-size: 22px;
    padding: 1.3rem 0;
    letter-spacing: 0.5px;
  }

  .nav-menu {
    position: fixed;
    top: -85px;
    left: -100%;
    width: 100%;
    height: 100svh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .5rem;
    padding: 120px 30px 50px;
    transition: left 0.5s ease-in-out;
    z-index: 1000;
  }

  .nav-toggle:checked~.nav-menu {
    left: 0;
  }

  .search-close {
    font-size: 24px;
    right: 15px;
    top: 13px;
    width: 34px;
    height: 34px;
  }

  .nav-menu .nav-link .svg {
    display: none;
  }

  .nav-menu li:hover {
    transform: scale(1);
  }

}

@media (max-width: 600px) {

  .search {
    display: none;
  }

  .fav {
    right: -5px;
  }

  .order {
    display: none;
  }

  .order-toggle,
  .search-toggle {
    display: block;
  }

  .order-toggle {
    background-color: rgb(161 7 158);
    font-size: 17px !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 15px 20px 9px 11px !important;
    margin-top: 25px;
    text-align: center;
  }

  .search-toggle {
    font-size: 17px !important;
    border-radius: 4px;
    margin-top: 10px;
    padding: 20px 20px 19px 11px !important;
    border: 1px solid rgb(225 225 225);
    background-color: rgb(251 250 249);
    text-align: center;
  }

  .order-toggle img {
    width: 40px;
  }

  .search-toggle img {
    width: 20px;
    margin-right: 9px;
    margin-top: -7px;
  }

  .nav-menu li a {
    font-size: 20px;
    padding: 1rem 0;
  }

  .m-btn {
    display: block;
  }

}

@media (max-width: 480px) {

  .search-bar-inner {
    height: 165px;
  }

  .search-input {
    top: 6px;
    left: -25px;
    width: 80%;
  }

  .search-bar-inner::before {
    top: 34px;
    right: -39px;
  }

}

@media (max-width: 400px) {

  .logo {
    font-size: 2.6rem;
  }

  .nav-menu {
    padding: 110px 20px 50px;
  }

  .nav-menu li a {
    font-size: 18px;
  }

}

/*==========================================*
Home Banner
*==========================================*/

.hero {
  position: relative;
  height: 64svh;
}

.background::before {
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(249deg, transparent 46.65%, rgb(0 0 0 / 40%) 65.81%);
}

.background img,
.background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  width: 480px;
  height: fit-content;
  margin: auto 6%;
  color: #fff;
}

.hero-content h1 {
  font-size: 37px;
  line-height: 51px;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content h1 em {
  font-size: 43px;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-content .btn,
.menu-button {
  font-family: var(--sans-medium);
  width: 250px;
  background: var(--main-color);
  font-size: .95rem;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  text-transform: capitalize;
  transition: all ease-in-out 0.25s;
}

.btn:hover {
  transform: scale(1.03);
  background: var(--main-hover-color);
}

@media (max-width: 992px) {

  .background::before {
    background: linear-gradient(249deg, rgb(0 0 0 / 45%) 83.81%);
  }

  .hero-content {
    width: 80%;
    margin: auto;
    text-align: center;
  }

}

@media (max-width: 768px) {

  .hero-content {
    width: 90%;
  }

}

@media (max-width: 480px) {

  .hero {
    height: 60svh;
  }

  .hero-content {
    width: 95%;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 47px;
  }

}

@media (max-width: 389px) {

  .hero-content h1 {
    font-size: 28px;
  }

}

/*==========================================*
Category Section
*==========================================*/

.categories {
  position: relative;
  padding-top: 50px;
}

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

.head h2 {
  font-size: 36px;
}

.category {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.category .cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 5 - 20px);
  gap: 20px;
  transition: all ease-in-out 0.25s;
}

.cat .image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.category .cat:hover .image img,
.category .cat:hover .title h4 {
  transform: scale(1.07);
}

.cat .image img {
  transition: all ease-in-out .25s;
}

.cat .title h4 {
  font-size: 1.1rem;
  letter-spacing: .7px;
  text-transform: capitalize;
  transition: all ease-in-out .25s;
}

.categories .cat .title {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: visible;
}

.categories .cat .path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.6s ease-in-out;
}

.categories .cat .svg {
  position: absolute;
  bottom: 9px;
  left: -25px;
  width: 150%;
  height: 45px;
  pointer-events: none;
}

.cat:hover .path {
  stroke-dashoffset: 0;
}

@media (max-width: 1400px) {

  .category .cat {
    width: calc(100% / 4 - 20px);
  }

}

@media (max-width: 992px) {

  .head {
    margin-bottom: 55px;
  }

  .category {
    gap: 50px 0;
  }

  .category .cat {
    width: calc(100% / 2 - 20px);
  }

  .cat .image {
    width: 250px;
    height: 250px;
  }

  .cat .title h4 {
    font-size: 1.3rem;
  }

}

@media (max-width: 768px) {

  .category {
    justify-content: space-between;
  }

  .cat .image {
    width: 220px;
    height: 220px;
  }

}

@media (max-width: 480px) {

  .head h2 {
    font-size: 33px;
  }

  .cat .title h4 {
    font-size: 1.2rem;
  }

  .category {
    justify-content: space-between;
    gap: 40px 0;
  }

  .cat .image {
    width: 180px;
    height: 180px;
  }

}

@media (max-width: 389px) {

  .head h2 {
    font-size: 2rem;
  }

  .cat .image {
    width: 160px;
    height: 160px;
  }

  .cat .title h4 {
    font-size: 1.1rem;
  }

}

@media (max-width: 360px) {

  .cat .image {
    width: 150px;
    height: 150px;
  }

}

/*==========================================*
Recipes Section
*==========================================*/

.recipes {
  padding-top: 50px;
}

.head h3 {
  font-size: 36px;
  line-height: 1.6;
}

.head h3 span {
  color: var(--main-color);
}

.recipes .head h3::before {
  content: '';
  display: inline-block;
  background-image: url(/assets/icons/summer.png);
  width: 30px;
  height: 30px;
  background-size: 34px;
  background-repeat: no-repeat;
  margin-right: 13px;
  margin-bottom: 13px;
}

.recipes .head h3::after {
  content: '';
  display: inline-block;
  background-image: url(/assets/icons/heart.png);
  width: 30px;
  height: 30px;
  background-size: 30px;
  background-repeat: no-repeat;
  margin-left: 5px;
  margin-bottom: -9px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 45svh;
  gap: 1rem;
  margin: 0 auto;
  overflow: hidden;
}

.card {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: none;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.card:hover img,
.card:hover video {
  transform: scale(1.05);
}

.card-large {
  grid-row: 1 / span 2;
}

.card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(231deg, rgba(217, 217, 217, 0) 49.95%, rgb(0 0 0 / 74%) 100%);
  transition: background 0.3s;
  z-index: 1;
}

.card-media img,
.card-media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out .25s;
}

.card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  max-width: 70%;
}

.card-content h3 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
}

.card-content button {
  position: relative;
  background: none;
  border: none;
  font-family: var(--sans-light);
  color: #fff;
  letter-spacing: .5px;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.card-content button i {
  position: relative;
  bottom: -3px;
  font-size: 1.4rem;
}

@media (min-width: 1700px) {

  .features-grid {
    grid-auto-rows: 35svh;
  }

}

@media (min-width: 993px) and (max-width: 1600px) {

  .recipes .container {
    max-width: 1200px;
  }

}

@media (max-width: 768px) {

  .features-grid {
    grid-auto-rows: 40vh;
  }

}

@media (max-width: 992px) {

  .features-grid {
    grid-auto-rows: 35vh;
  }

}

@media (max-width: 768px) {

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .card,
  .card-large {
    aspect-ratio: 4/3;
  }

  .card-content {
    left: 1rem;
    bottom: 1rem;
    max-width: 80%;
  }

}

@media (max-width: 480px) {

  .head h3 {
    font-size: 33px;
  }

}

@media (max-width: 410px) {

  .recipes .head h3::before {
    margin-right: -40px;
    margin-bottom: 40px;
  }

}

/*==========================================*
Current Specials Slider
*==========================================*/

.current-specials {
  position: relative;
  padding: 55px 0 30px;
  margin: auto;
  overflow: hidden;
}

.current-specials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.current-specials-swiper {
  position: relative;
}

.swiper-wrapper {
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.product-card {
  width: 100%;
  text-align: left;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  display: block;
  filter: brightness(.976) sepia(.015);
}

.product-card h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.25rem;
  color: var(--main-color);
}

.price {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  width: 97%;
}

.price .current {
  margin-right: 0.5rem;
}

.fav-btn {
  background: transparent;
  border: none;
}

.fav-btn img {
  width: 24px;
  height: 24px;
  margin-top: -5px;
  transition: all ease-in-out 0.2s;
}

.fav-btn:hover img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(10%) sepia(77%) saturate(7154%) hue-rotate(298deg) brightness(88%) contrast(98%);
}

.price .original {
  text-decoration: line-through;
  color: #777;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: var(--main-color) !important;
  border-radius: 50%;
  color: #fff;
  --swiper-navigation-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transition: all ease-in-out .25s;
  transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.05);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  margin-left: 2px;
  filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(0%) hue-rotate(271deg) brightness(103%) contrast(105%);
}

.swiper-button-prev::after {
  margin-left: -2px;
}


.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

.menu-button {
  display: block;
  width: 220px;
  text-align: center;
  margin: 70px auto 0;
  transition: all ease-in-out .25s;
}

.menu-button:hover {
  background-color: var(--main-hover-color);
  transform: scale(1.03);
}

@media (max-width: 480px) {

  .product-card img {
    height: 400px;
  }

  .fav-btn img {
    width: 24px;
    height: 24px;
  }

  .product-card h3 {
    margin: 1rem 0 0.45rem;
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.2rem;
  }

}

/*==========================================*
Recipes Section Slider
*==========================================*/

.recipes-section {
  position: relative;
  overflow: hidden;
  height: 85vh;
  align-content: center;
  background: var(--main-color);
  margin-top: 30px;
}


.recipes-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
  height: 100%;
}

.recipes-intro {
  flex: 1;
  color: #fff;
}

.recipes-intro h2 {
  font-size: 36px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.recipes-intro .logo-mark {
  text-transform: uppercase;
}

.recipes-intro p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.recipes-intro .button {
  width: fit-content;
  display: inline-block;
  background: #fff;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.recipes-intro .button:hover {
  transform: scale(1.03);
}

.recipes-slider {
  position: relative;
  flex: 1.7;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.recipes-swiper {
  flex: 1;
  overflow: hidden;
}

.recipes-swiper .swiper-wrapper {
  display: flex;
  flex-direction: column;
  animation: scroll-up 30s linear infinite;
}

.recipes-swiper.reverse .swiper-wrapper {
  animation-direction: reverse;
}

.recipes-swiper:hover .swiper-wrapper {
  animation-play-state: paused;
}

@keyframes scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.recipes-swiper .swiper-slide {
  width: 100%;
  height: 480px;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(/assets/icons/background2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

.recipes-swiper h3 {
  font-size: 1.2rem;
  letter-spacing: .5px;
  padding: 25px 10px;
}

.recipes-swiper img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.slide-meta {
  position: absolute;
  bottom: 1.7rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
}

.slide-meta span {
  display: flex;
  align-items: center;
  background: rgb(255 255 255);
  color: #333;
  padding: .5px 0.5rem 0;
  border-radius: 1rem;
  font-size: 0.8rem;
}

.slide-meta img {
  width: 14px;
  height: 14px;
  margin-right: 0.45rem;
}

@media (max-width: 992px) {

  .recipes-container {
    gap: 70px;
  }

  .swiper.recipes-swiper.reverse {
    display: none;
  }

  .recipes-slider {
    flex: 1;
  }

  .recipes-section {
    height: 65vh;
  }

  .recipes-intro p {
    font-size: 1.1rem;
  }

}

@media (max-width: 768px) {

  .recipes-container {
    padding-top: 55px;
    flex-direction: column;
  }

  .recipes-section {
    height: 85vh;
  }

  .recipes-swiper .swiper-slide {
    height: 350px;
  }

  .recipes-intro {
    text-align: center;
  }

  .recipes-intro .button {
    font-size: 1.05rem;
  }

  .recipes-swiper img {
    height: 220px;
  }

  .slide-meta img {
    width: 14px;
    height: 14px;
  }

}

@media (max-width: 480px) {

  .recipes-intro h2 {
    font-size: 33px;
  }

  .recipes-section {
    height: 95vh;
  }

  .recipes-swiper .swiper-slide {
    height: 400px;
  }

  .recipes-swiper img {
    height: 240px;
  }

  .slide-meta img {
    width: 14px;
    height: 14px;
  }

}

/*==========================================*
Instagram Section
*==========================================*/

.instagram-section {
  background: #fff;
  padding: 65px 0;
  margin: auto;
}

.instagram-intro {
  text-align: center;
  margin-bottom: 30px;
}

.instagram-intro h2 {
  font-size: 36px;
  margin-bottom: 0.8rem;
}

.instagram-intro h2 span {
  color: var(--main-color);
}

.instagram-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 2.3rem;
}

.instagram-intro .instagram-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--main-color);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 400;
  transition: all ease-in-out 0.25s;
  margin-bottom: 3rem;
}

.instagram-intro .instagram-btn:hover {
  transform: scale(1.03);
  background: var(--main-hover-color);
}

.instagram-intro .instagram-btn img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-top: -2px;
  filter: invert(1);
}

.instagram-slider {
  position: relative;
}

.instagram-swiper {
  padding-bottom: 1rem;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  transition: all ease-in-out 0.25s;
}

.insta-card {
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.25s;
}

.insta-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.575);
  z-index: 1;
  display: none;
  background-image: url(/assets/icons/instagram3.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  transition: all ease-in-out 0.5s;
}

.insta-card.video::before {
  background-image: url(/assets/icons/video.png);
}

.swiper-slide:hover .insta-card::before {
  display: block;
}

.instagram-swiper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #333;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.insta-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.insta-modal.open {
  display: flex;
}

.insta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8);
}

.insta-modal-content {
  position: relative;
  background: #fff;
  max-width: 1050px;
  width: 95%;
  height: 90vh;
  display: flex;
  border-radius: 15px;
}

.insta-modal-close {
  position: absolute;
  top: -1.5rem;
  right: -7.5rem;
  background: none;
  border: none;
  font-size: 2.3rem;
  font-weight: 100;
  color: #ffffff;
  cursor: pointer;
  z-index: 1;
}

.insta-modal-media {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.insta-modal-media img,
.insta-modal-media video {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.video-controls button {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
}

.video-controls button i {
  font-size: 25px;
}

.insta-modal-text {
  flex: 1 1 40%;
  padding: 1.5rem 0;
}

.insta-modal-title {
  position: relative;
  font-size: 18px;
  padding: 2px 3px;
  margin-left: 70px;
  align-content: inherit;
  display: block;
  text-transform: none;
}

.insta-modal-title::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -6px;
  left: -51px;
  width: 21px;
  height: 21px;
  background-image: url(/assets/icons/instagram2.png);
  background-repeat: no-repeat;
  background-position: 9px;
  background-size: 21px;
  border: 1px solid #d0d0d0;
  border-radius: 50px;
  padding: 20px;
}

.insta-modal-text hr {
  color: #b3b3b3;
}

.container-modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  height: 93%;
}

.container-modal::-webkit-scrollbar {
  width: 8px;
}

.container-modal::-webkit-scrollbar-track {
  background: #ffffff;
}

.insta-modal-caption {
  color: #555;
  line-height: 1.7;
  font-weight: 100;
  padding: 80px 35px;
  white-space: pre-line;
}

.insta-modal-date {
  font-size: 0.8rem;
  text-align: center;
  border-top: 1px solid #ebebeb;
  padding-top: 10px;
}

@media (max-width: 1400px) {

  .insta-modal-close {
    right: -3.5rem;
  }

}

@media (max-width: 1200px) {

  .insta-modal-close {
    top: -2.5rem;
    right: 0.5rem;
  }

}

@media (max-width: 992px) {

  .instagram-intro p {
    font-size: 1.1rem;
  }

}

@media (max-width: 480px) {

  .instagram-intro h2 {
    font-size: 33px;
  }

  .insta-modal-content {
    flex-direction: column;
  }

  .insta-modal-media img,
  .insta-modal-media video {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0;
  }

  .container-modal {
    height: 88%;
    overflow-y: hidden;
  }

  .insta-modal-caption {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
  }

  .insta-modal-media,
  .insta-modal-text {
    height: 50%;
  }

  .video-wrapper {
    background: transparent;
  }

}

/*==========================================*
Footer Section
*==========================================*/

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 25px;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-newsletter {
  flex: 2;
  margin-right: 170px;
}

.footer-newsletter-label {
  font-family: var(--serif-regular);
  font-size: 16px;
  letter-spacing: .5px;
  margin-bottom: .4rem;
  color: #3e3e3e;
}

.footer-newsletter-title {
  position: relative;
  width: fit-content;
  font-size: 30px;
  line-height: 1.5;
  text-transform: unset;
  margin-bottom: 10px;
}

.footer-newsletter-title::after {
  content: '';
  position: absolute;
  right: -45px;
  top: 41px;
  display: inline-block;
  background-image: url(/assets/icons/hearts.png);
  width: 50px;
  height: 50px;
  background-size: 40px;
  background-repeat: no-repeat;
  margin-left: 5px;
  margin-bottom: -9px;
}

.footer-newsletter-title .hearts {
  margin-left: 0.5rem;
  vertical-align: middle;
}

.footer-newsletter-form {
  width: 80%;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.footer-newsletter-form input {
  flex: 1;
  border: 1px solid rgb(225 225 225);
  background-color: rgb(251 250 249);
  padding: 15px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  color: #8a8989;
}

.footer-newsletter-form button {
  border: none;
  color: #626262;
  border: 1px solid rgb(225 225 225);
  border-left: none;
  background-color: rgb(251 250 249);
  padding: 0 1rem;
  margin-left: -5px;
  cursor: pointer;
}

.footer-newsletter-form button i {
  font-size: 24px;
}

.footer-col {
  flex: .8;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 100;
  line-height: 22px;
  color: #525252;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col li:hover a,
.footer-links li a:hover {
  border-bottom: 1px solid #464646;
}

.footer-col a {
  font-family: var(--sans-light);
  color: #464646;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 21px;
  padding-bottom: 2px;
  border-bottom: 1px solid #ffffff;
  transition: all ease-in-out .25s;
}

.footer-social {
  float: right;
  width: 48%;
  margin-bottom: 2rem;
}

.footer-social a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #333;
  font-size: 1.5rem;
  transition: all ease-in-out .25s;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-divider {
  border: none;
  width: 100%;
  border-top: 1px solid #c8c8c8;
  margin: 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10rem;
  align-items: center;
  margin: 4rem 0 1rem;
  font-size: 0.875rem;
}

.footer-logo {
  font-family: serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 70px;
  color: var(--main-color);
}

.footer-brand {
  position: relative;
  text-align: left;
}

.footer-brand img {
  height: 40px;
}

.footer-brand p {
  margin-top: 0.5rem;
}

.info-container {
  margin-top: -15px;
}

.footer-info {
  color: #555;
  margin-bottom: 4rem;
}

.footer-info p {
  font-size: 15px;
  font-weight: 100;
  line-height: 1.5;
}

.footer-links li a {
  font-size: 13.5px;
  font-weight: 100;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
  transition: all ease-in-out .25s;
}

.footer-links {
  text-align: right;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  text-align: left;
}

.footer-links a {
  margin-top: 0.5rem;
  color: #2e2e2e;
}

@media (max-width: 992px) {

  .footer-top {
    gap: 60px 0;
  }

  .footer-newsletter {
    margin-right: 155px;
  }

  .footer-social {
    width: 100%;
    margin-top: 3rem;
  }

  .footer-bottom {
    gap: 4rem;
  }

}

@media (max-width: 575px) {

  .site-footer {
    padding: 0;
  }

  .footer-newsletter {
    margin-right: 0;
    flex: auto;
  }

  .footer-col {
    flex: auto;
  }

  .footer-newsletter-title::after {
    right: 0px;
    top: 55px;
  }

  .footer-newsletter-title {
    font-size: 27px;
  }

  .footer-col h4 {
    font-size: 17px;
  }

  .footer-col a {
    font-size: .95rem;
  }

}

/*==========================================*
Our Story 
*==========================================*/

.hero-our-story .background::before {
  background: linear-gradient(249deg, transparent 46.65%, rgb(0 0 0 / 37%) 70% 64.81%);
}

.story-section {
  padding: 4rem 0;
  max-width: 1150px;
  margin: auto;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-mosaic {
  flex: .9;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.story-mosaic img {
  width: calc(100% / 2);
  height: 290px;
  object-fit: cover;
  display: block;
  padding: 5px;
}

.second-section .story-mosaic img {
  width: 100%;
  height: 600px;
}

.story-mosaic img:nth-child(3) {
  width: 45%;
}

.story-mosaic img:nth-child(4) {
  width: 55%;
}

.story-content {
  position: relative;
  flex: 1;
  margin-left: 110px;
  padding-left: 30px;
}

.last-section .story-content {
  margin: 0;
  padding-left: 0;
}

.story-arrow {
  position: absolute;
  top: -25px;
  left: -85px;
  width: fit-content;
}

.second-section .story-arrow {
  top: -55px;
  left: auto;
  right: -50px;
  transform: none;
}

.last-section .story-arrow {
  top: -25px;
  left: 10%;
  transform: none;
}

.story-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.last-section .story-content p {
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 992px) {

  .story-section {
    padding: 3rem 0;
  }

  .story-header {
    flex-direction: column;
    gap: 65px;
  }

  .story-mosaic,
  .story-content {
    flex: auto;
    width: 100%;
  }

  .story-content {
    flex: auto;
    width: 100%;
    padding: 0 20px;
    margin: 0;
  }

  .story-arrow {
    left: auto;
    right: -50px;
    transform: rotate(70deg);
  }

}

@media (max-width: 660px) {
  .story-arrow {
    display: none;
  }

  .last-section .story-arrow {
    display: block;
    top: -50px;
    left: 0%;
  }

  .second-section .story-mosaic img {
    height: 500px;
  }

  .last-section .story-content p {
    width: 85%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {

  .story-mosaic img {
    height: 255px;
  }

  .story-header {
    gap: 40px;
  }

}

/*==========================================*
GALLERY SECTION / Our Story Page
*==========================================*/

.gallery-section {
  padding: 2rem 1rem 7rem;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.gallery-grid .gallery-item:nth-child(even) img {
  height: 200px;
}

@media (max-width: 1024px) {

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item:nth-child(n+5) {
    display: none;
  }

}

@media (max-width: 768px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .gallery-item:nth-child(even) img {
    height: 250px;
  }

  .gallery-section {
    padding: 0rem 1rem 7rem;
  }

}

@media (max-width: 400px) {

  .gallery-item img,
  .gallery-grid .gallery-item:nth-child(even) img {
    height: 200px;
  }

}

/*==========================================*
  Hero Section / MENU PAGE
*==========================================*/

.store-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(251, 250, 249);
  height: 41svh;
  overflow: hidden;
}

.store-hero-image,
.store-hero-content {
  width: 50%;
}

.store-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-hero-content {
  padding: 0 120px;
}

.store-hero-content h2 {
  font-size: 33px;
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.store-hero-content .hearts {
  margin-left: 0.5rem;
  margin-top: -30px;
  width: 45px;
}

.store-hero-content .subtitle {
  font-size: 14px;
  margin-bottom: 1rem;
  color: #555;
}

.store-hero-content .description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 1200px) {

  .store-hero-content {
    padding: 0 80px;
  }

}

@media (max-width: 992px) {

  .store-hero {
    position: relative;
  }

  .store-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .store-hero-image::before {
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(249deg, rgb(0 0 0 / 53%) 83.81%);
  }

  .store-hero-content {
    position: absolute;
    inset: 0;
    margin: auto;
    text-align: center;
    width: fit-content;
    height: fit-content;
    padding: 0 50px;
  }

  .store-hero-content h2 {
    font-size: 36px;
    color: #fff;
    justify-content: center;
  }

  .store-hero-content .hearts {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(314deg) brightness(112%) contrast(101%);
  }

  .store-hero-content .subtitle,
  .store-hero-content .description {
    font-size: 1.1rem;
    color: #ffffff;
  }

}


@media (max-width: 575px) {

  .store-hero {
    height: 45svh;
  }

  .store-hero-content {
    padding: 0 10px;
  }

  .store-hero-content h2 {
    font-size: 33px;
  }

  .store-hero-content .hearts {
    display: none;
  }

}

@media (max-width: 400px) {

  .store-hero-content .subtitle,
  .store-hero-content .description {
    font-size: 1rem;
  }

}

/*==========================================*
FILTER SECTION / MENU PAGE
*==========================================*/

.filter-bar {
  overflow: hidden;
  padding: 50px 0px 17px;
}

.filter-bar .filter-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: none;
  position: static;
  transform: none;
  height: auto;
  background: transparent;
  padding: 0;
}

.filter-menu .filter-item {
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.filter-menu .filter-item h4 {
  font-size: 20px;
  margin: 0;
  color: #333;
  transition: all ease-in-out 0.25s;
}

.filter-menu .filter-item:hover h4,
.filter-menu .filter-item.active h4 {
  color: var(--main-color);
  transform: scale(1.05);
}

.filter-menu .filter-item.active h4 {
  border-bottom: 1px solid var(--main-color);
  padding: 0 5px;
}

.filter-open-btn,
.filter-toggle,
.filter-close-btn,
.filter-bar .head {
  display: none;
}

.loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top-color: var(--main-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade {
  transition: opacity 0.3s ease;
}

.fade.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 992px) {

  .filter-bar {
    padding: 50px 0px 17px;
  }

}

@media (max-width: 575px) {

  .filter-bar {
    padding: 10px;
  }

  .filter-open-btn {
    font-family: var(--sans-medium);
    display: inline-block;
    position: fixed;
    bottom: 15px;
    left: 0;
    right: 0;
    width: fit-content;
    margin: auto;
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    z-index: 50;
  }

  .filter-open-btn i {
    margin-right: 10px;
    font-size: 20px;
  }

  .filter-bar .filter-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: normal;
    padding: 1.5rem 1rem 1rem;
    gap: .8rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .filter-close-btn {
    font-family: var(--sans-light);
    display: block;
    position: absolute;
    top: 2rem;
    right: 1rem;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 1px 9px 4px;
    border-radius: 50px;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
  }

  .filter-bar .head {
    display: block;
    text-align: center;
    width: 100%;
  }

  .filter-bar .head h3 {
    font-size: 33px;
    color: #ffffff;
    margin: 0;
  }

  .filter-bar .head img {
    width: 50px;
    height: 50px;
    margin-top: -10px;
    margin-right: -30px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(314deg) brightness(112%) contrast(101%);
  }

  .filter-menu .filter-item {
    width: 100%;
    padding: 20px;
  }

  .filter-toggle:checked~.filter-menu {
    transform: translateX(0);
  }

  .filter-menu .filter-item h4 {
    font-size: 23px;
    width: fit-content;
    color: #ffffff;
  }

  .filter-menu .filter-item.active h4,
  .filter-menu .filter-item:hover h4 {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    transform: scale(1.2);
  }

}

@media (max-width: 375px) {

  .filter-bar .filter-menu {
    padding: 1.5rem 0rem 1rem;
  }

  .filter-close-btn {
    padding: 1px 8px 4px;
    font-size: 33px;
  }

  .filter-bar .head h3 {
    font-size: 31px;
  }

  .filter-bar .head img {
    width: 40px;
    height: 40px;
  }

  .filter-menu .filter-item {
    padding: 15px 20px;
  }

  .filter-menu .filter-item h4 {
    font-size: 21px;
  }

}

/*==========================================*
MENU SECTION / MENU PAGE
*==========================================*/

.menu-section {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 100px;
}

.menu-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 65px 15px;
}

.group {
  display: contents;
}

.menu-header .product-card {
  width: calc(100% / 4 - 15px);
  box-shadow: 0px 7px 35px rgba(0, 0, 0, 0.02);
  transition: all ease-in-out 0.25s;
}

.images {
  position: relative;
  overflow: hidden;
}

.menu-header .product-card img {
  aspect-ratio: 1 / 1.15;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.25s;
  opacity: 0;
  z-index: 10;
}

.hover-img button {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%);
  width: 90%;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hover-img button img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.hover-img button:hover {
  background: #fff;
  color: var(--main-color);
}

.hover-img button:hover img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(77%) saturate(7154%) hue-rotate(298deg) brightness(88%) contrast(98%);
}

@media (max-width: 1200px) {

  .menu-header .product-card {
    width: calc(100% / 3 - 10px);
  }

}

@media (max-width: 768px) {

  .menu-header .product-card {
    width: calc(100% / 2 - 7.5px);
  }

  .menu-section {
    padding: 20px 10px 100px;
  }

}

@media (max-width: 480px) {

  .menu-header .product-card {
    width: calc(100%);
  }

}

/*==========================================*
HERO SECTION / RECIPES PAGE
*==========================================*/

.hero-recipes {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40vh;
  background: rgb(251, 250, 249);
  padding: 0 20px;
  overflow: hidden;
}

.hero-recipes.menu {
  height: 49vh;
  padding: 0 25px;
  background-color: var(--main-color);
}

.left-images {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.left-images img:first-child {
  position: relative;
  left: 0;
  bottom: -20px;
  transform: rotate(-9.022deg);
}

.left-images img:last-child {
  position: relative;
  height: 160px;
  top: -35px;
  left: -10px;
  transform: rotate(6.581deg);
  width: 160px;
}

.left-images img,
.right-images img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.right-images {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.right-images img {
  position: relative;
  right: 0;
  transform: rotate(8.351deg);
}

.hero-recipes-content {
  flex: 1.5;
  text-align: center;
  padding: 0 75px;
}

.hero-recipes-content h3 {
  position: relative;
  font-size: 32px;
  margin-bottom: 1.1rem;
}

.hero-recipes-content h3 em {
  font-size: 38px;
}

.hero-recipes.menu .hero-recipes-content h3,
.hero-recipes.menu .hero-recipes-content p {
  color: #fff;
}

.hero-recipes-content h3::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -35px;
  width: 35px;
  height: 35px;
  background-image: url(/assets/icons/hearts.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.menu .hero-recipes-content h3::before {
  left: -15px;
}

.hero-recipes.menu .hero-recipes-content h3::before,
.hero-recipes.menu .hero-recipes-content p::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(70deg) brightness(99%) contrast(107%);
}

.hero-recipes-content p {
  position: relative;
  font-size: 1rem;
  color: #555;
  margin-bottom: 0;
}

.hero-recipes-content p::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -60px;
  width: 35px;
  height: 55px;
  background-image: url(/assets/icons/arrow-down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1200px) {

  .left-images img,
  .right-images img {
    width: 180px;
    height: 180px;
  }

  .left-images img:last-child {
    height: 130px;
    width: 130px;
  }

  .hero-recipes-content h3::before {
    left: -20px;
  }

}

@media (max-width: 992px) {


  .hero-recipes {
    height: 30vh;
  }

  .hero-recipes.menu {
    height: 45vh;
    padding: 10px 25px;
  }

  .hero-recipes-content {
    padding: 0 5px;
  }

  .left-images img:last-child {
    display: none;
  }

}

@media (max-width: 768px) {

  .hero-recipes {
    height: 400px;
    flex-direction: column;
    gap: 55px;
  }

  .hero-recipes.menu {
    height: 430px;
    padding: 30px 25px 0;
  }

  .left-images img:last-child {
    display: flex;
  }

  .hero-recipes-content {
    padding: 0px 55px;
  }

  .left-images img:last-child {
    top: 25px;
  }

  .hero-recipes .right-images {
    display: none;
  }

}

@media (max-width: 480px) {

  .hero-recipes {
    height: 418px;
  }

  .hero-recipes.menu {
    height: 460px;
  }

  .hero-recipes {
    padding: 0 10px;
  }

  .hero-recipes-content {
    padding: 0;
  }

  .hero-recipes-content h3 {
    font-size: 30px;
    margin-bottom: 1.2rem;
  }

  .hero-recipes-content h3::before {
    left: 15px;
  }

  .menu .hero-recipes-content p::after {
    top: 78px;
  }

  .hero-recipes-content p::after {
    top: 63px;
    right: 10px;
  }

}

@media (max-width: 400px) {

  .hero-recipes {
    gap: 70px;
  }

  .hero-recipes-content h3 {
    font-size: 28px;
    margin-bottom: 1.3rem;
  }

  .hero-recipes-content h3::before {
    left: -5px;
  }

  .left-images img,
  .right-images img {
    width: 160px;
    height: 160px;
  }

  .left-images img:last-child {
    height: 120px;
    width: 120px;
  }

}

@media (max-width: 375px) {

  .hero-recipes {
    height: 440px;
  }

  .hero-recipes.menu {
    height: 475px;
  }

  .hero-recipes-content p::after {
    top: 85px;
  }

}

/*==========================================*
RECIPES SECTION / RECIPES PAGE
*==========================================*/

.recipes-page {
  position: relative;
  overflow: hidden;
  padding: 30px 15px 100px;
}

.all-recipes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.recipe-item {
  position: relative;
  width: calc(100% / 3 - 15px);
  height: 620px;
  text-align: center;
  background-image: url(/assets/icons/background2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px;
  box-shadow: 0px 7px 35px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all ease-in-out 0.25s;
}

.recipe-item:hover {
  transform: scale(1.02);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
}

.recipe-item h4 {
  font-size: 1.2rem;
  letter-spacing: .5px;
  height: 140px;
  align-content: center;
  margin-bottom: 10px;
  padding: 0 10px;
}

.recipe-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 440px;
}

.recipe-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-image .slide-meta {
  bottom: 1rem;
  left: 1rem;
}

.recipe-image .slide-meta img {
  width: 14px;
  height: 14px;
  margin-right: 0.45rem;
}

@media (max-width: 1200px) {

  .recipe-item {
    width: calc(100% / 2 - 10px);
  }

  .recipe-item h4 {
    font-size: 1.3rem;
  }

}

@media (max-width: 768px) {

  .recipes-page {
    padding: 30px 0px 100px;
  }

  .all-recipes {
    gap: 40px;
  }

  .recipe-item {
    width: 100%;
  }

}

@media (max-width: 480px) {

  .recipe-item {
    height: 520px;
  }

  .all-recipes {
    gap: 25px;
  }

  .recipe-image {
    height: 350px;
  }

}

/*==========================================*
RECIPE VIEW PAGE
*==========================================*/

.recipe {
  position: relative;
  padding: 0 15px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 52px;
  margin-bottom: 50px;
}

.recipe-side {
  position: sticky;
  top: 140px;
  flex: .92;
  width: 50%;
  height: 81svh;
  background-image: url(/assets/icons/background.svg);
  padding: 50px 50px 30px;
  overflow: hidden;
}

.arrow-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 45px;
  height: 65px;
  z-index: 100;
  transform: scaleY(-1) rotate(-95deg);
}

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

.recipe-content {
  position: relative;
  flex: 1;
  padding-top: 30px;
  padding-right: 50px;
}

.share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.share.top {
  display: none;
}

.share .back a {
  display: block;
  font-size: .9rem;
  font-family: var(--sans-regular);
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(222, 222, 222);
  transition: all ease-in-out .25s;
}

.share .back a:hover,
.share-icons a:hover {
  transform: scale(1.03);
  border-color: var(--main-color);
}

.share a i {
  position: relative;
  font-size: 1.3rem;
  bottom: -3px;
}

.share-icons a {
  display: block;
  transition: all ease-in-out .25s;
}

.share-icons {
  display: flex;
  gap: 9px;
}

.share-icons p {
  font-family: var(--sans-regular);
  font-size: .9rem;
  margin-right: 5px;
  margin-bottom: 0;
}

.share-icons a i {
  font-size: 1.4rem;
  bottom: 0;
}

.recipe-header {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgb(225, 225, 225);
}

.recipe-title {
  font-size: 32px;
  line-height: 50px;
  margin-bottom: 30px;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px;
}

.recipe-meta span {
  font-size: 14px;
  color: #525252;
  letter-spacing: .5px;
}

.recipe-header .svg {
  position: relative;
  top: -2px;
  display: inline-table;
  width: 35px;
  height: 35px;
  margin-right: 7px;
  margin-bottom: 4px;
  background-color: rgb(251, 250, 249);
  border: 1px solid rgb(225, 225, 225);
  padding: 8px;
  border-radius: 50px;
}

.recipe-header .svg svg {
  width: 24px;
  height: 23px;
}

.recipe-details h4 {
  font-size: 25px;
  margin-bottom: 40px;
}

.recipe-details ul {
  list-style-position: inside;
  list-style-type: disc;
  padding-left: 2px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgb(225, 225, 225);
}

::marker {
  color: var(--main-color);
}

.recipe-details ul li,
.recipe-details ol li {
  font-family: var(--sans-regular);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.recipe-details ol li {
  position: relative;
  margin-bottom: 35px;
}

ol {
  counter-reset: orderedlist;
  list-style-type: none;
  padding-left: 3.3rem;
  margin-top: 55px;
}

ol li:before {
  color: var(--main-color);
  content: "0" counter(orderedlist);
  counter-increment: orderedlist;
  font-family: var(--serif-regular);
  font-size: 17px;
  left: -41px;
  line-height: 22px;
  position: absolute;
}

ol li:nth-child(n+10):before {
  content: counter(orderedlist)
}

ol li:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="36" viewBox="0 0 42 36" fill="none"><path d="M30.5716 7.42283C27.5768 4.46801 18.8468 4.11466 14.5497 5.59746C9.16222 7.45653 4.58853 8.54061 1.98217 16.2862C1.36718 18.1138 0.484757 20.7184 1.3832 24.1657C2.28165 27.613 5.27648 30.5678 7.37286 32.0452C10.3677 34.1558 14.9989 35 20.7143 35C23.5639 35 26.3539 35.017 29.1679 34.1987C31.7764 33.4401 34.3069 32.527 36.6204 30.2917C38.7884 28.197 40.1466 25.3523 40.6529 21.5477C41.6274 14.224 40.6319 9.60921 36.6204 5.59745C34.9807 3.95771 33.26 2.33638 28.5554 1.36932C26.1595 0.876834 21.8416 0.876947 19.1462 1.36934" stroke="%23D92926" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 40px;
  content: "";
  height: 40px;
  left: -51px;
  position: absolute;
  top: -8px;
  width: 40px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(42%) saturate(6437%) hue-rotate(290deg) brightness(111%) contrast(113%);
}

ol li table {
  background-image: url('data:image/svg+xml;utf8,<svg width="335" height="468" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)"><path fill="%23FBFAF9" d="M0 0h335v468H0z"/><path stroke="%23E1E1E1" d="M-14.294 11.562h382.833M-14.294 31.562h382.833M-14.294 51.562h382.833M-14.294 71.562h382.833M-14.294 91.562h382.833M-14.294 111.562h382.833M-14.294 131.562h382.833M-14.294 151.562h382.833M-14.294 171.562h382.833M-14.294 191.562h382.833M-14.294 211.562h382.833M-14.294 231.562h382.833M-14.294 251.562h382.833M-14.294 271.562h382.833M-14.294 291.562h382.833M-14.294 311.562h382.833M-14.294 331.562h382.833M-14.294 351.562h382.833M-14.294 371.562h382.833M-14.294 391.562h382.833M-14.294 411.562h382.833M-14.294 431.562h382.833M-14.294 451.562h382.833M16.495 505.724V-7.128M36.495 505.724V-7.128M56.495 505.724V-7.128M76.495 505.724V-7.128M96.495 505.724V-7.128M116.495 505.724V-7.128M136.495 505.724V-7.128M156.495 505.724V-7.128M176.495 505.724V-7.128M196.495 505.724V-7.128M216.495 505.724V-7.128M236.495 505.724V-7.128M256.495 505.724V-7.128M276.495 505.724V-7.128M296.495 505.724V-7.128M316.495 505.724V-7.128"/></g><defs><clipPath id="%23a"><path fill="%23fff" d="M0 0h335v468H0z"/></clipPath></defs></svg>');
  color: rgb(var(--black));
  display: block;
  margin-left: -40px;
  padding: 25px 25px 15px 95px;
  position: relative;
  width: calc(100% + 40px);
}

ol li table:before {
  background-color: var(--main-color);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.25837 8.05029C8.49351 6.7981 10.2057 6.02124 12.0929 6.02124H12.0962C13.9868 6.02124 15.6957 6.7982 16.9307 8.05029C18.1657 9.30235 18.9293 11.035 18.9293 12.9417C18.9293 14.2125 18.707 15.132 18.3489 15.8751C17.9987 16.6019 17.5305 17.1314 17.1013 17.6166L17.0875 17.6323L17.087 17.6328L17.0818 17.6387C16.272 18.5569 15.5015 19.4305 15.1145 21.193L15.1142 21.1941C14.976 21.8163 14.6407 22.3556 14.1708 22.735L14.1704 22.7353C13.7055 23.1099 13.1144 23.3262 12.4759 23.3262H11.7132C11.0747 23.3262 10.4836 23.1099 10.0187 22.7353L10.0182 22.735C9.54908 22.3562 9.21306 21.8204 9.07472 21.1935L9.07462 21.193C8.68665 19.4262 7.91318 18.5491 7.10227 17.633C7.10225 17.633 7.10223 17.633 7.1022 17.633L7.09565 17.6256C6.66234 17.1375 6.19067 16.6062 5.83879 15.8749C5.48115 15.1316 5.25977 14.2122 5.25977 12.9417C5.25977 11.0315 6.02345 9.30225 7.25837 8.05029ZM12.0929 7.02124C10.4858 7.02124 9.0265 7.68176 7.97031 8.75253C6.91389 9.82353 6.25977 11.3028 6.25977 12.9417C6.25977 14.0897 6.45835 14.8562 6.7399 15.4413C7.0253 16.0344 7.40885 16.4721 7.8505 16.9696L7.85097 16.9701L7.85413 16.9737C8.68862 17.9164 9.60667 18.9535 10.0513 20.9785C10.1415 21.3865 10.3562 21.7225 10.646 21.9566C10.9337 22.1884 11.3035 22.3262 11.7132 22.3262H12.4759C12.8856 22.3262 13.2554 22.1884 13.543 21.9566C13.8321 21.723 14.0476 21.3839 14.1379 20.9779C14.5805 18.9628 15.4921 17.9293 16.3223 16.988L16.3375 16.9708L16.3379 16.9703C16.7784 16.4722 17.1621 16.0346 17.448 15.4411C17.73 14.8558 17.9293 14.0893 17.9293 12.9417C17.9293 11.3061 17.2751 9.82343 16.2188 8.75253C15.1625 7.68165 13.7064 7.02124 12.0962 7.02124H12.0929Z" fill="white"/><path d="M12 4L12 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M18 5L20 3" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 5L4 3" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.0957 8.55811C13.2884 8.55811 14.3702 9.04858 15.1531 9.8422C15.9359 10.6358 16.4197 11.7326 16.4197 12.9418" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
  height: 46px;
  left: 20px;
  position: absolute;
  top: 29px;
  width: 46px
}

.note::after {
  display: none;
}

ol li table h3 {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 10px;
}

.recipe-content video {
  margin: 25px 0;
  width: 100%;
  height: 400px;
  background-color: #000;
}

.other {
  padding: 0 20px;
  margin-bottom: 100px;
}

.other .other-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.other .recipe-item {
  width: 100%;
  height: 500px;
}

.other .recipe-image {
  height: 340px;
}

.other .recipe-item h4 {
  font-size: 1.1rem;
  height: 120px;
}

@media (max-width: 992px) {

  .recipe {
    flex-direction: column;
    gap: 0;
  }

  .recipe-side {
    position: relative;
    top: 0;
    flex: auto;
    width: 100%;
    height: 500px;
    overflow: visible;
    margin-bottom: 85px;
  }

  .arrow-icon {
    position: absolute;
    top: 100%;
    right: 65%;
    transform: scaleY(-1) rotate(160deg);
  }

  .recipe-content {
    width: 100%;
    flex: auto;
    padding: 0 10px;
  }

  .share {
    display: none;
  }

  .share.top {
    display: flex;
    padding-top: 45px;
    margin-bottom: 35px;
  }

}

@media (max-width: 768px) {

  .share.top {
    padding-top: 40px;
  }

  .recipe-side {
    padding: 25px 15px;
  }

  .recipe-title {
    font-size: 29px;
  }

  .svg {
    padding: 11px 8px;
  }

  .svg svg {
    width: 32px;
    height: 25px;
  }

  .recipe-meta span {
    font-size: 17px;
  }

  .recipe-details h4 {
    font-size: 27px;
    margin-bottom: 35px;
  }

  .recipe-details ul li,
  .recipe-details ol li {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .recipe-details ol {
    margin-top: 45px;
  }

  .recipe-details ol li {
    margin-bottom: 35px;
  }

  .other {
    padding: 0;
  }

  .other .other-title {
    font-size: 33px;
  }

}

@media (max-width: 480px) {

  .share .back a,
  .share-icons p {
    font-size: .95rem;
  }

  .share a i {
    bottom: -3px;
  }

  .recipe-title {
    font-size: 27px;
  }

  .recipe {
    padding: 0 5px 50px;
  }

  .recipe-side {
    height: 400px;
  }

}

@media (max-width: 400px) {

  .recipe-details ul li,
  .recipe-details ol li {
    font-size: 17px;
  }

}

/*==========================================*
FAVORITES PAGE
*==========================================*/

.hero-recipes.favorites {
  justify-content: center;
  height: 27vh;
  margin-bottom: 15px;
  flex-direction: unset;
}

.hero-recipes.favorites .hero-recipes-content h3 {
  width: fit-content;
  margin: auto;
  font-size: 40px;
  text-transform: capitalize;
  color: var(--main-color);
}

.hero-recipes.favorites .hero-recipes-content h3::before {
  left: -40px;
}

.birthday .hero-recipes-content h3::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -35px;
  width: 35px;
  height: 35px;
  background-image: url(/assets/icons/confetti.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 480px) {

  .hero-recipes.favorites {
    height: 160px;
  }

  .hero-recipes.favorites .hero-recipes-content h3 {
    font-size: 34px;
  }

}

/*==========================================*
BIRTHDAY PAGE
*==========================================*/

.hero-recipes.favorites.birthday {
  height: 34vh;
}

.hero-recipes.favorites.birthday .hero-recipes-content h3 {
  margin-bottom: 20px;
}

.birthday .hero-recipes-content p {
  width: 540px;
  margin: auto;
}

.birthday .hero-recipes-content p::after {
  top: 67px;
  right: -10px;
}

.booking-form {
  max-width: 800px;
  margin: 15px auto 100px;
  padding: 2rem;
}

.progress-container {
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.form-step {
  display: none;
  transition: opacity 0.3s ease;
}

.form-step.active {
  display: block;
}

.form-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-group {
  width: calc(100% / 2 - 15px);
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--sans-medium);
  letter-spacing: .5px;
  font-size: 17px;
  color: var(--main-color);
  display: block;
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  font-size: 1rem;
}

.flatpickr-input {
  cursor: pointer;
  background-color: #fff;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.flatpickr-time {
  height: 52px;
  max-height: 52px;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.btn-next {
  font-family: var(--sans-regular);
  background: var(--main-color);
  color: #fff;
}

.btn-next:hover {
  color: #fff;
}

.btn-prev {
  font-family: var(--sans-regular);
  background: #ccc;
  color: #333;
}

.btn-prev:hover {
  background: #b0b0b0;
}

.form-step h4 {
  font-size: 23px;
  font-family: var(--sans-medium);
}

.summary-list {
  list-style: none;
  padding: 15px 0;
  margin-left: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.summary-list li {
  font-family: var(--sans-medium);
  font-size: 16px;
  color: var(--main-color);
  width: 50%;
  margin-bottom: 1.5rem;
}

.summary-list li span {
  color: #000;
}

.thank-you {
  display: none;
  text-align: center;
  padding: 2rem;
}

.thank-you.active {
  display: block;
}

.thank-you h3 {
  font-size: 36px;
  margin-top: 10px;
}

.thank-you i {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {

  .hero-recipes.favorites.birthday {
    flex-direction: unset;
    height: 250px;
  }

  .summary-list li {
    width: 100%;
  }

  .summary-list {
    margin-left: 0;
  }

}

@media (max-width: 480px) {

  .hero-recipes.favorites.birthday {
    height: 280px;
    overflow: visible;
    padding: 0;
  }

  .birthday .hero-recipes-content p {
    width: 95%;
  }

  .hero-recipes.favorites.birthday .hero-recipes-content h3::before {
    left: 5px;
  }


  .hero-recipes.favorites.birthday .hero-recipes-content h3 {
    margin: auto;
    margin-bottom: 20px;
  }

  .birthday .hero-recipes-content h3::after {
    right: 7px;
    top: -35px;
  }

  .birthday .hero-recipes-content p::after {
    top: 80px;
    right: 10px;
  }

  .booking-form {
    padding: 1rem;
  }

  .form-group {
    width: 100%;
  }

}

@media (max-width: 400px) {

  .hero-recipes.favorites.birthday .hero-recipes-content h3 {
    font-size: 31px;
  }

  .birthday .hero-recipes-content h3::before {
    top: -40px;
  }

  .birthday .hero-recipes-content h3::after {
    top: -35px;
  }

  .birthday .hero-recipes-content p::after {
    right: 20px;
  }

}

/*==========================================*
CONTACT US PAGE
*==========================================*/

.contact-info {
  padding: 4rem 0 2rem;
}

.contact-info i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-info h5 {
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin: 1.3rem 0 1rem;
}

.contact-info p {
  color: #555;
  margin: 0;
  font-size: 0.9rem;
}

.contact-form {
  padding: 4rem 0;
  margin-bottom: 100px;
  background: rgb(251, 250, 249);
}

.contact-form h3 {
  font-size: 33px;
  margin-bottom: 3rem;
}

.form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--main-color);
  outline: var(--main-color);
  box-shadow: 0 0 0 .1rem rgb(161 7 158);
}

.btn-submit {
  width: 150px;
  background-color: var(--main-color);
  color: #fff;
  letter-spacing: 2px;
  padding-right: 20px;
  border-radius: 0;
  transition: all ease-in-out .25s;
}

.btn-submit:hover {
  color: #fff;
  background-color: var(--main-hover-color);
}

@media (max-width: 480px) {

  .contact-info {
    padding: 3rem 0 2rem;
  }

  .contact-form h3 {
    font-size: 28px;
  }

}

/*==========================================*
SEARCH PAGE
*==========================================*/

.menu-section.search-page {
  padding: 40px 20px;
}

.search-result {
  padding: 50px 35px 0;
}

.search-result h3 {
  font-size: 36px;
  margin-bottom: 5px;
}

.search-result p {
  font-size: 1rem;
  color: rgb(77, 77, 77);
}

.search-page-footer {
  margin-bottom: 100px;
}

@media (max-width: 768px) {

  .search-result {
    padding: 50px 15px 0;
  }

  .search-result h3 {
    font-size: 33px;
  }

  .menu-section.search-page {
    padding: 40px 10px;
  }

}

/*==========================================*
POLICY PAGE
*==========================================*/

.privacy-policy {
  margin: 50px auto 100px;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.privacy-container h1 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.privacy-container p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #333;
}

.privacy-container h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.privacy-container h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.privacy-container a {
  color: var(--main-color);
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}

.privacy-policy em {
  font-family: var(--sans-regular);
}

@media (max-width: 480px) {

  .privacy-policy {
    margin: 15px auto 100px;
  }

}