@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

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

body {
  font-family: "Inter";
}

/* Header */
.header_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  background-color: white;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.flex_btns_functions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 7px;
}

.filterbtn_yellow input {
  background-color: #cafcaf;
  color: #4ea021;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  line-height: 25.2px;
  letter-spacing: 0.02em;
  color: #4ea021;
}

.filterbtn_yellow {
  border-radius: 65px;
  background-color: #cafcaf;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.8rem 2rem;
  cursor: pointer;
  width: 100%;
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
}

.filterbtn_yellow:hover {
  background-color: #bdeda4;
}

.filterbtn_yellow:hover input {
  background-color: #bdeda4;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
  /* Hidden by default */
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.search-input {
  width: 400px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9em;
}

.product_count {
  position: absolute;
  top: -7px;
  right: 0px;
}

.sebetsay {
  background-color: #05df82;
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 10px;
}

.search-container {
  text-align: center;
  display: flex;
  justify-content: space-between;
  border: 1px solid #36374033;
  user-select: none;
  border-radius: 10px;
}

.search-container input[type="text"] {
  padding: 10px 15px;
  border: none;
  /* border-radius: 4px; */
  height: 44px;
  padding-left: 16px;
  outline: none;
  transition: border-color 0.3s ease;
  color: #757575;
  width: 400px;
}

.popular-searches {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
}

.popular-searches ul li a {
  text-decoration: none;
  color: #3b4758;
  font-size: 11px;
}

.search-container input::placeholder {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  color: #757575;
}

.search-container button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  height: 100%;
  padding: 0px 18px;
}

.header-right {
  display: flex;
  gap: 15px;
}

.header-right a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1f2026;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  border: 1px solid #d8d6d6;
  padding: 10px;
  border-radius: 10px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.sidebar-link {
  margin: 15px 0;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.close-btn {
  align-self: flex-end;
  width: 100%;
  text-align: start;
  border-bottom: 1px solid #ddd;
  background: #f7f7f7;
  border: none;
  padding: 15px;
  font-size: 20px;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.catalog-btn {
  background-color: #cafcaf;
  border: none;
  padding: 11px 22px;
  cursor: pointer;
  border-radius: 4px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.catalog-btn p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08399999886751175px;
  color: #4ea021;
}

.catalog-column {
  flex: 1;
}

.catalog-column h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #000;
}

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

.catalog-column ul li {
  margin-bottom: 5px;
  font-size: 0.9em;
  color: #555;
}

.relative {
  position: relative;
}

.header-top {
  background: #90DA59;
background: linear-gradient(90deg, rgba(144, 218, 89, 1) 0%, rgba(192, 225, 99, 1) 100%);
}

.header-top-grid {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}

.header-top-grid-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.header-right {
  display: flex;
  user-select: none;
}

.header-right a img {
  margin-right: 5px;
}

.navbar-brand {
  height: auto;
  overflow: hidden;
}

.navbar-brand img {
  height: 35px;
}

.catalog-menu {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: auto;
  z-index: 1000;
  width: 100%;
  border-radius: 8px;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

#catalogCloseIcon {
  display: none;
}

.header-top-grid-left p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #1f2026;
}

.header-top-grid-left {
  display: flex;
  align-items: center;
}

.time-slot {
  display: inline-block;
  cursor: pointer;
}

.catdirilmasaati {
  margin: 0 0 0 20px;
}

.flex-wrap {
  gap: 15px;
}

#delivery_date {
  height: 60px;
}

.time-slot-input {
  display: none;
}

.time-slot-label {
  display: inline-block;
  border-radius: 4px;
}

.time-slot-input:checked+.time-slot-label {
  border-color: #09742b;
}

.header-top-grid-right a:nth-child(1) {
  color: #fff;
  font-size: 25px;
  font-family: "Rubik";
}

.header-top-grid-right a,
.header-top-grid-left a {
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  text-decoration: none;
  color: #05634d;
}

.header-top-grid-righta:hover,
.header-top-grid-left a:hover {
  text-decoration: underline;
}

/* dil css */

.language-selector {
  font-family: Inter;
  position: relative;
  z-index: 9999;
  color: #444444;
  width: 5.5rem;
  user-select: none;
}

.selected-language svg {
  width: 8px;
  height: 8px;
  fill: #444444;
  float: right;
  margin-top: 10px;
  margin-right: 10px;
}

.selected-language {
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 5px 0px;

  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding: 5px 0px;
  border: 1px solid lightgrey;
  margin-bottom: 2px;
  border-radius: 5px;
  background: white;
}

.language-options {
  list-style: none;
  padding: 0;
  /* width: 100%; */
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}

.language-options li {
  cursor: pointer;
  text-align: start;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding: 5px 0px;
  border: 1px solid lightgrey;
  margin-bottom: 2px;
  border-radius: 5px;
  background: white;
}

.language-options li:hover {
  color: #444444;
}

.flag-icon {
  margin-left: 5px;
}

.language-options.show {
  display: block;
  color: #444444;
  z-index: 99;
  width: 100%;
  border: 1px solid #80808014;
  border-radius: 5px;
}

