:root {
  --white: #fff;
  --black: #000;
  --clear-red: #ef4e4c;
  --vibrant-orange: #ff8c00;
  --dark: #182058;
  --light-grey: #cacaca;
  --very-light: #f0f8ff;
  --dark-grey: #212121;
  --grey: #696969;
  --light-grey: #dadada;
  --brown: #b88e68;
  --red: #f04037;
  --vibrant-red: #ff4f60;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  scroll-margin-top: 110px;
}

body {
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

body.page-template-homepage {
  background-color: var(--black);
}

a,
a:hover {
  text-decoration: none;
}

img,
picture,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background-color: var(--clear-red);
  color: var(--white);
}

.site-content {
  overflow-x: hidden;
  max-width: 100%;
  word-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1580px;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.upper {
  text-transform: uppercase;
}

.relative {
  position: relative;
}

strong,
.bold {
  font-weight: 800;
}

.n-bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

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

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

.white {
  color: var(--white);
  text-shadow: 1px 1px 2px #000;
}

.white-bg {
  background-color: var(--white);
}

.black-bg {
  background-color: var(--black);
}

.set-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 50px;
  z-index: 99999;
  transition: all 300ms ease-in-out;
}
.site-header.relative{
  position: relative;
}
.site-header.absolute {
  position: absolute;
}
.site-header.relative.active{
  position: fixed;
}
.site-header.active, .site-header.relative {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url(/wp-content/uploads/2023/08/5329549.webp);
}

.logo-header {
  width: auto;
  height: 155px;
  transition: all 300ms ease-in-out;
}

.site-header.active .logo-header {
  height: 80px;
}

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

.hero-home {
  background-image: url(/wp-content/uploads/2023/08/bg.webp);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  padding-top: 230px;
  padding-bottom: 80px;
}

.p-20 {
  font-size: 20px;
  line-height: 1.35;
}

.title {
  font-size: 130px;
  line-height: 1.1;
}

.title-120 {
  font-size: 120px;
  line-height: 1.1;
}

.hero > div {
  height: 100%;
}

.home-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.p-24 {
  font-size: 24px;
  line-height: 1.3;
}
.home-menu-item.veggie .title-home-menu{
  font-size: 45px;
}
.title-home-menu {
  font-size: 55px;
  line-height: 1.3;
  font-weight: 800;
}

.home-menu-container {
  width: 100%;
  max-width: 420px;
  display: grid;
  gap: 20px;
}

.home-menu-item {
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  position: relative;
  border-radius: 11px;
}

.home-menu-item > div {
  z-index: 3;
}

.home-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clear-red);
  opacity: 0;
  border-radius: 11px;
  transition: all 300ms ease-in-out;
}

.home-menu-item.tasty {
  background-image: url("/wp-content/uploads/2023/08/img1.webp");
}

.home-menu-item.chef {
  background-image: url(/wp-content/uploads/2023/08/img1-1.webp);
}
.home-menu-item.veggie {
  background-image: url(/wp-content/uploads/2025/08/Group-14-2.webp);
}

.discover-link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.discover-txt {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.home-menu-item .discover-link {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 300ms ease-in-out, opacity 100ms ease-in-out 0ms;
}

.home-menu-item:hover .discover-link {
  height: 60px;
  opacity: 1;
  transition: height 300ms ease-in-out, opacity 150ms ease-in-out 260ms;
}

.home-menu-item:hover::before {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.main-menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-menu li a {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 3px 0px;
  text-transform: uppercase;
}

.main-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: all 200ms ease-in-out;
}

.main-menu li a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.side-menu {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: flex-end;
  flex-grow: 1;
}

.tasty-btn {
  font-size: 20px;
  font-weight: 700;
  background-color: var(--clear-red);
  border-radius: 30px;
  padding: 18px 30px;
  color: var(--white);
}

.tasty-btn:hover {
  animation: jello-horizontal 0.9s both;
}

@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.15, 0.85, 1);
  }

  40% {
    transform: scale3d(0.85, 1.15, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-slider-pagination {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50% !important;
  right: calc((100% - 1580px) / 2) !important;
  bottom: unset !important;
  left: unset !important;
  transform: translateY(-50%);
  z-index: 10;
  width: fit-content !important;
  gap: 20px;
  align-items: center;
}

.hero-slider-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid transparent;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}

.hero-slider-bullet-active {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 2px solid var(--vibrant-orange);
}

.hero-slider .swiper-wrapper .swiper-slide {
  padding-bottom: 80px;
  padding-top: 230px;
  display: flex !important;
}

.hero-slider .swiper-wrapper .swiper-slide .container.flex-end {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  align-self: flex-end;
}

.links-hero-slider {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
}

.p-36 {
  font-size: 36px;
  line-height: 1.1;
}

.social-media-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  justify-content: flex-end;
}

