/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Titan+One&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 110px;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #cb202d;
  --first-color-dark: #cb202d;
  --first-color-darken: #cb202d;
  --second-color: hsl(45, 100%, 52%);
  --second-color-dark: hsl(45, 100%, 20%);
  --white-color: hsl(0, 0%, 100%);
  --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, .4));
  --shadow-circle: 0 12px 24px hsla(0, 0%, 0%, .4);
  --shadow-button: 0 -4px 8px hsla(0, 0%, 0%, .3);
  --shadow-card: 0 -8px 24px hsla(0, 0%, 0%, .3);
  --shadow-text: 0 2px 4px var(--first-color-darken);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Titan One", sans-serif;
  --biggest-font-size: 3.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

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

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

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--first-color);
  color: var(--white-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
s{
  font-size: 16px;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 35px;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font: var(--font-regular) var(--h1-font-size) var(--second-font);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: var(--shadow-text);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--first-color);
  z-index: var(--z-fixed);
  transition: box-shadow .4s;
}
.nav{
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo{
  color: var(--white-color);
  font-family: var(--second-font);
  text-shadow: var(--shadow-text);
}
.nav__logo img{
  height: 90px;
  margin: 10px 0;
}
.nav__close,
.nav__toggle{
  display: flex;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu{
    position: fixed;
    right: -100%;
    top: 0;
    background-color: var(--first-color-dark);
    width: 100%;
    height: 100%;
    padding: 7rem 1.5rem 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right .4s;
  }
}
.nav__list{
  display: flex;
}
.nav__list{
  flex-direction: column;
  row-gap: 3rem;
}
.nav__link{
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}
.nav__link:hover{
  color: var(--second-color);
}
.nav__close{
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}
/* Show menu */
.show-menu{
  right: 0;
}

/* Shadow header */
.shadow-header{
  box-shadow: 0 2px 16px hsla(0, 0%, 0%, .15);
}

/* Active link */
.active-link{
  color: var(--second-color);
}

/*=============== HOME ===============*/
.home_container{
  padding-top: 1.5rem;
  justify-content: center;
  row-gap: 4rem;
}
.home__data{
  position: relative;
  text-align: center;
}
.home__title{
  font: var(--font-regular) var(--biggest-font-size) var(--second-font);
  line-height: 100%;
  margin-bottom: 1rem;
  text-shadow: var(--shadow-text);
}
.home__meat{
  width: 40px;
  position: absolute;
  top: 9rem;
  right: 0;
  opacity: .5;
}
.home__description{
  margin-bottom: 2.5rem;
}
.home__buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}
.home__images{
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}
.home__circle{
  width: 320px;
  height: 320px;
  background-color: var(--first-color-darken);
  border-radius: 50%;
  box-shadow: inset var(--shadow-circle);
  display: grid;
  place-items: center;
}
.home__subcircle{
  width: 250px;
  height: 250px;
  background-color: var(--second-color);
  border-radius: 50%;
  box-shadow: inset var(--shadow-circle);
}
.home__images .home__img{
  width: 250px;
  rotate: 10deg;
  filter: var(--shadow-img);
  position: absolute;
}
.home__images img{
  width: 60px;
  filter: var(--shadow-img);
  position: absolute;
}
.home__chips-1{
  right: -.5rem;
}
.home__chips-2{
  bottom: -.75rem;
  right: .5rem;
}
.home __chips-3{
  top: .25rem;
  left: -.5rem;
}
.home__tomato-1{
  top: -1.5rem;
  right: 2.5rem;
}
.home__tomato-2{
  left: 3.5rem;
  bottom: -1.5rem;
}
.home__leaf{
  left: -.75rem;
}
/*=============== BUTTON ===============*/
.button {
  background-color: var(--second-color);
  color: var(--second-color-dark);
  font-weight: var(--font-semi-bold);
  padding: .75rem 2rem;
  border-radius: 4rem;
  box-shadow: inset var(--shadow-button);
}

.button__ghost{
  background-color: transparent;
  box-shadow: none;
  border: 3px solid var(--second-color);
  color: var(--second-color);
}

/*=============== FAVORITES ===============*/
.favorites__container{
  row-gap: 3rem;
  grid-template-columns: 100%;
  padding-bottom: 3rem;
}
.favorites__data{
  position: relative;
  text-align: center;
}
.favorites__cheese-1,
.favorites__cheese-2{
  width: 40px;
  position: absolute;
  opacity: .5;
}
.favorites__cheese-1{
  top: 2rem;
  right: -1rem;
  rotate: -15deg;
}
.favorites__cheese-2{
  bottom: -2rem;
  left: -.75rem;
  transform: scaleX(-1) rotate(45deg);
}
.favorites__article{
  position: relative;
  width: 200px;
}
.favorites__img{
  width: 200px;
  scale: .8;
  transition: scale .4s, filter .4s;
}
.favorites__leaf-1,
.favorites__leaf-2{
  width: 70px;
  position: absolute;
  filter: var(--shadow-img);
  scale: 0;
  transition: scale .4s .1s;
}
.favorites__leaf-1{
  top: -1rem;
  right: .5rem;
}
.favorites__leaf-2{
  bottom: -1rem;
  left: -.5rem;
}
/* Swiper class */
.swiper{
  margin-inline: initial;
  overflow: visible;
}
:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorites__img{
  scale: 1;
  filter: var( -- shadow-img);
}
:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorites__leaf-1,
:is(.swiper-slide-active, .swiper-slide-duplicate-active) .favorites__leaf-2{
  scale: 1;
}
/*=============== CARE ===============*/
.care{
  background-color: var( --first-color-dark);
}
.care__container{
  row-gap: 3rem;
  padding-block: 1rem 2rem;
}
.care__list{
  display: grid;
  row-gap: 1.25rem;
}
.care__item{
  display: flex;
  column-gap: .75rem;
  align-items: center;
}
.care__item i{
  font-size: 1.5rem;
  color: var( --second-color);
}
.care__img{
  width: 320px;
  filter: var( --shadow-img);
  justify-self: center;
}
/*=============== BANNER ===============*/
/* .banner{
  padding-top: 3rem;
} */
.banner__container{
  background-color: var(--second-color);
  padding: 1rem 1.5rem;
}
.banner__list{
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
}
.banner__item{
  color: var(--second-color-dark);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: 600;
}
.banner_item i{
  font-size: 1.5rem;
}
.banner_item span{
  font: var(--small-font-size) var(--second-font);
}


/*=============== PRODUCTS ===============*/
.products__container{
  position: relative;
  padding-top: 4.5rem;
}
.products__content{
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 1.5rem;
}
.products__content a{
  color: #fff;
}
.products__card{
  position: relative;
  background-color: var(--first-color-dark);
  padding: 6.25rem .75rem 1.25rem;
  border-radius: 1rem;
  box-shadow: inset var(--shadow-card);
  z-index: 10;
}
.products__img{
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
  filter: var(--shadow-img);
  transition: transform .4s;
}
.products__subtitle{
  font-size: var(--small-font-size);
}
.products__title{
  font: var(--font-regular) var(--h2-font-size) var(--second-font);
  margin-bottom: .5rem;
}
.products__price{
  font-family: var(--second-font);
}
.products__button{
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  outline: none;
  border: none;
  background-color: var(--second-color);
  padding: 4px;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  color: var(--second-color-dark);
  box-shadow: inset var(--shadow-button);
  display: inline-flex;
  cursor: pointer;
}
.products__card:hover .products__img{
  transform: translateY(-.5rem);
}
.products__crab,
.products__hamburger,
.products__cheese{
  position: absolute;
  width: 40px;
  opacity: .5;
}
.products__crab{
  top: -2.5rem;
  left: 0;
  rotate: 30deg;
}
.products__hamburger{
  top: 17rem;
  right: -1.5rem;
  rotate: -15deg;
}
.products__cheese{
  left: 2rem;
  right: 0;
  margin: 0 auto;
  bottom: 3rem;
  rotate: 15deg;
}

    
.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arial', sans-serif;
  margin: 10px 0;
}

.quantity-label {
  font-size: 1rem;
  font-weight: bold;
}

.quantity-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity-select:hover {
  border-color: #888;
}

.quantity-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.quantity-select option {
  background-color: #fff;
  color: #333;
}



/*=============== Graphics for steps ===============*/

  .Steps-to .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .Steps-to .step-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--first-color-dark);
    border-radius: 8px;
    box-shadow: inset var(--shadow-card);
    width: 280px;
    padding: 30px 20px;
    text-align: center;
  }

  .Steps-to .step-box:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .Steps-to .step-box img {
    color: #fff;
    width: 60px;
    height: 60px;
    margin: 20px;
  }

  .Steps-to .step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .Steps-to .step-desc {
    color: hsl(45, 100%, 52%);
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .Steps-to .step-box {
      width: 100%;
      max-width: 90%;
    }
  }


/* <!--==================== makes us different ====================--> */


  .different-us {
    color: white;
  }

  .goodness-section {
    text-align: center;
    padding: 20px;
  }

  .goodness-section h2 {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 10px;
  }

  .goodness-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .goodness-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .goodness-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--first-color-dark);
    border-radius: 8px;
    box-shadow: inset var(--shadow-card);
  }

  .goodness-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
  }

  .goodness-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: bold;
  }

  @media (min-width: 768px) {
    .goodness-icons {
      flex-wrap: nowrap;
      flex-direction: row;
      flex-wrap: wrap;
      max-width: 700px;
      margin: 0 auto;
    }

    .goodness-item {
      flex: 1 1 30%;
    }
  }