.flag-icon {
  width: 20px;
  height: 14px;
  vertical-align: middle;
}

#catalogMenu h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

#catalogMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#catalogMenu ul li {
  margin-bottom: 0;
}

#catalogMenu ul li a {
  text-decoration: none;
  color: #81838d;
  font-size: 14px;
}

/* Sidebar Menu - Hidden by Default */
.sidebar-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.sidebar-menu.active {
  transform: translateX(0);
  /* Slide-in the sidebar */
}

.sidebar-header {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  background: #f7f7f7;
}

.sidebar-header h2 {
  font-size: 20px;
  margin: 0;
}

.sidebar-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.accordion {
  padding: 15px;
  margin-top: 2rem;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
  user-select: none;
}

.accordion-header {
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 10px;
  padding: 5px;
}

.accordion-header::after {
  content: "+";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  content: "-";
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 15px;
  background: #fff;
  font-size: 14px;
  color: #555;
}

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

.accordion-body ul li {
  margin-bottom: 8px;
}

.accordion-body ul li a {
  text-decoration: none;
  color: #333;
}

.right-padd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

.right-padd-sidebar a img {
  margin-right: 1rem;
}

.right-padd-sidebar a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1f2026;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .qx-dropdown-navigation-wrapper {
    display: none;
  }

  .qx-sidebar-trigger {
    display: block;
  }

  .sidebar-menu {
    display: block;
    /* Sidebar menu becomes visible */
  }

  .catalog-btn {
    padding: 8px 8px;
    border-radius: 7px;
  }

  .header_content {
    gap: 5px;
  }
}

@media (min-width: 768px) {
  .qx-sidebar-trigger {
    display: none;
  }
}

/* Search container */

.search-container {
  position: relative;
  z-index: 10;
}

#searchInput {
  position: relative;
  z-index: 20;
  cursor: pointer;
}

.search-results {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  /* padding: 15px; */
  opacity: 0;
  /* Ã„Â°lk olaraq gÃƒÂ¶rÃƒÂ¼nmÃ‰â„¢sin */
  transform: translateY(-10px);
  /* YuxarÃ„Â± mÃƒÂ¶vqedÃ‰â„¢ baÃ…Å¸layÃ„Â±r */
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.search-results.show {
  opacity: 1;
  /* GÃƒÂ¶rÃƒÂ¼nÃ‰â„¢n hala gÃ‰â„¢tir */
  transform: translateY(0);
  /* Normal mÃƒÂ¶vqeyÃ‰â„¢ keÃƒÂ§ */
  pointer-events: auto;
}

.search-results h4 {
  font-size: 12px;
  color: #929aa2;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  padding: 11px 15px 0px 15px;
}

.search-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.search-results ul li {
  padding: 5px 15px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.search-results ul li:hover {
  background-color: #f0f0f0;
  border-radius: 5px;
}

.search-container div:nth-child(1) {
  display: flex;
}

/* Black Blur Backdrop */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Qara rÃ‰â„¢ngli Ã…Å¸Ã‰â„¢ffaflÃ„Â±q */
  backdrop-filter: blur(2px);
  /* BulanÃ„Â±q effekt */
  z-index: 5;
  display: none;
  /* Ã„Â°lk giriÃ…Å¸dÃ‰â„¢ gizli */
}

/* Media SorÃ„Å¸ular */
/* PlanÃ…Å¸etlÃ‰â„¢r ÃƒÂ¼ÃƒÂ§ÃƒÂ¼n */
@media (max-width: 768px) {
  .search-container {
    max-width: 90%;
  }

  #searchInput {
    font-size: 14px;
  }

  .search-results ul li {
    font-size: 14px;
  }
}

/* Mobil ÃƒÂ¼ÃƒÂ§ÃƒÂ¼n */
@media (max-width: 480px) {
  .search-container {
    max-width: 100%;
  }

  #searchInput {
    font-size: 13px;
    padding: 10px;
  }

  .search-results h4 {
    font-size: 16px;
  }

  .search-results ul li {
    font-size: 13px;
    padding: 6px 0;
  }
}

#catalogMenu {
  position: relative;
}

.menucat {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  background: white;
  padding: 3rem 0rem;
}

/* Home Carouel */

.carousel div {
  position: relative;
  width: 100%;
  height: 400px;
  /* Slider yÃƒÂ¼ksekliÃ„Å¸ini belirleyin */
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Resmi slider alanÃ„Â±na uygun hale getirir */
}

.carousel {
  border-radius: 20px;
  overflow: hidden;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #eaeaeab7;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.slick-dots li {
  width: 6px;
}

.slick-dots li.slick-active button:before {
  background-color: #ffffff;
}

/* img boxes 4 */

.img_boxes_home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  gap: 1rem;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.img-box-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.img-box-h {
  overflow: hidden;
}

.slick-dotted.slick-slider {
  margin: 0 !important;
}

/* Item card section */

.grid4_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 sÃƒÂ¼tunlu grid */
  gap: 0;
  /* Kartlar arasÃ„Â± mÃ‰â„¢safÃ‰â„¢ */
  background-color: #efefef;
  border-radius: 15px;
  user-select: none;
}