.site-footer {
  padding-top: 70px;
  padding-bottom: 20px;
  width: 100%;
  background-image: url(/wp-content/uploads/2023/08/5329549.webp);
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 15px;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.p-16 {
  font-size: 16px;
  line-height: 1.875;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.semi-white,
.blog-post-author.semi-white {
  color: rgba(255, 255, 255, 0.5);
}

.footer-menu {
  list-style-type: none;
  margin-top: 30px;
}

.footer-menu li {
  padding: 8px 0;
}

.footer-menu li,
.footer-menu li a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.mt-50 {
  margin-top: 50px;
}

.footer-line {
  width: 100px;
  height: 2px;
  border-radius: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin-top: 30px;
}

.social-media-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.padd-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padd-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.set-bg-top {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.tasty-bg {
  background-image: url(/wp-content/uploads/2023/08/Group-5-1-scaled.webp);
}

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

.title-60,
.single-post-content h1,
.single-post-content h2 {
  font-size: 60px;
  line-height: 1.3;
}

.title-80 {
  font-size: 80px;
  line-height: 1.3;
}

.mt-30 {
  margin-top: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.max-600 {
  width: 100%;
  max-width: 600px;
}

.tasty-two-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.product-tasty {
  margin-top: 250px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 55px;
}

.products-grid-chef {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 50px;
}

.product-card-item {
  width: 100%;
  display: block;
  position: relative;
}

.product-card-item img {
  transition: 200ms ease-in-out;
}

.thumbnail-product {
  width: 75%;
}

.thumbnail-product-chef {
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}

.img-3d-chef {
  position: absolute;
  width: 30%;
  left: 0;
  bottom: 0;
}

.img-3d {
  position: absolute;
  width: 40%;
  right: 0;
  bottom: 0;
}

.product-card-item:hover img {
  filter: grayscale(100%);
}

.product-card-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
  margin-top: 30px;
}

.mt-70 {
  margin-top: 70px;
}

.product-card-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -53%);
  width: 100px;
  height: 100px;
  background-image: url(/wp-content/uploads/2023/08/arrow2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 200ms ease-in-out;
}

.product-card-item:hover::after {
  opacity: 1;
}

.padd-60 {
  padding: 60px 0;
}

.hero-tasty-chef,
.hero-tasty {
  padding: 200px 20px 100px 110px;
  border-radius: 10px;
}

.hero-tasty {
  background-image: url(/wp-content/uploads/2023/08/Group-2-2.webp);
}

.hero-tasty-chef {
  background-image: url(/wp-content/uploads/2023/09/Group-2-2.webp);
}

.mt-100 {
  margin-top: 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 50px;
}

.blog-post-title {
  font-size: 30px;
  line-height: 1.3;
}

.blog-post-description {
  margin-top: 20px;
  padding-right: 30px;
}

.blog-post-author {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(24, 32, 88, 0.5);
  margin-bottom: 10px;
}

.page-bg {
  background-image: url(/wp-content/uploads/2023/08/Group-4.webp);
  position: relative;
}
.page-bg>*, .chef-bg>*{
  position: relative;
  z-index: 2;
}
.page-bg::before, .chef-bg::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.page-bg::before{
  background-size: 2008px;
  background-image: url(/wp-content/uploads/2024/09/Group-1-3.png);
}
.chef-bg::before{
  background-size: cover;
  background-image: url(/wp-content/uploads/2024/04/bg-sare-piper-transparent.png);
}
.chef-bg{
  position: relative;
}
.blog-post-image {
  width: 100%;
  aspect-ratio: 19 / 16;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-chef-bg {
  background-image: url(/wp-content/uploads/2023/09/dark-grey-black-slate-texture-with-high-resolution-background-natural-black-stone-wall.webp);
}
.z-2{
  position: relative;
  z-index: 2;
}

.chef-bg {
  background-image: url(/wp-content/uploads/2023/09/5329549.webp);
}

.chef-dark-bg {
  background-image: url(/wp-content/uploads/2023/09/solid-concrete-wall-textured-backdrop.webp);
}

.mt-130 {
  margin-top: 130px;
}

.product-title {
  font-size: 70px;
  line-height: 1.3;
}
.hero-section h1,
.product-title, .single.single-post .hero-section .title-80{
  text-shadow: 2px 2px 5px #000;
}
.max-800 {
  width: 100%;
  max-width: 800px;
}
.word-wrap-normal {
  word-wrap: normal;
}

.max-750 {
  width: 100%;
  max-width: 750px;
}

.product-hero {
  display: flex;
  align-items: flex-end;
  background-size: contain;
  background-color: var(--black);
}
button,
input,
textarea {
  font-family: "Red Hat Display", sans-serif;
}

.product-prop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 50px;
  row-gap: 25px;
}

.product-prop-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-prop-item .p-20 {
  text-shadow: 1px 1px 3px var(--black);
}
.product-prop-item img {
  filter: drop-shadow(2px 2px 5px var(--black));
}
.ingredients-grid-item .p-30:not(:first-child) {
  margin-top: 50px;
}
.ingredients-global-container {
  max-height: 237px;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}
.ingredients-global-container.active {
  max-height: 2000px;
}

.semi-dark {
  color: rgba(24, 32, 88, 0.5);
}

.p-30 {
  font-size: 30px;
  line-height: 1.3;
}

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

.ingredients-grid-item {
  border-radius: 10px;
  border: 1px solid var(--light-grey);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 30px 60px 60px 40px;
  height: fit-content;
}

.info-nutri-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  border-bottom: 1px solid rgba(24, 32, 88, 0.1);
  padding-bottom: 7px;
  padding-top: 7px;
}

.padd-t-80 {
  padding-top: 80px;
}

.product-reteta {
  padding: 300px 90px 90px;
  border-radius: 10px;
}

.product-reteta-gradient {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 42%,
    rgba(240, 248, 255, 1) 42%
  );
}

