/*==========================================
GOOGLE FONTS
============================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');


/*==========================================
VARIABLES CSS 
============================================*/

:root {
  --header-height: 4rem;

  /* Colors */
  
  --first-color: hsl(10, 90%, 40%);
  --first-color-alt: hsl(10, 90%, 50%);
  --first-color-dark: hsl(10, 40%, 20%);
  --title-color: hsl(10, 50%, 15%);
  --text-color: hsl(10, 20%, 40%);
  --text-color-light: hsl(10, 20%, 55%);
  --white-color: hsl(40, 86%, 92%);
  --body-color: hsl(40, 86%, 88%);
  --container-color: hsl(40, 86%, 94%);
  
  --shadow-small-img: drop-shadow(0 4px 16px hsla(353, 100%, 8%, .2));
  --shadow-big-img: drop-shadow(0 8px 24px hsla(353, 100%, 8%, .2));
  
  --shadow-dark: hsla(353, 100%, 8%, .1);
  
  /* Font and typography */
 
  --body-font: "Poppins", serif;
  --second-font: "Lobster", serif;

  --biggest-font-size: 2.4rem;
  --bigger-font-size: 2rem;
  --h1-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.946rem;
  --small-font-size: .813rem;
  --smaller-font-size: .713rem;

  /* Font weight*/
  
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /* z index */
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*==========================================
 *Responsive typography
============================================*/

@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.25rem;
    --bigger-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}


/*==========================================
  BASE
============================================*/

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

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-regular);
  font-family: var(--second-font);
  line-height: 120%;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*==========================================
  REUSABLE CSS CLASSES
============================================*/

.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 4.6rem 3rem;
}

.section:first-child {
  padding-top: 5rem;
}

.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  margin-bottom: 2rem;
}

.section__smalltext {
  color: var(--first-color);
  text-transform: uppercase;
  font-weight: var(--font-regular);
  margin-bottom: 0.46rem;
  letter-spacing: 1px;
}

.main {
  overflow: hidden;
}


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


/*==========================================
  ANIMATIONS
============================================*/

@keyframes floating {
  0%, 100% {
    transform: rotate(143deg) translateY(0);
  }
  50% {
    transform: rotate(143deg) translateY(-5px);
  }
}

.floating {
  animation: floating 2s infinite ease-in-out;
}




.recipe__pizza-layers {
  position: relative;
  width: 300px; /* Adjust as needed */
  height: 300px;
  margin: auto;
}

.layer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  transition: transform 0.5s ease-out;
}

/* Adjust spacing for 6 layers when scrolling */
.recipe.section.active .layer--1 { transform: translateX(-50%) translateY(-90px); }
.recipe.section.active .layer--2 { transform: translateX(-50%) translateY(-60px); }
.recipe.section.active .layer--3 { transform: translateX(-50%) translateY(-30px); }
.recipe.section.active .layer--4 { transform: translateX(-50%) translateY(30px); }
.recipe.section.active .layer--5 { transform: translateX(-50%) translateY(60px); }
.recipe.section.active .layer--6 { transform: translateX(-50%) translateY(90px); }

/*==========================================
  HEADER & NAV 
============================================*/

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: hsl(40, 86%, 88%, 53%);
  z-index: var(--z-fixed);
  transition: box-shadow .4s;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-family: var(--second-font);
  color: var(--title-color);
  font-size: var(--h2-font-size);
}

.nav__logo img {
  width: 30px;
}

.nav__toggle, 
.nav__close {
  display: flex;
  font-size: var(--h1-font-size);
  color: var(--title-color);
  cursor: pointer;
} 

.nav__right-content {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav__account {
  display: none;
}

.nav__account-link {
  padding: 0.5rem 1rem;
  background-color: var(--container-color);
  border-radius: 4rem;
  color: var(--title-color);
  font-family: var(--first-font);
  font-weight: var(--font-medium);
  display: inline-block;
}

.nav__cart i {
  font-size: 1.2rem;
  background-color: var(--first-color);
  color: var(--container-color);
  padding: 0.5rem;
  border-radius: 5rem;
}

/* Navigation for mobile devices */

@media screen and (max-width: 1024px){
  .nav__menu {
    position: fixed;
    top: -100vh;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 4.5rem 3.5rem;
    box-shadow: 0 4px 16px var(--shadow-dark);
    transition: top .4s;
  }
}

.nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2.2rem;
  font-size: var(--h2-font-size);
}

#nav-menu .nav__list li.nav__account {
  display: block;
  width: 170px;
  font-weight: var(--font-medium);
  font-size: var(--h3-font-size);
  margin: 0 auto;
}