.item_card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  gap: 1rem;
  align-items: center;
  text-align: left;
}

.circle_item_card {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

.circle_item_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-menu .menucat .relative .row div {
  margin-bottom: 20px !important;
}

.grid10_cards .text_item_card {
  width: auto !important;
}

.text_item_card {
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  color: #000;
  width: 200px;
}

.item_card_column {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3px;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.grid10_cards {
  display: flex;
  gap: 10px;
  border-radius: 15px;
  padding: 10px;
}

.slick-prev-10,
.slick-next-10 {
  background: none;
  border: none;
  color: #333;
  /* Ã„Â°stÃ‰â„¢yÃ‰â„¢ uyÃ„Å¸un rÃ‰â„¢ng */
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-prev-10 i,
.slick-next-10 i {
  font-size: 16px;
}

.slick-prev-10 {
  left: -40px;
  /* Sola ÃƒÂ§Ã‰â„¢k */
}

.slick-next-10 {
  right: -40px;
  /* SaÃ„Å¸a ÃƒÂ§Ã‰â„¢k */
}

/* Tabs Product */
.slide_head_textt {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
  letter-spacing: 0.02em;
  color: #2d2d2d;
}

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

.nav-pills li button {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 0.02em;
  color: #2d2d2d;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #f6f6f6;
  border-radius: 20px;
  color: #2d2d2d;
}

.nav-pills .nav-link:focus,
.nav-pills .nav-link:hover {
  color: #2d2d2d;
}

.nav-pills {
  gap: 20px;
}

/* tabs content product */
.card_pro {
  width: 230px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  user-select: none;
}

.filterbtn_pro {
  padding: 5px 15px;
  border-radius: 10px;
  border: green 1px solid;
  color: green;
}

.card_pro_img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.card_pro_img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-body_product {
  padding: 15px;
}

.card-body_product h3 {
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: black;
  margin-bottom: 10px;
  min-height: 65px;
}

.card-body_product .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.price_product del {
  font-family: Rubik;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  color: #ada1a1;
}

.price_product span {
  font-family: Rubik;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;

  color: #000;
}

.price_product {
  display: flex;
  flex-direction: column;
}

.over_img_items .discount {
  font-family: Rubik;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  background-color: #ff5733;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 0px 7px;
}

.left-overimg {
  font-size: 10px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  background-color: #ff5733;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 10px;
  width: 79px;
  height: 19px;
}

span.hours.mmm {
  font-size: 20px;
  font-weight: bold;
}

span.minutes.mmm {
  font-size: 20px;
  font-weight: bold;
}

span.seconds.mmm {
  font-size: 20px;
  font-weight: bold;
}

.left-overimg ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  gap: 3px;
  padding-right: 1rem;
}

li.seperator {
  color: white;
  font-size: 12px;
}

.left-overimg ul li span {
  color: white;
  font-size: 12px;
}

.store_product {
  font-family: Rubik;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: #000;
}

.store_product span {
  font-family: Rubik;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: #bdb3b3;
  margin-right: 5px;
}

.over_img_items .wishlist {
  font-size: 24px;
  color: #1f2026;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  text-decoration: none !important;
}

.over_img_items .wishlist:hover {
  text-decoration: none !important;
}

.wishlist i {
  transition: all 0.3s ease-out;
  color: #acdd5e !important;
}

.wishlist i:hover {
  color: #acdd5e;
  transition: all 0.3s ease;
  transform: scale(1.1);
  /* Hover zamanÃ„Â± bÃƒÂ¶yÃƒÂ¼mÃ‰â„¢ effekti */
}

.add_basket {
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  /* Animasiya ÃƒÂ¼ÃƒÂ§ÃƒÂ¼n keÃƒÂ§id */
}

.add_basket:hover {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
  /* Hover zamanÃ„Â± box-shadow */
  transform: scale(1.1);
  /* Hover zamanÃ„Â± bÃƒÂ¶yÃƒÂ¼mÃ‰â„¢ effekti */
}

.add_basket svg {
  stroke: black;
  transition: stroke 0.3s ease;
}

.add_basket:hover svg {
  stroke: #acdd5e;
}

.add_basket_oneclick {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  background: #90DA59;
background: linear-gradient(90deg, rgba(144, 218, 89, 1) 0%, rgba(192, 225, 99, 1) 100%);
  padding: 10px;
  font-size: 13px;
  /* Animasiya ÃƒÂ¼ÃƒÂ§ÃƒÂ¼n keÃƒÂ§id */
}

.add_basket_oneclick:hover {
  /* Hover zamanÃ„Â± box-shadow */
  color: white;
  /* Hover zamanÃ„Â± bÃƒÂ¶yÃƒÂ¼mÃ‰â„¢ effekti */
}

.add_basket_oneclick svg {
  stroke: black;
  transition: stroke 0.3s ease;
}

.add_basket_oneclick:hover svg {
  stroke: #acdd5e;
}

.flex-products {
  display: flex;
  justify-content: space-between;
}

.wishlist .fa-solid {
  color: #acdd5e;
  display: none;
}

.product a {
  text-decoration: none;
}

.grid-products-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

.hidden {
  display: none;
}

.daha_cox_mehsul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 2rem 0rem;
}

.loadMore {
  border-radius: 65px;
  background-color: #f4f1ec;
  color: #2d2d2d;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  letter-spacing: 0.02em;
  text-align: center;
  width: 27%;
  padding: 0.7rem;
  border: none;
  transition: all 0.3s;
}

.loadMore:hover,
.loadMore:hover {
  background-color: #e2e2e2;
  transition: all 0.3s;
}

/* Banner */
.banner-img {
  width: 100%;
  height: 214px;
  border-radius: 40px;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

/* Satici kartari */
.satici_kartlari {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  width: 100%;
}

@media (max-width: 481px) {
  .satici_kartlari {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
  }
}

p.saticiadi {
  font-size: 13px;
  color: grey;
  margin: 10px 0;
  text-align: center;
}

.satici_kart img {
  width: auto;
  height: 70px;
  border-radius: 20px;
}

.satici_kart {
  text-align: center;
}

.kartlar_flex {
  display: flex;
  gap: 1rem;
}

.satici_ol_kart {
  position: relative;
  z-index: 1;
  height: 70px;
  overflow: hidden;
  width: 20%;
}

.satici_ol_kart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.over_text {
  position: absolute;
  top: 19px;
  left: 27%;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #2d2d2d;
}

.satici_ol_kart a {
  text-decoration: none;
  cursor: pointer;
}

.grid-products-card div a {
  text-decoration: none;
}

/* Footer css */

footer {
  background: #90DA59;
background: linear-gradient(90deg, rgba(144, 218, 89, 1) 0%, rgba(192, 225, 99, 1) 100%);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 5rem;
}

.footer-column h3 {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #1f2026;
  margin-bottom: 10px;
}

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

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

.footer-column ul li a {
  text-decoration: none;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  color: #fff;

  transition: color 0.3s;
}

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

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0rem;
}

.footer-bottom a {
  text-decoration: none;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #1f2026;
  margin-bottom: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 3rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.svg_daxil_ol {
  width: 24px;
  height: 24px;
  background-image: url("../svg/daxilol.svg");
  /* Normal rÃ‰â„¢ngdÃ‰â„¢ olan SVG faylÃ„Â± */
  background-size: cover;
  transition: background-image 0.3s ease;
}

.svg_daxil_ol:hover {
  background-image: url("../svg/daxilol_hover.svg");
  /* Normal rÃ‰â„¢ngdÃ‰â„¢ olan SVG faylÃ„Â± */
}

.svg_secilmisler {
  width: 24px;
  height: 24px;
  background-image: url("../svg/secilmisler.svg");
  /* Normal rÃ‰â„¢ngdÃ‰â„¢ olan SVG faylÃ„Â± */
  background-size: cover;
  transition: background-image 0.3s ease;
}

.svg_sebetim {
  width: 24px;
  height: 24px;
  background-image: url("../svg/sebetim.svg");
  /* Normal rÃ‰â„¢ngdÃ‰â„¢ olan SVG faylÃ„Â± */
  background-size: cover;
  transition: background-image 0.3s ease;
}

.header-right a:hover {
  color: #4ea021;
}

.header-right a:hover .svg_sebetim {
  color: #4ea021;
  background-image: url("../svg/svg_sebetim_hover.svg");
  transition: all 0.3s ease;
}

.header-right a:hover .svg_secilmisler {
  color: #4ea021;
  background-image: url("../svg/secilmisler_hover.svg");
}

.header-right a:hover .svg_daxil_ol {
  color: #4ea021;
  background-image: url("../svg/daxilol_hover.svg");
  transition: all 0.3s ease;
}

.catalog-btn:hover {
  background-color: #b3e399ea;
  transition: all 0.3s ease;
}

.header-top-grid-left p:hover {
  color: #4ea021;
  user-select: none;
}

.img-box-h a img {
  transition: transform 0.3s ease-in-out;
  /* Hover animasiyasÃ„Â± ÃƒÂ¼ÃƒÂ§ÃƒÂ¼n */
  overflow: hidden;
}

.img-box-h a {
  overflow: hidden;
  border-radius: 20px;
}

.img-box-h {
  border-radius: 20px;
  height: 190px;
  overflow: hidden;
}

.img-box-h a:hover img {
  transform: scale(1.1);
  /* Hover zamanÃ„Â± bÃƒÂ¶yÃƒÂ¼dÃƒÂ¼lmÃƒÂ¼Ã…Å¸ vÃ‰â„¢ziyyÃ‰â„¢t */
}

.social-icons a:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  transition: all 0.3s;
}

/* .section {
  opacity: 0.3;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* .item_card_column {
  opacity: 0;
  transform: translateY(-25px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.item_card_column.visible {
  opacity: 1;
  transform: translateY(0);
\}

.fade {
  transition: opacity 0.3s linear;
} */

/* Product pages */

.page_root_top {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: start;
  background-color: #f8f8f8;
}

.flex-page-root {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flex-page-root i {
  font-size: 8px;
}

.column_root_page {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 5px;
}

/* Category list */

.flex-page-root a {
  text-decoration: none;
  font-family: Inter;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  color: #4d4f59;
  transition: all 0.3s;
}

.flex-page-root a:hover {
  opacity: 0.6;
  transition: all 0.3s;
  color: #4ea021;
}

.column_root_page p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: #1f2026;
  margin: 0;
}

.category_list_title h3 {
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #1f2026;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.category_list ul li a {
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #1f2026;
  padding: 5px;
}

.category-link.active {
  color: #1f2026;
  font-weight: bold;
  background-color: #f2f1f1;
  padding: 5px;
  border-radius: 4px;
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.mehsullar_main_flex {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 40px;
}

/* Price range */
.progress {
  height: 2px;
  background: #5eea1d;
}

.price-input {
  width: 100%;
  display: flex;
  margin: 0px 0 21px;
  gap: 7px;
}

.price-input .field_range {
  display: flex;
  width: 100%;
  height: 40px;
  align-items: center;
}

.field_range input {
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 4px;
  text-align: left;
  padding: 0px 10px;
  border: 1px solid #999;
  -moz-appearance: textfield;
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 14px;
  color: #87888d;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.slider_range {
  height: 2px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.range-input input {
  left: 0;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: white;
  pointer-events: auto;
  -webkit-appearance: none;
  border: 1px solid #60dc27;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: none;
  pointer-events: auto;
  -moz-appearance: none;
}

.field_range {
  position: relative;
  display: inline-block;
  flex: 1;
}

.field_range .label {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #333;
  pointer-events: none;
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 14px;
  color: #87888d;
}

.price_head_text h3,
.category_head_text h3 {
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  line-height: 14px;
  color: #1f2026;
  margin-bottom: 1.5rem;
}

/* Filter category */
.filter-containerCategory {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 3rem;
}

.filterCategory {
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
}

.filterCategory h3 {
  margin-top: 0;
}

.filter-listCategory {
  list-style: none;
  padding: 0;
}

.filter-listCategory {
  margin: 0;
}

.filter-listCategory li {
  margin: 10px 0;
}

.filter-listCategory li label {
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #1f2026;
  display: flex;
  align-items: center;
}

.filter-listCategory input[type="checkbox"] {
  margin-right: 5px;
}

.show-more {
  text-decoration: none;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  text-decoration-line: underline;
  text-decoration-style: solid;
  color: #64656e;
}

.show-more:hover {
  color: black;
}

.show-more:hover {
  text-decoration: underline;
}

.filter-listCategory input[type="checkbox"] {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #3a4858;
  /* Border color */
  border-radius: 4px;
  /* Rounded corners */
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  outline: none;
}

.filter-listCategory input[type="checkbox"]:checked {
  background-color: white;
  border-color: #3a4858;
}

.filter-listCategory input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: solid #5eea1d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reset_filter p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  line-height: 25.2px;
  letter-spacing: 0.02em;
  color: #2d2d2d;
  margin: 0;
}

.reset_filter {
  width: 100%;
  border-radius: 65px;
  background-color: #f4f1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.8rem 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.reset_filter:hover {
  background-color: #dad7d3;
  transition: all 0.3s;
}

.right_filter_products_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dropdown_filterr select {
  padding: 8px;
  border: 1px solid gray;
  border-radius: 10px;
  user-select: none;
}

.right_mehsullar {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}

.hidden {
  display: none;
}

.load_div_product {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
}

.load-more-btn {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  letter-spacing: 0.02em;
  color: #2d2d2d;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  width: 40%;
  border-radius: 65px;
  background-color: #f4f1ec;
  padding: 0.8rem 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.load-more-btn:hover {
  background-color: #dad7d3;
  transition: all 0.3s;
}

/* Pagination */

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
}

.pagination a,
.pagination span {
  text-decoration: none;
  color: black;
  padding: 5px 14px;
  border: 1px solid white;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-family: Inter;
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
}

.pagination i {
  margin: 0px 10px;
}

.pagination a:hover {
  background-color: #f1f1f1;
}

/* .pagination a.active {
  background-color: white;
  color: rgb(0, 0, 0);
  border-color: black;
} */

.pagination a.disabled {
  color: #ccc;
  pointer-events: none;
}

.pagination a.disabled i,
.pagination a.disabled span {
  color: #ccc;
}

.center_pagination {
  display: flex;
  justify-content: center;
  width: 100%;
}

.filter-listCategory.collapsed li:nth-child(n + 5) {
  display: none;
}

.show-more-category {
  text-decoration: none;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  text-decoration-line: underline;
  text-decoration-style: solid;
  color: #64656e;
  cursor: pointer;
}

.show-more-category:hover {
  text-decoration: none;
  color: black;
}

.banner_page {
  height: 211px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.banner_page img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}

.store-header {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
  gap: 1rem;
}

.storeColumn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-logo {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  overflow: hidden;
}

.store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 15px;
}

.store-info h1 {
  font-family: Poppins;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.02em;
  margin: 0;
  color: #2d2d2d;
}

.store-info p {
  margin: 0;
  font-size: 16px;
  color: #777;
}

.rating i {
  color: #f5a622 !important;
  width: 12px;
  height: 10px;
  margin-right: 5px;
}

.rating {
  font-family: Roboto;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.06px;
  color: black;
}

.store-description {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.02em;
  color: #000000;
}

.reviews {
  font-family: Roboto;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.06px;
  color: #928f8f;
}

.navbar.scrolled .language-options {
  background-color: white;
}

/* Ä°steÄŸe baÄŸlÄ±: sadece mobilde margin vermek istersen */
@media (max-width: 768px) {
  .oxsar_mehsullar .slick-slide {
    margin: 0 8px;
  }

  .oxsar_mehsullar {
    margin: 0 -8px;
  }
}

.language-options,
.selected-language {
  padding-left: 5px !important;
}

/* .slick-initialized .slick-slide div {
  border-radius: 40px;
} */

/* Eye password css  start*/

.password-wrapper {
  position: relative;
}

.menucat h3 {
  color: black;
}

.menucat a {
  color: black;
}

.password-wrapper input {
  width: 100%;
  padding-right: 35px;
  height: 40px;
  box-sizing: border-box;
}

/* Eye password css  end*/

.search_flex form {
  display: flex;
  align-items: center;
  text-align: center;
}

/* sifaris sehifesi */
.custom-radio-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  gap: 2px;
  margin-bottom: 10px;
  font-size: 13px;
}

