@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&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&display=swap');

/* font-display: swap override for CDN fonts (Font Awesome + Slick) */
@font-face { font-family: "Font Awesome 6 Free"; font-display: swap; }
@font-face { font-family: "Font Awesome 6 Brands"; font-display: swap; }
@font-face { font-family: "slick"; font-display: swap; }

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

html {
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
}

/* 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: #ef4136;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  padding: 0;

  font-size: 20px;
  font-weight: 600;
  line-height: 25.2px;
  letter-spacing: 0.02em;
  color: #ef4136;
}

.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: #ef4136;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 10px;
    color: white;
}

.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-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: 10px;
}

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

/* 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-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08399999886751175px;
  color: #ef4136;
}

.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: #ef4136;
}

.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: 10px;
}

.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-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: #ef4136;
}

.header-top-grid-right a,
.header-top-grid-left a {

    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    text-decoration: none;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
}

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

/* dil css */

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

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

.selected-language {
cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 5px 0px;
    
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
    padding: 4px;
    border: 1px solid #ffffff;
    border-radius: 35px;
}

.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-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 {
}

.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-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;
  height: 500px;
  /* 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: flex;
    flex-flow: column;
  gap: 1rem;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}
img.siderbanner {
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.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);
  gap: 1rem;
  border-radius: 15px;
  user-select: none;
}

.item_card {
display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 15px;
    border-radius: 10px;
    align-items: center;
    text-align: left;
    border: 1px solid #ef4136;
}

.circle_item_card {
  height: 45px;
  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-size: 15px;
    font-weight: 300;
    line-height: 21px;
    color: #000;
    width: 200px;
    font-family: 'Poppins';
}

.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_head_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-pills li button {
  
  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;
  overflow: hidden;
  user-select: none;
}

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

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

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

.card-body_product {
  padding: 15px;
}

.card-body_product h3 {
font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    color: black;
    margin-bottom: 10px;
    min-height: 75px;
}

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

.price_product del {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #8c7f7f;
}
.wishlist {
    border: 1px solid #d9d9d9;
border-radius: 10px;
    width: 46px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.price_product span {
    font-size: 20px;
    font-weight: bold;
    line-height: 19px;
    color: #000;
}

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

.over_img_items .discount {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #ffffff;
    background-color: #ff5733;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 13px;
}

.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-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: #000;
}

.store_product span {
  
  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: #ff5633 !important;
}
span.ayda {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #8c7f7f;
}

.wishlist:hover {
background-color: #ff5633;
    border: 1px solid #ff5633;
    color: white;
}
.wishlist:hover i {
    color: white !important;
}
.wishlist, .wishlist i {
    transition: all 0.3s ease;
}

.add_basket {
border: 1px solid #d9d9d9;
    border-radius: 10px;
    display: flex;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    cursor: pointer;
    gap: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.add_basket:hover {
    background-color: #ff5633;
    border: 1px solid #ff5633;
    color: white;
    
}

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

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

.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: #ff5633;
      color: white;
  padding: 10px;
  font-size: 13px;
border-radius: 10px;
transition: all 0.3s ease;
}

.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: #ef4136;
}

.flex-products {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.wishlist .fa-solid {
  color: #ef4136;
  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-size: 15px;
    font-weight: 700;
    line-height: 25.2px;
    letter-spacing: 0.02em;
    text-align: center;
    width: auto;
    padding: 0.7rem 2rem;
    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-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: #fcfce6;
}

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

.footer-column h3 {

    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #ff5633;
    margin-bottom: 10px;
}

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

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

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

  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #0000009c !important;
}

.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-size: 14px;
    /* font-weight: 500; */
    line-height: 19px;
    color: #ffffff;
    margin-bottom: 10px;
}

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

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

.svg_daxil_ol {
  width: 20px;
  height: 20px;
  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: 20px;
  height: 20px;
  background-image: url("../svg/secilmisler.svg");
  /* Normal rÃ‰â„¢ngdÃ‰â„¢ olan SVG faylÃ„Â± */
  background-size: cover;
  transition: background-image 0.3s ease;
}

.svg_sebetim {
  width: 20px;
  height: 20px;
  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 {
    background-color: #fcfce6;
    border-color: #fcfce6;
    transition: all 0.3s ease;
}

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

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

.header-right a:hover .svg_daxil_ol {
  color: #ef4136;
  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: #ef4136;
  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: 35px;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: start;
}

.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-size: 12px;
  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: #ef4136;
}

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

