/* ----Default-Css-Starts-Here----- */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --Font-First: "Inter", sans-serif;
  --Font-Second: "Lora", serif;
  --background-Color: #f9f7f3;
  --Background-light: #fff;
  --Text-Color: #1b2629;
  --Text-light: #5c5c5c;
  --Button-color: #9c702a;
}

a {
  text-decoration: none;
}

body {
  width: 100%;
  height: auto;
  background: var(--background-Color);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ----Default-Css-Ends-Here----- */

/* ----Toast-Styles-Starts-Here----- */
.msp-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--Background-light);
  color: var(--Text-Color);
  box-shadow: 0 12px 35px rgba(27, 38, 41, 0.16);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid var(--Button-color);
  font-family: var(--Font-First);
}

.msp-toast.success {
  border-left-color: #2f8f5f;
}

.msp-toast.error {
  border-left-color: #c94e4e;
}

.msp-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.msp-toast-icon {
  font-size: 18px;
  color: var(--Button-color);
}

.msp-toast.success .msp-toast-icon {
  color: #2f8f5f;
}

.msp-toast.error .msp-toast-icon {
  color: #c94e4e;
}

.msp-toast-message {
  font-size: 14px;
  line-height: 1.5;
}
/* ----Toast-Styles-Ends-Here----- */

/* ----Header-Css-Starts-Here----- */
.header {
  width: 100%;
  background-color: var(--background-Color);
  padding: 32px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-Left,
.nav-Right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ---Nav-Left--- */
.nav-Left .logo {
  width: 100%;
}

.logo img {
  width: 104px;
  height: 30px;
}

.search {
  background: #fff;
  padding: 16px 28px 16px 16px;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
}

.search i {
  color: var(--Text-light);
  font-size: 18px;
}

.search input {
  font-size: 16px;
  margin-left: 4px;
  border: none;
  font-family: var(--Font-First);
  font-weight: 00;
  outline: none;
}

.search:focus-within {
  border: 1px solid var(--Button-color);
}

.nav-Right .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--Text-light);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--Font-First);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--Button-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icons i {
  color: var(--Button-color);
  font-size: 26px;
  transition: 0.5s;
}

.nav-icons i:hover {
  color: #cfa056;
}

/* ----Header-Css-Ends-Here----- */

/* ----404-Page-Css-Starts-Here----- */
.error-page {
  padding: 90px 0 110px;
}

.error-page-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--Background-light);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(27, 38, 41, 0.08);
}

.error-page-box h1 {
  font-family: var(--Font-Second);
  font-size: 84px;
  color: var(--Button-color);
  margin-bottom: 12px;
}

.error-page-box h2 {
  font-family: var(--Font-Second);
  font-size: 32px;
  color: var(--Text-Color);
  margin-bottom: 14px;
}

.error-page-box p {
  font-family: var(--Font-First);
  font-size: 16px;
  color: var(--Text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.error-page-box .btn-2,
.error-page-box .btn-outline {
  display: inline-block;
  margin: 0 8px;
}

.btn-2 {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--Button-color);
  color: #fff;
  font-family: var(--Font-First);
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-2:hover {
  background: #cfa056;
}

.btn-outline {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid var(--Button-color);
  color: var(--Button-color);
  font-family: var(--Font-First);
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--Button-color);
  color: #fff;
}
/* ----404-Page-Css-Ends-Here----- */

/* ----Recipe-Showcase-Css-Starts-Here----- */
.recipe-showcase {
  width: 100%;
  height: auto;
  padding: 60px 0;
  background-color: var(--background-Color);
}

.head-box {
  width: 700px;
  height: auto;
  padding: 16px;
  margin: 0 auto;
}

.head-box h1 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--Text-Color);
  font-family: var(--Font-Second);
  margin-bottom: 34px;
}

.recipes-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.recipes-link a {
  padding: 12px 24px;
  background-color: #cfa056;
  border-radius: 30px;
  font-family: var(--Font-First);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
}

.recipes-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;

  overflow-x: auto;
  scroll-behavior: smooth;

  padding: 10px 5px 20px;
}

.recipes-link::-webkit-scrollbar {
  height: 6px;
}