.max-550 {
  width: 100%;
  max-width: 550px;
}
.max-900 {
  width: 100%;
  max-width: 900px;
}
.p-18 {
  font-size: 18px;
  line-height: 2;
}

.space-p p:not(:last-child) {
  margin-bottom: 20px;
}

.description-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.product-gallery-con {
  width: 100%;
  max-width: 860px;
}

.principal-gal {
  width: 100%;
  max-height: 550px;
}
.secondary-gal{
  height: 150px;
  margin-top: 10px;
}
.swiper.principal-gal .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background-color: rgba(255, 255, 255, 0.4);
}

.swiper.principal-gal .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 550px;
}
.swiper.principal-gal .swiper-wrapper .swiper-slide video, .swiper.secondary-gal .swiper-wrapper .swiper-slide video{
  max-width: 100%;
  height: auto;
}
.swiper.secondary-gal .swiper-wrapper .swiper-slide video{
  pointer-events: none;
}
.swiper.secondary-gal .swiper-wrapper .swiper-slide img{
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: contain;
}

.swiper.second-gal {
  width: calc(100% - 200px);
  position: relative;
  z-index: 4;
}

.second-gal .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.second-gal .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.second-gal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.second-gal-btn.swiper-button-disabled {
  opacity: 0;
}

.second-gal-btn {
  cursor: pointer;
  transition: all 200ms ease-in-out;
  opacity: 1;
}

.second-gal .swiper-wrapper .swiper-slide {
  opacity: 0.8;
  transition: all 200ms ease-in-out;
}

.second-gal .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.page-chef-bg {
  background-image: url(/wp-content/uploads/2023/09/dark-grey-black-slate-texture-with-high-resolution-background-natural-black-stone-wall-1.webp);
}

.swiper.principal-gal.darker .swiper-wrapper .swiper-slide,
.ingredients-grid-item.darker {
  background-color: rgba(0, 0, 0, 0.5);
}

.ingredients-grid-item.darker {
  border: 1px solid #303030;
}

.menu-btn {
  display: none;
}

.discover-link svg {
  min-width: 60px;
}

.product-subheader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 220px;
}
.hero-section.hero-contact{
  min-height: 40vh;
  min-height: 40svh;
}
.dark-grey {
  color: var(--dark-grey);
}

.padd-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.reteta-gal-img {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
}

.reteta-gal > div {
  width: 100%;
}

.container-1060 {
  width: 100%;
  max-width: 1060px;
}

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