.form-control {
  font-size: 15px !important;
}

.custom-radio-input {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
}

.form-container-location {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  display: none;
}

.form-group-location {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-label-location {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
}

.form-select-location {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #666;
}

.form-textarea-location {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #666;
  resize: none;
  height: 100px;
}

.half-width {
  flex: 1;
}

.custom-radio-input input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-radio-input span {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s;
}

.custom-radio-input input:checked+span {
  border-color: #09742b;
}

.custom-radio-input input:checked+span:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #09742b;
}

.step-title-header {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

.step-title-header h5 {
  font-size: 18px;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.step-title-header p {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
  margin: 0;
}

#collapse-payment-method,
#collapse-shipping-address,
#collapse-delivery-method {
  margin-bottom: 30px;
}

.header-top-grid-right-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.logo_for_mobile {
  width: 120px;
  height: 40px;
}

.logo_for_mobile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .header-top-grid-right-links {
    display: none;
  }

  .header-top-grid-left {
    display: none;
  }
}

@media (min-width: 992px) {
  .logo_for_mobile {
    display: none;
  }
}

@media (max-width: 992px) {
  .logo_for_mobile {
    display: block;
  }
}

@media (max-width: 481px) {
  .selected-language svg {
    margin-left: 7px;
  }

  .card_pro_img {
    overflow: hidden;
    height: 140px !important;
  }

  .price_product span {
    font-size: 12px;
  }

  .slick-next-10 {
    right: 0 !important;
  }

  .slick-prev-10 {
    left: 0 !important;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .grid4_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* elaveler */

@media (max-width: 992px) {
  .carousel .slick-list {
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
  }

  .carousel .slick-track {
    display: flex !important;
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
    gap: 5px !important;
  }

  .carousel .slick-slide {
    box-sizing: border-box;
    min-width: 12% !important;
    max-width: 100% !important;
    float: none;
  }
}

.carousel .slick-slide {
  margin: 0 !important;
}

.shop_area .container h5 {
  margin: 20px 0px;
  font-size: 16px;
}

custom-radio-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-radio-input {
  position: relative;
  width: 20px;
  height: 20px;
}

.custom-radio-input input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-radio-input span {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.custom-radio-input input:checked+span {
  background-color: #09742b;
  border-color: #09742b;
}

.custom-radio-input input:checked+span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ml-1 {
  margin-left: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.ml-4 {
  margin-left: 32px;
}

.installment-options {
  margin-left: 30px;
  margin-top: 10px;
  display: none;
}

.installment-options.show {
  display: block;
}

.form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.time-slot,
.installment-slot {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #acdd5e;
  border-radius: 4px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.time-slot:hover,
.installment-slot:hover {
  background-color: #f0f0f0;
}

.time-slot.selected,
.installment-slot.selected {
  background: #90DA59;
background: linear-gradient(90deg, rgba(144, 218, 89, 1) 0%, rgba(192, 225, 99, 1) 100%);
  color: white;
}

.time-slot-input,
.installment-slot-input {
  display: none;
}

.time-slot-label,
.installment-slot-label {
  font-size: 14px;
}

.btn-primary {
  background-color: #09742b;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

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

.form-group {
  margin-bottom: 15px;
  display: grid;
  gap: 25px;
}

.form-group-location {
  display: flex;
  flex-wrap: wrap;
}

.half-width {
  width: 50%;
  padding-right: 10px;
}

.textarea-column {
  width: 100%;
}

.form-textarea-location {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.resize-none {
  resize: none;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 16px;
}

.form-container-location {
  display: none;
}

.form-container-location.show {
  display: block;
}

/* yeni cssler */

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.backdrop.active {
  display: block;
}

.search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  z-index: 9999;
}

.search_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_flex form {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

#searchInput {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

#searchInput::placeholder {
  color: #999;
}

.search_button {
  background: none;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cssBtnborder {
  width: 40px;
  height: 40px;
  background-color: #efefef;
  border-radius: 8px;
  border: none;
}

.search_button img {
  width: 20px;
  height: 20px;
}

.close_button {
  background: none;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
}

.header-center {
  position: relative;
}

/* Desktop Styles - Always show full search input */
@media (min-width: 769px) {
  .cssBtnborder {
    display: none;
  }

  .link_desktop {
    display: block;
  }

  .link_mobile {
    display: none;
  }

  .Desktop_lang {
    display: block;
  }

  .Mobile_lang {
    display: none;
  }

  .search_flex form {
    width: 100%;
  }

  #searchInput {
    display: block;
  }

  .close_button {
    display: none !important;
  }
}

/* Mobile Styles - Collapsible search */
@media (max-width: 768px) {
  .language-selector {
    float: right;
  }

  .header-top-grid {
    flex-direction: row !important;
  }

  .header-top-grid-right a:nth-child(1) {
    font-size: 18px;
  }

  .link_desktop {
    display: none;
  }

  .link_mobile {
    display: block;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    user-select: none;
    gap: 10px;
    padding: 5px;
    color: black !important;
  }

  .Desktop_lang {
    display: none;
  }

  .Mobile_lang {
    display: block;
  }

  .logo_for_mobile {
    width: 90px;
    height: 100%;
  }

  .selected-language {
    border: none;
  }

  .header-top-grid-right-links {
    display: block !important;
  }

  .header-top-grid-left {
    display: block !important;
  }

  .flexRight_Mobile {
    display: flex;
    gap: 10px;
    align-items: center;
    user-select: none;
  }

  .header-center {
    padding: 0;
    position: relative;
    width: auto;
    max-width: 100%;
    display: initial;
  }

  .search-container {
    position: relative;
    border: none;
  }

  .search_flex {
    position: relative;
  }

  .search_flex form {
    position: relative;
  }

  /* Mobile collapsed state (default) */
  /* .search_flex form {
    width: 50px;
    height: 50px;
    /* border-radius: 50%;
    background: white;
    position: relative;
  } */

  .search_flex form #searchInput {
    opacity: 0;
    width: 0;
    padding: 0;
    pointer-events: none;
  }

  .search_flex form .close_button {
    display: none;
  }

  .search_flex form .search_button {
    width: 40px;
    height: 40px;

    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #efefef;
  }

  /* Mobile expanded state */
  .search_flex form.expanded {
    position: fixed;
    top: 78px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    max-width: 400px;
    height: auto;
    z-index: 999;
    border-radius: 7px;
  }

  .search_flex form.expanded #searchInput {
    opacity: 1;
    width: auto;
    padding: 12px 20px;
    pointer-events: auto;
    flex: 1;
  }

  .search_flex form.expanded .search_button {
    display: none;
  }

  .search_flex form.expanded .close_button {
    display: flex;
  }
}

/* Demo content */
.demo-content {
  padding: 40px 20px;
  text-align: center;
}

.demo-content h1 {
  color: #333;
  margin-bottom: 20px;
}

.demo-content p {
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
  padding-right: 40px;
  /* saÄŸda gÃ¶z Ã¼Ã§Ã¼n boÅŸluq */
  width: 100%;
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  top: 40%;
  transform: translateY(-50%);
  color: #666;
}

.pagination a.active {
  background: #90DA59;
background: linear-gradient(90deg, rgba(144, 218, 89, 1) 0%, rgba(192, 225, 99, 1) 100%);
  color: white;
  border: 1px solid #acdd5e;
}

/* Kataloq yeni css */

.qx-dropdown-navigation-wrapper {
  position: relative;
  width: 200px;
}

.qx-primary-category-trigger-button {
  background: #cafcaf;
  color: white;
  border: none;
  padding: 10px 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #4ea021;
}

.qx-primary-category-trigger-button:hover {
  background: #addb95;
  transform: translateY(-2px);
}

.qx-dropdown-chevron-indicator {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12px;
}

.qx-dropdown-chevron-indicator.qx-rotated-state {
  transform: rotate(180deg);
}

.qx-multilevel-dropdown-container {
  height: 100%;
  overflow-y: scroll;
  background: white;
  border-radius: 10px;
  border: 1px solid #ecedf0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.stickyMenu {
  position: relative;
  z-index: 100;
}

/* .stickyMenu {
    position: absolute;
    z-index: 99;
    display: none;
} */


.multilevel_zone {
  max-height: 100%;
  max-width: 100%;
  height: 400px;
}

.slider_main_flex {
  overflow: hidden;
  height: 400px;
  margin: 25px 0px;
}

@media (max-width: 768px) {
  .multilevel_zone {
    display: none;
  }

  .slider_main_flex {
    height: auto;
  }
}


/* Scrollbar stilini değiştir (WebKit tarayıcılar için) */
.qx-multilevel-dropdown-container::-webkit-scrollbar {
  width: 4px;
  /* Scrollbar genişliği */
}

.qx-multilevel-dropdown-container::-webkit-scrollbar-track {
  background: #f0f0f0;
  /* Scrollbar arka planı */
}

.qx-multilevel-dropdown-container::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  /* Scrollbar rengi */
  border-radius: 4px;
  border: 1px solid #aaa;
  /* İsteğe bağlı kenarlık */
}

/* 
        .qx-multilevel-dropdown-container.qx-dropdown-visible-state {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        } */

/* Enhanced hover bridge for better sensitivity */
.qx-primary-menu-item-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  /* right: -15px; */
  width: 15px;
  height: 100%;
  background: transparent;
  pointer-events: auto;
  z-index: 1002;
}

.qx-primary-menu-navigation-link {
  display: block;
  color: #2d3748;
  text-decoration: none;
  /* border-bottom: 1px solid #e2e8f0; */
  transition: all 0.3s ease;
  position: relative;
  background: white;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #2a304c;
}

.qx-primary-menu-navigation-link:hover {
  color: #4ea021;
}

.qx-primary-menu-navigation-link:last-child {
  border-bottom: none;
}

.qx-submenu-indicator-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #a0aec0;
  transition: color 0.3s ease;
}

.qx-primary-menu-navigation-link:hover .qx-submenu-indicator-arrow {
  color: #e53e3e;
}

.qx-secondary-submenu-container {
  position: absolute;
  top: 0;
  left: 100%;
  width: 250px;
  height: 100%;
  background: white;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  pointer-events: none;
}

/* Improved hover state with faster response */
.qx-primary-menu-item-wrapper:hover .qx-secondary-submenu-container,
.qx-secondary-submenu-container:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0s;
  border-right: 2px solid #acdd5e;
}