.recipes-link::-webkit-scrollbar-track {
  background: transparent;
}

.recipes-link::-webkit-scrollbar-thumb {
  background: #cfa056;
  border-radius: 20px;
}

.recipes-link a {
  flex: 0 0 160px;
  text-decoration: none;
  text-align: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  transition: 0.4s ease;
}

.category-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;

  border-radius: 50%;
  overflow: hidden;

  transition: 0.4s ease;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: 0.5s ease;
}

.recipes-link a span {
  display: block;

  font-family: var(--Font-First);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--Text-Color);
  transition: 0.3s ease;
}

.recipes-link a:hover .category-img img {
  transform: scale(1.1);
}

.recipes-link a:hover span {
  color: #cfa056;
}

/* ----Recipe-Showcase-Css-Ends-Here----- */

/* ----Feature-Product-Css-Starts-Here----- */
.lfeature-product {
  width: 100%;
  padding: 80px 0;
  background: var(--background-Color);
}

.feature-product-container h2 {
  font-size: 52px;
  color: var(--Text-Color);
  margin-bottom: 50px;
  font-family: var(--Font-Second);
  font-weight: 600;
}

/* ----Feature-Product-Css-Ends-Here----- */

/* -----Latest-Recipes-Css-Starts-Here----- */

.latest-recipes {
  width: 100%;
  padding: 80px 0;
  background: var(--background-Color);
}

.latest-recipes-container h2 {
  font-size: 52px;
  color: var(--Text-Color);
  margin-bottom: 50px;
  font-family: var(--Font-Second);
  font-weight: 600;
}

.recipes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.recipe-card {
  background: var(--Background-light);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;

  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-8px);
}

.recipe-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: 0.5s;
}

.recipe-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.recipe-content h3 {
  font-size: 28px;
  line-height: 1.4;
  color: var(--Text-Color);
  margin-bottom: 16px;
  font-family: var(--Font-Second);
  font-weight: 600;

  min-height: 120px;
}

.recipe-info {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: auto;
}

.recipe-tag {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  font-family: var(--Font-First);
}

.sides {
  background: #f6e4b8;
  color: #b87700;
}

.desserts {
  background: #dde9f1;
  color: #4f7ea1;
}

.lunch {
  background: #dff0ea;
  color: #2c8b75;
}

.recipe-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5c5c5c;
  font-size: 14px;
  font-family: var(--Font-First);
}

.recipe-time i {
  font-size: 15px;
  color: #bdbdbd;
}

.recipe-btn {
  text-align: center;
  margin-top: 60px;
}

.recipe-btn a {
  display: inline-block;
  padding: 22px 44px;
  border: 1px solid var(--Button-color);
  border-radius: 12px;
  color: #172126;
  font-size: 16px;
  font-family: var(--Font-First);
  transition: 0.4s;
}

.recipe-btn a:hover {
  background: var(--Button-color);
  color: var(--Background-light);
}

/* -----Latest-Recipes-Css-Ends-Here----- */

/* ----Newsletter-Css-Starts-Here----- */
.newsletter {
  width: 100%;
  font-family: var(--Font-First);
  padding: 20px 0;
  background: var(--background-Color);
}

.newsletter-box {
  width: 850px;
  height: 230px;
  margin: 0 auto;
}

.newsletter-box h3 {
  font-size: 44px;
  font-family: var(--Font-Second);
  font-weight: 600;
  text-align: center;
  color: var(--Text-Color);
  margin-bottom: 16px;
}

.newsletter-box p {
  font-size: 18px;
  text-align: center;
  color: var(--Text-light);
  margin-bottom: 26px;
}

.newslatter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.newslatter-form input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--Text-Color);
  border: 1px solid transparent;
  padding: 16px 28px;
  border-radius: 8px;
}

.newslatter-form input:focus-within {
  border: 1px solid var(--Button-color);
}

.btn-2 {
  padding: 16px 40px;
  border: 1px solid transparent;
  background: var(--Button-color);
  color: var(--Background-light);
  transition: 0.5s;
  border-radius: 8px;
}

