@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

:root {
  --ssfont: "Congenial", sans-serif;
  --white: #ffffff;
  --offYellow: #fee09d;
  --offBlack: #191919;
  --offGreen: #c7d4a2;
  --offWhite: #f9f4ef;
  --darkOrange: #ae5f27;
  --green: #495539;
}

* {
  font-family: var(--ssfont);
  margin: 0;
}

html {
  overflow-x: hidden;
}

section {
  position: relative;
}

a {
  text-decoration: none;
  color: unset;
}

img {
  max-width: 100%;
}

.button {
  display: block;
  width: fit-content;
  margin-top: 50px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 20px;
  border-radius: 500px;
  border: 2px solid transparent;
  cursor: pointer;
}

.button:hover {
  background: var(--white);
  color: var(--offBlack);
  border: 2px solid var(--green);
}

.star-button {
  display: block;
  width: fit-content;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0px 10px;
  border-radius: 500px;
  border: 2px solid transparent;
  cursor: pointer;
}

.star-button:hover {
  background: var(--white);
  color: var(--offBlack);
  border: 2px solid var(--green);
}

/* header */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

header.header-black {
  background-color: #f3f3f3;
  box-shadow: 0 2px 30px 1px rgb(0 0 0 / 10%);
}

header.header-black .logo {
  width: 60px;
  height: 60px;
}

header .logo {
  width: 80px;
  height: 80px;
}

header .navbar {
  padding-top: 20px;
}

header.header-black .navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

header .navbar-nav {
  gap: 50px;
  align-items: center;
}

header .nav-link.carts,
header .navbar-nav .nav-item .nav-link {
  padding: 0;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--white);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
}

header.header-black .nav-link.carts,
header.header-black .navbar-nav .nav-item .nav-link {
  font-weight: 400;
  color: var(--offBlack);
}

header .navbar-nav .nav-item .nav-link.active {
  color: var(--offYellow);
  font-weight: bold;
}

header.header-black .navbar-nav .nav-item .nav-link.active {
  color: var(--offGreen);
  font-weight: bold;
}

header .nav-link.carts img,
header .navbar-nav .nav-item .nav-link img {
  filter: brightness(0) invert(10);
}

header.header-black .nav-link.carts img,
header.header-black .navbar-nav .nav-item .nav-link img {
  filter: unset;
}

.button-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.navbar-brand {
  order: 1;
}

.button-box {
  margin-left: 20px;
  order: 3;
}

.navbar-collapse {
  order: 2;
}

select#currency-select {
  padding: 4px 10px;
  cursor: pointer;
  padding-right: 24px;
  background-color: var(--offGreen);
  color: var(--offBlack);
  background-position: 40px center;
  border: none;
}

.carts {
  position: relative;
}

