@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.container .header {
  width: 100%;
  background-color: #292627;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}
.container .header .main_header_logo {
  width: auto;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .header .links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  flex-grow: 1;
  margin-left: 20px;
}
.container .header .links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0 14px;
  transition: color 0.3s ease;
}
.container .header .links a:hover {
  color: #cccccc;
}
@media (max-width: 768px) {
  .container .header .links a {
    font-size: 15px;
    margin: 0 5px;
  }
}
.container .header .links span {
  color: #ffffff;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0 14px;
  transition: color 0.3s ease;
}
.container .header .links span:hover {
  color: #cccccc;
}
@media (max-width: 768px) {
  .container .header .links span {
    font-size: 15px;
    margin: 0 5px;
  }
}
@media (max-width: 650px) {
  .container .header .links {
    display: none;
  }
}
.container .header .header_icons {
  position: relative;
  display: flex;
  align-items: center;
}
.container .header .header_icons img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 5px;
  cursor: pointer;
}
.container .header .header_icons .productNo {
  position: absolute;
  top: -8px;
  right: -5px;
  color: black;
  background-color: #ede3da;
  padding: 2px 6px;
  border-radius: 50px;
  z-index: 1;
  font-size: 11px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .container .header {
    padding: 10px 15px;
    justify-content: space-between;
  }
  .container .header .header_icons img {
    margin: 0 3px;
  }
}
.container .contacts {
  display: none;
  width: 100%;
  height: 50px;
  background-color: #333333;
  justify-content: center;
  align-items: center;
  animation: slideInLinks 1s forwards;
  animation-delay: calc(0.1s * var(--order));
  opacity: 0;
  /* Initially hide the links */
}
.container .contacts a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  margin: 0 10px;
}
@keyframes slideInLinks {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.container .mb_header {
  display: none;
  width: 100%;
  height: 85px;
  justify-content: space-around;
  align-items: center;
  margin: 0 0 3px 0;
  background-color: white;
}
.container .mb_header .menu {
  display: flex;
  justify-content: center;
  width: 19%;
}
.container .mb_header .menu img {
  font-size: 30px;
  margin-left: 20px;
  width: 29px;
  height: 29px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
}
.container .mb_header .logo_mb {
  display: flex;
  justify-content: center;
  width: 40%;
}
.container .mb_header .logo_mb img {
  width: 80px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .mb_header .mb_else_icons {
  display: flex;
  justify-content: center;
  width: 20%;
}
.container .mb_header .mb_else_icons img:nth-child(1) {
  font-size: 30px;
  margin-left: 20px;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}
.container .mb_header .mb_else_icons .basket_box {
  width: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .mb_header .mb_else_icons .basket_box .show_product_card {
  display: flex;
  justify-content: center;
  font-size: 34px;
  margin-left: 3px;
  text-align: end;
  color: #474747;
}
.container .mb_header .mb_else_icons .basket_box .productNo {
  position: absolute;
  top: -12px;
  right: 3px;
  font-size: 19px;
}
.container .search {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.692);
  display: none;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  overflow-y: hidden;
  overflow-x: hidden;
}
.container .search .close_box {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.container .search .close_box i {
  font-size: 25px;
  text-align: end;
  margin: 8px;
}
.container .search .search_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10px 0;
}
.container .search .search_box .search_inp {
  width: 40%;
  height: 35px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border: none;
  outline: none;
  padding-left: 10px;
}
.container .search .search_box .search_button {
  width: 60px;
  height: 37px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: #607d8b;
  color: white;
  border: none;
  outline: none;
}
.container .search .search_results {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.616);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  max-height: 70vh;
}
.container .search .search_results::-webkit-scrollbar {
  width: 8px;
}
.container .search .search_results::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}
.container .search .search_results::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.container .search .search_results .search_box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
}
.container .search .search_results .search_box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.container .search .search_results .search_box a {
  text-decoration: none;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  color: #333;
}
.container .search .search_results .search_box a .img_container {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0f0f0;
}
.container .search .search_results .search_box a .img_container img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .search .search_results .search_box a .name_container {
  flex-grow: 1;
  padding: 0 12px;
  text-align: left;
}
.container .search .search_results .search_box a .name_container h2 {
  font-size: 16px;
  color: #333;
  margin: 0 0 4px;
}
.container .search .search_results .search_box .product_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  margin-top: 12px;
}
.container .search .search_results .search_box .product_footer .volume-select {
  flex-grow: 1;
}
.container .search .search_results .search_box .product_footer .volume-select select {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  width: 100%;
}
.container .search .search_results .search_box .product_footer i {
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: 10px;
  color: black;
}
.container .search .search_results .search_box .product_footer i:hover {
  color: #ffc107;
}
@media (max-width: 600px) {
  .container .search .search_results .search_box {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }
  .container .search .search_results .search_box a {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
  }
  .container .search .search_results .search_box .product_footer {
    margin-top: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .container .search .search_results .search_box .product_footer .volume-select {
    margin-bottom: 10px;
  }
  .container .search .search_results .search_box .product_footer i {
    margin-left: 0;
    text-align: right;
  }
}
.container .slider_box {
  width: 100%;
  height: 350px;
  position: relative;
}
.container .slider_box .slider_img {
  width: 100%;
  height: 100%;
}
.container .slider_box .gender_category1 {
  width: 28%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 80px;
  left: 10px;
}
.container .slider_box .gender_category1 button {
  width: auto;
  background-color: white;
  outline: none;
  border: none;
  margin: 5px;
  padding: 4px 20px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .slider_box .gender_category1 button i {
  margin: 0 5px;
}
.container .slider_box .gender_category2 {
  width: auto;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.container .slider_box .gender_category2 button {
  width: auto;
  background-color: white;
  outline: none;
  border: none;
  margin: 5px;
  padding: 4px 20px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
}
.container .main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container .main .buttons_category {
  width: 100%;
  display: flex;
  overflow-x: auto;
  padding: 15px 0;
  justify-content: center;
}
.container .main .buttons_category button {
  background-color: #ede3da;
  color: #575656;
  padding: 9px 16px;
  text-align: center;
  font-size: 16px;
  margin: 10px 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  outline: none;
  border-radius: 4px;
}
.container .main .buttons_category button:hover {
  background-color: #d4c9bd;
}
.container .main .product_container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.container .main .product_container .product_box {
  border-radius: 8px;
  padding: 20px;
  margin: 20px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-wrap: wrap;
}
.container .main .product_container .product_box .img_container {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  background-color: #faefe9;
  overflow: hidden;
  position: relative;
}
.container .main .product_container .product_box .img_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s;
}
.container .main .product_container .product_box .img_container .discount {
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: #ff9f00;
  color: white;
  font-size: 22px;
  padding: 5px 7px;
  display: none;
}
.container .main .product_container .product_box .img_container .newPro {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #ff9f00;
  color: white;
  font-size: 22px;
  padding: 5px 7px;
  display: none;
  z-index: 1;
}
.container .main .product_container .product_box .name_container h2 {
  font-size: 1.2em;
  margin: 5px 0;
  color: #333;
  text-transform: uppercase;
  text-align: start;
  padding-left: 5px;
}
.container .main .product_container .product_box .product_footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  background-color: white;
  margin: 3px 0;
}
.container .main .product_container .product_box .product_footer .fa-solid {
  font-size: 16px;
  width: 100%;
  background-color: #333333;
  padding: 12px 0;
  cursor: pointer;
}
.container .main .product_container .product_box .product_footer .volume-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  position: relative;
  background-color: #ede3da;
  width: 100%;
}
.container .main .product_container .product_box .product_footer .volume-select select.volume-options {
  padding: 10px 20px;
  background-color: #ede3da;
  font-size: 1em;
  color: #333;
  cursor: pointer;
  font-weight: 400;
  outline: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: url("/img/ox.png") no-repeat calc(100% - 10px) center;
  background-size: 12px;
  transition: border-color 0.3s, background-color 0.3s;
}
.container .main .product_container .product_box .product_footer .volume-select select.volume-options:focus {
  outline: none;
  border: none;
}
.container .main .product_container .product_box .product_footer .volume-select select.volume-options::-ms-expand {
  display: none;
}
.container .main .product_container .product_box .product_footer .volume-select select.volume-options option {
  padding: 10px;
  background-color: #fff;
  color: #333;
  border: none;
}
.container .main .product_container .product_box .product_footer .volume-select select.volume-options option:hover {
  background-color: #f2f2f2;
}
.container .main .product_container .notFound {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .main #loadMoreBtn {
  margin-bottom: 30px;
  color: black;
  font-weight: 5400;
  outline: none;
  border: 0.5px solid grey;
  cursor: pointer;
  font-size: 16px;
  background-color: white;
  padding: 4px 7px;
}
.container .product_card {
  width: 92%;
  max-width: 400px;
  height: 70vh;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  right: 1rem;
  top: 2rem;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 20px;
  z-index: 999;
  transition: transform 0.3s ease;
}
.container .product_card:hover {
  transform: scale(1.02);
}
.container .product_card h3 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #343a40;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.container .product_card #cartItems {
  flex: 1;
  overflow-y: auto;
  max-height: 60vh;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  width: 100%;
  background-color: #f7f7f7;
}
.container .product_card #cartItems .product_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #ffffff;
  transition: background 0.2s;
}
.container .product_card #cartItems .product_item:hover {
  background-color: #eeeeee;
}
.container .product_card #cartItems .product_item img {
  width: 100%;
  max-width: 60px;
  height: auto;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .product_card #cartItems .product_item .quantity {
  display: flex;
  align-items: center;
  margin: 3px 0;
}
.container .product_card #cartItems .product_item .quantity button {
  cursor: pointer;
  background-color: black;
  border: none;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.container .product_card #cartItems .product_item .quantity button:hover {
  background: #0056b3;
}
.container .product_card #cartItems .product_item .quantity input {
  width: 4rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 5px;
  padding: 5px;
}
.container .product_card .total {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #d9534f;
  width: 100%;
  text-align: left;
}
.container .product_card .card_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .product_card .card_buttons .share_whatsap_pro {
  background-color: forestgreen;
  color: white;
  margin: 5px 0 0 5px;
}
.container .product_card .card_buttons button {
  background: #dc3545;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin: 5px 5px 0 0;
  transition: background 0.2s, transform 0.1s;
}
.container .product_card .card_buttons button:hover {
  background: #c82333;
  transform: scale(1.05);
}
.container .bucket_box {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 330px;
  background-color: #292627;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 420px;
}
.container .bucket_box.active {
  display: block;
}
.container .bucket_box .close_bucket_box {
  width: 100%;
  text-align: end;
  margin: 10px 11px;
  color: white;
  font-size: 20px;
}
.container .bucket_box .product_card_box {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  /*  Important to stack items vertically */
  overflow-y: auto;
  /*  Enable vertical scrolling */
  padding: 20px 0;
  box-sizing: border-box;
  height: 250px;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: #888 #f0f0f0;
  /*  thumb, track */
}
.container .bucket_box .product_card_box::-webkit-scrollbar {
  width: 8px;
  /* Chrome, Safari, Edge */
}
.container .bucket_box .product_card_box::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.container .bucket_box .product_card_box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.container .bucket_box .product_card_box::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.container .bucket_box .product_card_box .cart-item {
  background-color: white;
  padding: 10px 0;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 100px;
  margin: 20px auto;
  /* Use auto margins to center items */
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  /*  For Snap scrolling, aligns item to the start of the viewport  */
  flex-shrink: 0;
  /* Important to prevent the cart-item from shrinking  */
}
.container .bucket_box .product_card_box .cart-item .card_img_name {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 50px;
}
.container .bucket_box .product_card_box .cart-item .card_img_name img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0px 1px 1px grey;
  border-radius: 4px;
}
.container .bucket_box .product_card_box .cart-item .card_img_name h3 {
  font-size: 0.75rem;
  margin-bottom: 5px;
  text-align: center;
  color: black;
  width: 150px;
  font-weight: normal;
}
.container .bucket_box .product_card_box .cart-item .card_price_remove {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  padding-right: 10px;
}
.container .bucket_box .product_card_box .cart-item .card_price_remove .remove_from_cart {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.7rem;
  transition: background-color 0.2s ease;
}
.container .bucket_box .product_card_box .cart-item .card_price_remove .remove_from_cart:hover {
  background-color: #bd2130;
}
.container .bucket_box .total_price {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .bucket_box .total_price span {
  width: 100%;
  text-align: end;
  color: white;
}
.container .bucket_box .total_price P {
  color: white;
}
.container .bucket_box .product_buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .bucket_box .product_buttons button {
  background-color: #ffffff;
  color: #292627;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  width: auto;
}
.container .bucket_box .product_buttons button:hover {
  background-color: #dcc9b8;
  color: black;
}
.container .footer {
  background-color: #292627;
  padding: 20px;
  text-align: center;
  width: 100%;
}
.container .footer .map_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.container .footer .map_box .iframe_container {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  text-align: left;
}
.container .footer .map_box .iframe_container span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  background: #343a40;
  color: white;
}
.container .footer .map_box .iframe_container .bazar-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .footer .map_box .iframe_container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.container .footer .map_icons {
  display: flex;
  justify-content: center;
}
.container .footer .map_icons .icon {
  margin: 0 10px;
  color: white;
  font-size: 24px;
  transition: color 0.3s;
}
.container .footer .map_icons .icon:hover {
  color: #007bff;
}
.container .gift-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes giftBox {
  from {
    transform: translateX(-100%);
    to {
      transform: translateX(0);
    }
  }
}
.container .gift-container img {
  width: 100%;
  scroll-snap-align: center;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 20px 0;
}
.container .left_menu {
  display: none;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  background-color: white;
  z-index: 1000;
  overflow-y: hidden;
  flex-direction: column;
  animation: slideIn 1s forwards;
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    /* Başlangıçta solda dışarıda */
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /* Orijinal pozisyonuna gelir */
    opacity: 1;
    /* Görünür olur */
  }
}
.container .left_menu .menu_links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
}
.container .left_menu .menu_links a {
  border-bottom: 0.4px solid grey;
  text-decoration: none;
  color: black;
  font-size: 20px;
  margin: 10px 0;
  font-weight: 400;
  transition: color 0.3s ease;
}
.container .left_menu .menu_links a:hover {
  color: rgb(100, 100, 100);
}
.container .left_menu .menu_links .menu_icons {
  display: none;
  font-size: 30px;
  margin: 10px 0;
  transition: color 0.3s ease;
  animation: slideIns 1s forwards;
}
@keyframes slideIns {
  from {
    transform: translateY(-100%);
    /* Başlangıçta solda dışarıda */
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /* Orijinal pozisyonuna gelir */
    opacity: 1;
    /* Görünür olur */
  }
}
.container .left_menu .menu_links .menu_icons a {
  display: flex;
  text-decoration: none;
  border-bottom: none;
}
.container .left_menu .menu_links .menu_icons a i {
  padding: 0 5px;
}
.container .left_menu .menu_links .menu_icons a i:nth-child(1) {
  font-size: 25px;
  color: black;
}
.container .left_menu .menu_links .menu_icons a i:nth-child(2) {
  font-size: 25px;
  color: black;
}
.container .left_menu .menu_links .menu_icons a i:nth-child(3) {
  font-size: 20px;
  color: black;
}
.container .left_menu .menu_links .contacts {
  display: none;
  width: 100%;
  height: 50px;
  background-color: #333333;
  justify-content: space-around;
  align-items: center;
  animation: slideInLinks 1s forwards;
  animation-delay: calc(0.1s * var(--order));
  opacity: 0;
  /* Initially hide the links */
}
.container .left_menu .menu_links .contacts a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  margin: 0 10px;
}
@keyframes slideInLinks {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.container .left_menu .close_left_menu {
  color: rgb(212, 211, 211);
  background-color: #292627;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  text-align: end;
  width: 100%;
}
.container .left_menu .creator {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.container .left_menu .creator span {
  color: rgb(212, 211, 211);
  background-color: #292627;
  text-align: center;
  padding: 15px;
}
.container .wp_icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 2rem;
  position: fixed;
  bottom: 10px;
  right: 0;
  background: white;
  border-radius: 50px;
}
.container .wp_icon i {
  font-size: 2.3rem;
  color: forestgreen;
}

@media (max-width: 650px) {
  .container .header {
    display: none;
  }
  .container .mb_text {
    display: flex;
  }
  .container .mb_header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .container .search .search_box .search_inp {
    width: 65%;
  }
  .container .slider_box {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .container .slider_box .slider_img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .container .slider_box .gender_category1 {
    width: 80%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 50px;
    left: 8px;
  }
  .container .slider_box .gender_category1 button {
    width: auto;
    background-color: white;
    outline: none;
    border: none;
    margin: 5px;
    padding: 3px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .slider_box .gender_category1 button i {
    margin: 0 5px;
  }
  .container .slider_box .gender_category2 {
    width: 70%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 10px;
    left: 8px;
  }
  .container .slider_box .gender_category2 button {
    width: auto;
    background-color: white;
    outline: none;
    border: none;
    margin: 5px;
    padding: 3px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .slider_box .gender_category2 button i {
    margin: 0 5px;
  }
  .container .main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .container .main .buttons_category {
    width: 100%;
    display: flex;
    overflow-x: scroll;
    padding: 15px 0;
    justify-content: start;
  }
  .container .main .buttons_category button {
    background-color: #ede3da;
    color: #575656;
    padding: 9px 15px;
    text-align: center;
    font-size: 15px;
    margin: 10px 3px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    outline: none;
    border-radius: 4px;
  }
  .container .main .buttons_category button:hover {
    background-color: #d4c9bd;
  }
  .container .main .product_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .container .main .product_container .product_box {
    border-radius: 8px;
    padding: 10px;
    margin: 4px;
    flex: 1 1 300px;
    max-width: 187px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-wrap: wrap;
  }
  .container .main .product_container .product_box .img_container {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    background-color: #faefe9;
    overflow: hidden;
    position: relative;
  }
  .container .main .product_container .product_box .img_container img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: transform 0.3s;
  }
  .container .main .product_container .product_box .img_container .discount {
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: #ff9f00;
    color: white;
    font-size: 15px;
    padding: 5px;
    display: none;
  }
  .container .main .product_container .product_box .img_container .newPro {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #ff9f00;
    color: white;
    font-size: 15px;
    padding: 5px;
    display: none;
    z-index: 1;
  }
  .container .main .product_container .product_box .name_container {
    height: 40px;
  }
  .container .main .product_container .product_box .name_container h2 {
    font-size: 0.8em;
    margin: 4px 0;
    color: #333;
    text-transform: uppercase;
    text-align: start;
    padding-left: 5px;
  }
  .container .main .product_container .product_box .product_footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: white;
    margin: 3px 0;
    width: 100%;
  }
  .container .main .product_container .product_box .product_footer .fa-solid {
    font-size: 15px;
    width: 100%;
    background-color: #333333;
    padding: 12px 0;
    cursor: pointer;
  }
  .container .main .product_container .product_box .product_footer .volume-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    position: relative;
    background-color: #ede3da;
    width: 100%;
  }
  .container .main .product_container .product_box .product_footer .volume-select select.volume-options {
    padding: 10px 20px;
    background-color: #ede3da;
    font-size: 1em;
    color: #333;
    cursor: pointer;
    font-weight: 400;
    outline: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    background: url("/img/ox.png") no-repeat calc(100% - 10px) center;
    background-size: 12px;
    transition: border-color 0.3s, background-color 0.3s;
  }
  .container .main .product_container .product_box .product_footer .volume-select select.volume-options:focus {
    outline: none;
    border: none;
  }
  .container .main .product_container .product_box .product_footer .volume-select select.volume-options::-ms-expand {
    display: none;
  }
  .container .main .product_container .product_box .product_footer .volume-select select.volume-options option {
    padding: 10px;
    background-color: #fff;
    color: #333;
    border: none;
  }
  .container .main .product_container .product_box .product_footer .volume-select select.volume-options option:hover {
    background-color: #f2f2f2;
  }
  .container .bucket_box {
    position: fixed;
    top: 30px;
    right: 0;
    width: 100%;
    background-color: #292627;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 420px;
  }
  .container .bucket_box.active {
    display: block;
  }
  .container .bucket_box .close_bucket_box {
    width: 100%;
    text-align: end;
    margin: 10px 11px;
    color: white;
    font-size: 20px;
  }
  .container .bucket_box .product_card_box {
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    /*  Important to stack items vertically */
    overflow-y: auto;
    /*  Enable vertical scrolling */
    padding: 20px 0;
    box-sizing: border-box;
    height: 250px;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #888 #f0f0f0;
    /*  thumb, track */
  }
  .container .bucket_box .product_card_box::-webkit-scrollbar {
    width: 8px;
    /* Chrome, Safari, Edge */
  }
  .container .bucket_box .product_card_box::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  .container .bucket_box .product_card_box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  .container .bucket_box .product_card_box::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container .bucket_box .product_card_box .cart-item {
    background-color: white;
    padding: 10px 0;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    height: 100px;
    margin: 20px auto;
    /* Use auto margins to center items */
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    /*  For Snap scrolling, aligns item to the start of the viewport  */
    flex-shrink: 0;
    /* Important to prevent the cart-item from shrinking  */
  }
  .container .bucket_box .product_card_box .cart-item .card_img_name {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 50px;
  }
  .container .bucket_box .product_card_box .cart-item .card_img_name img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    box-shadow: 0px 1px 1px grey;
    border-radius: 4px;
  }
  .container .bucket_box .product_card_box .cart-item .card_img_name h3 {
    font-size: 0.75rem;
    margin-bottom: 5px;
    text-align: center;
    color: black;
    width: 150px;
    font-weight: normal;
  }
  .container .bucket_box .product_card_box .cart-item .card_price_remove {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    padding-right: 10px;
  }
  .container .bucket_box .product_card_box .cart-item .card_price_remove .remove_from_cart {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: background-color 0.2s ease;
  }
  .container .bucket_box .product_card_box .cart-item .card_price_remove .remove_from_cart:hover {
    background-color: #bd2130;
  }
  .container .bucket_box .total_price {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .container .bucket_box .total_price span {
    width: 100%;
    text-align: end;
    color: white;
  }
  .container .bucket_box .total_price P {
    color: white;
  }
  .container .bucket_box .product_buttons {
    display: flex;
    justify-content: end;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .container .bucket_box .product_buttons button {
    background-color: #ffffff;
    color: #292627;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    width: auto;
  }
  .container .bucket_box .product_buttons button:hover {
    background-color: #dcc9b8;
    color: black;
  }
  .container .gift-container .gift {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .container .gift-container .gift img {
    width: 100%;
  }
  .container .scrolling-text {
    animation: scroll-left 5s linear infinite;
  }
  .container .message_link {
    display: none;
  }
  .container .iframe_container {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: left;
    margin: 5px 0;
  }
  .container .gift-container .gift {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .container .gift-container .gift img {
    width: 100%;
  }
  .container .buttons_filter {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .container .buttons_filter .buttons_wrapper {
    display: flex;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .container .buttons_filter .buttons_wrapper::-webkit-scrollbar {
    display: none;
  }
  .container .buttons_filter button,
  .container .buttons_filter a {
    min-width: 130px;
    font-size: 12px;
    padding: 10px 18px;
    text-align: center;
    white-space: nowrap;
    font-weight: bolder;
    background-color: #ede3da;
    color: black;
  }
  .container .wp_icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    position: fixed;
    bottom: 10px;
    right: 5px;
    background: white;
    border-radius: 50px;
  }
  .container .wp_icon i {
    font-size: 2.3rem;
    color: forestgreen;
  }
}
@media (max-width: 650px) and (max-width: 420px) {
  .container .buttons_filter .buttons_wrapper {
    width: 100%;
  }
  .container button,
  .container a {
    flex-shrink: 0;
  }
}
@media (max-width: 650px) {
  .container .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    width: 100%;
    height: auto;
  }
  .container .products .volume-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    position: relative;
    background-color: #ede3da;
    width: 100%;
  }
  .container .products .volume-select select.volume-options {
    padding: 10px 20px;
    background-color: #ede3da;
    font-size: 1em;
    color: #333;
    cursor: pointer;
    font-weight: 700;
    outline: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: url("/img/ox.png") no-repeat calc(100% - 10px) center;
    background-size: 12px;
    transition: border-color 0.3s, background-color 0.3s;
  }
  .container .products .volume-select select.volume-options:focus {
    outline: none;
    border: none;
  }
  .container .products .volume-select select.volume-options::-ms-expand {
    display: none;
  }
  .container .products .volume-select select.volume-options option {
    padding: 10px;
    background-color: #fff;
    color: #333;
    border: none;
  }
  .container .products .volume-select select.volume-options option:hover {
    background-color: #f2f2f2;
  }
  .container .products .product {
    border-radius: 8px;
    padding: 5px;
    margin: 10px 2px;
    flex: 1 1 300px;
    max-width: 170px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .container .products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  .container .products .product .image-container {
    width: 100%;
    height: 205px;
    border-radius: 5px;
    background-color: #f5f4e9;
    overflow: hidden;
    position: relative;
  }
  .container .products .product .image-container .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f76300;
    color: white;
    padding: 4px 4px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
  }
  .container .products .product .image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transition: transform 0.3s;
  }
  .container .products .product .image-container img:hover {
    transform: scale(1.05);
  }
  .container .products .product .product-details {
    margin-top: 10px;
    height: 25px;
  }
  .container .products .product .product-details h2 {
    font-size: 0.8em;
    margin: 1px 0;
    color: #333;
    text-transform: uppercase;
    text-align: start;
    padding-left: 5px;
  }
  .container .products .product .product-footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    padding: 10px 0;
    background-color: white;
    margin: 3px 0;
  }
  .container .products .product .product-footer .price {
    font-weight: bold;
    font-size: 1.25em;
    color: #ecc14d;
  }
  .container .products .product .product-footer a.add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 0;
    font-size: 1.5em;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
    background-color: #333333;
  }
  .container .products .product .product-footer a.add-to-cart:hover {
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .container .products .product .product-footer a.add-to-cart i {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */