@import url("../fonts/library.css");

:root {
  --text: #050315;
  --background: #f8f5f5;
  --secondBackground: #f9f9f9;
  --primary: #3cb043;
  --secondary: #147242;
  --accent: #efb443;
  --accent-green-100: #e5ffe2;
}

:root[data-theme="light"] {
  --text: #050315;
  --background: #f8f5f5;
  --secondBackground: #f9f9f9;
  --primary: #3cb043;
  --secondary: #147242;
  --accent: #efb443;
}

:root[data-theme="dark"] {
  --text: #ffffff;
  --background: #010104;
  --secondBackground: #212121;
  --primary: #3cb043;
  --secondary: #147242;
  --accent: #bc8010;
}

a {
  text-decoration: none;
}

body {
  font-family: "Hanuman";

}


header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.bg-navbar {
  background-image: url("../images/navbar/bg-navbar.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.navbar .navbar-brand {
  width: 50px;
}

.navbar a button>.fa-user-circle {
  font-size: 24px;
  transition: 0.3s;
}

.navbar a.fa-out-user>button {
  font-size: 16px;
  color: white;
  background-color: #3a9a4b;
  transition: 0.3s;
}

.navbar a.fa-out-user>button:focus {
  background-color: var(--primary);
  outline: none;
}

.navbar .navbar-nav .nav-item .nav-link,
.navbar .d-flex .nav-item .nav-link {
  font-size: 16px;
  color: #3a5b44;
  margin: 0 0.5rem;
  padding: 0.6rem 1.2rem;
  transition: 0.3s;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .d-flex .nav-item .nav-link:hover {
  transform: translateY(-2px);
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar a.fa-out-user:hover {
  background-color: var(--accent-green-100);
  color: var(--primary);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  background-color: var(--accent-green-100);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
  color: var(--primary);
}

.navbar .navbar-toggler>i {
  font-size: 24px;
  color: #3a5b44;
  transition: 0.3s;

}

.navbar .navbar-toggler:hover i,
.navbar a.fa-out-user:hover i {
  color: var(--primary);
  transform: translateY(-2px);
}

.navbar a.fa-out-user:hover>button {
  box-shadow: rgba(101, 152, 92, 0.4) 0px 7px 29px 0px;
  background: linear-gradient(45deg, #45a049, var(--bs-success));

}

@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdownFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-15px);
  }
}

.navbar .navbar-nav .dropdown .dropdown-menu,
.navbar .d-flex .dropdown .dropdown-menu {
  border: none;
  background-color: var(--background);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  left: auto;
  z-index: 1000;
  display: none;
  min-width: 240px;
  padding: 12px 0;
}

.navbar .d-flex .dropdown .dropdown-menu {
  min-width: 320px;
  max-height: 400px;
}

.navbar .navbar-nav .dropdown::after,
.navbar .d-flex .dropdown::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  min-width: 100px;
  height: 30px;
}

.navbar .d-flex .dropdown.notification::after {
  min-width: 200px !important;
  bottom: -30px !important;
  transform: translateX(-90%) !important;
}

@media (max-width: 992px) {
  .navbar .d-flex .dropdown.notification::after {
    min-width: 40px !important;
    transform: translateX(-55%) !important;
  }

}

.navbar .d-flex .dropdown.user-account::after {
  min-width: 70px !important;
}

.navbar .d-flex .dropdown::after {
  left: 50% !important;
  transform: translateX(-50%);
}

.navbar .navbar-nav .dropdown:hover .dropdown-menu,
.navbar .d-flex .dropdown:hover .dropdown-menu {
  display: block;
  animation: dropdownFadeIn 0.3s ease forwards;
}

.navbar .navbar-nav .dropdown .dropdown-menu:hover,
.navbar .d-flex .dropdown .dropdown-menu:hover {
  animation: dropdownFadeIn 0.3s ease forwards;
}

.navbar .navbar-nav .dropdown .dropdown-item,
.navbar .d-flex .dropdown .dropdown-item {
  font-size: 16px;
  color: var(--text);
  padding: 0.8rem 1.2rem;
  transition: 0.3s;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.navbar .navbar-nav .dropdown .dropdown-item:hover,
.navbar .d-flex .dropdown .dropdown-item:hover {
  background-color: var(--accent-green-100);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.navbar .navbar-nav .dropdown .dropdown-item.active,
.navbar .d-flex .dropdown .dropdown-item.active {
  background-color: var(--accent-green-100);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.navbar .navbar-nav .dropdown .dropdown-toggle::after,
.navbar .d-flex .dropdown .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.navbar .navbar-nav .dropdown:hover .dropdown-toggle::after,
.navbar .d-flex .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.navbar .dropdown-header {
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 1.2rem;
}

/*========> Notification , cart <=========*/
.navbar .d-flex .dropdown .nav-link .fa-bell,
.navbar .d-flex .nav-link .fa-cart-shopping {
  font-size: 24px;
  color: #3a5b44;
  transition: 0.3s;
}

.navbar #notificationDropdown span,
.navbar #cartLink span {
  font-size: small;
  font-weight: 500;
  top: -7px;
  left: 100%;
}

.navbar .d-flex .dropdown .nav-link .fa-bell:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.notification-scroll-container {
  max-height: 250px;
  overflow-y: auto;
  padding: 0;
}

.notification-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.notification-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.notification-scroll-container::-webkit-scrollbar-thumb,
.comment-area .comments-scrollable::-webkit-scrollbar-thumb,
.news-area .trendingSwiper::-webkit-scrollbar-thumb {
  background: #b2edab;
  border-radius: 3px;
}

.notification-scroll-container::-webkit-scrollbar-thumb:hover,
.comment-area .comments-scrollable::-webkit-scrollbar-thumb:hover,
.news-area .trendingSwiper::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
  cursor: pointer;
}

.navbar .d-flex .dropdown .dropdown-item div {
  display: inline-block;
  width: calc(100% - 30px);
  vertical-align: top;
}

.navbar .d-flex .dropdown .dropdown-item small {
  font-size: 0.75rem;
  color: #6c757d;
}

/*--------> User Profile <--------*/
.navbar .d-flex .dropdown .nav-link .user-avatar,
.navbar .dropdown-header .user-profile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #3a5b44;
  overflow: hidden;
  margin: auto;
}

.navbar .d-flex .dropdown .nav-link .user-avatar>img,
.navbar .dropdown-header .user-profile-header>img {
  display: block;
  object-fit: cover;
  width: 100%;
}

.navbar .d-flex .dropdown:last-child .dropdown-menu {
  min-width: 280px;
}

/* --------> purpose-area <-------- */
.purpose-area {
  background-color: var(--background);
}

.purpose-area .card {
  height: 450px;
  border: none;
  background: transparent;
  position: relative;
}

.purpose-area .card .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
}

.purpose-area .card .overlay .background {
  position: absolute;
  width: 100%;
  height: 100%;
}

.purpose-area .card .overlay .img1 {
  right: 30px;
  top: 60px;
  width: 120px;
  position: absolute;
  transform: rotate(-50deg);
  animation-name: example1;
  animation-duration: 10s;
  animation-iteration-count: 90;
  animation-direction: alternate;
}

.purpose-area .card .overlay .background .img2 {
  left: 70px;
  top: 0px;
  width: 100px;
  position: absolute;
  transform: rotate(60deg);
  animation-name: example2;
  animation-duration: 8s;
  animation-iteration-count: 90;
  animation-direction: alternate;
}

.purpose-area .card .overlay .background .img3 {
  left: 70px;
  top: 150px;
  width: 160px;
  position: absolute;
  transform: rotate(70deg);
  animation-name: example3;
  animation-duration: 6s;
  animation-iteration-count: 90;
  animation-direction: alternate;
}

@keyframes example1 {
  from {
    right: 30px;
    top: 60px;
  }

  to {
    right: 70px;
    top: 120px;
    transform: rotate(-390deg);
  }
}

@keyframes example2 {
  from {
    left: 70px;
    top: 0px;
  }

  to {
    left: 60px;
    top: 120px;
    width: 130px;
    transform: rotate(370deg);
  }
}

@keyframes example3 {
  from {
    left: 70px;
    top: 150px;
  }

  to {
    left: 70px;
    top: 250px;
    width: 100px;
    transform: rotate(120deg);
  }
}

.purpose-area .overlay .box1 {
  position: absolute;
  width: 150px;
  height: 200px;
  border-radius: 0 50%;
  left: calc(50% - 150px);
  background-color: #fff;
  overflow: hidden;

  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.purpose-area .overlay .box2 {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50% 0;
  right: calc(50% - 160px);
  top: calc(50% - 175px);
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.purpose-area .overlay .box3 {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50% 0;
  left: calc(50% - 150px);
  top: calc(50% - 15px);
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.purpose-area .overlay .box4 {
  position: absolute;
  width: 150px;
  height: 200px;
  border-radius: 0 50%;
  right: calc(50% - 160px);
  top: calc(50% - 15px);
  bottom: 20px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.purpose-area .overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.purpose-area:hover .overlay .box1 img {
  transform: rotate(1deg) scale(1.01);
  transition: 0.5s;
}

.purpose-area:hover .overlay .box2 img,
.purpose-area:hover .overlay .box4 img {
  transform: rotate(-1deg) scale(1.01);
  transition: 0.5s;
}

.purpose-area:hover .overlay .box3 img {
  transform: rotate(-16deg);
  transition: 0.5s;
}

.purpose-area .card .description {
  line-height: 35px;
}

/*--------> counter area <--------*/
.counter-area {
  background-image: url("../images/about us/counter\ -background.jpg");
  width: 100%;

  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-size: cover;
}

.counter-area .counter,
.counter-area .plus {
  font-size: 2.5rem;
  font-weight: 600;
  color: #28a745;
}

.counter-area .counter-section p {
  font-size: 1.1rem;
  margin-top: 15px;
}

/* --------> What-we-give --------> */

.What-we-give {
  background-color: var(--secondBackground);
  padding-bottom: 60px;
}

/* Section title */
.What-we-give .section-title,
.team-area .section-title,
.testimonials .section-title,
.question-answer .section-title {
  font-size: 2rem;
  color: #28a745;
  position: relative;
}

.What-we-give .section-title::after,
.team-area .section-title::after,
.testimonials .section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #28a745;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Card styling */
.What-we-give .card {
  background-color: #f5f3f3;
  border-radius: 15px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.What-we-give .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background: #28a7463a;
}

/* Card headings */
.What-we-give .card h6 {
  font-size: 1.1rem;
  color: #28a745;
}

/* Card descriptions */
.What-we-give .card .description {
  font-size: 0.95rem;
  color: #555;
  line-height: 30px;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .What-we-give .card {
    margin: 0 auto;
  }
}

/*--------> tip and secret <--------*/
.tip-benner {
  animation: floatRotate 5s ease-in-out infinite;
}

.tip-secret img.apple-icon {
  width: 20px;
  top: 50px;
  left: 150px;
  filter: blur(1px);
  position: absolute;
  z-index: -6;
  animation: floatReverse 5s ease-in-out infinite;
}

.tip-secret img.vegetable-icon {
  width: 20px;
  bottom: 50px;
  right: 300px;
  filter: blur(1px);
  position: absolute;
  z-index: -6;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatReverse {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes floatRotate {
  0% {
    transform: rotateY(-10deg);
  }

  50% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(-10deg);
  }
}

/*=========> tip content <=========*/
.tip .card-img .ribbon,
.profile-card.tab-pane .card-img .ribbon {
  top: 9px;
  left: -30px;
  padding: 5px 40px;
  color: var(--background);
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #2ecc71, #f39c12);
}

.tip .card-img .date-overlay,
.profile-card.tab-pane .card-img .date-overlay {
  background-color: rgba(44, 44, 44, 0.5);
}

.tip .tip-card {
  transition: 0.3s;
}

.tip .tip-card .tip-img,
.profile-card .tip-card .tip-img {
  height: 220px;
  object-fit: cover;
  transition: 0.6s;
}

.tip .tip-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(29, 39, 49, 0.08);
}

.tip .tip-card .title a.tip-title-link {
  text-decoration: none;
}

.tip .tip-card .card-body .reveal-content a.more,
.profile-card.tab-pane .tip-card .card-body .reveal-content a.more {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  transition: 0.3s;
}

.tip .tip-card .card-body .reveal-content a.more:hover,
.profile-card.tab-pane .tip-card .card-body .reveal-content a.more:hover {
  transform: translateY(-2px) scale(1.02);
  ;
}

/* reveal-content  */
.tip .tip-card .card-body .reveal-content p,
.profile-card.tab-pane .tip-card .card-body .reveal-content p {
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Load more button */
#tipsRow {
  padding-bottom: 80px;
}

#loadLessBtn {
  color: var(--accent) !important;
  border-color: var(--accent);
  transition: 0.3s;
}

#loadLessBtn:hover {
  background-color: var(--accent);
  color: var(--background) !important;
}

#loadMoreBtn {
  color: var(--secondary);
  border-color: var(--secondary);
  transition: 0.3s;
}

#loadMoreBtn:hover {
  background-color: var(--secondary);
  color: var(--background) !important;
}