.btn-2:hover {
  background: transparent;
  border: 1px solid var(--Button-color);
  color: var(--Text-Color);
}

/* ----Newsletter-Css-Ends-Here----- */

/* ----Vegan-Css-Starts-Here----- */

.vegan-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background: var(--background-Color);
  font-family: var(--Font-First);
}

.vegan-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  align-items: center;
}

.vegan-content h2 {
  font-family: var(--Font-Second);
  font-size: 52px;
  line-height: 1.25;
  color: var(--Text-Color);
  margin-bottom: 24px;
  font-family: 600;
  max-width: 620px;
}

.vegan-content p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--Text-light);
  margin-bottom: 16px;
  max-width: 650px;
}

.vegan-content .btn-2 {
  display: inline-block;
  margin-top: 40px;
}

.vegan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ----Vegan-Css-Ends-Here----- */



/* ----Footer-Css-Starts-Here----- */
.your-inbox {
  width: 100%;
  height: auto;
  padding: 64px 0 48px;
  background: var(--Background-light);
  font-family: var(--Font-First);
  border-bottom: 1px solid #ddd;
}

.your-inbox-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.your-inbox-container h3 {
  font-size: 36px;
  font-family: var(--Font-Second);
  font-weight: 600;
  color: var(--Text-Color);
}

.your-inbox-form {
  display: flex;
  gap: 32px;
}

.your-inbox-form input {
  padding: 16px 28px;
  border: none;
  width: 360px;
  outline: none;
  font-size: 16px;
  background: var(--background-Color);
  border-radius: 8px;
  font-weight: 500;
  color: var(--Text-Color);
}

.footer {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background: var(--Background-light);
  font-family: var(--Font-First);
  border-bottom: 1px solid #ddd;
}

.footer-container {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}

.footer-left,
.footer-right {
  width: 50%;
  height: auto;
}

.footer-left .footer-logo {
  width: 120px;
  height: 30px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100%;
}

.footer-left p {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 30px;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-icons i {
  color: var(--Button-color);
  font-size: 26px;
  transition: 0.5s;
}

.footer-icons i:hover {
  color: #cfa056;
}

.footer-right {
  display: flex;
  gap: 100px;
}

.explore,
.category,
.footer-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.explore h3,
.category h3 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--Text-light);
}

.explore h3::after,
.category h3::after {
  content: "";
  display: block;
  width: 16px;
  margin-top: 6px;
  height: 1px;
  background: var(--Text-light);
}

.explore a,
.category a,
.footer-link a {
  display: inline-block;
  font-family: var(--Font-Second);
  font-size: 20px;
  font-weight: 600;
  color: var(--Text-Color);
  transition: 0.5s;
}

.explore a:hover,
.admin a:hover,
.footer-link a:hover {
  transform: translateX(10px);
}

.footer-link {
  margin-top: 40px;
}

.footer-copyright {
  width: 100%;
  height: auto;
  padding: 16px 0;
  background: var(--Background-light);
}

.footer-copyright H6 {
  font-family: var(--Font-First);
  text-align: center;
  font-size: 12px;
  color: var(--Text-light);
  font-weight: 400;
}

/* ----Footer-Css-Ends-Here----- */


/* ----Recipes-Page-Css-Starts-Here----- */
.recipes {
  width: 100%;
  background: var(--background-Color);
  font-family: var(--Font-First);
}

.recipes-head {
  width: 100%;
  height: auto;
  padding: 60px 0 40px;
  text-align: center;
  font-family: var(--Font-Second);
}

.recipes-head h1 {
  font-size: 64px;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.2;
}

/* Sidebar & Grid Layout */
.recipes-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px;
  padding-bottom: 40px;
}

.recipes-sidebar {
  flex: 0 0 280px;
  position: sticky;
  top: 120px;
  z-index: 10;
}