/* Extended hover bridge on submenu */
.qx-primary-menu-item-wrapper:hover .qx-secondary-submenu-container::before,
.qx-secondary-submenu-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 15px;
  height: 100%;
  background: transparent;
  pointer-events: auto;
}

/* Enhanced submenu links with better hover timing */
.qx-secondary-submenu-navigation-link {
  display: block;
  padding: 12px 18px;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.qx-secondary-submenu-navigation-link:hover {
  background: white;
  color: #4ea021;
  padding-left: 22px;
  transition-delay: 0s;
  background: #f5f4f4;
}

.qx-secondary-submenu-navigation-link:last-child {
  border-bottom: none;
}

.flex-button-grgh {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Trigger Button */
.qx-sidebar-trigger {
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
}

/* Sidebar Container */
.qx-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  z-index: 99999;
  overflow-y: auto;
}

/* Sidebar Open */
.qx-sidebar.open {
  left: 0;
}

/* Sidebar Header */
.qx-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #4ea021;
  color: #fff;
}

.qx-sidebar-header h2 {
  margin: 0;
  font-size: 18px;
}

/* Sidebar Close Button */
.qx-sidebar-header button {
  background: none;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

/* Menu Styles */
.qx-sidebar-menu {
  padding: 10px 15px;
}

/* Overlay */
.qx-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 1000;
}