.nav__link {
  position: relative;
  color: var(--title-color);
  font-family: var(--first-font);
  font-weight: var(--font-medium);
  font-size: var(--h3-font-size);
}

.nav__link::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--first-color);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.5rem;
  transition: width .4s;
}

.nav__link:hover::after {
  width: 60%;
}

.nav__close {
 position: absolute;
  top: 1rem;
  right: 1.5rem;
}


/* Show menu */

.nav__menu.show-menu {
  top: 0;
}

/* Add shadow header */

.shadow-header {
  box-shadow: 0 4px 16px var(--shadow-dark);
}



/* Active link */

.active-link::after {
  width: 60%;
}



/*=============== HOME ===============*/

.home__container {
  padding-block: 2rem 3rem;
  row-gap: 7rem;
}

.home__data {
  position: relative;
  text-align: center;
}

.home__title {
  font-size: var(--biggest-font-size);
}

.home__description {
  margin-block: 1rem 2rem;
}

.home__sticker-1,
.home__sticker-2,
.home__sticker-3,
.home__sticker-4 {
  width: 40px;
  position: absolute;
  opacity: .7;
}

.home__sticker-1 {
  right: .75rem;
  bottom: 2rem;
  rotate: 20deg;
}

.home__sticker-2 {
  left: 2.5rem;
  bottom: -4.5rem;
}

.home__images {
  position: relative;
  display: grid;
  justify-content: center;
  justify-self: center;
}

.home__ingredient {
    width: 60px;
    filter: var(--shadow-big-img);
    position: absolute;
    z-index: 2;
}

.home__board,
.home__pizza {
  filter: var(--shadow-big-img);
}

.home__pizza {
  width: 300px;
  z-index: 2;
}

.home__board {
  width: 300px;
  position: absolute;
  bottom: -0.6rem;
  left: -0.2rem;
}

.home__leaf-1 {
  top: -1rem;
  left: 7rem;
}

.home__pepperoni {
  right: -0.5rem;
  top: 2rem;
}

.home__mushroom {
  right: 2.5rem;
  bottom: 0rem;
}

.home__olive {
  bottom: -1rem;
  right: 7rem;
}

.home__leaf-2 {
  left: -0.5rem;
  bottom: 2rem;  
}

.home__tomato {
  left: -0.5rem;
  top: 2rem;
}


/*=============== BUTTON ===============*/