span.cart-notification {
  width: 22px;
  background: red;
  z-index: 2;
  bottom: 10px;
  left: 10px;
  position: absolute;
  display: block;
  font-size: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 500px;
  padding: 2px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.search-container {
  position: fixed;
  width: 0;
  opacity: 0;
  max-width: 100%;
  height: 100dvh;
  top: 0;
  right: 0;
  border-radius: 10px;
  transform: translateY(-200%);
  /* background: #00000066; */
  /* backdrop-filter: blur(10px); */
  transition: all 0.4s;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.search-container.active {
  transform: translateY(0);
  width: 100%;
  opacity: 1;
}

.search-container .summary-detail-details {
  width: 500px;
  max-width: 90%;
  margin-right: 50px;
  padding: 10px;
  background: #f3f3f3;
  box-shadow: 0px 0px 30px 10px #00000082;
}

.search-container .search-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 10px;
  background: var(--offGreen);
  border-radius: 10px;
}

.search-container .search-head h2 {
  font-size: 20px;
  font-weight: bold;
}

.search-container .search-head p {
  font-size: 14px;
  font-weight: 200;
  margin: 0;
}

.search-container form input {
  width: 100%;
  margin-top: 10px;
}

.search-container .search-head .search-head-btn button.close-btn {
  aspect-ratio: 1 / 1;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.search-results {
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.search-results ul li {
  margin-top: 5px;
}

.search-results ul li a {
  font-weight: bold;
}

.search-results ul li a:hover {
  color: var(--green);
  text-decoration: underline;
}

header .navbar > .container {
  position: relative;
}

/* header */

/* banner */
ul.banner-slider {
  margin: 0;
  padding: 0;
}

ul.banner-slider .banner-slide,
ul.banner-slider {
  position: relative;
}

ul.banner-slider li .banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

ul.banner-slider li .banner-slide .slider-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

ul.banner-slider li .banner-slide .slider-bg::after {
  content: "";
  background-color: var(--offBlack);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

ul.banner-slider li .banner-slide .slider-text {
  position: relative;
  z-index: 2;
  height: 100vh;
  max-height: 100vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

ul.banner-slider li .banner-slide .slider-text h1 {
  width: 60%;
  font-size: 64px;
  text-transform: capitalize;
  font-weight: bold;
  color: var(--white);
  text-align: center;
}

ul.banner-slider li .banner-slide .slider-text h1 b {
  position: relative;
  font-weight: bold;
  color: var(--offGreen);
}

ul.banner-slider li .banner-slide .slider-text h1 b::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 90%;
  left: 0;
  background-image: url("../image/Decore.svg");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}

.banner-section .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-section .slick-dots {
  background-color: var(--white);
  box-shadow: 0 2px 6px 0px rgb(0 0 0 / 25%);
  border-radius: 500px;
  padding: 8px;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
}

.banner-section .slick-dots li {
  background-color: var(--offGreen);
  border-radius: 500px;
  width: 17px;
  height: 17px;
  margin: 0;
}

.banner-section .slick-dots li.slick-active {
  background-color: var(--green);
}

.banner-section .slick-dots li button {
  display: none;
}

.banner-section .button {
  display: block;
  width: fit-content;
  margin-top: 50px;
  background: var(--white);
  color: var(--green);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 500px;
  border: none;
}

.banner-section .button:hover {
  background: var(--green);
  color: var(--white);
  border: none;
}

/* banner */

/* Section */

.section-heading {
  font-size: 48px;
  font-family: "barteldes small";
  font-weight: bold;
  color: var(--offBlack);
  text-align: center;
  text-transform: capitalize;
}

.section-heading b {
  color: var(--offGreen) !important;
  font-family: "barteldes small";
  font-weight: bold;
}

.section-heading b:nth-child(even) {
  color: var(--offYellow) !important;
}

.section-details {
  width: 70%;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  color: var(--offBlack);
  font-weight: 400;
  margin-top: 30px;
}

#service .section-heading {
  text-align: start;
}

#service .section-details {
  text-align: start;
  width: 100%;
}

/* Section */

/* Product */
.offer-section {
  margin: 100px 0;
}

.product-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
  margin-top: 60px;
}

.offers-des {
  position: absolute;
  left: -20px;
  top: 50px;
  z-index: -5;
}

.product-box {
  position: relative;
  width: calc(100% - 50px);
  margin: 0 auto;
}

.product-box img {
  display: unset !important;
}

img.border-img {
  width: 100%;
}

img.product-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: 0px;
  padding: 13%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.product-ratting {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.product-ratting .ratting-point {
  font-size: 18px;
  font-weight: 400;
  color: var(--offBlack);
  margin-bottom: 0;
}

.product-detalis,
.blog-list {
  background: linear-gradient(
    180deg,
    rgba(229, 229, 229, 0) 0%,
    rgba(165, 165, 156, 1) 500%
  );
  padding: 25px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.tab-content .product-detalis {
  padding-bottom: 30px;
}

.product-detalis .product-naming {
  margin-top: 10px;
}

.product-detalis .product-naming .product-title {
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  color: var(--green);
}

.product-detalis .product-naming .product-text {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--offBlack);
  margin-bottom: 0;
  margin-top: 9px;
}

.price-tag {
  position: absolute;
  right: -5px;
  bottom: 70px;
  z-index: 2;
  background: var(--offYellow);
  border-radius: 500px;
  padding: 7px 15px;
  border: 5px solid var(--offWhite);
}

.price-tag p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--offBlack);
}

.price-tag p del {
  font-size: 14px;
  opacity: 0.8;
}

.hero-slider .button,
.tab-content .button {
  margin: 0 auto;
  top: calc(100% - 25px);
  right: 50%;
  transform: translateX(50%);
  position: absolute;
  white-space: nowrap;
}

.hero-slider .product-list {
  margin-bottom: 30px;
}

/* Product */

/* Services */
.services-section .offers-des {
  top: 0px;
  z-index: -5;
}

.services-section {
  margin: 100px 0;
}

.services-tree {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: -5;
}

.bg-blue {
  position: absolute;
  max-width: 100%;
  top: -300px;
  left: 0px;
  z-index: -5;
}

.seek {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  z-index: -5;
}

.services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

.serrvices-img {
  width: 40%;
  position: relative;
  padding-top: 50px;
}

.serrvices-details {
  width: 60%;
  padding: 40px 0;
}

.serrvices-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.serrvices-img img.avtar {
  position: absolute;
  width: 70%;
  top: 40%;
  right: 50%;
  object-fit: cover;
  height: 500px;
  aspect-ratio: unset;
  transform: translate(50%, -50%);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  margin-top: 30px;
}

.services-list li {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.services-list li img {
  aspect-ratio: 1 / 1;
  width: 28px;
}

/* Services */

/* Tab */
.tabing-section {
  margin: 100px 0;
}

.tabing-section .section-heading {
  width: 50%;
  margin: 0 auto;
}

.tab {
  margin-top: 30px;
}

.tab-buttons .button {
  margin: 0;
  margin-top: 0;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.tab-button {
  display: block;
  width: fit-content;
  color: var(--offBlack);
  background-color: transparent;
  border: 2px solid var(--green);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 500px;
}

.tab-button.active,
.tab-button:hover {
  border: 2px solid transparent;
  background: var(--green);
  color: var(--white);
}

.tab-content .product-listing {
  grid-template-columns: repeat(3, 1fr);
}

.tab-content .product-listing {
  margin-top: 0;
}

.tab-content {
  width: 100%;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s;
}

.tab-content.active {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.tab-content.active .product-listing {
  margin-top: 60px;
  padding-bottom: 30px;
}

.tab-content .product-text {
  display: -webkit-box;
  /* Enables the use of the webkit box model */
  -webkit-line-clamp: 2;
  /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  /* Specifies vertical orientation */
  overflow: hidden;
  /* Hides overflowed text */
  text-overflow: ellipsis;
  /* Adds ellipsis after overflowed text */
}

/* Tab */
/* review-slid */

.slider_main .review-slider {
  padding: 0;
  padding-bottom: 20px;
  margin: 0;
  overflow: hidden;
}

.slider_main .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
  padding-top: 30px !important;
}

.review-slid {
  background: linear-gradient(
    180deg,
    rgba(229, 229, 229, 0) 0%,
    rgba(165, 165, 156, 1) 200%
  );
  padding: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  list-style: none;
  margin: 0;
}

.slick-center .review-slid {
  box-shadow: 0 0 20px 1px rgb(0 0 0 / 15%) !important;
}

.review-slid .review-profile .profile img {
  width: 80px;
  max-width: 80px;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--green);
  border-radius: 500px;
}

.review-slid .review-profile .review-ratting {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.review-slid .review-profile .review-ratting p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}

.review-slid .review-text h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.review-slid .review-text p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.review-slider .slick-slide {
  margin: 0 20px;
  /* Add 10px space between each slide */
}

.review-slider .slick-list {
  padding: 0 !important;
  margin: 0 -20px !important;
  overflow: unset !important;
}

/* review-slid */

/* Slider */

.slider-section {
  margin: 100px 0;
  padding: 50px 0;
  background-image: url("../image/bg-review.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.slider_main {
  position: relative;
  margin-top: 30px;
}

.custom-next svg,
.custom-prev svg {
  color: var(--darkOrange);
  transition: all 0.4s;
}

.custom-next:hover svg,
.custom-prev:hover svg {
  color: var(--white);
  transition: all 0.4s;
}

.custom-next,
.custom-prev {
  position: absolute;
  top: calc(50% - 56.5px);
  transform: translateY(-50%);
  background: var(--white);
  box-shadow: 0 2px 6px 0px rgb(0 0 0 / 25%);
  z-index: 10;
  border: none;
  border-radius: 500px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}

.custom-next:hover,
.custom-prev:hover {
  background: var(--darkOrange);
}

.custom-next {
  right: -15px;
}

.custom-prev {
  left: -15px;
}

.slider_main .slick-dots {
  position: relative;
  bottom: 0;
}

.slider_main .slick-dots {
  background-color: var(--white);
  box-shadow: 0 2px 6px 0px rgb(0 0 0 / 25%);
  border-radius: 500px;
  padding: 8px;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
}

.slider_main .slick-dots li {
  background-color: var(--offGreen);
  border-radius: 500px;
  width: 17px;
  height: 17px;
  margin: 0;
}

.slider_main .slick-dots li.slick-active {
  background-color: var(--green);
}

.slider_main .slick-dots li button {
  display: none;
}

.slider_main .button {
  margin: 0 auto;
}

/* Slider */

/* Footer */

footer {
  background: #f3f3f3;
  border-top: 2px solid var(--green);
}

footer .footer-logo img {
  width: 100px;
  aspect-ratio: 1 / 1;
}

footer p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}

footer h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 14px;
}

footer ul li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 11px;
}

footer ul li:last-child {
  margin-bottom: 0;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  padding: 50px 0;
}

.footer-tuch,
.footer-logo {
  width: 35%;
}

.footer-links,
.footer-product {
  width: 18%;
}

.footer-tuch form {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 15px;
  margin-top: 20px;
}

.footer-tuch form input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--offBlack);
}

.footer-tuch form input {
  border-radius: 500px;
  border: none;
  background: var(--offGreen);
  font-size: 14px;
  font-weight: 400;
  padding: 15px 24px;
  color: var(--offBlack);
}

footer .button {
  font-size: 14px;
  padding: 15px 24px;
  margin: 0;
  margin-top: 0;
}

.copy-right {
  padding: 20px 0;
  border-top: 1px solid var(--green);
  text-align: center;
}

.copy-right a {
  text-align: center;
  font-size: 16px;
}

/* Footer */

/* Manu Animation */
.navbar-toggler {
  width: 40px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: unset;
  border: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--offWhite);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header-black .navbar-toggler span {
  background: var(--green);
}

.navbar-toggler.collapsed span:nth-child(1) {
  top: 0px;
  transform: unset;
}

.navbar-toggler.collapsed span:nth-child(2),
.navbar-toggler.collapsed span:nth-child(3) {
  top: 12px;
  transform: unset;
}

.navbar-toggler.collapsed span:nth-child(4) {
  top: 24px;
  transform: unset;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

html.overflow-hidden {
  position: relative;
}

html.overflow-hidden:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: var(--offBlack);
  opacity: 0.8;
  z-index: 41;
  width: 100%;
  height: 100%;
}

ul.dropdown-menu {
  background: var(--green);
  padding: 10px;
  margin-top: 10px !important;
  border: none;
}

header.header-black ul.dropdown-menu {
  background: var(--offGreen);
}

ul.dropdown-menu li {
  padding-top: 10px;
}

ul.dropdown-menu li:first-child {
  padding-top: 0;
}

ul.dropdown-menu li a img {
  width: 20px;
}

header .navbar-nav ul.dropdown-menu li a.nav-link {
  font-size: 14px;
}

/* Manu Animation */
/* Inner Section */
.inner-section {
  margin: 100px 0;
}

.inner-slider .banner-slide {
  position: relative;
  margin-bottom: 50px;
}

.inner-slider .banner-slide img {
  max-height: 350px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inner-slider .banner-slide::after {
  content: "";
  background-color: var(--offBlack);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.inner-slider .banner-slide h1 {
  font-size: 50px;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--offGreen);
  position: absolute;
  bottom: 50px;
  right: 50%;
  transform: translateX(50%);
  z-index: 2;
  filter: drop-shadow(0 0 10px var(--offBlack));
}

/* Inner Section */

/* Product Inner Section */

.single-product h2 {
  text-align: start;
}

.product-slider-main {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  margin-top: 60px;
}

.product-slider-main .product-slider-div {
  width: 40%;
  position: sticky;
  top: 100px;
}

.product-slider-details {
  width: 60%;
  position: sticky;
  top: 100px;
}

.product-slider-div img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.product-slider-div .banner-slide {
  aspect-ratio: 1 / 1;
  background-color: var(--offGreen);
  border-radius: 20px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.product-thumbnail_main {
  position: relative;
  margin-top: 30px;
  border-radius: 20px;
}

.product-thumbnail .slick-slide {
  margin: 0 15px;
  overflow: hidden;
}

.product-thumbnail_main .custom-next,
.product-thumbnail_main .custom-prev {
  top: 50%;
}

.product-thumbnail .slick-list {
  padding: 0 !important;
  margin: 0 -20px !important;
}

.product-slider-details h2 {
  color: var(--green);
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 0;
}

.product-slider-details p {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 0;
}

ul.product_listing {
  margin-top: 30px;
  padding: 0;
  list-style: inside;
}

ul.product_listing p.product_detail {
  font-size: 20px;
  font-weight: 500;
}

ul.product_listing li {
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}

p.product_select_prive {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: bold;
  color: var(--offBlack);
  display: flex;
  justify-content: start;
  align-items: end;
  gap: 20px;
}

p.product_select_prive del {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
}

.product_button_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.product_button_box p.product_select_prive {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: end;
  gap: 10px;
  margin-top: 0;
}

.product_button_box p.product_select_prive del {
  font-weight: 400;
  font-size: 16px;
  display: block;
}

.product_button_box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.product_button_box a.button {
  margin-top: 0;
}

.form-check {
  position: relative;
  padding: 0;
  cursor: pointer;
}

.form-check .form-check-input[type="radio"] {
  border: none;
  background: var(--offGreen);
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 500px;
  position: absolute;
  height: 100%;
  z-index: 1;
}

.form-check .form-check-label {
  z-index: 2;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 15px;
  color: var(--offBlack);
  cursor: pointer;
}

.form-check .form-check-input[type="radio"]:checked {
  background-color: var(--green);
}

.form-check .form-check-input[type="radio"]:checked + label {
  color: var(--offWhite);
}

.form-check .form-check-input:focus {
  border-color: none;
  outline: 0;
  box-shadow: unset;
}

/* Product Inner Section */

/* Cart Section */

.single-product p span.cart-items {
  font-weight: bold;
}

.checkout-list ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

.checkout-list .checkout_product_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--offBlack);
}

.checkout-list .checkout_product_main {
  margin-top: 30px;
}

.checkout-list .checkout_product_main li {
  width: 100%;
}

.checkout-list .checkout_product_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.checkout-list .checkout_main_product {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid black;
}

.checkout-list .checkout_main_product:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

.checkout-list .checkout_product_list li.product .checkout_product img {
  aspect-ratio: 1 / 1;
  width: 150px;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.checkout-list .checkout_product_list li.product {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 20px;
}

.checkout-list .checkout_product_list li.product .checkout_product_box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  padding: 20px 0;
}

.checkout-list
  .checkout_product_list
  li.product
  .checkout_product_box
  .checkout_product_name
  p.product-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.checkout-list
  .checkout_product_list
  li.product
  .checkout_product_box
  .checkout_product_details
  p {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 2px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.checkout-list .checkout_product_heading li {
  font-size: 18px;
  font-weight: 500;
}

.checkout_main_box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-top: 50px;
}