.qx-sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.accordion-menu {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "+";
  font-weight: bold;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  content: "-";
}

.accordion-content {
  display: none;
  padding: 0 12px 10px 12px;
  background: #fff;
}

.accordion-content a {
  display: block;
  padding: 6px 0;
  color: black;
  text-decoration: none;
}

.accordion-content a:hover {
  text-decoration: underline;
}

.img_boxes_home {
  display: none !important;
}

.accordion-item h3 {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  user-select: none;
  gap: 10px;
  padding: 5px;
  color: black !important;
}


.qx-secondary-submenu-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.qx-dropdown-chevron-indicator {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Açıq olduqda döndər */
.qx-dropdown-chevron-indicator.rotate {
  transform: rotate(180deg);
}

.menu-item-flex {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 10px 15px;
}

.menu-iconsx {
  margin-right: 22px;
  width: 35px;
  height: 35px;
  object-fit: contain;
}


.menu-item-flex:hover .menu-iconsx {
  filter: unset !important;
}



/* ikinci altmenu css */

.qx-secondary-submenu-container_second {
  position: absolute;
  top: 0;
  left: 100%;
  width: 250px;
  height: 100%;
  background: white;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  pointer-events: none;
}

.qx-submenu-item:hover .qx-secondary-submenu-container_second {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  margin-left: 1px;
  border-right: 2px solid #acdd5e;
}

/* ikinci səviyyə linklər */
.qx-secondary-submenu-container_second a {
  display: block;
  padding: 10px 16px;
  color: #4a5568;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
}

.qx-secondary-submenu-container_second a:hover {
  background: #f9f9f9;
  color: #4ea021;
  padding-left: 20px;
}

.left-overimg.mehsulun {
  position: relative;
  width: 100%;
  height: 55px;
  top: 18px;
  left: 0;
  background-color: #ff5633;
}

.bitm {
  font-size: 20px;
}


.nomrecall {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bHOjuT {
    max-width: 100%!important;
    background-color: rgb(246 246 246) !important;
    margin: 20px auto !important;
}
.lamqjD {display: none !important;}