/*=============== CONTACT ===============*/
.contact__container{
  position: relative;
  background-color: var(--first-color-darken);
  padding-top: 3.5rem;
  border-radius: 3rem;
  box-shadow: inset var(--shadow-card);
  overflow: hidden;
}
.contact__content{
  padding-top: 1rem;
  row-gap: 3rem;
}
.contact__data{
  text-align: center;
}
.contact__title{
  font: var(--font-regular) var(--h2-font-size) var(--second-font);
  margin-bottom: .5rem;
}
.contact__social{
  display: flex;
  justify-content: center;
  column-gap: .75rem;
}
.contact__social a{
  color: var(--second-color);
  font-size: 1.5rem;
}
.contact_info{
  font-style: normal;
}
.contact__img{
  width: 200px;
  justify-self: center;
  filter: var(--shadow-img);
}
.contact__shrimp,
.contact__crab,
.contact__meat{
  position: absolute;
  width: 40px;
  opacity: .5;
}
.contact__shrimp{
  top: 9rem;
  right: 1.5rem;
  rotate: 15deg;
}
.contact__crab{
  top: 17rem;
  left: 1rem;
  rotate: 15deg;
}
.contact__meat{
  right: 2rem;
  bottom: 11rem;
  rotate: -15deg;
}
/*=============== FOOTER ===============*/


.footer {
  background-color: #cb202d;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: yellow;
}

.footer-social {
  flex: 1 1 200px;
}

.social-icons a {
  color: #ccc;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
  border-top: 1px solid #333;
  padding-top: 15px;
}
.footer-bottom2 {
  border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-column,
  .footer-social {
    width: 100%;
  }
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background-color: hsl(10, 100%, 52%);
}
::-webkit-scrollbar-thumb{
  background-color: hsl(5, 99%, 27%);
}
::-webkit-scrollbar-thumb:hover{
  background-color: ☐ hsl(5, 99%, 27%);
}
/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--first-color-dark);
  color: var(--white-color);
  box-shadow: inset var(--shadow-button);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}
.scrollup:hover{
  transform: translateY(-.5rem); 
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container{
    margin-inline: 1rem;
  }
  .section__title{
    font-size: var(--h2-font-size);
  }
  .home___title{ 
    font-size: 3rem;
  }
  .home__buttons{
    flex-direction: column;
    row-gap: 1rem;
  }
  .home__circle{
    width: 250px;
    height: 250px;
  }
  .home__subcircle{
    width: 200px;
    height: 200px;
  }
  .home__images.home__img{
    width: 200px;
  }
  .products__content{
    grid-template-columns: 160px;
    justify-content: center;
  }
  .footer__content{
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 1.5rem;
  }
  .footer__copy{
    grid-column: 1;
  }
}