/* filter category */
#categoryDropdownButton,
.btn-outline-select,
.btn-primary-select {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border: 1px solid var(--secondary);
  width: 100%;
}

#categoryDropdownButton:focus {
  border-color: var(--primary);
  box-shadow: rgba(45, 148, 38, 0.2) 0px 7px 29px 0px;
}

/* dropdown icon */
#categoryDropdownButton i {
  width: 1.25rem;
  text-align: left;
}

.dropdown-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100% - 40px);
}

/* caret rotation */
.rotate-icon {
  display: inline-block;
  transition: transform 0.25s ease;
  transform-origin: center center;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}

/* mobile dropdown menu enter/exit animation */
#categoryDropdown .dropdown-menu {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

#categoryDropdown .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu.w-100 {
  border-radius: 8px;
  padding: 0.25rem 0;
  box-shadow: rgba(0, 0, 0, 0.06) 0 6px 18px;
}

.dropdown-menu .dropdown-item {
  color: var(--secondary);
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background-color: var(--accent-green-100);
  color: var(--primary);
}

.filter-card .card-header {
  background: linear-gradient(90deg, #f7fff7, #eaf8ee);
  border-bottom: 1px solid rgba(25, 135, 84, 0.08);
}

#categoryBtns .btn {
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  color: #18632a;
  border-color: rgba(25, 135, 84, 0.15);
  background: transparent;
}

.tip .position-sticky {
  top: 100px;
}

#categoryBtns .btn i {
  width: 1.25rem;
  text-align: left;
}

#categoryBtns .btn.btn-primary {
  background-color: #b2edab !important;
  color: var(--primary) !important;
}

/* heathy page */
.healthy {
  height: 500px;
  background-image: url("../images/benners/healthy_food_benner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.healthy .hero-overlay a.shop {
  font-size: 18px;
  padding: 10px 25px;
  color: var(--background);
  background-color: var(--secondary);
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
  font-weight: 600;

}

.healthy .hero-overlay a.more,
.featured-products .view-all-products>a,
.news-area .view-all-news>a,
.about-us .view-about-us>a,
.featured-recipes .view-all-recipes>a {
  font-size: 18px;
  padding: 10px 25px;
  color: var(--secondary);
  border-color: var(--secondary);
  background-color: rgba(213, 255, 202, 0.418);
  transition: 0.3s;
  font-weight: 600;
}

.healthy .hero-overlay a.more>span>i.fa-arrow-right {
  display: inline-block;
  animation: leftRight 3s ease-in-out infinite;
}

.healthy .hero-overlay a.more:hover,
.featured-products .view-all-products>a:hover,
.news-area .view-all-news>a:hover,
.about-us .view-about-us>a:hover,
.featured-recipes .view-all-recipes>a:hover {
  background: linear-gradient(45deg, #45a049, var(--bs-success));
  color: var(--background) !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transform: translateY(-2px);
}

.healthy .hero-overlay a.shop:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #45a049, var(--bs-success));

}

.healthy .hero-overlay img.water {
  top: 18%;
  left: 22%;
  filter: blur(1px);
  animation: float 5s ease-in-out infinite;
}

.healthy .hero-overlay img.banana {
  bottom: 15%;
  left: 30%;
  filter: blur(1px);
  animation: floatReverse 5s ease-in-out infinite;
}

.healthy .hero-overlay img.orange {
  bottom: 22%;
  filter: blur(1px);
  animation: leftRight 3s ease-in-out infinite;
}

/* food catecgory */
.catecgory-food .card.fruit,
.catecgory-food .card.meat,
.catecgory-food .card.nate {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
}

.catecgory-food .card.fruit:first-child a,
.catecgory-food .card.meat:first-child a,
.catecgory-food .card.nate:first-child a {
  padding: 8px 0;
  background-color: rgba(213, 255, 202, 0.7);
  border-radius: 8px;
  backdrop-filter: blur(1px);
  transition: 0.3s;
}

.catecgory-food .card.fruit:first-child a:hover,
.catecgory-food .card.meat:first-child a:hover,
.catecgory-food .card.nate:first-child a:hover {
  background-color: var(--accent-green-100);
}

.catecgory-food .card.fruit {
  background-image: url("../images/blog/fruit-bg.webp");
}

.catecgory-food .card.meat {
  background-image: url("../images/blog/meat-bg.webp");
}

.catecgory-food .card.nate {
  background-image: url("../images/blog/nate-bg.webp");
}

.catecgory-food {
  background-image: url("../images/benners/bg-section-healthy-food.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-calorie-caculator {
  background-image: url("../images/blog/program-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#calorieCalc .bg-blur-green {
  background: rgba(249, 255, 246, 0.6);
  backdrop-filter: blur(10px);
}

#calorieCalc .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 1px 0 var(--primary) !important;
  outline: 0 !important;
}

#calorieCalc .form-select:hover {
  border-color: var(--primary) !important;
}

#calorieCalc .form-select {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border: 1px solid var(--secondary);
  width: 100%;
}

#calorieCalc .btn-success {
  background: linear-gradient(90deg, #d96914, #e07b21);
  border: none;
}

#calorieCalc .btn-outline-secondary {
  border-color: rgba(0, 0, 0, 0.06);
}

#calorieCalc .card .fw-bold {
  color: var(--primary);
}

/* Validation tweaks */
#calorieCalc .is-invalid {
  border-color: #dc3545 !important;
  box-shadow: none;
}

#calorieCalc .invalid-feedback {
  color: #b02a37;
}

@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes topBottom {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*=========> healthy-food-area <=========*/
.healthy-food-area .search-container {
  position: relative;
}

.healthy-food-area .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.healthy-food-area .search-input {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 12px 45px 12px 45px;
  font-size: 14px;
  color: #495057;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-family: "Hanuman", serif;
}

.healthy-food-area .search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(60, 176, 67, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.healthy-food-area .search-input::placeholder {
  color: #adb5bd;
  font-size: 13px;
  transition: all 0.3s ease;
}

.healthy-food-area .search-input:focus::placeholder {
  color: #6c757d;
  transform: translateX(5px);
}

.healthy-food-area .search-icon {
  position: absolute;
  left: 15px;
  color: #6c757d;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.healthy-food-area .search-input:focus+.search-icon,
.healthy-food-area .search-input-wrapper:hover .search-icon {
  color: var(--primary);
  transform: scale(1.1);
}

.healthy-food-area .clear-search-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #6c757d;
  font-size: 12px;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.healthy-food-area .clear-search-btn:hover {
  background: rgba(108, 117, 125, 0.1);
  color: #dc3545;
  transform: scale(1.1);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .search-input {
    padding: 10px 40px 10px 40px;
    font-size: 13px;
  }

  .search-icon {
    left: 12px;
    font-size: 13px;
  }

  .clear-search-btn {
    right: 10px;
    font-size: 11px;
  }
}

/*=========> Enhanced Filter Header Styles <=========*/
.filter-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-bottom: 2px solid #e9ecef;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.filter-header-content {
  display: flex;
  align-items: center;
  padding: 20px 20px 18px 20px;
  position: relative;
}

.filter-icon-wrapper {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 4px 12px rgba(60, 176, 67, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-icon-wrapper:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(60, 176, 67, 0.4);
}

.filter-icon {
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.filter-icon-wrapper:hover .filter-icon {
  transform: rotate(10deg);
}

.filter-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
  font-family: "Hanuman", serif;
  letter-spacing: 0.5px;
}

.filter-decoration {
  display: flex;
  gap: 4px;
  align-items: center;
}

.filter-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
  animation: pulse-dot 2s ease-in-out infinite;
}

.filter-dot:nth-child(2) {
  animation-delay: 0.3s;
  background: var(--secondary);
}

.filter-dot:nth-child(3) {
  animation-delay: 0.6s;
  background: var(--accent);
}

/* Filter card enhanced styling */
.filter-card {
  border: 1px solid #e2e8f0;
  border-radius: 0 !important;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.filter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--primary);
}

.filter-card .card-body {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.5) 100%);
}

/* Enhanced sticky positioning */
.position-sticky {
  position: sticky !important;
  top: 100px !important;
  z-index: 100;
}