.reteta-ingr-item {
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: var(--light-grey);
  padding: 10px 17px;
}

.reteta-ingr-name {
  font-size: 16px;
  padding-left: 53px;
  position: relative;
}

.reteta-ingr-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguNzk5MzEgMC42OTQ0NDNDNC4xODExOSAwLjY5NDQ0MyAwLjQyNDY4MyA0LjUxMDI0IDAuNDI0NjgzIDkuMTk5NDlDMC40MjQ2ODMgMTMuODg4NyA0LjE4MTE5IDE3LjcwNDUgOC43OTkzMSAxNy43MDQ1QzEzLjQxNzQgMTcuNzA0NSAxNy4xNzM5IDEzLjg4ODcgMTcuMTczOSA5LjE5OTQ5QzE3LjE3MzkgNC41MTAyNCAxMy40MTc0IDAuNjk0NDQzIDguNzk5MzEgMC42OTQ0NDNaTTguNzk5MzEgMTYuNTE3OEM0LjgyNTQ1IDE2LjUxNzggMS41OTMyNCAxMy4yMzUyIDEuNTkzMjQgOS4xOTk0OUMxLjU5MzI0IDUuMTYzNzUgNC44MjU0NSAxLjg4MTE5IDguNzk5MzEgMS44ODExOUMxMi43NzMyIDEuODgxMTkgMTYuMDA1NCA1LjE2Mzc1IDE2LjAwNTQgOS4xOTk0OUMxNi4wMDU0IDEzLjIzNTIgMTIuNzczMiAxNi41MTc4IDguNzk5MzEgMTYuNTE3OFpNMTEuOTM4OCA2LjkzMzU4QzEyLjE2NzEgNy4xNjUzOSAxMi4xNjcxIDcuNTQxMjIgMTEuOTM4OCA3Ljc3MzA0TDguMzAzMDcgMTEuNDY1NEM4LjE4OTMzIDExLjU4MDkgOC4wMzk3NiAxMS42Mzk0IDcuODkwMTggMTEuNjM5NEM3Ljc0MDYxIDExLjYzOTQgNy41OTEwMyAxMS41ODE3IDcuNDc3MjkgMTEuNDY1NEw1LjY1OTggOS42MTk2MUM1LjQzMTU0IDkuMzg3OCA1LjQzMTU0IDkuMDExOTYgNS42NTk4IDguNzgwMTVDNS44ODgwNiA4LjU0ODM0IDYuMjU4MSA4LjU0ODM0IDYuNDg2MzYgOC43ODAxNUw3Ljg5MDk3IDEwLjIwNjdMMTEuMTEzIDYuOTM0NEMxMS4zNDEzIDYuNzAyNTkgMTEuNzEwNiA2LjcwMjU2IDExLjkzODggNi45MzM1OFoiIGZpbGw9IiM0NThFMjIiLz4KPC9zdmc+Cg==);
  width: 17px;
  height: 17px;
  background-size: 17px;
  background-repeat: no-repeat;
}

.reteta-ingr-name.dark-name::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguNzk5MzEgMC45OTQ5NDlDNC4xODExOSAwLjk5NDk0OSAwLjQyNDY4MyA0LjgxMDc1IDAuNDI0NjgzIDkuNUMwLjQyNDY4MyAxNC4xODkyIDQuMTgxMTkgMTguMDA1MSA4Ljc5OTMxIDE4LjAwNTFDMTMuNDE3NCAxOC4wMDUxIDE3LjE3MzkgMTQuMTg5MiAxNy4xNzM5IDkuNUMxNy4xNzM5IDQuODEwNzUgMTMuNDE3NCAwLjk5NDk0OSA4Ljc5OTMxIDAuOTk0OTQ5Wk04Ljc5OTMxIDE2LjgxODNDNC44MjU0NSAxNi44MTgzIDEuNTkzMjQgMTMuNTM1NyAxLjU5MzI0IDkuNUMxLjU5MzI0IDUuNDY0MjUgNC44MjU0NSAyLjE4MTcgOC43OTkzMSAyLjE4MTdDMTIuNzczMiAyLjE4MTcgMTYuMDA1NCA1LjQ2NDI1IDE2LjAwNTQgOS41QzE2LjAwNTQgMTMuNTM1NyAxMi43NzMyIDE2LjgxODMgOC43OTkzMSAxNi44MTgzWk0xMS45Mzg4IDcuMjM0MDlDMTIuMTY3MSA3LjQ2NTkgMTIuMTY3MSA3Ljg0MTczIDExLjkzODggOC4wNzM1NEw4LjMwMzA3IDExLjc2NTlDOC4xODkzMyAxMS44ODE0IDguMDM5NzYgMTEuOTM5OSA3Ljg5MDE4IDExLjkzOTlDNy43NDA2MSAxMS45Mzk5IDcuNTkxMDMgMTEuODgyMiA3LjQ3NzI5IDExLjc2NTlMNS42NTk4IDkuOTIwMTFDNS40MzE1NCA5LjY4ODMgNS40MzE1NCA5LjMxMjQ3IDUuNjU5OCA5LjA4MDY2QzUuODg4MDYgOC44NDg4NSA2LjI1ODEgOC44NDg4NSA2LjQ4NjM2IDkuMDgwNjZMNy44OTA5NyAxMC41MDcyTDExLjExMyA3LjIzNDkxQzExLjM0MTMgNy4wMDMwOSAxMS43MTA2IDcuMDAzMDYgMTEuOTM4OCA3LjIzNDA5WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==);
}