.checkout-list {
  background: #f3f3f3;
  border-radius: 20px;
  padding: 30px;
  width: 80%;
  position: sticky;
  top: 100px;
}

.checkout-detail-list {
  width: 20%;
  background: #f3f3f3;
  padding: 10px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

.checkout-detail-list .checkouut_note {
  padding: 10px;
}

p.detail-list-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.checkout-detail-list .checkouut_note textarea {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid var(--offBlack);
}

.checkout-detail-list a.button {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.checkout-detail-list .checkouut_total_price {
  margin-top: 30px;
  background: var(--offGreen);
  padding: 10px;
  border-radius: 20px;
}

.checkout-detail-list .checkouut_total_price button.button {
  width: 100%;
}

.checkout-detail-list .checkouut_total_price .cart_total p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--offBlack);
  font-weight: 400;
}

.checkout-detail-list .checkouut_total_price .cart_total p.cart_main_total {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid black;
}

.checkout-list .checkout_product_list li.price {
  font-size: 20px;
  font-weight: bold;
  color: var(--offBlack);
}

.checkout-list .checkout_product_list li.total {
  font-weight: bold;
  font-size: 20px;
  color: var(--green);
}

.checkout-list
  .checkout_product_list
  li.product
  .checkout_product_box
  .checkout_product_details
  p
  span {
  opacity: 0.8;
  font-weight: 500;
}

.checkout-list li.product {
  width: 100%;
}

.checkout-list li.price {
  width: 100px;
  min-width: 100px;
  white-space: nowrap;
}

.checkout-list li.quantity {
  width: 120px;
  min-width: 120px;
  white-space: nowrap;
}

.checkout-list li.total {
  width: 150px;
  min-width: 150px;
  white-space: nowrap;
}

select:focus-visible,
textarea:focus-visible,
input:focus-visible {
  outline: none;
}

.checkout_product_counter input {
  border: none;
  text-align: center;
  width: 40px;
  background: none;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

.checkout_product_counter {
  background: var(--offGreen);
  width: fit-content;
  padding: 8px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.checkout-list li.quantity .checkout_product_counter {
  background: var(--white);
}

.checkout_product_counter span {
  border: 1px solid black;
  width: 26px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 500px;
}

/* Cart Section */

/* Summary Section */

.summary_main_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  margin-top: 50px;
  position: relative;
}

.summary-detail-details,
.summary-detail-list {
  width: 30%;
  background: #f3f3f3;
  border-radius: 20px;
  padding: 20px;
  position: sticky;
  top: 100px;
}

.summary-detail-details {
  width: calc(70% - 50px);
}

.summary_product_main {
  background: var(--white);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 0 20px;
  margin-bottom: 20px;
}

.summary_product_main .summary_product_box {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  gap: 10px;
  width: calc(100% - 170px);
  padding: 10px 0;
}

.summary_product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  padding: 10px;
}

.summary_product_main .summary_product {
  width: 150px;
}

.summary_total_price .cart_total p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.summary_total_price .cart_total p.cart_main_total {
  font-size: 20px;
  font-weight: bold;
}

.summary_total_price .cart_total p.cart_main_total {
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--offBlack);
}