/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Mobile responsive for filter header */
@media (max-width: 768px) {
  .filter-header-content {
    padding: 16px;
  }

  .filter-icon-wrapper {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }

  .filter-icon {
    font-size: 14px;
  }

  .filter-title {
    font-size: 16px;
  }

  .filter-dot {
    width: 5px;
    height: 5px;
  }
}

/* Tags and Favorite Button Row - Scoped to healthy-food-area */
.healthy-food-area .tags-favorite-row,
.featured-recipes .tags-favorite-row,
.profile-card.tab-pane .tags-favorite-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}


.healthy-food-area .tags-container,
.featured-recipes .tags-container,
.profile-card.tab-pane .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  flex: 1;
}

/* Favorite Button Styles - Scoped to healthy-food-area */
.healthy-food-area .favorite-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.healthy-food-area .favorite-btn:hover {
  transform: scale(1.1);
  border-color: #ffc107;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.healthy-food-area .favorite-btn i {
  color: #6c757d;
  transition: color 0.3s ease;
  font-size: 14px;
}

.healthy-food-area .favorite-btn:hover i {
  color: #ffc107;
}

.healthy-food-area .favorite-btn.active i {
  color: #ffc107;
}

.healthy-food-area .tags-container .badge,
.featured-recipes .tags-container .badge,
.profile-card.tab-pane .tags-container .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  border: 1px solid #dee2e6;
  background-color: rgba(60, 176, 67, 0.3) !important;
  color: #147242 !important;
  transition: all 0.3s ease;
}

/* Different badge colors based on content */
.healthy-food-area .tags-container .badge.text-primary {
  background-color: rgba(60, 176, 67, 0.3) !important;
}

.healthy-food-area .tags-container .badge.text-success {
  background-color: rgba(40, 167, 69, 0.3) !important;
  color: #155724 !important;
}

.healthy-food-area .tags-container .badge.text-info {
  background-color: rgba(23, 162, 184, 0.3) !important;
  color: #0c5460 !important;
}

.healthy-food-area .tags-container .badge.text-warning {
  background-color: rgba(255, 193, 7, 0.3) !important;
  color: #856404 !important;
}

.healthy-food-area .recipe-card-img,
.featured-recipes .recipe-card-img,
.profile-card.tab-pane .recipe-card-img {
  height: 220px;
  object-fit: cover;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.healthy-food-area .recipe-card .recipe-card-img {
  transition: 0.3s;
}

.healthy-food-area .recipe-card:hover .recipe-card-img {
  transform: scale(1.02);
}

.healthy-food-area a.more-btn,
.featured-recipes a.more-btn,
.profile-card.tab-pane a.more-btn {
  color: white;
  font-weight: 500;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  transition: 0.5s;
}

.healthy-food-area a.more-btn:hover,
.featured-recipes a.more-btn:hover,
.profile-card.tab-pane a.more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

/* <-----Team work-----> */
.team-area {
  background: var(--background);
}

.team-area .team-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.team-area .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Image */
.team-area .team-img {
  width: 100%;
  height: 100%;
}

.team-area .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-area .team-card:hover .team-img img {
  transform: scale(1.1);
}

/* Info overlay */
.team-area .team-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140%;
  background: rgba(0, 0, 0, 0.804);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;

  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.team-area .team-card:hover .team-info {
  opacity: 1;
  transform: translateY(0);
}

/* Text styles */
.team-area .team-info .name {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-area .team-info .role {
  font-size: 14px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.team-area .team-info .desc {
  font-size: 13px;
  margin-bottom: 15px;
}

/* Social links */
.team-area .social-links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  transition: 0.3s;
}

.team-area .social-links li a:hover {
  background: var(--primary);
  color: #fff;
}



/* <----- Thank Area  -----> */
.thank-area {
  background: var(--secondBackground);
  position: relative;
  overflow: hidden;
}

.logo-box {
  background: var(--background);
  border-radius: 16px;
  padding: 25px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: logofloat 8s ease-in-out infinite;
}

.logo-box img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@keyframes logofloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.thank-card {
  max-width: 880px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  background: #fff;
  padding: 30px 35px;
  border-radius: 18px;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.12);
  text-align: justify;
  transition: all 0.3s ease;
}

/* <-----Contact Section area-----> */

.contact-hero-section {
  background: linear-gradient(135deg,
      rgba(27, 67, 50, 0.95) 0%,
      rgba(45, 80, 22, 0.9) 30%,
      rgba(82, 183, 136, 0.8) 70%,
      rgba(149, 213, 178, 0.7) 100%),
    url('../images/about us/contact.png') !important;
  background-position: right center !important;
}

.contact-area {
  margin-bottom: 100px;
}

.contact-area .card {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.contact-area .card .card-body .contact-info h5 {
  font-size: 17px;
}

.contact-area .card .card-body .contact-info p {
  font-size: 15px;
}

.contact-area .card .card-body .info-icon {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
}

.contact-area .card .card-body .info-icon::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 18px;
  color: white;
}

.contact-area .card .card-body .icon-call::before {
  content: '\f095';
}

.contact-area .card .card-body .icon-mail::before {
  content: '\f0e0';
}

.contact-area .card .card-body .info-item .info-icon {
  cursor: pointer;
  transition: 0.5s;
}

.contact-area .card .card-body .info-item:hover .info-icon {
  transform: scale(1.2);
}

/* <<-----News page----->> */
/* Hero */
.news-content .ratio::before {
  display: none;
}

.news-area .hero-card {
  border-radius: 18px;
}

.news-area .hero-img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.news-area .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 20%,
      rgb(46, 76, 38) 100%);
}

.news-area .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.news-area .featuredSwiper {
  width: 100%;
  height: auto;
}

.news-area .featuredSwiper .swiper-slide {
  background: transparent;
}

/* Default bullet */
.swiper-pagination-bullet {
  opacity: 1 !important;
}

/* Active bullet */
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.news-area .featuredSwiper .hero-img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* Trending */
.news-area .trendingSwiper {
  max-height: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;
  padding-bottom: 5px;
}

.news-area .trendingSwiper .trend-item {
  margin-bottom: 19px !important;
}

.news-area .trend-thumb {
  width: 100px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.news-area .line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 5px 0;
}

.news-area .line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-area .trendingSwiper::-webkit-scrollbar {
  width: 6px;
}

/* Featured Swiper Navigation */
.farmer-guide~.news-area {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(10, 146, 0, 0.2));
}

.news-area .featuredSwiper .swiper-button-next,
.news-area .featuredSwiper .swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-area .featuredSwiper .swiper-button-next:hover,
.news-area .featuredSwiper .swiper-button-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(60, 176, 67, 0.4);
}

.news-area .featuredSwiper .swiper-button-next::after,
.news-area .featuredSwiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Featured Swiper Pagination */
.news-area .featuredSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.news-area .featuredSwiper .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Featured Swiper Responsive */
@media (max-width: 768px) {

  .news-area .featuredSwiper .swiper-button-next,
  .news-area .featuredSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .news-area .featuredSwiper .swiper-button-next::after,
  .news-area .featuredSwiper .swiper-button-prev::after {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .news-area .featuredSwiper .swiper-button-next,
  .news-area .featuredSwiper .swiper-button-prev {
    display: none;
  }
}

/* Cards */
.news-area .news-card {
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.news-area .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12) !important;
}

.news-area .ratio>img {
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

/* Sidebar */
.news-area .sticky-aside {
  position: sticky;
  top: 120px;
  border: 0;
  border-radius: 14px;
}

/* Utilities */
.news-area .swiper-nav .btn {
  border-radius: 10px;
}

.news-area .trend-scroll {
  max-height: 390px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d9d9d9 transparent;
}

.news-area .trend-scroll a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 15px;
}

.news-area .trend-scroll a:last-child {
  margin-bottom: 0;
}

.news-area .trend-scroll::-webkit-scrollbar {
  width: 6px;
}

.news-area .trend-scroll::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 10px;
}

.comment-area .comments-scrollable {
  max-height: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;
}

.comment-area .comments-scrollable::-webkit-scrollbar {
  width: 6px;
}

.sticky-sidebar {
  position: sticky;
  top: 200px;
}

.sidebar-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.comment-img {
  width: 40px;
  height: 40px;
  object-fit: cover;

}

.comments-scrollable {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 5px;
}

/* question answer */
.question-answer .nav-pills .nav-link {
  color: var(--secondary);
  border: 1px solid var(--primary);
  background-color: transparent;
  transition: all 0.3s ease;
}

.question-answer>.container>p {
  width: 120px !important;
}