/* For medium devices */
@media screen and (min-width: 540px) {
  .home__container,
  .favorites__container,
  .care__container{
    grid-template-columns: 370px;
    justify-content: center;
  }
  .favorites__swiper{
    max-width: 600px;
    overflow-x: clip;
    justify-self: center;
  }
  .products__content{
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }
  .contact{
    display: grid;
    grid-template-columns: 450px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .products__content{
    grid-template-columns: repeat(3, 160px);
  }
  .contact{
    grid-template-columns: 550px;
  }
  .footer__content{
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    align-items: center;
  }
  .footer__copy{
    grid-column: initial;
  } 
  .footer__link:nth-child(2){
    order: 1;
  }
}
/* For large devices */
@media screen and (min-width: 1150px) {
  .container{
    margin-inline: auto;
  }
  .section{
    padding-block: 7rem 2rem
  }
  .section__title{
    margin-bottom: 2rem;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__link{
    font-size: var(--normal-font-size);
  }
  .nav__menu{
    display: flex;
    column-gap: 3rem;
    align-items: center;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
  }
  .home__container{
    grid-template-columns: 420px 585px;
    align-items: center;
    column-gap: 6rem;
    padding-top: 5rem;
  } 
  .home__data{
    text-align: initial;
  }
  .home__title{
    margin-bottom: 1.5rem;
  }
  .home__description{
    margin-bottom: 4rem;
  }
  .home__buttons{
    justify-content: initial;
    column-gap: 1.5rem;
  }
  .home__meat{
    width: 80px;
    top: 13rem;
  }
  .home__circle{
    width: 550px;
    height: 550px;
  }
  .home__subcircle{
    width: 430px;
    height: 430px;
  }
  .home__images .home__img{
    width: 450px;
    top: -65px;
  }
  .home images img{
    width: 95px; 
  }
  .favorites__container{
    grid-template-columns: 520px;
    row-gap: 4rem;
  }
  .favorites__cheese-1,
  .favorites__cheese-2{
    width: 80px;
  }
  .favorites__cheese-1{
    right: -18rem;
  }
  .favorites__cheese-2{
    left: -18rem;
  }
  .favorites__swiper{
    max-width: 1000px;
  }
  .favorites__article,
  .favorites__img{
    width: 320px;
  }
  .favorites__leaf-1,
  .favorites__leaf-2{
    width: 110px;
  }
  .care__container{
    grid-template-columns: 500px 410px;
    column-gap: 6rem;
    align-items: center;
    padding-block: 4rem;
  }
  .care__img{
    width: 550px;
    order: -1;
  }
  .care__item{
    column-gap: 1rem;
  }
  .care__item i{
    font-size: 2rem;
  }
  /* .banner{
    padding-top: 4rem;
  } */
  .banner__list{
    column-gap: 6.5rem;
  }
  .banner__item{
    column-gap: 1rem;
  }
  .banner__item i{
    font-size: 4.5rem;
  }
  .banner__item span{
    font-size: var(--h1-font-size);
  }
  .products__container{
    padding-top: 7.5rem;
  }
  .products__content{
    grid-template-columns: repeat(3, 250px);
    gap: 10rem 4rem;
  }
  .products__card{
    padding: 11rem 2rem 2rem;
    border-radius: 1.5rem;
  }
  .products__img{
    width: 170px;
    top: -5rem;
    border-radius: 1.5rem;
  }
  .products__subtitle{
    font-size: var(--normal-font-size);
    visibility: hidden;
  }
  .products__price{
    font-size: var(--h3-font-size);
  }
  .products__button{
    right: 2rem;
    bottom: 2rem;
    padding: 6px;
    font-size: 1.5rem;
    border-radius: .5rem;
  }
  .products__crab,
  .products__hamburger,
  .products__cheese{
    width: 80px;
  }
  .products__crab{
    top: 2rem;
  }
  .products__hamburger{
    top: 30rem;
    right: 3rem;
  }
  .products__cheese{
    left: 4rem;
    margin: initial;
  }
  .contact{
    display: block;
  }
  .contact__container{
    border-radius: 4rem;
  }
  .contact__content{
    grid-template: 330px/360px 320px;
    justify-content: center;
    align-items: flex-start;
    column-gap: 10rem;
    padding-top: 2rem;
  }
  .contact__data{
    text-align: initial;
    grid-template: max-content / repeat(2, max-content);
    gap: 3rem 2rem;
  }
  .contact__title{
    margin-bottom: .75rem;
  }
  .contact__social{
    justify-content: initial;
  }
  .contact__img{
    width: 360px;
    margin: 7% 0 0 0;
    transform: translateY(-6rem);
  }
  .contact__shrimp,
  .contact__crab,
  .contact__meat{
    width: 80px;
  }
  .contact__shrimp{
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20rem;
  } 
  .contact__crab{
    top: 5rem;
    left: 4rem;
  }
  .contact__meat{
    right: initial;
    left: 12rem;
    bottom: -1rem;
  }
  .footer{
    padding-block: 5rem 3rem;
  }
  .footer__container{
    row-gap: 3rem;
  }
  .scrollup{
    right: 3rem;
  }
}
@media(max-width:1150px){
  .nav__list{
    margin-left: 30%;
  }
}

/* popup  */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup box */
.popup-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  position: relative;
  color: #000;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.popup-box img{
  height: 90px;
  margin: 0 auto;
}
.popup-box h2{
  text-align: center;
}
.popup-box p{
  text-align: center;
  margin-top: 10px;
}
.popup-box .btn-box{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.popup-box .btn-box a{
  color: var(--white-color);
  border: 1px solid var(--first-color);
  background-color: var(--first-color);
  padding: 5px 10px;
  border-radius: 4px;
}
/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Open popup button */
#openPopupBtn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive popup */
@media screen and (max-width: 600px) {
  .popup-box {
      width: 90%;
  }
}










/* login page  */
.login-page-container {
    max-width: 400px;
    margin: 200px auto;
    background-color: white;
    color: #000;
    padding: 20px;
    border-radius: 5px;
}
.login-page-container h2{
    text-align: center;
}
.login-page-container input[type="email"], 
.login-page-container input[type="password"],
.login-page-container input[type="text"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-page-container input[type="submit"] {
    background-color: var(--second-color);
    color:#000;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.login-page-container input[type="submit"]:hover {
    background-color: #218838;
    color: #fff;
}
.login-page-container .error {
    color: red;
}
.login-page-container .additional-links {
  margin-top: 10px;
  text-align: center;
}

.additional-links a {
  text-decoration: none;
  font-size: 0.9em;
  color: #007BFF; /* A modern blue color for links */
  margin: 0 10px;
}

.additional-links a:hover {
  text-decoration: underline;
}

@media(max-width:430px){
  .login-page-container {
    max-width: 370px;
  }
}








/* profile page  */

.main-profile{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 93vh;
  margin: 0;
}
.main-profile .profile-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 350px;
  text-align: center;
  position: relative;
  margin-top: 15%;
}
.main-profile .profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid #007bff;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.main-profile h2 {
  margin-top: 60px;
  font-size: 1.5em;
  color: #333;
}
.main-profile .success-message, .error-message {
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9em;
}
.main-profile .success-message {
  background-color: #d4edda;
  color: #155724;
}
.main-profile .error-message {
  background-color: #f8d7da;
  color: #721c24;
}
.main-profile form {
  margin-top: 20px;
  text-align: left;
}
.main-profile form div {
  margin-bottom: 15px;
}
.main-profile label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}
.main-profile input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9em;
}
.main-profile button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
}
.main-profile button:hover {
  background-color: #0056b3;
}