.category_list_title h4,
.category_list_title h3 {
  font-size: 13px;
  font-weight: 600;
  color: #1f2026;
  margin-bottom: 8px;
  margin-top: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.category_list ul li a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #374151;
  padding: 5px 8px;
  display: block;
  border-radius: 6px;
  transition: all 0.2s;
}

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

.mehsullar_main_flex {
  display: grid;
  grid-template-columns: 1fr 4fr;
}

/* 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-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-size: 16px;
  font-weight: 300;
  line-height: 14px;
  color: #87888d;
}

.price_head_text h2,
.price_head_text h3,
.category_head_text h2,
.category_head_text h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 12px;
  margin-top: 0;
}

.category_general {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.category_head_text {
  margin-bottom: 16px;
}

.category_list ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* 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-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-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-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 36px 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.dropdown_filterr select:focus {
  border-color: #ef4136;
}

.right_mehsullar {
  display: flex;
  flex-direction: column;
  align-items: start;
  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-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-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-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-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-size: 12px;
  font-weight: 500;
  line-height: 14.06px;
  color: black;
}

.store-description {

  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.02em;
  color: #000000;
}

.reviews {
  
  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;
}

.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: #ef4136;
}

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

.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: 10px;
}

.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: #ef4136;
  border-color: #ef4136;
}

.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: 6px;
  font-size: 12px !important;
}
.category_list ul li a:hover {
    color: #ef4136;
    transition: all 0.3s;
}
.category_list ul li a.active {
    color: #ef4136;
    font-weight: 600;
    background: #fdf0ef;
    border-radius: 6px;
    padding: 5px 8px;
}
.submit {
  background-color: #ef4136;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.submit:hover {
  background-color: #c0392b;
}

.time-slot,
.installment-slot {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #ef4136;
  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: #ef4136;
    color: white;
}

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

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

.btn-primary {
  background-color: #ef4136;
  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: 150px;
    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: #ef4136;
background: linear-gradient(90deg, rgba(144, 218, 89, 1) 0%, rgba(192, 225, 99, 1) 100%);
  color: white;
  border: 1px solid #ef4136;
}

/* Kataloq yeni css */

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

.qx-primary-category-trigger-button {
    background: none;
    color: #ef4136;
    border: 1px solid #ef4136;
    padding: 10px 16px 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

.qx-primary-category-trigger-button:hover {
background: #fcfce6;
border-color: #fcfce6;
}

.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;
    display: flex;
    background: white;
    border-radius: 15px;
    border: 1px solid #ef4136;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    scrollbar-width: none; 
}

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

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


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

.slider_main_flex {
  overflow: hidden;
  height: 500px;
  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: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #2a304c;
}

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

.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 #ef4136;
}

/* 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: #ef4136;
  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: #ef4136;
  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: #ef4136;
  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 {
}

.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;
}

.menu-iconsx {
    margin-right: 15px;
    width: 25px;
    height: 25px;
    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 #ef4136;
}

/* 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: #ef4136;
  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;}

.tabs_head_flex {
            display: flex;        /* Elementləri yanaşı düzür */
            align-items: center;  /* Şaquli mərkəzləşdirmə (xəttin ortaya düşməsi üçün) */
            width: 100%;
        }

        .slide_head_textt {
            font-size: 24px;
            font-weight: 700;
            color: #ef4136;
            margin: 0;           /* H1-in default margin-ni sıfırlayırıq */
            white-space: nowrap; /* Mətni bir sətirdə saxlayır */
            padding-right: 20px; /* Mətn və xətt arasında boşluq */
              line-height: 33.6px;
  letter-spacing: 0.02em;
        }

        /* Xətt üçün yeni klass */
        .line-separator {
            flex-grow: 1;        /* Xətti qalan boşluğa qədər uzadır */
            height: 2px;         /* Xəttin qalınlığı */
            background-color: #e5e7eb; /* Xəttin rəngi (boz) */
            border-radius: 2px;
        }
        .grid-blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
}
.movcuddur {
      justify-content: center;
    padding: 15px;
    margin: 20px 0 0 0;
    font-size: 13px;
    color: grey;
}
.fav-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}
.ikonyani {
    padding: 0 10px;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 1.5s ease;
    gap: 2rem;
}
.preloader.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 2s;
}
.preloader.blur-transition {
    filter: blur(2px);
    transition: opacity 1s;
}
.paused-animation {
    animation-play-state: paused;
}
.loading-text {
    font-size: 24px;
    color: #000;
    display: flex;
    animation: fadeIn 1.5s;
}
.preloader-logo {
    width: 200px;
    height: auto;
    opacity: 0;
    position: relative;
    animation: slideOpacity 3s infinite;
}
.preloader-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.preloader-dots div {
    width: 6px; height: 6px;
    border-radius: 50%;
    margin: 0 5px;
    animation: dotFadeOut 1s ease forwards;
}
.dot-flashing {
    position: relative;
    width: 7px; height: 7px;
    border-radius: 5px;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}