.question-answer .nav-pills .nav-link:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.question-answer .nav-pills .nav-link.active {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.question-answer .nav-pills .nav-link {
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
}

/*--------> Footer <--------*/
.footer-section {
  margin-top: 50px;
  background-color: #3a5b44;
  color: #f0f0f0;
  background-image: url("../images/footer/footer_bg.png.webp");
  background-position: center;
}

.footer-section .newsletter-card {
  position: absolute;
  top: -39px;
  background: #4d8052;
  width: 100%;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}

.footer-badge {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.footer-contact-item .badge-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.newsletter-card .input-group .form-control {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem 0 0 2rem;
  padding: 0.75rem 1.5rem;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-card .input-group .form-control:focus {
  background: white;
  border-color: var(--bs-success);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.newsletter-card .input-group .btn {
  border-radius: 0 2rem 2rem 0;
  background: linear-gradient(45deg, var(--bs-success), #45a049);
  border: 1px solid var(--bs-success);
  font-weight: 600;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.newsletter-card .input-group .btn:hover {
  background: linear-gradient(45deg, #45a049, var(--bs-success));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

@media (min-width: 992px) {
  .main-footer .boder-footer-left::before {
    content: "";
    position: absolute;
    width: 1.5px;
    height: 100%;
    top: 0;
    background-color: #bfd9c21c;
  }

}

@media (max-width: 992px) {
  .footer-section .newsletter-card {
    top: -33px;
    width: 85%;
  }

  .main-footer .contact {
    padding-left: 24px;
  }

  .footer-section .newsletter-card .card-body {
    padding: 8px;
  }
}

.footer-heading {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

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

.footer-links a,
.footer-contact-item p {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  font-size: 18px;
}

.footer-contact-item p {
  margin-bottom: 0;
  line-height: 1.8;
}

.footer-bottom {
  background-color: #2e4635;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #adb5bd;
}

.payment-icons .box-payment {
  width: 55px;
  height: 35px;
  background-color: white;
  border-radius: 0.25rem;
  padding: 3px;
}

.payment-icons .box-payment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*--------> Account Profile <--------*/
.cover-container {
  position: relative;
  height: 500px;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.cover-container .cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-container .edit-cover-btn {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cover-container .edit-cover-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.profile-header {
  position: relative;
  background: white;
  padding: 20px;
  margin: -30px 0 20px 0;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-header .profile-picture-container {
  position: relative;
  display: inline-block;
}

.profile-picture-container .profile-picture {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
  margin-top: -80px;
}

.profile-picture-container .camera-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #f0f2f5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 3px solid white;
  transition: background-color 0.3s ease;
}

.profile-picture-container .camera-icon:hover {
  background: #cfd1d7;
}

.profile-header .profile-info {
  margin-left: 20px;
  flex: 1;
}

.profile-header .profile-info .profile-name {
  font-size: 2rem;
  font-weight: 700;
  color: #050505;
  margin: 0;
}

.profile-header .profile-info .prifile-email {
  color: #65676b;
  font-size: 15px;
  margin: 5px 0;
}

.profile-info .btn-secondary-custom {
  background: #f0f2f5;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  color: #050505;
  transition: all 0.3s ease;
}

.profile-info .btn-secondary-custom:hover {
  background: #e4e6ea;
  transform: translateY(-1px);
}

.profile-nav {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.profile-nav .nav-tabs {
  border-bottom: 1px solid #dadde1;
  padding: 0 20px;
}

.profile-nav .nav-tabs .nav-link {
  border: none;
  color: #65676b;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.profile-nav .nav-tabs .nav-link.active {
  color: var(--primary);
  background: none;
  border-bottom: 3px solid var(--primary);
}

.profile-nav .nav-tabs .nav-link:hover {
  color: var(--primary);
  background: #e7f3ff;
}

.content-profile-area {
  display: flex;
  gap: 20px;
  margin: 20px;
}

.main-profile-content {
  flex: 1;
}

.main-profile-content .profile-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
}

.profile-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 15px;
}

@media (max-width: 1201px) {
  .btn-primary-fav {
    padding: 8px 16px !important;
    font-size: 10px;
    font-weight: normal;
  }

  .product-card-fav .text-condition {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-fav .add-to-cart button.flex-fill {
    font-size: 14px;
    padding: 8px 18px !important;
  }

  .featured-products .product-card-fav .add-to-cart .btn-outline-primary-fav {
    width: 40px !important;
    height: 40px !important;
  }

  .featured-products .product-card-fav .add-to-cart .btn-outline-primary-fav>i {
    font-size: 14px;
    align-content: center;
  }

}

@media (max-width: 992px) {
  .product-card-fav .add-to-cart>button.flex-fill {
    font-size: 12px;
    padding: 10px !important;
  }
}

@media (max-width: 768px) {
  .product-card-fav .add-to-cart>button.flex-fill {
    font-size: 16px;
    padding: 8px 16px !important;
  }

  .cover-container {
    height: 250px;
  }

  .profile-header {
    margin: -20px 10px 20px 10px;
    padding: 15px;
    text-align: center;
  }

  .profile-picture {
    width: 120px;
    height: 120px;
    margin-top: -60px;
  }

  .profile-info {
    margin-left: 0;
    margin-top: 15px;
  }

  .profile-name {
    font-size: 1.5rem;
  }

  .content-profile-area {
    flex-direction: column;
    margin: 10px;
  }

  .profile-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
  }

  .profile-nav .nav-tabs {
    padding: 0 10px;
  }

  .profile-nav .nav-tabs .nav-link {
    padding: 12px 15px;
    font-size: 14px;
  }

  .btn-primary-fav {
    padding: 0.50rem 1rem;
    font-size: 14px;
  }

}

@media (max-width: 576px) {
  .product-card-fav .add-to-cart>button.flex-fill {
    font-size: 14px;
    padding: 8px 16px !important;
  }

  .profile-header {
    display: block;
  }

  .profile-picture {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 1.3rem;
  }

  .profile-inf .btn-secondary-custom {
    padding: 8px 16px;
    font-size: 14px;
  }
}


/*=========> Product History Styles <=========*/
.product-history-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 18px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: background-color 0.3s ease;
}

.product-history-item:hover {
  background-color: #f0f2f5;
}

.product-history-item:last-child {
  border-bottom: none;
}

.product-history-item .product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
}

.product-history-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-history-item .product-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #050505;
}

.product-history-item .product-info .product-price {
  color: #1877f2;
  font-weight: 600;
  font-size: 14px;
}

.product-history-item .product-info .product-date {
  color: #65676b;
  font-size: 12px;
}

.product-history-item .product-status {
  margin-left: auto;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-history-item .status-completed {
  background-color: #d4edda;
  color: #155724;
}

.product-history-item .status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.product-history-item .status-cancelled {
  background-color: #f8d7da;
  color: #721c24;
}

/*=========> Form Styles <=========*/

.profile-card .form-section {
  background: white;
  padding: 25px;
  margin-bottom: 20px;
}

.border-favorite h3,
.profile-card .form-section h3 {
  font-size: 20px;
  font-weight: 700;
  padding-left: 24px;
  color: #050505;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;

}

.profile-card .form-group {
  margin-bottom: 20px;
}

.checkout-section .form-label,
.profile-card .form-label {
  font-weight: 600;
  color: #050505;
  margin-bottom: 8px;
  display: block;
}

.checkout-section .form-control,
.profile-card .form-control {
  border: 2px solid #e4e6ea;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.checkout-section .form-control:focus,
.profile-card .form-control:focus {
  border-color: var(--primary);
}

.profile-card .form-select {
  border: 2px solid #e4e6ea;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.profile-card .form-select:focus {
  border-color: var(--primary);
}

.profile-card .btn-save {
  background: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.profile-card .btn-save:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-cancel {
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  background: var(--accent);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 12px rgba(242, 177, 24, 0.3);
}

/*=========> Modal Styles <=========*/
.modal-header {
  background: var(--primary);
  color: white;
  border-radius: 10px 10px 0 0;
}

.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-body {
  padding: 25px;
}

.profile-picture-containe img,
.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=========> Favorite section header <=========*/
#favorite .border-favorite h3 {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#favorite .border-favorite h3 i {
  color: #ff6b6b;
}

/*=========> Product grid and items <=========*/
#favorite .product-item-fav .product-card-fav,
.featured-shop .product-card-fav,
.featured-products .product-card-fav {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: none;
}

#favorite .product-item-fav .product-card-fav:hover,
.featured-shop .product-card-fav:hover,
.featured-products .product-card-fav:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/*=========> Product image container <=========*/
#favorite .product-card-fav .product-image,
.featured-shop .product-card-fav .product-image,
.featured-products .product-card-fav .product-image {
  position: relative;
  width: 100%;
  height: 220px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

#favorite .product-card-fav .product-image img,
.featured-shop .product-card-fav .product-image img,
.featured-products .product-card-fav .product-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#favorite .product-card-fav:hover .product-image img,
.featured-products .product-card-fav:hover .product-image img {
  transform: scale(1.05);
}

/*=========> Favorite button styles <=========*/
#favorite .product-card-fav .product-image .favorite-btn,
.featured-shop .product-card-fav .product-image .favorite-btn,
.featured-products .product-card-fav .product-image .favorite-btn,
.featured-recipes .recipe-card .favorite-btn,
.healthy-food-area .recipe-card .favorite-btn,
.tip .favorite-btn,
.profile-card.tab-pane .favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#favorite .product-card-fav .product-image .favorite-btn i,
.featured-shop .product-card-fav .product-image .favorite-btn i,
.featured-products .product-card-fav .product-image .favorite-btn i,
.featured-recipes .recipe-card .favorite-btn i,
.healthy-food-area .recipe-card .favorite-btn i,
.tip .favorite-btn i,
.profile-card.tab-pane .favorite-btn i {
  color: #fff;
}

#favorite .product-card-fav .product-image .favorite-btn.active,
.featured-shop .product-card-fav .product-image .favorite-btn.active,
.featured-products .product-card-fav .product-image .favorite-btn.active,
.featured-recipes .recipe-card .favorite-btn.active,
.healthy-food-area .recipe-card .favorite-btn.active,
.tip .favorite-btn.active,
.profile-card.tab-pane .favorite-btn.active {
  background-color: var(--primary);
}

#favorite .product-card-fav .product-image .favorite-btn.active i,
.featured-shop .product-card-fav .product-image .favorite-btn.active i,
.featured-products .product-card-fav .product-image .favorite-btn.active i,
.featured-recipes .recipe-card .favorite-btn.active i,
.healthy-food-area .recipe-card .favorite-btn.active i,
.tip .favorite-btn.active i,
.profile-card.tab-pane .favorite-btn.active i {
  color: #ff4d6d;
}

#favorite .product-card-fav .product-image .favorite-btn:hover,
.featured-shop .product-card-fav .product-image .favorite-btn:hover,
.featured-products .product-card-fav .product-image .favorite-btn:hover,
.featured-recipes .recipe-card .favorite-btn:hover,
.healthy-food-area .recipe-card .favorite-btn:hover,
.tip .favorite-btn:hover,
.profile-card.tab-pane .favorite-btn:hover {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.03);
}

/*=========> Price tag <=========*/
#favorite .product-card-fav .product-image .price-tag,
.featured-shop .product-card-fav .product-image .price-tag,
.featured-products .product-card-fav .product-image .price-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 8px;
}

/* Card body content */
#favorite .product-card-fav .card-body,
.featured-shop .product-card-fav .card-body,
.featured-products .product-card-fav .card-body {
  padding: 1.25rem;
}

#favorite .product-card-fav .card-body .card-title,
.featured-shop .product-card-fav .card-body .card-title,
.featured-products .product-card-fav .card-body .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/*=========> Rating styles <=========*/
#favorite .product-card-fav .rating,
.featured-shop .product-card-fav .rating,
.featured-products .product-card-fav .rating {
  color: #ffc107;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 0.75rem;
}

#favorite .product-card-fav .rating i,
.featured-shop .product-card-fav .rating i,
.featured-products .product-card-fav .rating i {
  font-size: 14px;
}

#favorite .product-card-fav .rating .text-muted,
.featured-shop .product-card-fav .rating .text-muted,
.featured-products .product-card-fav .rating .text-muted {
  color: #666;
  font-size: 14px;
  margin-left: 6px;
  font-weight: 500;
}

/* Nutrition information */
#favorite .product-card-fav .nutrition-info,
.featured-shop .product-card-fav .nutrition-info,
.featured-products .product-card-fav .nutrition-info {
  margin-bottom: 1rem;
}

#favorite .product-card-fav .nutrition-info .nutrition-stats,
.featured-shop .product-card-fav .nutrition-info .nutrition-stats,
.featured-products .product-card-fav .nutrition-info .nutrition-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

#favorite .product-card-fav .nutrition-info .nutrition-itemm,
.featured-shop .product-card-fav .nutrition-info .nutrition-itemm,
.featured-products .product-card-fav .nutrition-info .nutrition-itemm {
  background: #f8f9fa;
  color: #495057;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

#favorite .product-card-fav .nutrition-info .separator,
.featured-shop .product-card-fav .nutrition-info .separator,
.featured-products .product-card-fav .nutrition-info .separator {
  color: #dee2e6;
  font-weight: 300;
}

#favorite .product-card-fav .nutrition-info .nutrition-tags,
.featured-shop .product-card-fav .nutrition-info .nutrition-tags,
.featured-products .product-card-fav .nutrition-info .nutrition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#favorite .product-card-fav .nutrition-info .nutrition-tags .badge,
.featured-shop .product-card-fav .nutrition-info .nutrition-tags .badge,
.featured-products .product-card-fav .nutrition-info .nutrition-tags .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
}

/* Action buttons */
#favorite .product-card-fav .add-to-cart,
.featured-shop .product-card-fav .add-to-cart,
.featured-products .product-card-fav .add-to-cart {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#favorite .product-card-fav .add-to-cart .btn-primary-fav,
.featured-shop .product-card-fav .add-to-cart .btn-primary-fav,
.featured-products .product-card-fav .add-to-cart .btn-primary-fav {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 25px;
  color: white;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
}

#favorite .product-card-fav .add-to-cart .btn-primary-fav:hover,
.featured-shop .product-card-fav .add-to-cart .btn-primary-fav:hover,
.filter-footer:hover .filter-button,
.featured-products .product-card-fav .add-to-cart .btn-primary-fav:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

#favorite .product-card-fav .add-to-cart .btn-outline-primary-fav,
.featured-shop .product-card-fav .add-to-cart .btn-outline-primary-fav,
.featured-products .product-card-fav .add-to-cart .btn-outline-primary-fav {
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: var(--primary);
  color: var(--primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

#favorite .product-card-fav .add-to-cart .btn-outline-primary-fav:hover,
.featured-shop .product-card-fav .add-to-cart .btn-outline-primary-fav:hover,
.featured-products .product-card-fav .add-to-cart .btn-outline-primary-fav:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Main modal container */
.modal-fav .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Modal header */
.modal-fav .modal-header {
  background: var(--primary);
  color: white;
  border-radius: 15px 15px 0 0;
  border-bottom: none;
}

.modal-fav .modal-header .btn-close {
  filter: brightness(0) invert(1);
}

/* Modal body content */
.modal-fav .modal-body .product-modal-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.modal-fav .modal-body .product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-fav .modal-body .product-modal-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 14px;
}

/* Modal rating */
.modal-fav .modal-body .rating-large {
  color: #ffc107;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.modal-fav .modal-body .rating-large .text-muted {
  color: #6c757d;
  margin-left: 8px;
}

/* Modal nutrition information */
.modal-fav .modal-body .nutrition-modal-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.modal-fav .modal-body .nutrition-modal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  min-width: 70px;
}

.modal-fav .modal-body .nutrition-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.modal-fav .modal-body .nutrition-label {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.25rem;
  text-align: center;
}

.modal-fav .modal-body .health-tags-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-fav .modal-body .health-tags-modal .badge {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
}

/* Modal feature list */
.modal-fav .modal-body .feature-list {
  list-style: none;
  padding: 0;
}

.modal-fav .modal-body .feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.modal-fav .modal-body .feature-list li:last-child {
  border-bottom: none;
}

.modal-fav .modal-body .feature-list li i {
  color: var(--primary);
  width: 20px;
  margin-right: 10px;
}

/* Modal quantity selector */
.modal-fav .modal-body .quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-fav .modal-body .quantity-selector .quantity-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-fav .modal-body .quantity-selector .quantity-btn:hover {
  background: var(--primary);
  color: white;
}

.modal-fav .modal-body .quantity-selector .quantity-input {
  width: 60px;
  text-align: center;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 0.5rem;
}

/* Modal footer buttons */
.modal-fav .modal-footer .btn-primary-fav {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 25px;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-fav .modal-footer .btn-primary-fav:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}


@media (max-width: 768px) {
  #favorite .product-card-fav .nutrition-info .nutrition-stats {
    gap: 4px;
  }

  #favorite .product-card-fav .nutrition-info .nutrition-item {
    font-size: 10px;
    padding: 3px 6px;
  }

  #favorite .product-card-fav .nutrition-info .nutrition-tags .badge {
    font-size: 10px;
    padding: 3px 6px;
  }

  .modal-fav .modal-body .nutrition-modal-stats {
    gap: 1rem;
  }

  .modal-fav .modal-body .nutrition-modal-item {
    min-width: 60px;
    padding: 0.75rem;
  }

  .modal-fav .modal-body .nutrition-value {
    font-size: 1.1rem;
  }

  .modal-fav .modal-body .nutrition-label {
    font-size: 0.7rem;
  }
}

/* End Account Profile */
.list-group-item:hover a {
  color: var(--secondary) !important;
}

.list-group-item:hover i {
  color: var(--secondary)
}

/* responsive style for all page */
/*[ healthy page ]*/
@media (min-width: 1201px) {
  .filter-title {
    font-size: 20px !important;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .healthy .hero-content {
    width: 70% !important;
  }

  .healthy .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .filter-title {
    font-size: 15px !important;
  }
}

/* Medium tablets */
@media (min-width: 769px) and (max-width: 992px) {

  /* Hero Section */
  .healthy .hero-content {
    width: 70% !important;
  }

  .healthy .hero-content h1 {
    font-size: 2.2rem !important;
  }

  /* Category Food Section */
  .catecgory-food .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }

  .catecgory-food .col-4:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Healthy Food Area Section */
  .healthy-food-area .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Small tablets */
@media (min-width: 577px) and (max-width: 768px) {

  /* Hero Section */
  .healthy {
    height: 450px;
  }

  .healthy .hero-content {
    width: 80% !important;
    padding: 0 15px;
  }

  .healthy .hero-content h1 {
    font-size: 2rem !important;
  }

  .healthy .hero-content .btn {
    font-size: 16px !important;
    padding: 10px 20px !important;
    margin: 0.25rem !important;
  }

  .healthy .hero-overlay img.water,
  .healthy .hero-overlay img.banana,
  .healthy .hero-overlay img.orange {
    width: 40px !important;
    height: 40px !important;
  }

  /* Category Food Section */
  .catecgory-food .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }

  .catecgory-food .col-4:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .catecgory-food .card {
    height: 280px !important;
  }

  /* Healthy Food Area Section */
  .healthy-food-area .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {

  /* Hero Section */
  .healthy {
    height: 400px;
    background-attachment: scroll !important;
  }

  .healthy .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  .healthy .hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0 !important;
  }

  .healthy .hero-content .btn {
    font-size: 14px !important;
    padding: 8px 15px !important;
    margin: 0.25rem !important;
    display: block;
    width: 50%;
    margin-bottom: 0.5rem;
  }

  .healthy .hero-overlay img {
    display: none !important;
  }

  /* Category Food Section */
  .catecgory-food {
    background-attachment: scroll !important;
    padding: 2rem 0 !important;
  }

  .catecgory-food h2 {
    font-size: 1.5rem !important;
    text-align: center;
    margin-bottom: 1.5rem !important;
  }

  .catecgory-food .row {
    flex-direction: column;
  }

  .catecgory-food .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .catecgory-food .card {
    height: 250px !important;
    margin-bottom: 1rem;
  }

  .catecgory-food .card-title {
    font-size: 1.2rem !important;
  }

  .catecgory-food .card-text {
    font-size: 0.9rem !important;
  }

  .healthy-food-area {
    padding: 2rem 0 !important;
  }

  .healthy-food-area h2 {
    font-size: 1.5rem !important;
    text-align: center;
    margin-bottom: 1.5rem !important;
  }

  .healthy-food-area .filter-card {
    margin-bottom: 1rem;
  }

  .healthy-food-area .recipe-card {
    margin-bottom: 1rem;
  }

  .healthy-food-area .recipe-card .card-title {
    font-size: 1.1rem !important;
  }

  .healthy-food-area .recipe-card .small {
    font-size: 0.8rem !important;
  }

  .healthy-food-area .tags-container .badge,
  .featured-recipes .tags-container .badge,
  .profile-card.tab-pane .tags-container .badge {
    font-size: 0.7rem !important;
    margin: 0.1rem;
  }
}

/*[ tip page reasponsive ]*/
@media (min-width: 993px) and (max-width: 1200px) {
  .tip-secret h1 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 576px) {
  .tip-secret h1 {
    font-size: 1.8rem !important;
  }

  .tip-secret p.lead {
    font-size: 0.95rem !important;
  }

  .tip-secret .badge {
    font-size: 0.7rem !important;
  }

  .tip h1,
  .tip h2 {
    font-size: 1.5rem !important;
  }

  .tip .tip-card .title {
    font-size: 1.1rem !important;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .tip-secret h1 {
    font-size: 2rem !important;
  }


  .tip .tip-card .title {
    font-size: 1.2rem !important;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .tip-secret h1 {
    font-size: 2.2rem !important;
  }

  .tip .tip-card .title {
    font-size: 1.25rem !important;
  }
}

/* Scroll to Top Button Styles */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.scroll-to-top-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* [home page] */
/* Hero bener */
.hero-area-home {
  position: relative;
  height: 90vh;
  width: 100%;
}

/* Hero Area Home Section */
.hero-area-home .heroSwiper {
  width: 100%;
  height: 90vh;
}

.hero-area-home .heroSwiper .hero-slide {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-area-home .hero-slide-1 {
  background-image: url('/assets/images/blog/healthy-diet-food-1024x675.jpg');
}

.hero-area-home .hero-slide-2 {
  background-image: url('/assets/images/blog/fresh-organic-vegetable-salad-1024x885.jpg');
}

.hero-area-home .hero-slide-3 {
  background-image: url('/assets/images/blog/fruit-bg.webp');
}

.hero-area-home .hero-home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(60, 176, 67, 0.8) 0%,
      rgba(20, 114, 66, 0.9) 50%,
      rgba(5, 3, 21, 0.7) 100%);
  z-index: 1;
}

.hero-area-home .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-area-home .hero-content .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-area-home .hero-content .hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-area-home .hero-content .hero-title .text-accent {
  color: var(--accent);
}

.hero-area-home .hero-content .hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 500px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-area-home .hero-content .hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-area-home .hero-content .hero-buttons .btn {
  padding: 0.7rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.hero-area-home .hero-content .hero-buttons .btn-primary {
  background: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 6px 20px rgba(60, 176, 67, 0.4);
}

.hero-area-home .hero-content .hero-buttons .btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(60, 176, 67, 0.6);
}

.hero-area-home .hero-content .hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-area-home .hero-content .hero-buttons .btn-outline-light:hover {
  background: white;
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-area-home .hero-image {
  position: relative;
  z-index: 2;
}

.hero-area-home .hero-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-area-home .hero-image .hero-features-grid,
.hero-area-home .hero-image .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.hero-area-home .hero-image .feature-item,
.hero-area-home .hero-image .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  padding: 1.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  word-wrap: break-word;
  min-height: 120px;
  transition: transform 0.3s ease;
}

.hero-area-home .hero-image .feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero-area-home .hero-image .feature-item span {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-area-home .hero-image .stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.hero-area-home .hero-image .stat-item p {
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.2;
}

/* Swiper Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(60, 176, 67, 0.4);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 4px 15px rgba(239, 180, 67, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-area-home .hero-content .hero-title {
    font-size: 2.8rem;
  }

  .hero-area-home .hero-content .hero-description {
    font-size: 1.2rem;
  }

  .hero-area-home .hero-content .hero-buttons .btn {
    padding: 0.6rem 1.4rem;
    font-size: 1.2rem;
  }

  .hero-area-home .hero-image .feature-item {
    padding: 1.5rem;
  }

  .hero-area-home .hero-image .stat-item {
    padding: 2rem 1.5rem;
  }

  .hero-area-home .hero-image .stat-item h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero-area-home .hero-content .hero-title {
    font-size: 2.4rem;
  }

  .hero-area-home .hero-content .hero-description {
    font-size: 1rem;
  }

  .hero-area-home .hero-content .hero-buttons {
    gap: 0.6rem;
  }

  .hero-area-home .hero-content .hero-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  .hero-area-home .hero-image.mt-3rem {
    display: flex;
    justify-content: center;
  }

  .hero-area-home .hero-image img {
    height: 270px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-area-home .hero-image .hero-features-grid,
  .hero-area-home .hero-image .stats-grid,
  .hero-area-home .hero-image.mt-3rem {
    margin-top: 3rem;
    gap: 0.8rem;
  }

  .hero-area-home .hero-image .feature-item,
  .hero-area-home .hero-image .stat-item {
    padding: 1.2rem 0.8rem;
    min-height: 100px;
  }
}

@media (max-width: 768px) {
  .hero-area-home .heroSwiper .hero-slide {
    min-height: 100vh;
    padding: 80px 0;
  }

  .hero-area-home .hero-content .hero-title {
    font-size: 2rem;
  }

  .hero-area-home .hero-content .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-area-home .hero-content .hero-buttons {
    gap: 0.5rem;
  }

  .hero-area-home .hero-content .hero-buttons .btn {
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .hero-area-home .hero-image.mt-3rem {
    margin-top: 1.5rem;
  }

  .hero-area-home .hero-image img {
    max-height: 230px;
  }

  .hero-area-home .hero-image .hero-features-grid,
  .hero-area-home .hero-image .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .hero-area-home .hero-image .feature-item,
  .hero-area-home .hero-image .stat-item {
    padding: 1rem 0.8rem;
    min-height: 90px;
  }

  .hero-area-home .hero-image .feature-item i {
    font-size: 1.5rem;
  }

  .hero-area-home .hero-image .feature-item span {
    font-size: 0.8rem;
  }

  .hero-area-home .hero-image .stat-item h3 {
    font-size: 1.8rem;
  }

  .hero-area-home .hero-image .stat-item p {
    font-size: 0.75rem;
  }


  .hero-area-home .hero-image .feature-item i {
    font-size: 2rem;
  }

  .hero-area-home .hero-image .stat-item h3 {
    font-size: 2rem;
  }

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .heroSwiper .swiper-button-next::after,
  .heroSwiper .swiper-button-prev::after {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-area-home .hero-content .hero-title {
    font-size: 1.7rem;
  }

  .hero-area-home .hero-image .feature-item,
  .hero-area-home .hero-image .stat-item {
    padding: 1rem;
  }

  .hero-area-home .hero-image .stat-item h3 {
    font-size: 2rem;
  }

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    display: none;
  }

  .heroSwiper .swiper-pagination-bullet {
    bottom: 50px;
    width: 8px;
    height: 8px;
  }
}

/* proccess flow */
.user-journey {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #2c5530 100%);
  min-height: 10vh;
  display: flex;
  align-items: center;
}

/* Animated Background */
.user-journey .journey-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.user-journey .journey-bg-animation::before,
.user-journey .journey-bg-animation::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
}

.user-journey .journey-bg-animation::before {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.user-journey .journey-bg-animation::after {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.7;
  }
}

/*=========> Step Icon Wrapper <=========*/
.user-journey .journey-step .step-icon-wrapper {
  position: relative;
  display: inline-block;
}

.user-journey .journey-step .step-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.user-journey .journey-step .step-icon::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite;
}

.user-journey .journey-step .step-number-flow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Journey Arrows */
.user-journey .journey-arrow i {
  animation: leftRight 6s infinite;
}

/* Mobile Responsive for User Journey */
@media (max-width: 1200px) {
  .user-journey .journey-step .step-icon {
    width: 90px;
    height: 90px;
  }

  .user-journey .journey-step .step-icon::before {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 992px) {
  .user-journey {
    padding: 2.5rem 0;
  }

  .user-journey .journey-step .step-icon {
    width: 80px;
    height: 80px;
  }

  .user-journey .journey-step .step-icon::before {
    width: 100px;
    height: 100px;
  }

  .user-journey .journey-arrow i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .user-journey {
    padding: 2rem 0;
  }

  .user-journey .journey-step .step-icon {
    width: 70px;
    height: 70px;
  }

  .user-journey .journey-step .step-icon::before {
    width: 90px;
    height: 90px;
  }

  .user-journey .journey-step .step-icon i {
    font-size: 1.5rem;
  }

  .user-journey .journey-step .step-number .badge {
    font-size: 0.7rem !important;
  }

  .user-journey .journey-arrow i {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .user-journey {
    padding: 1.5rem 0;
  }

  .user-journey .journey-step .step-icon {
    width: 60px;
    height: 60px;
  }

  .user-journey .journey-step .step-icon::before {
    width: 80px;
    height: 80px;
  }

  .user-journey .journey-step .step-icon i {
    font-size: 1.2rem;
  }

  .user-journey .journey-step .step-number .badge {
    font-size: 0.6rem !important;
  }

  .user-journey .journey-arrow i {
    font-size: 1rem;
  }
}

/* featured-products */
.featured-products .title>div,
.featured-recipes .title>div {
  background-color: var(--primary);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.featured-products .text-gradient,
.featured-recipes .text-gradient,
.tips-secrets .text-gradient,
.news-area .text-gradient,
.testimonials .text-gradient,
.about-us .text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 2rem;
}

.farmer-guide .text-gradient {
  font-weight: 800;
  font-size: 2rem;
}

.nutrition-info {
  font-size: 14px;
}

.nutrition-stats {
  font-weight: 600;
  color: #333;
}

.nutrition-item {
  white-space: nowrap;
}

.separator {
  color: #ccc;
  font-weight: normal;
}

.nutrition-details {
  font-size: 11px;
  color: #666 !important;
}

.nutrition-details .fas {
  font-size: 10px;
  color: #999;
}

.nutrition-tags .badge {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  background-color: #e8f5e8 !important;
  color: #2d5a2d !important;
  font-weight: 500;
  border: none;
}

.nutrition-tags .badge:hover {
  background-color: #d4f0d4 !important;
}

.cart-item {
  background: white;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cart-item .product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  width: 140px;
  height: 48px;
}

.quantity-controls:hover {
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.quantity-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quantity-btn:hover:not(:disabled) {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.quantity-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.quantity-input {
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  color: var(--dark-color);
  font-size: 1rem;
  flex: 1;
  height: 48px;
  width: 60px;
  margin: 0;
  padding: 0;
}

.quantity-input:focus {
  outline: none;
  background: rgba(99, 102, 241, 0.1);
}

/*===========> Cart Summary <===========*/
.cart-summary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: sticky;
  top: 2rem;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s;
}

.summary-row:hover {
  background: rgba(74, 245, 32, 0.133);
  border-radius: 8px;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.checkout-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  padding: 16px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.checkout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.checkout-btn:hover {
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.checkout-btn:hover::before {
  left: 100%;
}

.promo-section {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 2rem;
  border: 1px solid var(--primary);
}

.promo-input {
  border: 2px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s;
}

.promo-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.promo-btn {
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
}

.promo-btn:hover {
  color: white;
  background: var(--secondary);
  transform: scale(1.05);
}

/*===========> Payment Methods <===========*/
.payment-methods {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.payment-icon {
  transition: transform 0.3s, filter 0.3s;
  cursor: pointer;
}

.payment-icon:hover {
  transform: translateY(-2px) scale(1.1);
  filter: brightness(1.2);
}

.remove-btn {
  display: flex;
  align-items: center;
  color: red;
  background: rgba(239, 68, 68, 0.1);
  border: none;
  border-radius: 5px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.remove-btn:hover {
  background: #dc2626;
  color: white;
  transform: scale(1.1);
}

.price-tag {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-item .rating {
  color: #ffc107;
  font-size: 14px;
}

@media (max-width: 768px) {
  .product-image {
    width: 80px;
    height: 80px;
  }

  .cart-item .row>div {
    margin-bottom: 1rem;
  }

  .quantity-controls {
    justify-content: center;
  }
}

.organium_page_title_container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 420px;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 50px 0;
  overflow: hidden;
}


@media (max-width: 992px) {
  .organium_page_title {
    font-size: 35px;
  }
}

.organium_page_title_bg {
  background-image: url('../images/fruits\ PNG/bg-shop.jpg');
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  min-width: 1920px;
  width: 100%;
  height: 100%;
  transform: translate(-60%, -50%);
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: initial;
  background-size: contain;
  z-index: 2;
}

.organium_page_title {
  padding: 28px 0 0;
}

.organium_page_title:before {
  content: "";
  width: 42px;
  height: 28px;
  background: url('../images/profile/icon_title.png') left top no-repeat;
  display: inline-block;
}

.organium_page_title_wrapper .organium_page_title {
  margin: 6px 0 0;
  position: relative;
  font-size: 42px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.organium_page_title {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 900;
}

.organium_page_title:before {
  position: absolute;
  display: block;
  left: 0;
  right: auto;
  top: 0;
}

.breadcrumbs-wrapper {
  margin: 20px 0 0;

}

.breadcrumbs-wrapper .breadcrumbs a {
  position: relative;
  z-index: 5;
  cursor: pointer;
  transition: 0.3s;
}

.breadcrumbs-wrapper .breadcrumbs:hover a {
  color: var(--secondary);
}

.breadcrumbs-wrapper .breadcrumbs {
  font-size: 14px;
  line-height: 22px;
  font-weight: 900;
  text-transform: uppercase;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.breadcrumbs-wrapper .breadcrumbs a {
  color: #9c9c9c;
}

.breadcrumbs-wrapper .delimiter {
  margin: 0 7px 0 9px;
  top: -2px;
  color: #b9b9b9;
}

/* ------------ Checkout --------------- */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0;
  padding-top: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  border: 3px solid transparent;
}

.step.active .step-number {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.step.completed .step-number {
  background: var(--primary);
  color: white;
  transform: scale(1);
}

.step-connector {
  flex: 1;
  height: 4px;
  background: var(--primary);
  margin: 0 8px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.step-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #e5e7eb;
  border-radius: 2px;
  transition: transform 0.8s ease-in-out;
  transform: translateX(0);
}

.step.completed .step-connector::before {
  transform: translateX(100%);
}

.step:first-child .step-connector {
  width: 200px;
}

.step:last-child .step-connector {
  width: 200px;
}

/*=========> Animation for step completion <=========*/
.step.completing .step-number {
  animation: stepComplete 0.6s ease-in-out;
}

@keyframes stepComplete {
  0% {
    transform: scale(1);
    background: #e5e7eb;
    color: #9ca3af;
  }

  50% {
    transform: scale(1.2);
    background: #3b82f6;
    color: white;
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.3);
  }

  100% {
    transform: scale(1);
    background: #3b82f6;
    color: white;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.step.active .step-number {
  animation: activePulse 2s infinite;
}

@keyframes activePulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1);
  }
}

.step-connector.animating::before {
  animation: lineReveal 0.8s ease-in-out forwards;
}

@keyframes lineReveal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.checkout-section {
  background: white;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.section-header h5 {
  margin: 0;
  color: #1e293b;
}

.section-content {
  padding: 1.5rem;
}


.order-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 1rem;
}

.payment-method input[type="radio"] {
  display: none;
}

.place-order-btn:disabled {
  background: #9ca3af;
  color: white;
  cursor: not-allowed;
  transform: none;
}

.loading-spinner {
  color: white;
  display: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .step-indicator {
    flex-wrap: nowrap;
    padding-top: 70px;
  }

  .step-connector {
    width: 80px !important;
    margin: 0 4px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .checkout-header h1 {
    font-size: 1.8rem;
  }
}

.success-animation {
  animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.card-icon-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.card-icon-container img {
  width: 40px;
}

.card-icon-container .master-cart {
  width: 33px;
}

.input-group-text {
  background-color: transparent;
}

.aba-btn {
  background: linear-gradient(135deg, rgb(9, 70, 90) 0%, rgb(0, 76, 102) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}


.aba-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.aba-btn:hover {
  color: white;
  background-color: rgb(9, 70, 90);
  transform: translateY(-2px) scale(1.02);
}

.aba-btn:hover::before {
  left: 100%;
}

/*=========> Modal Place Order <=========*/
.modal-order .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal-order .modal-body {
  padding: 20px 40px 40px;
  text-align: center;
}

.modal-order .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  animation: successPulse 2s infinite;
}

.modal-order .success-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  opacity: 0.3;
  animation: ripple 2s infinite;
}

.modal-order .success-icon i {
  color: white;
  font-size: 36px;
  z-index: 1;
}

@keyframes successPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.modal-order .success-title {
  font-weight: 700;
  color: var(--primary);
}

.modal-order .order-number {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #495057;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #dee2e6;
  display: inline-block;
}

.info-divider {
  border-color: #f8f9fa;
  margin: 24px 0;
}

.info-row {
  padding: 8px 0;
}

.info-label {
  color: #6c757d;
  font-size: 14px;
}

.info-value {
  color: #495057;
  font-weight: 600;
  font-size: 14px;
}

.modal.fade .modal-dialog {
  transform: translateY(30px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

@media (max-width: 576px) {
  .modal-order .modal-body {
    padding: 20px 24px 32px;
  }

  .modal-order .success-title {
    font-size: 1.5rem;
  }

  .modal-order .success-icon {
    width: 70px;
    height: 70px;
  }

  .modal-order .success-icon i {
    font-size: 32px;
  }
}

.style-right {
  bottom: 50px;
}

.bg-team,
.bg-checkout {
  background:
    linear-gradient(rgba(255, 255, 255, 0.695), rgba(255, 255, 255, 0.61)),
    url('../images/auth/bg-checkout.png');

}

@media (max-width: 1670px) {
  .style-right {
    z-index: 0;
    right: -30px;
  }

  .style-right img {
    width: 130px;
  }
}

/* ------------ End  Checkout --------------- */

/*-------------------- Shop ------------------- */
.organium_shop_container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 430px;
  justify-content: center;
  align-items: center;
  background-color: #e5e5e5;
  padding: 50px 0;
  overflow: hidden;
}


.organium_shop_container::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -10px;
  width: 100%;
  height: 20px;
  background-image: url('../images/Vegetable/shape-paper.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 10;
}

.organium_shop_bg {
  background-image: url('../images/Vegetable/bg-shop.webp');
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  min-width: 1920px;
  width: 80%;
  height: 80%;
  transform: translate(-65%, -50%);
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: initial;
  background-size: contain;
  z-index: 2;
}

.category-filter {
  background: white;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.filter-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.category-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin: 8px 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-item:hover {
  background-color: rgba(76, 175, 80, 0.1);
  border-color: var(--primary);
}

.category-item.active {
  background-color: var(--primary);
  color: white;
}

.category-item i {
  margin-right: 10px;
  font-size: 1.2em;
  width: 20px;
}

.search-section {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.filter-price {
  border-bottom: none !important;
}

.shop-area {
  padding-top: 20px;
  padding-bottom: 60px;
}

.search-input {
  border: 2px solid var(--primary);
  border-radius: 25px;
  padding: 10px 40px 10px 40px;
  font-size: 14px;
}

.search-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
  border-color: var(--primary);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 16px;
}

.slider-wrapper {
  position: relative;
  height: 20px;
}

.price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: var(--primary);
  border-radius: 5px;
  position: absolute;
  top: 6px;
  pointer-events: none;
}

.price-slider:nth-of-type(2) {
  background: transparent;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}

.filter-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.filter-button {
  background-color: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-display {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

.bg-shop {
  background:
    linear-gradient(rgba(255, 255, 255, 0.889), rgba(255, 255, 255, 0.417)),
    url('../images/profile/bg-cart.jpg');
}

/*-------------------- End Shop ------------------- */

/*=========> Featured Recipes Section Styles <=========*/
.featured-recipes {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(10, 146, 0, 0.2));
}

.recipe-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
}

.recipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.recipe-image {
  position: relative;
  overflow: hidden;
}

.recipe-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image img {
  transform: scale(1.1);
}

.recipe-time {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.recipe-meta {
  margin-top: 15px;
}

/*=========> Tips & Secrets Section Styles <=========*/
.tips-secrets {
  border-top: 1px solid #008b255e;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(10, 146, 0, 0.2));
}

.tips-secrets>.container {
  z-index: 2;
}

.tips-secrets .rice-style img,
.tips-secrets .sandwich-style img {
  translate: rotate(180deg);
  z-index: -1;
  opacity: 0.5;
}

.tips-secrets .tips-content {
  position: relative;
  z-index: 2;
}

.tips-secrets .tip-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tips-secrets .tip-icon {
  font-size: 1.5rem;
}

.tips-secrets .tips-image img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.tips-secrets a.btn,
.farmer-guide a.btn {
  border: none;
  transition: 0.3s;
}

.tips-secrets a.btn:hover {
  background: var(--secondary);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  outline: none;
  border: none;
}

/*=========> Farmer's Guide <=========*/
.farmer-guide {
  background-image: url("/assets/images/tip/farmer-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.farmer-guide .farmer-content .feature-item {
  background: rgba(255, 255, 255, 0.5);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  color: #fff;
}

.farmer-guide .farmer-content a.btn:hover {
  background-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.farmer-guide .farmer-content a.btn:hover i,
.farmer-guide .farmer-content a.btn:hover span {
  color: #fff !important;
}

/*=========> Testimonials Section Styles <=========*/
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/patterns/quote-pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: none;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

.stars {
  color: #ffc107;
}

.testimonial-author img {
  object-fit: cover;
}

/*==========> About Us Section Styles ==========>*/
.about-content {
  padding-right: 30px;
}

.about-stats {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.stat-item {
  padding: 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-image img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

  .recipe-card,
  .news-card,
  .testimonial-card {
    margin-bottom: 30px;
  }

  .tips-content,
  .farmer-content,
  .about-content {
    padding: 0;
  }

  .about-stats {
    margin: 20px 0;
    padding: 20px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .testimonial-text::before {
    font-size: 3rem;
    top: -15px;
    left: -5px;
  }
}

@media (max-width: 576px) {

  .tip-item,
  .feature-item {
    padding: 15px;
  }

  .recipe-time {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .news-date {
    top: 10px;
    left: 10px;
  }
}

/* ​<----- contact us page -----> */
.banner-contact-us {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.banner-contact-us img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-contact-us .overlay {
  background: rgba(35, 125, 35, 0.4);
}

.banner-contact-us h1,
.banner-contact-us h3 {
  color: #fff;
}

.banner-contact-us .content {
  position: absolute;
  top: 100px;
}


/* ==============> Farm <============== */
.farm-hero-section {
  position: relative;
  height: 550px !important;
  background: linear-gradient(135deg,
      rgba(27, 67, 50, 0.95) 0%,
      rgba(45, 80, 22, 0.9) 30%,
      rgba(82, 183, 136, 0.8) 70%,
      rgba(149, 213, 178, 0.7) 100%),
    url('../images/farmer/bg-farm.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.farm-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 75%, rgba(255, 214, 10, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(247, 127, 0, 0.15) 0%, transparent 40%);
  animation: organicPulse 6s ease-in-out infinite alternate;
}

@keyframes organicPulse {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.7;
  }
}

.farm-hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.farm-hero-section .hero-content .hero-badge {
  background: linear-gradient(45deg, #40916c, #52b788);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease-out;
}

.farm-hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  animation: slideInUp 1s ease-out 0.2s both;
  line-height: 1.2;
}

.farm-hero-section .hero-content .hero-subtitle {
  font-size: 1.3rem;
  color: #95d5b2;
  font-weight: 400;
  margin-bottom: 1.5rem;
  animation: slideInUp 1s ease-out 0.4s both;
}

.farm-hero-section .hero-content .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 3rem;
  animation: slideInUp 1s ease-out 0.8s both;
}

.farm-hero-section .hero-content .hero-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.farm-hero-section .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.farm-hero-section .floating-icon {
  position: absolute;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.15);
  animation: naturalFloat 8s ease-in-out infinite;
}

.farm-hero-section .floating-icon:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.farm-hero-section .floating-icon:nth-child(2) {
  top: 25%;
  right: 12%;
  animation-delay: 2s;
}

.farm-hero-section .floating-icon:nth-child(3) {
  top: 55%;
  left: 10%;
  animation-delay: 4s;
}

.farm-hero-section .floating-icon:nth-child(4) {
  bottom: 25%;
  right: 15%;
  animation-delay: 6s;
}

.farm-hero-section .floating-icon:nth-child(5) {
  top: 70%;
  left: 60%;
  animation-delay: 1s;
}

.farm-hero-section .floating-icon:nth-child(6) {
  top: 40%;
  right: 35%;
  animation-delay: 3s;
}

@keyframes naturalFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-15px) rotate(2deg) scale(1.1);
  }

  50% {
    transform: translateY(-25px) rotate(-1deg) scale(1.05);
  }

  75% {
    transform: translateY(-10px) rotate(1deg) scale(1.08);
  }
}

.growing-area {
  padding: 80px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.817), rgba(255, 255, 255, 0.404)),
    url('https://demo2.pavothemes.com/freshio/wp-content/uploads/2020/08/bg2-h4.jpg');

}

.contact-area .section-title,
.fast-tips-section .section-title,
.natural-section .section-title,
.growing-area .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1b4332;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.contact-area .section-title::after,
.fast-tips-section .section-title::after,
.natural-section .section-title::after,
.growing-area .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd60a, #52b788);
  border-radius: 2px;
}

.growing-area .guide-card {
  background: white;
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.growing-area .guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(82, 183, 136, 0.1), transparent);
  transition: left 0.6s ease;
}

.growing-area .guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(27, 67, 50, 0.15);
  border-color: #52b788;
}

.growing-area .guide-card:hover::before {
  left: 100%;
}

.growing-area .guide-card .guide-icon {
  width: 100%;
  height: 100%;
  min-height: 240px;
  padding: 0 10px;
  background: linear-gradient(135deg, #f8fffe, #e6f7f1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.growing-area .guide-card .guide-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growing-area .guide-card .guide-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #ffd60a, #f77f00, #52b788);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.growing-area .guide-card .guide-card:hover .guide-icon::after {
  opacity: 1;
}

.guide-steps {
  width: 100%;
  height: 100%;
  min-height: 230px;
  background: linear-gradient(135deg, #f8fffe, #e6f7f1);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #52b788;
}

.guide-steps .guide-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 15px;
}

.guide-steps .guide-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.guide-steps .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.guide-steps .step-number {
  background: #52b788;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

.fast-tips-section {
  position: relative;
  padding: 80px 0;
  background-image: url("../images/farmer/2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
  color: white;
}

.fast-tips-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.fast-tips-section .tip-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.fast-tips-section .tip-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.fast-tips-section .tip-icon {
  font-size: 3.5rem;
  color: #ffd60a;
  margin-bottom: 25px;
  display: block;
}

.fast-tips-section .tip-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.fast-tips-section .tip-description {
  font-size: 1rem;
  line-height: 1.6;
}

.natural-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f8f5 100%);
}

@media (max-width: 992px) {
  .growing-area .guide-card .guide-icon {
    width: 100%;
    height: auto;
    min-height: 240px !important;
  }

  .cta-content {
    padding: 90px 20px !important;
  }

  .cta-title {
    font-size: 2.5rem !important;
  }

  .cta-description {
    font-size: 1rem !important;
  }

  .premium-card {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .farm-hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }

  .farm-hero-section .hero-content .hero-subtitle {
    font-size: 1rem;
  }

  .fast-tips-section .section-title,
  .natural-section .section-title,
  .growing-area .section-title {
    font-size: 2.2rem;
  }

  .growing-area .guide-card {
    padding: 25px;
  }

  .farm-hero-section .hero-content .hero-features {
    flex-direction: column;
  }

  .growing-area .guide-card {
    padding: 10px;
  }

  .growing-area .guide-card .guide-icon {
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .growing-area .guide-card .guide-icon img {
    width: 50%;
    height: 50%;
    object-fit: cover;
  }

  .cta-content {
    padding: 60px 20px !important;
  }

  .cta-title {
    font-size: 2rem !important;
  }

  .cta-description {
    font-size: 1rem !important;
  }

  .premium-card .card-content {
    padding: 25px 20px;
  }

  .premium-card .card-content .card-title {
    font-size: 1.4rem;
  }

  .premium-card .date-badge {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1200px) {
  .growing-area .guide-card .guide-icon {
    width: 100%;
    height: auto;
    min-height: 280px;
  }
}

/* Additional animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.cta-section {
  position: relative;
  background-color: #F4F6E8;
  background-image: url('../images/farmer/bg-section3-top.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow: hidden;
}

.elementor-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/farmer/bg-section3.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: 0.8;
  z-index: 1;
}

.cta-content {
  padding: 130px 0;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #212529;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.premium-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-card:hover::before {
  opacity: 1;
}

.card-image-container {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image-container .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.premium-card:hover .card-image {
  transform: scale(1.1) rotate(1deg);
}

.card-image-container .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.1) 0%,
      rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-card:hover .image-overlay {
  opacity: 1;
}

.premium-card .date-badge {
  position: absolute;
  top: 245px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  border: 4px solid white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow:
    0 10px 25px rgba(0, 210, 255, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 30;
  transition: all 0.3s ease;
}

.premium-card:hover .date-badge {
  transform: scale(1.1);
}

.date-badge .date-number {
  font-size: 1.2rem;
  line-height: 1;
}

.date-badge .date-month {
  font-size: 0.7rem;
  opacity: 0.9;
}

.premium-card .card-content {
  padding: 35px 30px 30px;
}

.premium-card .card-content .author-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  opacity: 0.8;
}

.premium-card .card-content .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.premium-card .card-content .author-name {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.premium-card .card-content .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.read-more-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  border: none;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transition: left 0.4s ease;
  z-index: 1;
}

.read-more-btn span {
  position: relative;
  z-index: 2;
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn:hover {
  transform: translateY(-3px);
}

.premium-card {
  animation: slideInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.premium-card:nth-child(2) {
  animation-delay: 0.2s;
}

.premium-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----------- Modal Styling -----------*/
.natural-modal .modal-content {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  background: white;
}

.natural-modal .modal-header {
  background: linear-gradient(135deg, #2d5a3d, #52b788);
  color: white;
  padding: 25px 30px;
  border: none;
  position: relative;
  overflow: hidden;
}

.natural-modal .modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}
.aba-modal .modal-dialog {
  max-width: 450px; 
  margin: auto;     
}

.aba-modal .modal-header {
  background-color: rgb(9, 70, 90) !important;
  color: #fff;
}

.aba-modal .modal-body img {
  width: 100%;
  height: auto; 
  display: block;
  margin: 0 auto; 
}
/* --- Custom Close Button Modal --- */
.btn-close-custom {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1056;
  background: linear-gradient(135deg, rgb(9, 70, 90) 0%, rgb(0, 76, 102) 100%); 
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 2px solid white;
  opacity: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; 
  font-size: 1rem; 
}
.btn-close-custom .fa-times {
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn-close-custom:hover .fa-times {
  transform: scale(1.3);
  color: white;
}

.natural-modal .modal-header:hover::before {
  right: -30%;
}

.natural-modal .modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
}

.natural-modal .modal-title i {
  font-size: 2rem;
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50%;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.natural-modal .btn-close {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 8px;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 3;
  position: relative;
}

.natural-modal .btn-close::before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.natural-modal .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.natural-modal .modal-body {
  padding: 40px;
  background: white;
}

/* Method Card Styling */
.method-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #52b788, #74c69d, #95d5b2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.method-card:hover::before {
  transform: scaleX(1);
}

.method-card-body {
  padding: 30px;
}

.method-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.method-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #52b788, #74c69d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-right: 20px;
  box-shadow: 0 8px 25px rgba(82, 183, 136, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.method-card:hover .method-icon::before {
  width: 100%;
  height: 100%;
}

.method-card:hover .method-icon {
  transform: scale(1.1);
}

.method-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d5a3d;
  margin: 0;
}

.guide-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.ingredients-list {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(116, 198, 157, 0.1));
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border: 2px solid rgba(82, 183, 136, 0.1);
  transition: all 0.3s ease;
}

.ingredients-list:hover {
  border-color: rgba(82, 183, 136, 0.3);
  transform: translateY(-2px);
}

.ingredients-title {
  color: #2d5a3d;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.ingredients-title::before {
  content: '🌱';
  margin-right: 8px;
  font-size: 1.2rem;
}

.ingredient-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
  padding: 8px 0;
  transition: all 0.2s ease;
}

.ingredient-item:hover {
  color: #2d5a3d;
  transform: translateX(5px);
}

.ingredient-item::before {
  content: '🌿';
  margin-right: 12px;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.ingredient-item:hover::before {
  transform: scale(1.2);
}

.guide-steps-modal {
  margin-top: 30px;
}

.guide-steps-modal .steps-title {
  color: #2d5a3d;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.guide-steps-modal .steps-title::before {
  content: '📋';
  margin-right: 8px;
  font-size: 1.2rem;
}

.guide-steps-modal .step-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(240, 253, 244, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #52b788;
}

.guide-steps-modal .step-item:hover {
  background: rgba(240, 253, 244, 1);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(82, 183, 136, 0.2);
}

.guide-steps-modal .step-number {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #52b788, #74c69d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.guide-steps-modal .step-item:hover .step-number {
  transform: scale(1.1);
}

.guide-steps-modal .step-text {
  flex: 1;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.modal.fade .modal-dialog {
  transform: scale(0.8) rotateY(45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-dialog {
  transform: scale(1) rotateY(0deg);
}

@media (max-width: 768px) {
  .natural-modal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }

  .natural-modal .modal-body {
    padding: 20px;
  }

  .method-card-body {
    padding: 20px;
  }

  .natural-modal .method-header {
    flex-direction: column;
    text-align: center;
  }

  .method-icon {
    margin: 0 0 15px 0;
  }
}

/* ==============> End Farm <============== */


/* ==============> Pagination <============== */
.pagination-custom .page-item {
  margin: 0 0.25rem;
}

.pagination-custom .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.5rem;
  background-color: #f1f3f5;
  color: #3a5a40;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  width: 45px;
  height: 45px;
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: none;
}

.pagination-custom .page-link:hover {
  background-color: #e9ecef;
  color: #3a5a40;
}

.pagination-custom .page-item.active .page-link:hover {
  background-color: var(--secondary);
  color: #ffffff;
}

.pagination-custom .page-item.disabled .page-link {
  background-color: #f1f3f5;
  color: #adb5bd;
  opacity: 0.7;
}