.sidebar-widget {
  background: var(--Background-light, #ffffff);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
}

.sidebar-title {
  font-family: var(--Font-Second, "Lora", serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--Text-Color, #1b2629);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--background-Color, #f9f7f3);
}

.category-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-filter-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: var(--Font-First, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--Text-light, #5c5c5c);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cat-filter-item a:hover {
  background: var(--background-Color, #f9f7f3);
  color: var(--Button-color, #9c702a);
}

.cat-filter-item.active a {
  background: #f6e4b8;
  color: #9c702a;
  font-weight: 600;
}

.cat-filter-item .count {
  font-size: 13px;
  opacity: 0.85;
}

.recipes-main-content {
  flex: 1;
  min-width: 0;
  transition: opacity 0.3s ease;
}

.infinite-scroll-status {
  text-align: center;
  margin-top: 50px;
  padding: 20px 0;
  font-family: var(--Font-First, "Inter", sans-serif);
}

.infinite-loader {
  font-size: 16px;
  color: var(--Button-color, #9c702a);
  font-weight: 500;
}

.infinite-loader i {
  margin-right: 8px;
}

.infinite-end-msg {
  font-size: 15px;
  color: var(--Text-light, #5c5c5c);
  font-weight: 500;
  padding: 14px 28px;
  background: #f0ebe1;
  display: inline-block;
  border-radius: 30px;
}

@media (max-width: 991px) {
  .recipes-layout {
    flex-direction: column;
  }
  .recipes-sidebar {
    width: 100%;
    position: static;
  }
  .category-filter-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ----Recipes-Page-Css-Ends-Here----- */


/* ----About-Us-Page-Css-Starts-Here----- */
.about-us {
  width: 100%;
  height: auto;
  background-color: var(--background-Color);
  font-family: var(--Font-First);
  padding: 80px 0;
}

.about-us-container .about-head {
  text-align: center;
  padding: 0 48px;
  margin-bottom: 40px;
}

.about-head h1 {
  font-family: var(--Font-Second);
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--Text-Color);
}

.about-head p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--Text-light);
  margin-bottom: 40px;
  margin-bottom: 16px;
}

.about-body {
  display: flex;
  gap: 100px;
  align-items: center;
}

.about-img {
  width: 656px;
  height: 670px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.about-content {
  width: 50%;
}

.about-content h2 {
  font-family: var(--Font-Second);
  font-size: 52px;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.about-content p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--Text-light);
}

.about-content .p {
  margin-bottom: 16px;
}

.about-me {
  width: 100%;
  padding: 80px 0;
  background: var(--background-Color);
  font-family: var(--Font-First);
}

.about-me-container h2 {
  font-size: 52px;
  font-family: var(--Font-Second);
  font-weight: 600;
  color: var(--Text-Color);
  margin-bottom: 34px;
}

.about-me-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-me-card {
  width: 100%;
}

.about-me-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 24px;
}

.about-me-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.about-me-content h4 {
  font-size: 36px;
  font-family: var(--Font-Second);
  font-weight: 600;
  line-height: 1.35;
  color: var(--Text-Color);
  margin-bottom: 16px;
}

.about-me-content p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--Text-light);
}

.quote {
  width: 100%;
  background: var(--background-Color);
  padding: 80px 0;
  text-align: center;
  font-family: var(--Font-Second);
}

.q-img img {
  margin-bottom: 48px;
}

.quote-container h3 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}

/* ----About-Us-Page-Css-Ends-Here----- */

/* ----Contact-Us-Page-Css-Starts-Here----- */
.contact-us {
  width: 100%;
  height: auto;
  background-color: var(--background-Color);
  font-family: var(--Font-First);
  padding: 80px 0;
}

.contact-us-container .contact-head {
  text-align: center;
  padding: 0 48px;
  margin-bottom: 40px;
}

.contact-head h1 {
  font-family: var(--Font-Second);
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--Text-Color);
}

.contact-head p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--Text-light);
  margin-bottom: 40px;
  margin-bottom: 16px;
}

.contact-body {
  display: flex;
  gap: 100px;
  align-items: center;
}

.contact-img {
  width: 656px;
  height: 670px;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.contact-form {
  width: 50%;
  height: auto;
}

.contact-form .name,
.email,
.message {
  width: 100%;
}

.contact-form .name h4,
.email h4,
.message h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--Button-color);
  margin-bottom: 8px;
}

.contact-form .name input,
.email input,
.message textarea {
  padding: 16px 28px;
  width: 100%;
  margin-bottom: 30px;
  background: var(--Background-light);
  border: none;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
}

.message textarea {
  resize: none;
  font-family: var(--Font-First);
}

.contact-form .btn-2 {
  display: inline-block;
}

/* ----Contact-Us-Page-Css-Ends-Here----- */

/* ----Recipes-Details-Css-Starts-Here----- */

.recipe-hero {
  width: 100%;
  padding: 80px 0;
  background: var(--background-Color);
  font-family: var(--Font-First);
}

.recipe-hero-container {
  width: 100%;
  display: flex;
  gap: 30px;
  position: relative;
}

/* -----Left-Container----- */

.recipe-hero-left {
  width: 50%;
  height: auto;
  min-height: 1500px;
}

.recipe-label {
  display: inline-block;
  padding: 10px 22px;
  background: #f3dfb9;
  color: #b8862f;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.recipe-hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--Text-Color);
  font-family: var(--Font-Second);
  font-weight: 600;
}

.recipe-hero-left p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--Text-light);
  max-width: 700px;
  margin-bottom: 40px;
}

.recipe-hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 50px;
}

.btn-outline {
  padding: 18px 34px;
  border: 1px solid var(--Button-color);
  border-radius: 10px;
  color: var(--Text-Color);
  text-decoration: none;
  transition: 0.4s ease;
}

.btn-outline:hover {
  background: var(--Button-color);
  color: #fff;
}

.watch-btn {
  color: var(--Text-Color);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid #ddd;
}

.info-box {
  display: flex;
  gap: 45px;
}

.recipe-info-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.recipe-info-box h6 {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin: 0;
}

.recipe-info-box span {
  font-size: 16px;
  color: var(--Text-Color);
}

.about-Recipe {
  margin-bottom: 20px;
}

.recipe-share-box {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 35px;
}

.recipe-share-box span {
  font-size: 16px;
  color: var(--Text-light);
  font-weight: 500;
}

.recipe-share-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.recipe-share-icons i {
  font-size: 20px;
  color: var(--Button-color);
  cursor: pointer;
  transition: 0.3s ease;
}

.recipe-share-icons i:hover {
  color: #fbd691;
}

.recipe-ingredients-box {
  width: 100%;
  max-width: 780px;
  background: var(--Background-light);
  padding: 60px;
  border-radius: 32px;
  margin-bottom: 30px;
}

.recipe-ingredients-box h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--Text-Color);
  font-family: var(--Font-Second);
  font-weight: 600;
}

.recipe-ingredients-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recipe-ingredients-box ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--Text-light);
}

.recipe-ingredients-box ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--Button-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 14px;
}

.recipe-direction-box {
  margin-bottom: 90px;
}

.recipe-direction-box h2,
.recipe-love-box h3,
.recipe-make-box h3 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--Text-Color);
  font-family: var(--Font-Second);
  font-weight: 600;
}

.recipe-direction-box ul {
  padding-left: 24px;
}

.recipe-direction-box ul li {
  font-size: 18px;
  line-height: 2;
  color: var(--Text-light);
  margin-bottom: 22px;
  padding-left: 10px;
}

.recipe-love-box {
  margin-bottom: 70px;
}

.recipe-love-box p,
.recipe-make-box p {
  font-size: 18px;
  line-height: 2;
  color: var(--Text-light);
  margin-bottom: 24px;
  max-width: 900px;
}

.recipe-make-box {
  margin-bottom: 50px;
}


/* -----Right-Container----- */

.recipe-hero-right {
  width: 50%;
  height: 500px;
  position: sticky;
  top: 130px;
  align-self: flex-start;
}

.recipe-hero-right img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ----Recipes-Details-Css-Ends-Here----- */

/* ----Related-Product-Css-Starts-Here----- */
.Related-product {
  width: 100%;
  padding: 80px 0;
  background: var(--background-Color);
}

.Related-product-container h2 {
  font-size: 52px;
  color: var(--Text-Color);
  margin-bottom: 50px;
  font-family: var(--Font-Second);
  font-weight: 600;
}

/* ----Related-Product-Css-Ends-Here----- */