.reteta-ingr-name::after {
  content: "";
  left: 34px;
  top: -10px;
  width: 1px;
  height: calc(100% + 20px);
  position: absolute;
  background-color: var(--light-grey);
}

.reteta-mod-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.reteta-mod-item-number {
  min-width: 38px;
  max-width: 38px;
  min-height: 38px;
  max-height: 38px;
  border-radius: 50%;
  background-color: var(--brown);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.reteta-mod {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-21 {
  font-size: 21px;
  line-height: 1.42;
}

.content-404 {
  padding-top: 110px;
  padding-bottom: 200px;
  text-align: center;
  max-width: 515px;
}

.img-404 {
  margin-bottom: 75px;
}

.btn-404 {
  padding: 15px 50px;
  display: block;
  width: fit-content;
  color: var(--red);
  border-radius: 10px;
  border: 2px solid var(--clear-red);
  font-size: 21px;
  font-weight: 600;
  margin-top: 100px;
  transition: 250ms ease-in-out;
}

.btn-404:hover {
  background-color: var(--clear-red);
  color: var(--white);
}

.padd-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.about-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 100px;
  row-gap: 20px;
}

.about-gallery {
  padding: 90px 0;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-gallery div {
  width: 46%;
}

.pt-130 {
  padding-top: 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 75px 0;
}

.contact-grid-item {
  border-radius: 20px;
  background: var(--white);
  padding: 30px 50px;
  box-shadow: 0px 18px 76px 0px rgba(0, 0, 0, 0.1);
}

.container-1296 {
  width: 100%;
  max-width: 1296px;
}

.contact-grid-item a {
  display: block;
  color: var(--dark);
}

.container-1492 {
  width: 100%;
  max-width: 1492px;
}

.map-con {
  z-index: -1;
}

.map-con iframe {
  width: 100%;
  height: 800px;
  display: block;
}

.contact-form-con {
  border-radius: 32px;
  background: var(--white);
  box-shadow: 24px 24px 48px 0px rgba(0, 0, 0, 0.05);
  padding: 50px 70px;
  z-index: 3;
  position: relative;
}

.vibrant-red {
  position: relative;
  color: var(--vibrant-red);
}

.contact-form {
  display: grid;
  gap: 55px;
}

.contact-form .text-input {
  border-radius: 12px;
  width: 100%;
  height: 62px;
  background: #f6f6f6;
  margin-top: 16px;
}

.contact-form input:not([type="checkbox"]),
.contact-form input:not([type="checkbox"]):focus,
.contact-form input:not([type="checkbox"]):focus-visible,
.contact-form textarea,
.contact-form textarea:focus,
.contact-form textarea:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.contact-form input,
.contact-form textarea {
  text-indent: 18px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  color: var(--dark);
}

.contact-form .text-input::placeholder,
.contact-form textarea::placeholder {
  font-family: "Red Hat Display", sans-serif;
  color: #94959b;
  font-size: 16px;
  font-weight: 400;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 50px;
}

.contact-form label {
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
}

.contact-form .submit-btn input {
  width: 100%;
  height: 70px;
  border-radius: 16px;
  background-color: var(--clear-red);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
}

.contact-form textarea {
  border-radius: 12px;
  background: #f6f6f6;
  width: 100%;
  padding-top: 10px;
  resize: vertical;
  margin-top: 16px;
}
.checkbox-con input {
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
}
.checkbox-con .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.checkbox-con .wpcf7-list-item label span {
  max-width: 850px;
}
.contact-form .wpcf7-not-valid-tip {
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  padding-left: 20px;
  margin-top: 6px;
}
.wpcf7 form .wpcf7-response-output {
  position: absolute;
  bottom: 120px;
  background: #fff;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 75%,
    71% 71%,
    75% 100%,
    55% 68%,
    0 53%
  );
  padding: 20px 50px 60px;
  border: none;
  right: 50px;
  box-shadow: inset 0px 0px 50px 18px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
}
.mobile-single-title {
  display: none;
}
.conditii-content {
  padding-top: 35px;
}
.conditii-content :where(h1, h2, h3) {
  font-weight: 700;
  font-size: 35px;
}
.conditii-content ul,
.conditii-content ol,
.single-post-content ul,
.single-post-content ol {
  padding-left: 20px;
}
.single-post-content :where(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
  margin: 25px 0;
}
.single-post-content {
  padding-top: 30px;
}
.single-post-content :where(h3, h4, h5, h6) {
  font-size: 30px;
}
.main-btn {
  border: none;
  outline: none;
  background-color: var(--vibrant-red);
  font-size: 17px;
  border-radius: 20px;
  padding: 10px 40px;
  cursor: pointer;
  color: var(--white);
}
.ingredients-btn {
  margin-left: auto;
  display: none;
  margin-top: 30px;
}
.ingredients-btn.active {
  display: block;
}
.home-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}
.about-video{
    width: fit-content;
    margin: 50px auto;
}
.product-video{
    width: fit-content;
    margin: 50px auto 0;
}
.buy-swiper{
    margin-top: 50px;
    width: 100%;
}
.buy-swiper .swiper-wrapper .swiper-slide{
    display: flex;
    justify-content: center;
}
.title-50{
    font-size: 50px;
    line-height: 1.3;
}
.reteta-flex{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.reteta-ambalaj{
  filter: drop-shadow(6px 6px 8px #000);
}
.custom-form-content{
  display: flex;
  gap: 0;
  border: 2px solid var(--white);
  align-items: center;
  border-radius: 30px;
  width: 100%;
}
.search-header{
  width: 100%;
  max-width: 60px;
  transition: max-width 200ms ease-in-out;
}
.search-header.active{
  max-width: 250px;
}
.search-header .searchform{
  display: none;
}
.search-header.active .searchform{
  display: block;
}
#search-trigger{
  cursor: pointer;
}
#search-trigger.active{
  display: none;
}
.search-txt{
  flex-grow: 1;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  text-indent: 10px;
  min-width: 0;
}
.search-txt::placeholder, .search-txt{
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
}
.search-txt, .search-submit{
  height: 56px;
}
.search-txt,
.search-txt:focus,
.search-txt:focus-visible,
.search-submit, 
.search-submit:focus,
.search-submit:focus-visible{
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.search-submit{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding-right: 10px;
  cursor: pointer;
}
.search-submit img{
  min-width: 32px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
}
.pdf-embeded{
  max-width: 100%;
  width: 100%;
  height: calc(100vh - 200px);
  height: calc(100svh - 200px);
}
.certificari-flex{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}
.certificari-flex.blue>div{
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}
.certificari-flex.white>div{
  box-shadow: 1px 1px 8px rgba(255, 255, 255, 0.5);
}
iframe.flowpaper-class{
  height: calc(100vh - 120px);
  height: calc(100svh - 120px);
}
.hero-catalog{
  background-image: url(/wp-content/uploads/2023/08/5329549.webp);
  color: var(--white);
  text-align: center;
  padding: 200px 20px 100px;
}
.main-menu li{
  position: relative;
  text-align: center;
}
.submenu{
  list-style-type: none;
  position: absolute;
  top: 110%;
  left: 0;
  text-wrap: nowrap;
  background-color: var(--black);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.main-menu li:hover .submenu, .submenu.active{
  padding: 10px;
  max-height: 200px;
  pointer-events: all;
}
.parent-li{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.parent-li-btn{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--vibrant-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  transform: rotate(90deg);
}
.cataloage-wrapper .blog-post-image{
  aspect-ratio: unset;
}
.page-bg.no-before::before{
  content: none;
}
.go-back{
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 99;
}
.book-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
}
.sal-c{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 50px;
}