.dot-flashing::before,
.dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}
.dot-flashing::before {
    left: -15px;
    width: 7px; height: 7px;
    border-radius: 5px;
    background-color: white;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}
.dot-flashing::after {
    left: 15px;
    width: 7px; height: 7px;
    border-radius: 5px;
    background-color: white;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes slideOpacity {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes dot-flashing {
    0%       { background-color: white; }
    50%, 100%{ background-color: #a39c9c57; }
}

/* ===== Sticky Header ===== */
#myHeader {
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: top 1s ease-in-out;
}
#myHeader.fixed {
    position: fixed;
    top: -100px;
    left: 0; right: 0;
}
#myHeader.fixed.active {
    top: 0;
}
/* ===== FORM CARD (animate-on-scroll wrapper) ===== */


/* ===== FORM BOX ===== */

.form-box-div {
  width: 100%;
  background-color: #fff;
  padding: 28px 28px 24px;
}

.form-box-div h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  margin-bottom: 28px;
  position: relative;
}

.form-box-div h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background-color: #ef4136;
}

.form-group label,
.form-group > label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  margin-bottom: 6px;
  line-height: 1.4;
}

.form-box-div input[type="text"],
.form-box-div input[type="email"],
.form-box-div input[type="password"],
.form-box-div input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 14px;
  border: 0.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f8f8;
  color: #111;
  height: 46px;
  transition: border 0.15s, background 0.15s;
  outline: none;
}

.form-box-div input[type="text"]:focus,
.form-box-div input[type="email"]:focus,
.form-box-div input[type="password"]:focus,
.form-box-div input[type="number"]:focus {
  border: 0.5px solid #ef4136;
  background-color: #fff;
  outline: none;
}

.form-box-div input[type="text"]:disabled,
.form-box-div input[type="email"]:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form-box-div input::placeholder {
  font-size: 13px;
  color: #bbb;
  line-height: normal;
}

.text-info {
  font-size: 11px;
  color: #aaa !important;
  display: block;
  margin-top: -10px;
  margin-bottom: 14px;
}

/* Submit button */
.btn.btn-dark,
input.btn.btn-dark {
  background-color: #ef4136;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  height: auto;
  line-height: 1.4;
}

.btn.btn-dark:hover,
input.btn.btn-dark:hover {
  background-color: #c0392b;
  color: #fff;
}