.summary_total_price a.button {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.summary_total_price {
  border-radius: 20px;
  padding: 20px;
  background: var(--offGreen);
}

.summary_product_main .summary_product_box .summary_product_details p {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.summary_product_main .summary_product_box .summary_product_details p span {
  opacity: 0.8;
  font-weight: 400;
}

.summary-detail-details form textarea,
.summary-detail-details form input,
.summary-detail-details form select {
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  color: var(--offBlack);
  font-size: 16px;
  font-weight: 500;
}

.summary-detail-details form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.summary-detail-details form div {
  width: calc(50% - 10px);
}

.summary-detail-details form div.address_note {
  width: 100%;
}

.summary-detail-details form select:focus,
.summary-detail-details form textarea:focus,
.summary-detail-details form input:focus {
  color: var(--offBlack);
  background-color: var(--offGreen);
  box-shadow: none;
}

.summary-detail-details form select::placeholder,
.summary-detail-details form textarea::placeholder,
.summary-detail-details form input::placeholder {
  transform: translateX(0%);
  transition: all 1s;
}

.summary-detail-details form select:focus::placeholder,
.summary-detail-details form textarea:focus::placeholder,
.summary-detail-details form input:focus::placeholder {
  transform: translateX(-500px);
}

.summary-detail-details form .button {
  margin: 0 auto;
  width: 50%;
  text-align: center;
}

.summary_product_name {
  width: 100%;
}

.summary_product_name p.product-name {
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Summary Section */

/* About Section */

.about-cards {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.about-cards:first-child {
  margin-top: 0;
}

.about-cards .about-img {
  width: calc(40% - 50px);
}

.about-cards .about-details {
  width: 60%;
}

.about-cards:nth-child(odd) .about-img {
  order: 1;
}

.about-cards:nth-child(odd) .about-details {
  order: 2;
}

.about-cards:nth-child(even) .about-img {
  order: 2;
}

.about-cards:nth-child(even) .about-details {
  order: 1;
}

.about-cards .about-img img {
  border-radius: 20px;
}

.about-details .section-heading {
  text-align: start;
}

.about-details .section-details {
  text-align: start;
  width: 100%;
}

.about-details .section-heading {
  font-size: 40px;
  margin-bottom: 30px;
}

.about-details .section-details {
  font-size: 16px;
  margin-top: 10px;
}

/* About Section */

/* Contact Section */

.contact-section .summary-detail-details {
  width: calc(70% - 50px);
  margin: 0 auto;
}

/* Contact Section */

/* Social Section */

section.social-media {
  margin-bottom: 50px;
}

.social-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.social-card a {
  border-radius: 20px;
  background-color: var(--green);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.4s;
}

.social-card a.insta:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  transition: all 0.4s;
}

.social-card a.facebook:hover {
  background: linear-gradient(45deg, #1877f2, #2851a3);
  transition: all 0.4s;
}

.social-card a.whatsapp:hover {
  background: linear-gradient(45deg, #25d366, #128c7e, #075e54);
  transition: all 0.4s;
}

.social-card a.call:hover {
  background: linear-gradient(45deg, #659cf7, #368cd8, #1565c0);
  transition: all 0.4s;
}

.social-card a.mail:hover {
  background: linear-gradient(45deg, #d93025, #ea4335, #fbbc05);
  transition: all 0.4s;
}

.social-card a.adress:hover {
  background: linear-gradient(45deg, #f4b400, #db4437);
  transition: all 0.4s;
}

.social-card a.youtube:hover {
  background: linear-gradient(45deg, #ff0000, #c4302b);
  transition: all 0.4s;
}

.social-card a p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0;
  margin-top: 50px;
}

.social-card a h2 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}

.social-card a span.icons {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--white);
  opacity: 0.1;
}

.social-card a span.icons svg {
  width: 40px;
  height: 40px;
}

/* Social Section */

/* Order List Section */

.order-list {
  position: unset;
  width: 100%;
}

.order-list.checkout-list li.price {
  width: 200px;
  min-width: 200px;
}

.person-infomation {
  margin-top: 50px;
}

.person-infomation form {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
}

.person-infomation form p.form-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.person-infomation form .person-form p.form-heading {
  width: 100%;
  margin-bottom: 0;
}

.person-infomation form .person-form {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 30px;
}

.person-infomation form .person-form div {
  width: calc(50% - 15px);
}

.person-infomation form .person-form .product_button_box {
  margin-top: 0;
}

.person-infomation form .person-form .product_button_box div {
  width: fit-content;
}

.person-form input {
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  color: var(--offBlack);
  font-size: 16px;
  font-weight: 500;
}

.person-form input:focus {
  color: var(--offBlack);
  background-color: var(--offGreen);
  box-shadow: none;
}

.person-form input::placeholder {
  transform: translateX(0%);
  transition: all 1s;
}

.person-form input:focus::placeholder {
  transform: translateX(-500px);
}

.address-select ul li .address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.address-select ul li .address-header .active,
.address-select ul li .address-header .work {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.address-select ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.address-select ul li {
  margin-top: 20px;
  border: 2px solid var(--green);
  padding: 10px 20px;
  border-radius: 10px;
}

.address-select ul li:first-child {
  margin-top: 0;
}

.address-select ul li .address-header .work span {
  padding: 5px 10px;
  background: var(--offGreen);
  border-radius: 5px;
}

.address-select ul li .name {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.address-select ul li .name p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}

.address-select ul li .name p:last-child {
  font-weight: bold;
}

.address-select ul li .address-line {
  font-size: 16px;
  margin-top: 10px;
}

.address-select ul li .address-line p span {
  font-weight: bold;
}

/* Order List Section */

/* Empty Section */

.empty-section {
  border-radius: 30px;
  background: #f3f3f3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.empty-section p {
  font-size: 28px;
  font-weight: bold;
}

.empty-section div svg {
  width: 80px;
  height: 80px;
}

/* Empty Section */

/* Product Details Section */

select.form-select {
  width: fit-content;
  border: 1px solid var(--green);
  border-radius: 500px;
  cursor: pointer;
  width: 100%;
}

select.form-select option {
  background: var(--offGreen);
}

.form-select:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
  cursor: pointer;
}

div#accordion button {
  padding: 10px 20px;
  color: unset;
  text-decoration: none;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: bold;
  width: 100%;
  text-align: start;
  margin: 0;
}

div#accordion {
  width: 100%;
}

div#accordion .card {
  margin-top: 20px;
  border-color: var(--green);
  overflow: hidden;
  border: none;
}

div#accordion .card .card-body p {
  margin-top: 0;
}

div#accordion .card .card-header {
  padding: 0;
  background: var(--offGreen);
  border: none;
  border-radius: 500px;
}

/* Product Details Section */

/* Policy Section */

.policy-section p {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
}

.policy-section ul {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  list-style: inside;
}

.policy-section ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

.policy-section ul p {
  margin-bottom: 20px;
  font-weight: bold;
}

.policy-section p a {
  color: var(--green);
  text-decoration: underline;
}

/* Policy Section */

/* Policy Section */

.recipe-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  margin: 50px 0;
}