.button {
  display: inline-flex;
  justify-content: center;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: .73rem 2rem; 
  font-weight: var(--font-medium);
  border-radius: 4rem;
  box-shadow: 0 8px 22px hsla(0, 0%, 0%, 0.2);
  transition: background-color .4s;
  text-transform: uppercase;
  letter-spacing: 0.1px;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button-request {
  color: var(--title-color);
  display: block;
  margin: 3rem 1.3rem 2rem 0;
  font-weight: var(--font-medium);
}

.button-request i {
  font-size: 1.3rem;
  padding: 0.7rem;
  background-color: var(--container-color);
  border-radius: 50px;
  margin-right: 0.7rem;
}


/*=============== ABOUT ===============*/

.about {
  position: relative;
  overflow: hidden;
  background-color: var(--container-color);
}

.about__container {
  row-gap: 2rem;
  padding-bottom: 0;
}

.about__data {
  position: relative;
  text-align: center;
}

.about__data .section__title {
  margin-bottom: 1rem;
}

.about__description {
  margin-bottom: 2rem;
}

.about__sticker {
  width: 40px;
  position: absolute;
  right: 0;
  bottom: 2rem;
}

.about__sticker-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.about__sticker-3 {
  position: absolute;
  z-index: -1;
  bottom: 4%;
  left: -20px;
  width: 100%;
  max-width: 52px;
}

.about__images {
  width: 100%;
  max-width: 465px;
  justify-self: center;
  filter: var(--shadow-big-img);
}

.about__img {
  border-radius: 1rem;
  margin-bottom: 2rem;
}


/*=============== POPULAR ===============*/

.popular__container {
  grid-template-columns: 100%;
  row-gap: 3rem;
  padding-bottom: 2rem;
}

.popular__data .section__title {
  margin-bottom: 1rem;
}

.popular__description {
  text-align: center;
}

.popular__swiper {
  position: relative;
}

.popular__dish {
  position: absolute;
  inset: 0;
  top: -0.85rem;
  width: 220px;
  filter: var(--shadow-big-img);
  margin-inline: auto;
}


.popular__card,
.popular__img {
  width: 200px;
}

.popular__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popular__img {
  transform: scale(.8) rotate(-90deg);
  transition: transform .4s;
  opacity: 0.4;
}

.popular__title {
  font-size: var(--h2-font-size);
  color: var(--second-color);
  margin-block: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: opacity .4s;
}

.popular__button {
  opacity: 0;
  display: none;
}

/* Swiper class */

.swiper {
  margin-inline: initial;
  overflow: visible;
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .popular__img {
  transform: scale(1) rotate(0);
  opacity: 1;
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .popular__title {
  opacity: 1;
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .popular__button {
  opacity: 1;
  display: block;
}

/*=============== RECIPE ===============*/


.recipe__container {
  row-gap: 2rem;
  padding-bottom: 2rem;
}

.recipe__image {
  width: 60px;
  filter: var(--shadow-big-img);
}

.recipe__name {
  font-size: var(--normal-font-size);
  margin-bottom: 0.25rem;
}

.recipe__description {
  font-size: var(--small-font-size);
}

.recipe__ingredient {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}

.recipe__img {
  width: 320px;
  justify-self: center;
  filter: var(--shadow-big-img);
}

/*=============== PRODUCTS ===============*/

.products {
  background-color: var(--container-color);
}

.products__container {
  padding-top: 3rem;
  grid-template-columns: repeat(1, 0.9fr);
  gap: 1.3rem;
  margin: 0 auto;
  justify-content: center;
  max-width: 700px;
  width: 100%;
}

.products__data {
  margin-bottom: 2rem;
}

.products__description {
  text-align: center;
}

.products__card {
  position: relative;
  background-color: var(--body-color);
  padding: 2rem 1.4rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-dark);
}

.products__img {
  width: 180px;
  margin: 0 auto 1.3rem;
  filter: var(--shadow-big-img);
  transition: transform .4s;
}

.products__name {
  font-size: var(--h2-font-size);
  margin-block: 0.5rem; 
}

.products__text {
  font-size: var(--small-font-size);
}

p.products__text {
  min-height: 75px;
}

.products__price {
  font-family: var(--second-font);
  font-size: var(--h2-font-size);
  color: var(--first-color);
}

.products__button {
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.4rem 1.2rem 0.4rem 0.4rem;
  border-radius: 4rem;
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: var(--font-medium);
}

.products__button .ri-shopping-cart-line {
  font-size: 1rem;
  padding: 0.4rem;
  background-color: var(--container-color);
  border-radius: 50px;
  color: var(--first-color);
}

.products__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products__button:hover {
  background-color: var(--first-color-alt);
}

.products__card:hover .products__img {
  transform: translateY(-0.5rem);
}


[role="tablist"] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tabs__titles {
  justify-content: center;
}

.tabs__titles .tabs__title {
  background-color: var(--body-color);
  border-radius: 4rem;
  color: var(--title-color);
  font-family: var(--first-font);
  font-weight: var(--font-medium);
  display: inline-block;
  padding: 0.73rem 2rem;
  transition: all .4s;
  text-align: center;
  font-weight: var(--font-medium);
  letter-spacing: 0.1px;
  text-transform: uppercase;
}


.tabs__titles .tabs__title[aria-selected="true"] {
  display: inline-flex;
  justify-content: center;
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 4rem;
  transition: background-color .4s;
}







/*=============== CONTACT ===============*/

.contact__container {
  position: relative;
  background-color: var(--first-color-dark);
  padding-top: 3.5rem;
  border-radius: 3rem;
  overflow: hidden;
  row-gap: 3rem;
}

.contact__container .section__title, 
.contact__title,
.contact__address {
  color: var(--white-color);
}

.contact__info {
  text-align: center;
  row-gap: 2rem;
}

.contact__title {
  margin-bottom: 1rem;
}

.contact__social {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.contact__social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform 0.4s;
}

.contact__social-link:hover {
  transform: translateY(-0.25rem);
}

.contact__address {
  font-style: normal;
}

.contact__map {
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.contact__map span {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__image {
  justify-self: center;
}

.contact__img {
  width: 300px;
}

.contact__sticker-1,
.contact__sticker-2,
.contact__sticker-3 {
  width: 40px;
  position: absolute;
  opacity: .7;
}

.contact__sticker-1 {
  top: 8rem;
  left: 1.5rem;
}

.contact__sticker-2 {
  bottom: 23rem;
  right: 1.5rem;
}

.contact__sticker-3 {
  left: 2rem;
  bottom: 6rem;
}

/*=============== FOOTER ===============*/

.footer {
  padding-block: 4rem 2rem;
}

.footer__container,
.footer__content {
  row-gap: 3rem;
}

.footer__logo {
  justify-self: center;
  font-size: var(--h1-font-size);
  color: var(--first-color);
  font-family: var(--second-font);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__social,
.footer__pay,
.footer__form {
  display: flex;
  column-gap: 1rem;
}

.footer__social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform 0.4s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
}

.footer__pay-img {
  width: 30px;
  filter: var(--shadow-small-img);
}

.footer__form {
  padding: 0.5rem;
  background-color: var(--container-color);
  box-shadow: 0 4px 16px hsla(353, 100%, 8%, .1);
  border-radius: 4rem;
}

.footer__input {
  width: 100%;
  background-color: transparent;
  padding-inline: 1rem;
}

.footer__input::placeholder {
  color: var(--text-color);
}

.footer__button {
  padding-block: 0.75rem;
  cursor: pointer;
}

.footer__policy {
  display: flex;
  column-gap: 2rem;
  justify-content: center;
  margin-top: 5rem;
}

.footer__link {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.footer__copy {
  display: block;
  margin-top: 2rem;
  text-align: center;
  font-size: var(--small-font-size);
}


/*=============== SCROLL BAR ===============*/
::-webkit--scrollbar {
  width: 0.6rem;
  background-color: hsl(24, 78%, 75%);
}

::-webkit--scrollbar-thumb {
  background-color: hsl(24, 50%, 60%);
  border-radius: 5px; 
}

::-webkit--scrollbar-thumb:hover {
  background-color: hsl(24, 50%, 50%);
}


/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(  --first-color);
  box-shadow: 0 4px 10px hsla(353, 100%, 8%, .2);
  color: var(--white-color);
  display: inline-block;
  padding: 6px .5rem;
  font-size: 1.25rem;
  border-radius: 50px;
  transition: bottom .4s transform .4s;
}

.scrollup:hover {
  transform: translateY(-0.5rem);
  
}

/* Show Scroll Up */

.show-scroll {
  bottom: 3rem;
}


/*=============== BREAKPOINTS ===============*/

/* For small devices */

@media screen and (max-width: 320px){
  .container {
    margin-inline: 1rem;
  }
  
  .products__container {
    grid-template-columns: 0.9fr;
    justify-content: center;
  }
  
  .footer__form {
    background-color: transparent;
    box-shadow: none;
    flex-direction: column;
    row-gap: 1rem;
    padding: 0;
    background-color: var(--container-color);
    box-shadow: 0 4px 16px hsla(353, 100%, 8%, .1);
    padding: 0.75rem;
    border-radius: 4rem;
  }
}


/* For medium devices */

@media screen and (min-width: 576px) {
  .home__container,
  .about__container,
  .popular__container,
  .recipe__container {
    grid-template-columns: 475px;
    justify-content: center;
  }
  
  .products__container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  
  .contact__container {
    width: 450px;
    margin-inline: auto;
  }
  
  .footer__form {
    width: 360px;
  }
}

@media screen and (min-width: 768px){
  
  .button-request {
    display: inline;
    margin: 0;
  }
  
  .home__button {
    margin-right: 2rem;
  }
  .popular__swiper {
    width: 600px;
    overflow-x: clip;
    justify-self: center;
  }

  .products__container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    width: 100%;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .footer__content div:nth-child(3){
  grid-column: 1/3;
  }

  .footer__title {
  text-align: center;
  }

  .footer__social,
  .footer__pay {
  column-gap: 1.5rem;
  }
}


/* For large devices */

@media screen and (min-width: 1024px){
  .container {
    margin-inline: auto;
  }
  
  .section {
    padding: 7rem 2rem;
  }
  
  .section__title {
    margin-bottom: 4rem;
  }
  
  .header {
    padding-inline: 2rem;
  }
  
  .nav {
    height: calc(var(--header-height ) + 2rem);
  }
  
  .nav__toggle,
  .nav__close {
    display: none;
  }
  
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  
  .nav__account {
    display: block;
  }
  
  #nav-menu .nav__list li.nav__account {
    display: none;
  }
  
  .nav__link {
    font-size: var(--normal-font-size);
  }
  
  .home__container {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    align-items: start;
    padding-block: 10rem 4rem;
  }
  
  .home__data {
    text-align: initial;
    margin-top: 2rem;
  }
  
  .home__description {
    margin-bottom: 3.5rem;
    padding-right: 6rem;
  }
  .home__sticker--1,
  .home__sticker--2 {
    width: 50px;
  }
  
  .home__sticker-1 {
    right: 9rem;
    top: -9rem;
    bottom: 0;
    width: 135px;
    transform: rotate(143deg);
  }
  
  .home__sticker-2 {
    bottom: -8rem;
    width: 160px;
    left: 226%;
    transform: rotate(265deg);
  }
  
  .home__board,
  .home__pizza {
    width: 520px;
  }
  
  .home__board {
    bottom: -1rem;
  }
  
  .home__ingredient {
    width: 100px;
  }
  
  .home__leaf-1 {
    top: -2rem;
  }
  
  .home__pepperoni {
    right: -1rem;
    top: 3.5rem;
  }
  
  .home__mushroom {
    right: 4rem;
    bottom: -0.5rem;
  }
  
  .home__leaf-2 {
    left: -1rem;
    bottom: 3.5rem;
  }
  
  .home__tomato {
    left: -1rem;
    top: 3.5rem;
  }
  
  .about__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 6rem;
  }
  
  .about__images {
    order: -1;
  }
  
  .about__data {
    text-align: initial;
  }
  
  .about__data .section__title {
    margin-bottom: 1.5rem;
    text-align: initial;
  }
  
  .about__description {
    margin-bottom: 3rem;
  }
  
  .about__sticker {
    max-width: 160px;
    width: 100%;
    right: -12rem;
    bottom: -5rem;
    transform: rotate(358deg);
  }
  
  .about__sticker-2 {
    width: 100%;
    max-width: 135px;
    top: -27%;
    right: 0;
  }

  .about__sticker-3 {
    position: absolute;
    bottom: -38%;
    width: 100%;
    max-width: 100px;
  }
  
  .about__sticker, .about__sticker-2, .about__sticker-3 {
    z-index: 9;
  }
  
  .popular__container {
    grid-template-columns: 575px;
    row-gap: 5rem;
    padding-bottom: 3rem;
  }
  
  .popular__data .section__title {
    margin-bottom: 1.5rem;
  }
  
  .popular__swiper {
    width: 1120px;
  }
  
  .popular__card,
  .popular__img {
    width: 350px;
  }
  
  .popular__dish {
    width: 390px;
    top: -1.5rem;
  }
  
  .popular__title {
    margin-top: 3rem;
    font-size: var(--h2-font-size);
  }
  
  .recipe__container {
    grid-template-columns: 0.8fr 1.3fr;
    align-items: center;
    column-gap: 6rem;
    padding-bottom: 3rem;
  }
  
  .recipe__ingredient {
    column-gap: 1.5rem;
  }
  
  .reciple__img {
    width: 80px;
  }
  
  .recipe__name {
    font-size: var(--h3-font-size);
  }
  
  .recipe__description {
    font-size: var(--normal-font-size);
  }
  
  .recipe__img {
    width: 550px;
  }
  
  .products__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2rem;
    max-width: 100%;
  }
  
  .products__data {
    width: 100%;
    max-width: 535px;
    margin-inline: auto;
  }
  
  .products__data .section__title {
    margin-bottom: 1.5rem;  
  }

  .products__card {
    padding: 1.7rem 1.5rem;
    border-radius: 1rem;
  }
  
  .products__img {
    width: 200px;
    top: -4rem;
  }
  
  .product__name {
    font-size: var(--h2-font-size);
  }
  
  .product__button {
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 6px;
  }
  
  .contact__container {
    width: initial;
    grid-template-columns: 370px 350px;
    justify-content: center;
    column-gap: 6rem;
    border-radius: 4rem;
  }
  
  .contact__img {
    width: 350px;
  }
  
  .contact__image {
    order: -1;
  }
  
  .contact__info,
  .contact__data .section__title {
    text-align: initial;
  }
  
  .contact__data {
    margin-top: 2rem;
  }
  
  .contact__info {
    grid-template-columns: repeat(2, max-content);
  }
  
  .contact__title {
    font-size: var(--h2-font-size);
  }
  
  .contact__social {
    justify-content: initial;
  }
  
  .contact__sticker-1,
  .contact__sticker-2,
  .contact__sticker-3 {
    width: 50px;
  }
  
  .contact__sticker-1 {
    left: 4rem;
  }
  
  .contact__sticker-2 {
    right: 4rem;
    top: 8rem;
    bottom: 0;
  }
  
  .contact__sticker-3 {
    left: 10rem;
    bottom: 4rem;
  }
  
  .footer {
    padding-bottom: 3rem;
    padding-inline: 2rem;
  }
  
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__content div:nth-child(3){
    grid-column: initial;
  }
  
  .footer__content div:nth-child(2){
    order: 1;
    justify-self: end;
  }
  
  .footer__content div:nth-child(1){
    justify-self: start;
  }
  
  .scrollup {
    right: 3rem;
  }
}