.text-end {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
/* ===== BLOG CAROUSEL ===== */

.blog-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-carousel-head .slide_head_textt {
  flex: 1;
}

.blog-carousel-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.blog-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.blog-arrow:hover {
  background: #ef4136;
  border-color: #ef4136;
  color: #fff;
}

.blog-carousel-track-wrap {
  overflow: hidden;
}

.blog-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.blog-carousel-track::-webkit-scrollbar {
  display: none;
}

.blog-carousel-track > * {
  flex: 0 0 280px;
  width: 280px;
  min-width: 0;
  scroll-snap-align: start;
  display: block !important;
  float: none !important;
}

/* ===== BLOG SEE ALL LINK ===== */
.blog-see-all {
  font-size: 13px;
  font-weight: 600;
  color: #ef4136;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.blog-see-all:hover { opacity: 0.75; }

/* ===== BLOG LIST PAGE ===== */
.blog-page-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1024px) {
  .blog-page-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  .blog-page-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .blog-page-grid { grid-template-columns: 1fr !important; }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pagination a:hover,
.pagination a.active {
  background: #ef4136;
  border-color: #ef4136;
  color: #fff;
}

/* ===== STICKY FOOTER ===== */
html, body {
  height: 100%;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}
/* ===== END STICKY FOOTER ===== */

/* ===== RESPONSIVE GRIDS ===== */
@media (max-width: 1024px) {
  .grid-products-card { grid-template-columns: repeat(4, 1fr) !important; }
  .grid4_cards         { grid-template-columns: repeat(3, 1fr) !important; }
  .grid-blog-card      { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 768px) {
  .grid-products-card { grid-template-columns: repeat(3, 1fr) !important; }
  .grid4_cards         { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-blog-card      { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 576px) {
  .grid-products-card { grid-template-columns: repeat(2, 1fr) !important; }
  .grid4_cards         { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-blog-card      { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 380px) {
  .grid-products-card { grid-template-columns: repeat(2, 1fr) !important; }
  .grid4_cards         { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-blog-card      { grid-template-columns: 1fr 1fr !important; }
}
/* ===== END RESPONSIVE GRIDS ===== */

/* ===== MOBILE CARD FIXES ===== */
@media (max-width: 576px) {
  .card_pro_img {
    height: 160px;
  }
  .card-body_product {
    padding: 8px 10px;
  }
  .card-body_product h3 {
    font-size: 12px;
    line-height: 15px;
    min-height: 45px;
  }
  .price_product span,
  .price_product del {
    font-size: 12px;
  }
  .grid-products-card,
  .grid4_cards,
  .grid-blog-card {
    gap: 8px;
  }
  .flex-products {
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
  }
  .flex-products .price_product {
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .flex-products .price_product:last-of-type {
    align-items: flex-end;
    text-align: right;
  }
  .flex-products .price_product del {
    font-size: 11px;
    line-height: 1.3;
    color: #9ca3af;
  }
  .flex-products .price_product span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
  }
  .flex-products .price_product .ayda {
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
  }
  .add_basket {
    flex: 1;
    padding: 12px 6px;
    font-size: 11px;
    gap: 4px;
    order: 1;
  }
  .flex-products .wishlist {
    order: 2;
  }
  .add_basket svg {
    width: 14px;
    height: 14px;
  }
  .add_basket_oneclick {
    width: 100%;
    padding: 9px 6px;
    font-size: 12px;
    order: 3;
    text-align: center;
  }
}
@media (max-width: 380px) {
  .card_pro_img {
    height: 130px;
  }
  .card-body_product {
    padding: 6px 8px;
  }
  .grid-products-card,
  .grid4_cards {
    gap: 6px;
  }
}
/* ===== END MOBILE CARD FIXES ===== */

/* ===== SEARCH PAGE ===== */
.search-results-section {
  padding: 24px 0 60px;
}
.search-results-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}
.search-empty {
  padding: 60px 0;
  text-align: center;
  width: 100%;
}
.search-empty i {
  font-size: 48px;
  color: #d1d5db;
  margin-bottom: 16px;
  display: block;
}
.search-empty p {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
  margin-bottom: 6px;
}
.search-empty span {
  font-size: 13px;
  color: #9ca3af;
}
/* ===== END SEARCH PAGE ===== */

/* ===== 404 PAGE ===== */
.notpage-section {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.notpage-wrap {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.notpage-code {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: #ef4136;
  letter-spacing: -4px;
  margin-bottom: 16px;
}
.notpage-title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}
.notpage-desc {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 32px;
  line-height: 1.6;
}
.notpage-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.notpage-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.notpage-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.notpage-btn-primary  { background: #ef4136; color: #fff; }
.notpage-btn-secondary { background: #f3f4f6; color: #374151; }
/* ===== THANKYOU PAGE ===== */
.thankyou-section {
  padding: 60px 0 80px;
}
.thankyou-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.thankyou-icon {
  font-size: 72px;
  color: #22c55e;
  margin-bottom: 20px;
  line-height: 1;
}
.thankyou-title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}
.thankyou-desc {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 20px;
  line-height: 1.6;
}
.thankyou-order-num {
  display: inline-block;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 15px;
  color: #374151;
  margin-bottom: 16px;
}
.thankyou-order-num span {
  font-weight: 700;
  color: #111827;
}
.thankyou-status {
  font-size: 13px;
  color: #9ca3af;
  margin: 0 0 32px;
}
.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ===== END THANKYOU PAGE ===== */

/* ===== END 404 PAGE ===== */

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  background: transparent;
  font-size: 13px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #6b7280;
}

.breadcrumb-item a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-item a:hover { color: #ef4136; }

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin: 0 6px;
  color: #d1d5db;
}

.breadcrumb-item:last-child {
  color: #111827;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ===== END BREADCRUMB ===== */

/* ===== NEWS DETAIL PAGE ===== */
.news-detail-section {
  padding: 32px 0 64px;
}

.news-detail-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.news-detail-date {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.news-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.news-share-btn:hover { opacity: 0.85; transform: scale(1.08); }
.news-share-fb   { background: #1877f2; }
.news-share-tg   { background: #229ed9; }
.news-share-wa   { background: #25d366; }
.news-share-copy { background: #6b7280; }

.news-detail-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
  margin: 0 0 24px;
}

.news-detail-hero {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.news-detail-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.news-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
  font-weight: 700;
  color: #111827;
  margin: 28px 0 12px;
}
.news-detail-content p   { margin: 0 0 16px; }
.news-detail-content img { max-width: 100%; border-radius: 10px; margin: 16px 0; }
.news-detail-content ul,
.news-detail-content ol  { padding-left: 22px; margin: 0 0 16px; }
.news-detail-content li  { margin-bottom: 6px; }

.news-detail-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.news-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.news-back-btn:hover { background: #ef4136; color: #fff; }

@media (max-width: 768px) {
  .news-detail-title { font-size: 20px; }
  .news-detail-meta  { flex-direction: column; align-items: flex-start; }
}
/* ===== CONTENT (PAGES) ===== */
.content-page-section {
  padding: 32px 0 64px;
}
.content-page-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.content-page-title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
}
.content-page-body {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}
.content-page-body h1,
.content-page-body h2,
.content-page-body h3,
.content-page-body h4 {
  font-weight: 700;
  color: #111827;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.content-page-body h1 { font-size: 22px; }
.content-page-body h2 { font-size: 20px; }
.content-page-body h3 { font-size: 17px; }
.content-page-body p  { margin: 0 0 14px; }
.content-page-body ul,
.content-page-body ol { padding-left: 22px; margin: 0 0 14px; }
.content-page-body li { margin-bottom: 6px; }
.content-page-body b,
.content-page-body strong { color: #111827; }
.content-page-body hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 24px 0;
}
.content-page-body a { color: #ef4136; text-decoration: underline; }

@media (max-width: 768px) {
  .content-page-title { font-size: 20px; }
}
/* ===== END CONTENT (PAGES) ===== */

/* ===== END NEWS DETAIL PAGE ===== */

/* ===== END BLOG CAROUSEL ===== */

.basketRight {
  position: sticky;
  top: 20px;
  align-self: start;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  padding: 60px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thankyou-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  text-align: center;
}

.thankyou-icon {
  font-size: 64px;
  color: #22c55e;
  margin-bottom: 20px;
  line-height: 1;
}

.thankyou-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.thankyou-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.thankyou-order-num {
  display: inline-block;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.thankyou-order-num span {
  color: #ef4136;
  font-size: 18px;
  font-weight: 800;
}

.thankyou-status {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 32px;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.notpage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.notpage-btn-primary {
  background-color: #1a1a1a;
  color: #fff;
}

.notpage-btn-primary:hover {
  background-color: #333;
  color: #fff;
}

.notpage-btn-secondary {
  background-color: #ef4136;
  color: #fff;
}

.notpage-btn-secondary:hover {
  background-color: #c0392b;
  color: #fff;
}

@media (max-width: 576px) {
  .thankyou-wrap {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .thankyou-title { font-size: 22px; }
  .thankyou-icon { font-size: 52px; }
  .notpage-btn { width: 100%; }
}
/* ===== END THANK YOU PAGE ===== */

@media (max-width: 768px) {
  #delivery-options .form-group.d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px;
  }
  .catdirilmasaati {
    margin:0;
  }

  #delivery-options .mr-3 {
    margin-right: 0 !important;
    width: 100%;
  }

  #delivery-options .catdirilmasaati {
    width: 100%;
  }

  #delivery-options .catdirilmasaati .d-flex {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ===== CATEGORY CARD HOVER ===== */
.item_card_column {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease;
  outline: none;
}

.item_card_column:hover {
  transform: translateY(-4px);
}

.circle_item_card {
  overflow: hidden;
  background: #f5f5f5;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.item_card_column:hover .circle_item_card {
  box-shadow: 0 8px 24px rgba(239, 65, 54, 0.18);
  background: #fff0ef;
}

.circle_item_card img {
  transition: transform 0.35s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text_item_card {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-align: center;
  transition: color 0.2s ease;
}

.item_card_column:hover .text_item_card {
  color: #ef4136;
}
/* ===== END CATEGORY CARD HOVER ===== */

/* ===== PRODUCT CARD HOVER ===== */
.product1 {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border-radius: 16px;
}

.product1:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.card_pro {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.28s ease;
}

.card_pro_img {
  overflow: hidden;
  position: relative;
}

.card_pro_img img {
  transition: transform 0.45s ease;
  display: block;
  width: 100%;
}

.product1:hover .card_pro_img img {
  transform: scale(1.05);
}

.card_pro_img .over_img_items {
  transition: opacity 0.2s ease;
}

.add_basket {
  transition: background 0.2s ease, transform 0.15s ease;
}

.add_basket:hover {
  transform: scale(1.03);
}

.add_basket_oneclick {
  transition: background 0.2s ease, transform 0.15s ease;
}

.add_basket_oneclick:hover {
  transform: scale(1.03);
}
/* ===== END PRODUCT CARD HOVER ===== */