.recipe-main .recipe .recipe-img {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.recipe-main .recipe .recipe-img img {
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.recipe-main .recipe .recipe-content h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.recipe-main .recipe .recipe-content p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.recipe-main .recipe .recipe-content a.recipe-btn {
  border: 1px solid transparent;
  background-color: var(--green);
  color: var(--white);
  border-radius: 500px;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-width: 50%;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.4s;
}

.recipe-main .recipe .recipe-content a.recipe-btn:hover {
  border: 1px solid var(--green);
  color: var(--offBlack);
  background-color: var(--white);
}

@media (max-width: 1024px) {
  .recipe-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .recipe-main .recipe .recipe-content h2 {
    margin-bottom: 4px;
  }

  .recipe-main .recipe .recipe-content p {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .recipe-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .recipe-main .recipe .recipe-img {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .recipe-main .recipe .recipe-img {
    width: 100%;
  }

  .recipe-main .recipe .recipe-content h2 {
    font-size: 20px;
  }

  .recipe-main .recipe .recipe-content p {
    font-size: 16px;
  }
}

/* Policy Section */

/* Model */

.model-center {
  width: 100%;
  position: relative;
  z-index: 99999999999;
  transition: opacity 0.15s linear;
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(
    var(--bs-border-radius-lg) - (var(--bs-border-width))
  );
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999999999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.model-center.show {
  display: flex;
  backdrop-filter: blur(10px);
}

.model-center .summary-detail-details {
  box-shadow: 0 2px 30px 1px rgb(0 0 0 / 32%);
}

.model-center .summary-detail-details .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
}

.review-popup .summary-detail-details {
  width: calc(30%);
  max-width: 500px;
  box-shadow: 0 2px 30px 1px rgb(0 0 0 / 32%);
}

/* Model */

/* Ratting */

:root {
  --star-size: 30px;
  --star-color: lightgray;
  --star-background: #ffb800;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);

  display: inline-block;
  font-size: var(--star-size);
  font-family: Times, serif;
  /* Ensure the star character appears correctly */
  line-height: 1;
  position: relative;
}

.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(
    90deg,
    var(--star-background) var(--percent),
    var(--star-color) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Stars::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Ratting */

/* == New Css == */

.insta-slider a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.insta-slider svg {
  width: 250px;
  height: auto;
}

/* == New Css == */
.instagram-icon {
  stroke: url(#instagramGradient);
}

.achivement-img {
  right: 0px;
  padding: 15%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.achievement-slider {
  margin-top: 20px;
}

.achievement-slider .slick-slide {
  padding: 0 10px;
}

.achievement-slider .achivement-img {
  right: 0px;
  padding: 0;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.rating:not(:checked) > input {
  position: absolute;
  appearance: none;
}

.rating:not(:checked) > label {
  float: right;
  cursor: pointer;
  font-size: 30px;
  color: #666;
}

.rating:not(:checked) > label:before {
  content: "★";
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
  color: #e58e09;
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #ff9e0b;
}

.rating > input:checked ~ label {
  color: #ffa723;
}

/* Chat Bot */

.chat-section {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 350px;
  height: 350px;
  margin: 0;
  background-color: var(--white);
  z-index: 999;
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
  box-shadow: -10px -10px 200px 30px #0000004a;
}

.chat-section h2 {
  font-size: 18px;
  font-weight: bold;
  background-color: var(--green);
  color: var(--white);
  margin: 0;
  padding: 10px 20px 10px 20px;
}

.chat-section h4 {
  font-size: 16px;
  font-weight: bold;
  background-color: var(--green);
  color: var(--white);
  margin: 0;
  padding: 0 20px 10px 20px;
}

.chat-section #chat-window {
  max-height: calc(100% - 80px);
  overflow-y: auto;
  padding: 10px 25px;
}

.chat-section p.chat_bot {
  background: var(--green);
  color: var(--white);
  width: fit-content;
  padding: 10px;
  border-radius: 15px;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 5px;
  line-height: 1.2;
  width: 90%;
}

.chat-section p.chat-ans {
  padding: 10px;
  border-radius: 15px;
}

.chat-section ul,
.chat-section p.chat-qus,
.chat-section p.chat-ans {
  margin: 0;
  background: var(--offGreen);
  border-radius: 10px;
  padding: 10px;
  margin: 0 0 5px auto;
  color: var(--offBlack);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  width: 90%;
}

.chat-section ul::before {
  content: "";
  position: absolute;
  border: 19px solid white;
  border-right: 8px solid var(--offGreen);
  border-top: 8px solid var(--offGreen);
  border-bottom-width: 20px;
  border-bottom-left-radius: 50px;
  width: 20px;
  height: 20px;
  top: 10px;
  right: -14px;
  z-index: -1;
  transform: rotate(-90deg);
}

.chat-section ul,
.chat-section p.chat-qus.chat-ans {
  border-radius: 15px;
  font-weight: 400;
  position: relative;
}

.chat-section p.chat_bot {
  position: relative;
}

.chat-section p.chat_bot::before {
  content: "";
  position: absolute;
  border: 19px solid white;
  border-left: 8px solid var(--green);
  border-top: 8px solid var(--green);
  border-bottom-width: 20px;
  /* border-top-right-radius: 0.5rem; */
  border-bottom-right-radius: 50px;
  width: 20px;
  height: 20px;
  top: 10px;
  left: -12px;
  z-index: -1;
  /* background: red; */
  transform: rotate(90deg);
}

.chat-section p:empty {
  display: none;
}

.chat-section ul {
  padding-left: 25px;
}

.chat-section button.btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px;
  color: white;
  transition: all 0.4s;
}

.chat-section button.btn:hover {
  transform: rotate(90deg);
}

.logo-section {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 999;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.chat-inner-hand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.chat-inner-hand p {
  margin: 0;
  border: 1px solid black;
  padding: 4px 10px;
  border-radius: 500px;
  background: white;
  transition: all 0.4s;
}

.chat-inner-hand:hover p {
  scale: 0.9;
}

.chat-inner-hand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  transition: all 0.4s;
}

.chat-inner-hand:hover img {
  scale: 1.1;
}

/* Chat Bot */

/* Blog  */
.blog-listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 20px;
}

.blog-list {
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  transition: all 0.4s;
}

.blog-content {
  padding: 10px 20px;
}

.blog-content .button {
  margin-top: 10px;
}

.blog-content h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.search-wrap {
  position: absolute;
  right: 15px;
  top: 15px;
}

.search-wrap #btn-search {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: #242963;
  color: #eaba82;
  border-radius: 0;
  cursor: pointer;
}

.search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.search::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.search::before {
  opacity: 0;
  transition: opacity 0.4s;
}

.search-cls {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  background: #eaba82;
  opacity: 0;
  transition: opacity 0.4s;
  background: none;
  border: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  background: #ffa700;
  border: none;
  cursor: pointer;
}

.search-cls {
  display: block;
}

.search-cls .icon {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  fill: currentColor;
}

.search-frm {
  position: relative;
  margin: 2em 0 2em;
  transform: scale(0);
  transition: 0.9s;
  transform-origin: center top;
}

.search-frm-inner {
  position: relative;
  z-index: 10;
  overflow: hidden;
  transform: translate3d(0, -50px, 0);
  transition: transform 0.4s;
}

.search-ip {
  font-family: var(--ssfont);
  font-size: 60px;
  line-height: 1;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.25em;
  text-align: left;
  color: #fff;
  border: none;
  /* background: #4f6324; */
  opacity: 0;
  transition: opacity 0.4s;
  transition: 0.3s;
}

.search-frm-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 105%;
  background: #adb799;
  opacity: 0;
}

.search .search--open {
  pointer-events: auto;
}

.search--open::before {
  opacity: 1;
}

.search--open .search-cls {
  opacity: 1;
}

.search--open .search-frm-inner {
  transform: translate3d(0, 0, 0);
  transition: none;
}

.search--open .search-ip {
  opacity: 1;
  transition: 0.4s;
}

.search--open .search-frm-inner::after {
  animation: UpTpDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.search--open {
  pointer-events: auto;
}

.search.search--open .search-frm {
  transform: scale(1);
}

.search-cls span::before,
.search-cls span::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 2px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.search-cls span::after {
  transform: translateY(-50%) rotate(-45deg);
}

@keyframes UpTpDown {
  0% {
    opacity: 1;
    transform: scale3d(0, 1, 0);
    transform-origin: 0% 100%;
  }

  50% {
    transform: scale3d(1, 1, 1);
    transform-origin: 100% 0%;
    transition-timing-function: ease-out;
  }

  50.1% {
    transform-origin: 0% 100%;
    transition-timing-function: ease-out;
  }

  100% {
    opacity: 1;
    transform: scale3d(0, 1, 0);
    transform-origin: 100% 0%;
    transition-timing-function: ease-out;
  }
}

@media screen and (max-width: 1199px) {
  .search-ip {
    font-size: 40px;
  }
}
@media screen and (max-width: 992px) {
  .search-container .summary-detail-details {
    margin-right: 0;
  }
  .search-container {
    background: #00000066;
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .search-ip {
    font-size: 30px;
  }

  .search-cls {
    font-size: 1em;
  }

  .search-frm {
    margin: 2em 0;
  }

  .search__related {
    font-size: 85%;
    width: 100%;
    padding: 0 1em;
  }

  .search-ip,
  .search-frm-inner::after {
    width: 100%;
    left: 0;
  }
}

@media screen and (max-width: 479px) {
  .search-ip {
    font-size: 20px;
  }
}