/* my order  */
.orders-container{
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
}
.orders-container {
  max-width: 800px;
  margin: 150px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.orders-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}
.orders-container .order-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  background-color: var(--white-color);
  padding: 15px;
  max-width: 700px;
  width: 100%;
  border-radius: 4px;
}
.orders-container .order-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}
.orders-container .order-details {
  flex: 1;
}
.orders-container .order-details h3 {
  color: #007bff;
  margin: 0 0 10px;
}
.orders-container .order-details p {
  margin: 5px 0;
  color: #555;
}
.orders-container .progress-bar-container {
  margin-top: 10px;
  padding-top: 10px;
}
.orders-container .progress-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.orders-container .progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #ddd;
  transform: translateY(-50%);
  z-index: 1;
}
.orders-container .progress-bar-step {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ddd;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 12px;
}
.orders-container .progress-bar-step.active {
  background: green;
}
.orders-container .progress-bar-step.red {
  background: var(--first-color-darken);
}
.orders-container .progress-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 12px;
  color: #555;
}
.orders-container .no-orders {
  text-align: center;
  font-size: 16px;
  color: #555;
}
@media(max-width:450px){
  .orders-container {
    max-width: 370px;
  }
  .orders-container .order-item {
    flex-direction: column;
    align-items: center;
  }
}
.quantity-up {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* my cart  */

.cart-container {
  max-width: 800px;
  margin: 150px auto 10px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}
.cart-container h2{
  color: #000;
  text-align: center;
}
.cart-container .cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  color: #000;
  padding-bottom: 10px;
}
.cart-container .cart-item img {
  max-width: 100px;
  margin-right: 20px;
}
.cart-container .cart-item-info {
  flex-grow: 1;
}
.cart-container .cart-item-actions form {
  margin-right: 10px;
}
.cart-container .remove-button {
  cursor: pointer;
  background-color: #ff4d4d;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
}
.cart-container .remove-button:hover {
  background-color: #cc0000;
}
.cart-total {
  color: #000;
  font-size: 20px;
  margin-top: 20px;
}
.cart-total input[type="text"],
.cart-total button{
  height: 40px;
  padding: 5px;
  border-radius: 4px;
}
.cart-total button{
  background-color: #218838;
  color: var(--white-color);
  border: none;
  cursor: pointer;
}
.cart-container .cart-total form{
  flex-direction:column;
  justify-content: center;
  align-items: center;
} 
.cart-container .buy-now-button {
  background-color: #218838;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 5%;
  width: 100%;
}
.cart-container .buy-now-button:hover {
  background-color: #45a049;
}
/* Popup Styles */
.cart-popup{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.cart-popup-content {
  background: white;
  color: #000;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.cart-popup button{
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.empty-msg{
  color: #000;
  text-align: center;
}
@media (max-width: 430px) {
  .cart-container{
    border-radius: initial;
  }
  .cart-container .cart-item {
    flex-direction: column; 
    align-items: stretch;
  }
  .cart-container .cart-item img{
    margin: 0 auto;
  }
  .cart-container .remove-button {
    width: 100%;
    padding: 10px 10px;
  }
  .cart-container .cart-item-actions p{
    float:right;
  }
}








/* checkout page  */
.checkout-container { 
  max-width: 600px; 
  margin: 150px auto; 
  padding: 20px; 
  color: #000;
  border-radius: 5px; 
}
.checkout-container h2,
.checkout-container h3{
  text-align: center;
}
.checkout-container input { 
  width: 100%; 
  padding: 10px; 
  margin-bottom: 10px; 
  border-radius: 3px; 
  border: 1px solid #ccc; 
}
.checkout-container button { 
  padding: 10px 20px; 
  background-color: #4CAF50; 
  color: white; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
}
.checkout-container .apply_coupon{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin: 10px 0;
}
.checkout-container button:hover { 
  background-color: #45a049; 
}
.checkout-container .product-list { 
  margin-bottom: 20px; 
}
.checkout-container .product-item { 
  margin-bottom: 10px; 
}
.checkout-container .product-item span { 
  display: block; 
}
.checkout-container .checkout-split{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-container .checkout-in{
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}
.success-message-page { 
  background-color:#fff;
  max-width: 400px; 
  margin: 150px auto; 
  padding: 20px; 
  border-radius:8px;
  color:#000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.success-message-page img{
  height: 100px;
}
.success-message-page .go-back-btn{
  padding: 10px 20px; 
  background-color: #4CAF50; 
  color: white; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
}
.success-message-page .go-back-btn:hover { 
  background-color: #45a049; 
}


/*/ agent dashboard */
.agent-nav{
    display:flex;
    justify-content:space-around;
    align-items:center;
}
.agent-nav img{
    height: 90px;
    margin-top:10px;
}
.agent-container { 
    max-width: 800px; 
    margin: 50px auto; 
    background-color: white; 
    padding: 20px; 
    border-radius: 5px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    color:#000;
        
}
.agent-container h1 { 
    font-size: 24px; 
    color: #333;
    text-align:center;
    
}
.agent-container .shop-info { 
    margin-top: 20px;
    }
.agent-nav .logout{ 
    padding: 10px 15px; 
    background-color: #dc3545; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px;  
    
}
.agent-nav .logout:hover { 
    background-color: #c82333; 
    
}
.agent-container .items-sold { 
    margin-top: 10px; 
    
}
.agent-container .btn { 
    padding: 10px 15px; 
    background-color: #007bff; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px; 
    
}
.agent-container .btn:hover { 
    background-color: #0056b3; 
    
}
.agent-container table{
    width:100%;
}
.agent-container table,
.agent-container tr,
.agent-container td,
.agent-container th{
    border:1px solid;
    height:60px;
    text-align:center;
}
.agent-container  li{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
@media(max-width:820px){
  .agent-container { 
    margin: 50px 20px;
  }
}
@media(max-width:450px){
  .agent-container h1{
    font-size: 21px;
  }
  .agent-container h2{
    text-align: center;
    font-size: 21px;
  }
}




.itemsold-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  background: #ffffff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.itemsold-container h1 {
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.itemsold-container p {
  text-align: center;
  color: #666;
  font-size: 1rem;
}

.itemsold-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.itemsold-container th, 
.itemsold-container td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #ddd;
}

.itemsold-container th {
  background-color: #007BFF;
  color: #fff;
}

.itemsold-container tr:nth-child(even) {
  background-color: #f9f9f9;
}

.itemsold-container .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.itemsold-container .btn:hover {
  background-color: #0056b3;
}

@media screen and (max-width: 768px) {
  .itemsold-container table, 
  .itemsold-container thead, 
  .itemsold-container tbody, 
  .itemsold-container th, 
  .itemsold-container td, 
  .itemsold-container tr {
      display: block;
  }

  .itemsold-container thead tr {
      display: none;
  }

  .itemsold-container tr {
      margin-bottom: 1rem;
      border-bottom: 2px solid #ddd;
  }

  .itemsold-container td {
      padding: 0.5rem;
      text-align: right;
      position: relative;
  }

  .itemsold-container td::before {
      content: attr(data-label);
      position: absolute;
      left: 0;
      top: 0;
      padding: 0.5rem;
      font-weight: bold;
      background-color: #f4f4f9;
      color: #333;
  }

  .itemsold-container .btn {
      width: 100%;
      text-align: center;
  }
}





.agent-edit-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.agent-edit-container h2 {
  font-size: 1.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.agent-edit-container .agent-edit-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agent-edit-container label {
  font-size: 1rem;
  color: #333;
}

.agent-edit-container input[type="number"] {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.agent-edit-container button {
  padding: 0.7rem 1rem;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  width: 100%;
}

.agent-edit-container button:hover {
  background-color: #0056b3;
}

.agent-edit-container .back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agent-edit-container .back-link:hover {
  color: #0056b3;
}
@media(max-width:720px){
  .agent-edit-container {
    margin: 30px;
  }
}






.agent-sell-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.agent-sell-container h1 {
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

.agent-sell-container form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.agent-sell-container .form-group {
  display: flex;
  flex-direction: column;
}

.agent-sell-container label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.agent-sell-container select, 
.agent-sell-container input[type="number"] {
  width: 100%;
  padding: 0.7rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.agent-sell-container button {
  padding: 0.7rem 1rem;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.agent-sell-container button:hover {
  background-color: #0056b3;
}

.agent-sell-container .back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agent-sell-container .back-link:hover {
  color: #0056b3;
}
@media(max-width:720px){
  .agent-sell-container {
    margin: 30px;
  }
}







/* product page  */
.product-main{
  margin: 12% 5% 0 5%;
}
.product-main .prod-top{
  display: flex;
  gap: 30px;
  justify-content: center;
}

.product-main .prod-top .left {
  width: 250%;
  max-width: 600px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: var(--first-color-dark);
  box-shadow: inset var(--shadow-card);
  height: fit-content;
}

.product-main .prod-top .left .main-image img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
}

.product-main .prod-top .left .thumbnails {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-main .prod-top .left .thumbnails img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s, border 0.3s;
}

.product-main .prod-top .left .thumbnails img:hover {
  transform: scale(1.1);
  border: 2px solid #ff5722;
}
.product-main .prod-top .right{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-main .prod-top .right .prod-title{
  font-size: 42px;
  font-weight: 600;
}
.product-main .prod-top .right .price-div{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-main .prod-top .right .special-price{
  color: yellow;
  font-weight: 600;
}
.product-main .prod-top .right .price-div p{
  font-size: 21px;
  font-weight: 600;
}
.product-main .prod-top .right .price-div .through{
  text-decoration: line-through;
  font-weight: 400;
  color: #ccc;
}
.product-main .prod-top .right .rating span{
  background-color: green;
  padding: 5px;
  border-radius: 8px;
}
.product-main .prod-top .right input:focus {
  outline: none;
}
.product-main .prod-top .right #deliveryFee{
  display: none;
}
.product-main .prod-top .right .counter-cart{
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-main .prod-top .right .counter-cart .add-cart{
  width: 100%;
  border: none;
  border-radius: 8px;
  background-color: rgb(251, 167, 0);
  font-size: 21px;
  cursor: pointer;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
.product-main .prod-top .right .counter-cart .add-cart:hover{
  background-color: #FFC145;
}
.product-main .prod-top .right .ul-container {
  overflow: hidden;
  transition: height 0.3s ease; 
  height: 0; 
  /* width: 150px; */
}
.product-main .prod-top .right .prod-ingr{
  cursor: pointer;
  background-color: var(--first-color-dark);
  box-shadow: inset var(--shadow-card);
  padding: 10px 5px;
  border-radius: 8px;
}
.product-main .prod-top .right .ul-disc{
  padding-left: 20px;
  list-style-type: disc;
  margin: 0;
}



.recipe-main{
  margin: 5%;
}
.recipe-main .recipe-title{
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.recipe-main .recipe-in{
  display: flex;
  gap: 30px;
  justify-content: space-around;
}
.recipe-main .recipe-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.recipe-main .recipe-in .box1,
.recipe-main .recipe-in .box2,
.recipe-main .recipe-in .box3{
  background-color: #fff;
  color: #000;
  padding: 20px 10px;
  border-radius: 4px;
  font-size: 21px;
  font-weight: 600;
}
.recipe-main .recipe-in iframe{
  width: 560px;
  height: 315px;
}



/* rating  */
.main-rating{
  margin: 5%;
}
.rating-form-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 4px;
  color: #000;
  background-color: #fff;
  text-align: center;
}
.main-rating h3{
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
}

.rating-form-container .star-rating {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
  user-select: none;
}

.rating-form-container .star-rating .star {
  padding: 5px;
}

.rating-form-container .star-rating .star:hover,
.rating-form-container .star-rating .star.selected {
  color: gold;
}

.rating-form-container .review-container {
  margin-top: 20px;
}

.rating-form-container #review {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.rating-form-container .submit-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.rating-form-container .submit-btn:hover {
  background-color: #218838;
}

/* rating display  */


.rating-display {
    margin:5%;
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.rating-display::-webkit-scrollbar {
    height: 8px;
}
.rating-display .main-rating::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.rating-display .review-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 16px;
    transition: transform 0.3s ease;
}

.rating-display .review-card:hover {
    transform: translateY(-5px);
}

.rating-display .review-stars {
    color: #f5b301;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rating-display .review-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 60px;
}

.rating-display .no-review {
    padding: 20px;
    text-align: center;
    color: #fff;
    font-style: italic;
}

@media(max-width:940px){
  .product-main {
    margin: 15% 5% 0 5%;
  }
  .recipe-main .recipe-in iframe {
    width: 400px;
    height: 315px;
  }
}
@media(max-width:820px){
  .product-main {
    margin: 20% 5% 5% 5%;
  }
  .product-main .prod-top{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .product-main .prod-top .left {
    max-width: none;
    width: 100%;
  }
  .recipe-main .recipe-in{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .recipe-main .recipe-in .recipe-video{
    width: 100%;
  }
  .recipe-main .recipe-in .recipe-video iframe{
    width: 100%;
  }
  .recipe-main .recipe-in iframe {
    border-radius: 10px;
  }
  .recipe-main .recipe-in .box1, 
  .recipe-main .recipe-in .box2, 
  .recipe-main .recipe-in .box3 {
    border-radius: 10px;
  }
  .main-rating {
    margin: 10% 5%;
  }
  .rating-form-container .submit-btn{
    width: 100%;
  }
}
@media(max-width:600px){
  .product-main {
    margin: 25% 5% 0 5%;
  }
}
@media(max-width:450px){
  .product-main {
    margin: 30% 5% 0 5%;
  }
  .product-main .prod-top .right .prod-title {
    font-size: 32px;
  }
  .recipe-main .recipe-title{
    font-size: 32px;
  }
  .recipe-main .recipe-in .box1, 
  .recipe-main .recipe-in .box2, 
  .recipe-main .recipe-in .box3 {
    font-size: 18px;
  }
  .main-rating h3{
    font-size: 32px;
  }
}



/* about us  */

.about-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000091;
}
.about-image-container .overlay h1{
  position: absolute;
  padding-left: 5%;
  bottom: 20px;
  margin: 0;
  color: white;
}
.about-me{
  display: flex;
  margin: 5%;
}
.about-me .about-left{
  flex: 1;
  padding: 20px;
}
.about-me .about-left img{
  width: 400px;
  height: 300px;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
}
.about-me .about-left .more-img{
  width: 400px;
  display: flex;
  gap:20px;
}
.about-me .about-left .more-img img{
  width: 190px;
  height: 190px;
}
.about-me .about-right .title{
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 5%;
}
.about-me .about-right .sub-title{
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5%;
}
.about-me .about-right .margin-abt{
  margin-top: 5%;
}
.about-us-div {
  position: sticky;
  top: 110px;
  width: fit-content;
  margin-left: 5%;
  border-radius: 10px;
  background-color: #f2f2f2;
  padding: 10px;
  color: #202639;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  scroll-margin-top: 10%;
}

.about-us-div button {
  margin: 5px;
  padding: 10px 15px;
  cursor: pointer;
  border: none;
  font-size: 18px;
}
.uni-active {
  background-color: var(--second-color);
  color: #000;
  border-radius: 10px;
}
.content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 5%;
  padding: 20px;
  scroll-margin-top: 200px;
}
.content img{
  width: 400px;
  height: 300px;
  border-radius: 10px;
}
.content .content-split .title{
  font-size: 42px;
  font-weight: 600;
}
.content .content-split .content-desc{
  margin-top: 20px;
}
.content .content-split ul{
  margin: 20px 0;
}
.content .content-split li{
  list-style: circle;
  margin-left: 30px;
}
@media(max-width:1010px){
  .about-me .about-right .title {
    font-size: 36px;
  }
  .content .content-split .title {
    font-size: 36px;
  }
}
@media(max-width:910px){
  .about-me {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-me .about-right .title {
    margin-bottom: 0;
  }
  .about-me .about-right .sub-title {
    margin-bottom: 0;
  }
  .about-us-div {
    margin: 5%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content{
    flex-direction: column;
  }
  .content-second{
    flex-direction: column-reverse;
  }
  .content-four{
    flex-direction: column-reverse;
  }
}
@media(max-width:460px){
  .about-image-container .overlay h1 {
    font-size: 21px;
  }
  .about-image-container {
    height: 250px;
  }
  .about-me .about-left img {
    width: 300px;
    height: 250px;
  }
  .about-me .about-left {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .about-me .about-left .more-img {
    display: none;
  }
  .about-me .about-right .title {
    font-size: 28px;
  }
  .about-me .about-right .sub-title {
    font-size: 21px;
  }
  .about-me .about-right .sub-title {
    margin-bottom: 1%;
  }
  .about-me .about-right{
    text-align: left;
  }
  .about-us-div{
    display: none;
  }
  .content .content-split .title {
    font-size: 28px;
  }
}



/* food cart design  */
@media(max-width:450px){
  .top-heading .heading-p{
    margin-top: 30%;
    font-size: .938rem;
    text-align: center;
  }
  .food_card{
    margin: 5%;
  }
  .food-card-in{
    background-color: var(--white-color);
    color: #000;
    padding: 5%;
    border-radius: 8px;
    margin-top: 5%;
  }
  .food-in{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .food-in .category img{
    height: 20px;
    width: 20px;
  } 
  .food-in .food-right img{
    height: 100px;
    width: 100px;
  }
  
}