/*[Today's-Products] AkileNisa - START*/

.today_container {
  max-width: 1254px;
  padding: 0px 20px;
  margin: 40px auto;
  text-align: center;
}

/* Başlık, sayaç, oklar */
.top-bar {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  justify-content: space-between;
}

.today_header {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  color: red;
  justify-items: flex-start;
}
.today_sale {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flash-sale {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  line-height: 48px;
  color: rgb(0, 0, 0);
}
.red-line {
  height: 100%;
  border: 10px solid red;
  border-radius: 5px;
  margin-right: 10px;
}
.today-countdown {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}
.countdown {
  display: flex;
  gap: 10px;
}
.countdown-title-time {
  font-family: "Poppins", sans-serif;
  color: #000000;
  font-size: 13px;
  line-height: 20px;
  text-align: start;
}
.countdown-item span::after {
  content: ":";
  color: #e07575;
  padding-left: 15px;
  padding-right: 10px;
  justify-content: space-around;
}
.countdown-item:last-child span::after {
  content: "";
}
.countdown-item span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  color: #000;
}

.arrows {
  .arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    margin-left: auto;
  }
}

.arrows button {
  background-color: #f5f5f5;
  border-radius: 200px;
  border: none;
  padding: 20px;
  cursor: pointer;
}
.product {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  flex: 1;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 300px;
}

/* Ürün adı */
.product-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-bottom: 15px;
  cursor: pointer;
}

/* Fiyatlar */
.product-price-rating {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.product-title-price {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.price-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #db4444;
  cursor: default;
}

/* Yarıya inmiş fiyat */
.half-price {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-decoration: line-through;
  color: gray;
  cursor: default;
}

.product:hover {
  transform: translateY(-5px);
}

.product-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.product-list.grouped {
  flex-direction: column;
  align-items: center;
}

.product-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

/* İndirim etiketi */
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: red;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 18px;
}

/* View all butonu */
.product-view {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.view-all-products {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 20px;
  font-size: 16px;
  background-color: red;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

/* Wishlist ve add-cart ikonları*/
.icon-container {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-wishlist i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #850000;
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
}

.icon-wishlist i.active {
  color: #850000;
  animation: heart-pulse 0.5s forwards;
  -webkit-animation: heart-pulse 0.5s forwards;
}

.icon-cart i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #001b6b;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.icon-cart i.fa-check {
  animation: cart-to-check 0.3s forwards;
  -webkit-animation: cart-to-check 0.3s forwards;
}

.tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #f5f5f5;
  color: #001b3a;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -130px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
}

.icon-wishlist:hover .tooltip,
.icon-cart:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.icon-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.icon-wishlist i:hover,
.icon-cart i:hover {
  color: red;
}

/* Yıldız ikonları */
.rating {
  display: flex;
  gap: 5px;
  margin-top: 30px;
}

.rating i {
  font-size: 16px;
  color: rgb(128, 128, 128);
  cursor: pointer;
}
.rating i:hover {
  color: gold;
}
.vote {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #555;
}
@media (max-width: 960px) {
  .countdown-item span {
    font-size: 25px;
  }

  .countdown-title-time {
    font-size: 10px;
  }

  .countdown {
    gap: 5px;
  }

  .arrows button {
    padding: 10px;
  }

  .product-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .today-countdown {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .discount {
    font-size: 10px;
    padding: 3px 7px;
  }

  .arrows button {
    padding: 5px;
  }

  .product-group {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}

@media (max-width: 500px) {
  .product-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .arrows button {
    padding: 4px;
  }

  .view-all button {
    padding: 10px 15px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .countdown-item span {
    font-size: 15px;
  }

  .countdown-title-time {
    font-size: 5px;
  }

  .countdown {
    gap: 0px;
  }
  .top-bar {
    margin-bottom: 50px;
  }
  .today-countdown {
    gap: 20px;
  }
  .view-all button {
    padding: 5px 10px;
    font-size: 10px;
  }
}

@media (max-width: 285px) {
  .countdown-item span {
    font-size: 10px;
  }

  .countdown-title-time {
    font-size: 5px;
  }

  .countdown {
    gap: 0px;
  }
  .top-bar {
    margin-bottom: 20px;
  }
  .today-countdown {
    gap: 10px;
  }
}
/*[Today's-Products] AkileNisa - END*/

/*[AU-03] AkileNisa - STAR*/
.homepage-category-container {
  max-width: 1254px;
  margin: 0 auto;
  padding: 0 30px;
  justify-content: space-around;
  flex-wrap: wrap;
}
.homepage-category-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.homepage-category-titles {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 20px;
}
.homepage-category-subtitles {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.homepage-category-subtitle {
  font-family: "Poppins", sans-serif;
  line-height: 20px;
  font-size: 16px;
  color: #db4444;
}
.homepage-category-red-line {
  height: 40px;
  border: 10px solid #db4444;
  border-radius: 5px;
}

.homepage-category-title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  line-height: 48px;
  color: #000;
}

.homepage-category-btns {
  display: block;
}

.homepage-category-btn-prev,
.homepage-category-btn-next {
  border: none;
  padding: 15px;
  border-radius: 100%;
  background-color: #f5f5f5;
  cursor: pointer;
  font-size: 15px;
}

.homepage-categorys {
  display: flex;
  gap: 20px;
  justify-content: space-around;
}

.homepage-categoriy-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 40px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
  background-color: #f9f9f9;
}

.homepage-categoriy-card i {
  font-size: 50px;
  margin-bottom: 10px;
  color: #272525dd;
}

.homepage-categoriy-card-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.homepage-categoriy-card:hover {
  background-color: #db4444;
  color: white;
}

.homepage-categoriy-card:hover i {
  color: white;
}

@media (max-width: 1070px) {
  .homepage-categorys {
    justify-content: space-between;
  }

  .homepage-categoriy-card {
    width: calc(25% - 20px);
  }
}

@media (max-width: 770px) {
  .homepage-categorys {
    justify-content: space-between;
  }

  .homepage-categoriy-card {
    width: calc(50% - 40px);
  }
}

@media (max-width: 510px) {
  .homepage-category-title {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .homepage-category-title {
    font-size: 20px;
  }
  .homepage-category-btn-prev,
  .homepage-category-btn-next {
    padding: 10px;
    font-size: 10px;
  }
}

@media (max-width: 350px) {
  .homepage-category-container {
    padding: 0 20px;
  }

  .homepage-categorys {
    flex-direction: column;
    gap: 10px;
  }

  .homepage-categoriy-card {
    width: 100%;
    padding: 20px;
  }

  .homepage-category-title {
    font-size: 15px;
  }

  .homepage-category-btn-prev,
  .homepage-category-btn-next {
    padding: 10px;
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  .homepage-category-container {
    padding: 0 20px;
  }

  .homepage-categorys {
    flex-direction: column;
    gap: 10px;
  }

  .homepage-category-title {
    font-size: 15px;
  }

  .homepage-category-btn-prev,
  .homepage-category-btn-next {
    padding: 5px;
    font-size: 9px;
  }
}
/* [AU-3] - Akile Nisa/Homepage Category END */

/* [AU-4] - Furkan/Homepage Best Selling Products Section Start */
.homepage-best-selling-products {
  max-width: 1254px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
}

.homepage-best-selling-products-head {
  display: flex;
  flex-direction: column;
}

.upper-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.homepage-best-selling-products-h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 20px);
  color: #db4444;
}

.lower-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
}

.homepage-best-selling-products-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 8vw, 36px);
  line-height: clamp(32px, 8vw, 48px);
  color: #000000;
  letter-spacing: 4%;
}

.homepage-best-selling-products-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 24px);
  color: #fafafa;
  padding: 16px 48px;
  background-color: #db4444;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.homepage-best-selling-products-btn:hover {
  background-color: #9a2a2a;
}

.homepage-best-selling-products-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.homepage-best-selling-products-container-goods-img {
  border-radius: 4px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.homepage-best-selling-products-img-container {
  width: 270px;
  height: 250px;
}

.homepage-best-selling-products-container-goods-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.icon-container {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-wishlist i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #850000;
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
}

.icon-wishlist i.active {
  color: #850000;
  animation: heart-pulse 0.5s forwards;
  -webkit-animation: heart-pulse 0.5s forwards;
}

.icon-cart i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #001b6b;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.icon-cart i.fa-check {
  animation: cart-to-check 0.3s forwards;
  -webkit-animation: cart-to-check 0.3s forwards;
}

.tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #f5f5f5;
  color: #001b3a;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -130px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
}

.icon-wishlist:hover .tooltip,
.icon-cart:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.goods-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
}

.goods-info h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 550;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 24px);
  color: #000000;
}

.goods-price {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.goods-price h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 24px);
  color: #db4444;
}

.base-price {
  color: #000000 !important;
  opacity: 50% !important;
}

.goods-rating-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.star {
  color: #ccc;
}

.star.filled {
  color: #ffd43b;
}

.goods-amount {
  padding-left: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(10px, 4vw, 14px);
  line-height: clamp(14px, 6vw, 20px);
  color: #000000;
  opacity: 50%;
}

@media screen and (max-width: 450px) {
  .homepage-best-selling-products {
    padding: 20px;
  }
}
@media screen and (max-width: 850px) {
  .lower-header {
    padding: 10px 0;
  }
  .lower-header h2 {
    padding-bottom: 10px;
  }
}

@keyframes heart-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cart-to-check {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
/* [AU-4] - Furkan/Homepage Best Selling Products Section End */

.homepage-new-arrivals {
  max-width: 1170px;
  margin: 10px auto;
  flex-direction: column;
}

.homepage-new-arrivals-upper-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.homepage-new-arrivals-featured-h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 20px);
  color: #db4444;
}

.homepage-new-arrivals-img {
  display: flex;
  margin-bottom: 100px;
  gap: 32px;
  justify-content: center;
}

.black {
  background-color: black;
  border-radius: 4px;
  position: relative;
}

.large-card {
  width: 570px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.right-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.top-card {
  width: 570px;
  height: 284px;
  border-radius: 4px;
}

.top-card img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.bottom-card-wrapper {
  display: flex;
  gap: 32px;
}

.bottom-card {
  width: 270px;
  height: 284px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-text-content {
  position: absolute;
  color: #fafafa;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 30px;
  bottom: 30px;
}

.card-text-content h4 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.card-text-content p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.card-text-content a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fafafa;
  text-decoration: underline;
}

.homepage-new-arrivals-lower-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
}

.homepage-new-arrivals-new-arrival-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 8vw, 36px);
  line-height: clamp(32px, 8vw, 48px);
  color: #000000;
  letter-spacing: 4%;
}

.homepage-new-arrivals-flex-container {
  max-width: 944px;
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  justify-content: space-between;
  margin-bottom: 80px;
}

.homepage-new-arrivals-group {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.homepage-new-arrivals-group-img {
  max-width: 80px;
  max-height: 80px;
}

.homepage-new-arrivals-part-title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.homepage-new-arrivals-part-content {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  .homepage-new-arrivals {
    max-width: 820px;
  }

  .homepage-new-arrivals-upper-header {
    gap: 16px;
  }

  .homepage-new-arrivals-img {
    margin-bottom: 60px;
    gap: 20px;
  }

  .large-card {
    width: 400px;
    height: 460px;
  }

  .large-card img {
    width: 90%;
  }

  .right-cards-wrapper {
    gap: 20px;
  }

  .top-card {
    width: 400px;
    height: 220px;
  }

  .bottom-card-wrapper {
    gap: 20px;
  }

  .bottom-card {
    width: 190px;
    height: 220px;
  }

  .bottom-card img {
    width: 80%;
  }

  .card-text-content {
    width: 200px;
    gap: 8px;
    left: 20px;
    bottom: 20px;
  }

  .card-text-content h4 {
    font-size: 18px;
  }

  .card-text-content p {
    font-size: 12px;
  }

  .card-text-content a {
    font-size: 14px;
  }

  .homepage-new-arrivals-lower-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
  }

  .homepage-new-arrivals-new-arrival-h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: clamp(32px, 8vw, 48px);
  }

  .homepage-new-arrivals-flex-container {
    max-width: 700px;
  }

  .homepage-new-arrivals-group-img {
    max-width: 60px;
  }

  .homepage-new-arrivals-part-title {
    font-size: 16px;
  }

  .homepage-new-arrivals-part-content {
    font-size: 12px;
  }
}

@media screen and (max-width: 870px) {
  .homepage-new-arrivals {
    max-width: 400px;
  }

  .homepage-new-arrivals-img {
    margin-bottom: 60px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .homepage-new-arrivals-flex-container {
    max-width: 700px;
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 580px) {
  .homepage-new-arrivals {
    max-width: 280px;
  }

  .homepage-new-arrivals-lower-header {
    padding: 10px 0;
  }

  .large-card {
    width: 280px;
    height: 230px;
  }

  .large-card img {
    width: 70%;
  }

  .top-card {
    width: 280px;
    height: 180px;
  }

  .bottom-card-wrapper {
    gap: 20px;
    flex-direction: column;
  }

  .bottom-card {
    width: 280px;
    height: 230px;
  }

  .bottom-card img {
    width: 60%;
  }

  .homepage-new-arrivals-img {
    margin-bottom: 60px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .homepage-new-arrivals-flex-container {
    max-width: 700px;
    flex-direction: column;
    gap: 20px;
  }
}

/* oguz/AU-7-Homepage-New-Arrivals End */

/*<!--[AU-1-Homepage-Header] fatih - START-->*/
.header-banner-dropdown {
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  gap: 200px;
  align-items: center;
  font-family: "Poppins", sans-serif;
  padding: 0 150px;
}

.header-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
li {
  list-style-type: none;
}

.header-banner h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #fafafa;
}

.header-banner a {
  color: #fafafa;
  padding: 0 0 0 20px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}

.header-banner a:hover {
  background-color: #363e44;
}
.header-banner-container {
  width: 100%;
}

.header-dropdown {
  position: relative;
  display: inline-block;
  z-index: 1;
  border: none;
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.header-dropdown-btn {
  border: none;
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
.dots {
  text-align: center;
  width: 100%;
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #b6afaf;
  transition: background-color 0.4s ease;
  border-radius: 50%;
  cursor: pointer;
}

.header-dropdown-btn:hover {
  background-color: #706363;
}

.header-language0 {
  padding: 10px;
  width: 108px;
  height: 40px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  background-color: #000000;
  color: #fff;
  cursor: pointer;
}

.header-language1 {
  position: absolute;
  top: 100%;
  left: 0;
  color: #fff;
  background-color: #000000;
  padding: 10px;
  font-size: 16px;
}

.header-language2 {
  padding: 10px;
  width: 108px;
  height: 40px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  background-color: #000000;
  color: #fff;
  cursor: pointer;
}

.header-language:hover {
  background-color: #754848;
}

.header-dropdown-btn:focus + .header-language {
  display: block;
}

.header-dropdown-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #666;
}

.header {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  font-family: "Poppins", sans-serif;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  gap: 150px;
  align-items: center;
  flex-wrap: nowrap;
}

.header-logo-pages {
  display: flex;
  align-items: center;
}

.header-logo {
  width: 120px;
  height: 26px;
  margin-right: 20px;
}

.header-logo-pages ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.header-logo-pages li {
  margin-right: 20px;
}

.header-logo-pages a {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}

.header-logo-pages a:hover {
  color: #778088;
}

.header-search-cart {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}

.header-search {
  position: relative;
}
.search-list {
  position: relative;
  display: block;
  position: absolute;
  z-index: 1;
}
.search-list li a {
  border: 1px solid #ddd;
  margin-top: -1px;
  background-color: #fff;
  padding: 12px;
  text-decoration: none;
  font-size: 16px;
  color: black;
  display: flex;
  gap: 10px;
  width: 100%;
}
.header-search input[type="search"] {
  padding: 10px 40px 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-width: 210px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
}
::placeholder {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  opacity: 50%;
}
.btn-search {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.btn-search > i {
  width: 24px;
  height: 24px;
}

.header-wishlist-cart {
  margin-left: 20px;
}

.header-wishlist-cart a {
  margin-right: 10px;
  font-size: 20px;
  color: #000000;
}

.header-wishlist-cart a:hover {
  color: #464d53;
}

/*[AU-16] Logout -STRAT*/
.user-icon {
  display: inline-block;
  position: relative;
}

.user-icon-btn {
  font-size: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.user-menu {
  position: absolute;
  display: none;
  background: rgba(24, 24, 24, 0.477);
  border: 1px solid rgba(168, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1000;
  backdrop-filter: blur(20px);
}

.user-menu.show {
  display: block;
}

.user-menu-list {
  list-style: none;
  padding: 6%;
}
.user-menu-element {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.user-menu-element i {
  color: rgb(177, 177, 177);
  font-size: 10px;
}
.user-menu-element p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  width: 170px;
}

.user-menu-element a {
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}

.user-menu-element:hover {
  background-color: rgba(215, 215, 215, 0.5);
  border-radius: 5px;
  padding: 3px;
}

.user-menu-element:hover p {
  color: rgb(90, 90, 90);
}
.user-menu-element:hover i {
  color: rgb(90, 90, 90);
}
/*[AU-16] Logout -END*/

.line-div1 {
  border-bottom: 1px solid #ddd;
  width: 100%;
}
.line-div2 {
  border-left: 1px solid #ddd;
}
.aside-nav {
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 10px;
  flex-wrap: nowrap;
}
.header-aside a {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}
.aside-category {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-right: 5px;
}
.apple-icon {
  display: flex;
  align-items: center;
  gap: 30px;
}

.icon-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 30px 60px;
}

.icon-text > p {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 60px;
}
.shop-now {
  text-decoration: underline;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-underline-offset: 8px;
}
.slide-text {
  display: flex;
}
.slide-container {
  max-width: 900px;
  background-color: #000000;
  color: #fff;
}
.slider {
  position: relative;
  max-width: 60%;
  margin: auto;
  overflow: hidden;
}

.slider h2 {
  font-size: 15px;
  color: #ffffff;
}

.slider .card-text {
  font-size: 20px;
  color: #ffffff;
  line-height: 30px;
  margin-top: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
}

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

.slide img {
  width: 490px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.active-dot {
  background-color: #717171;
}

.icon-text button {
  margin-top: 15px;
  background-color: transparent;
  padding: 5px 5px;
  cursor: pointer;
  border-radius: 15px;
  border: transparent;
  transition: background-color 0.3s ease;
  color: #fafafa;
  word-spacing: 5px;
}

.slide button:hover {
  background-color: #424242;
}

.slides-text {
  padding: 0 20px;
}

.cat-dropdown {
  position: relative;
}

.cat-dropdown a {
  text-decoration: none;
  color: #333;
}

.cat-dropdown i {
  float: right;
  cursor: pointer;
}

.sub-cat {
  display: none;
  padding: 10px;
}
.sub-cat a {
  text-decoration: underline;
}
.up-cat {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-card p {
  font-size: 14px;
}

.icon-hamburger {
  display: none;
}
@media only screen and (max-width: 1185px) {
  .header-nav {
    gap: 80px;
  }
  .header-dropdown-btn {
    padding: 5px 10px;
  }
  .header-banner-dropdown {
    gap: 50px;
  }
}
@media only screen and (max-width: 1158px) {
  .aside-nav {
    gap: 0;
  }
}
@media only screen and (max-width: 1078px) {
  .aside-nav {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .aside-category {
    display: none;
  }
  .header-nav {
    gap: 5px;
  }
  .header-logo-pages {
    display: none;
  }
  .icon-hamburger {
    display: block;
    cursor: pointer;
  }
}
@media only screen and (max-width: 910px) {
  .slide-container {
    max-width: 750px;
  }
  .slide img {
    width: 420px;
    height: 380px;
  }
  .slide-text {
    flex-direction: column;
  }
}
@media only screen and (max-width: 780px) {
  .slide-container {
    max-width: 550px;
    height: auto;
  }
  .slide img {
    width: 300px;
    height: 300px;
  }
  .header-banner-dropdown {
    padding: 0 50px;
  }
  .header-search-cart {
    display: none;
  }
  .header-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    gap: 20px;
  }
  .header-logo-pages ul {
    flex-direction: column;
    gap: 5px;
  }
}
@media only screen and (max-width: 560px) {
  .slide-container {
    max-width: 320px;
    height: auto;
  }
  .slide img {
    width: 280px;
    height: 280px;
  }
  .header-banner-dropdown {
    padding: 0 10px;
  }
  .slide {
    width: 320px;
    height: 320px;
  }
  .slider {
    max-width: 100%;
  }
  .header-banner h2 {
    display: none;
  }
}
@media only screen and (max-width: 487px) {
  .slide-container {
    max-width: 320px;
    height: auto;
  }
  .slide img {
    width: 280px;
    height: 280px;
  }
  .header-banner-dropdown {
    padding: 0 10px;
  }
  .slide {
    width: 320px;
    height: 320px;
  }
  .header-banner h2 {
    display: none;
  }
  .aside-nav {
    padding: 0;
  }
}

@media only screen and (max-width: 345px) {
  .slide-container {
    max-width: 280px;
    height: auto;
  }
  .slide img {
    width: 260px;
    height: 260px;
  }
  .header-banner-dropdown {
    padding: 0 10px;
  }
  .slide {
    width: 300px;
    height: 300px;
  }
  .slider {
    max-width: 100%;
  }
  .header-banner h2 {
    display: none;
  }
  .aside-nav {
    padding: 0;
  }
}

/*<!--[AU-1-Homepage-Header] fatih - END-->*/

/*<!--[AU-5-Homepage Featured Product] fatih - START-->*/
.homepage-featured-product {
  max-width: 1170px;
  margin: 0 auto;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background-color: #000000;
  color: #fafafa;
  position: relative;
  margin-bottom: 40px;
}
.homepage-featured-product-p {
  color: #00ff66;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
}
.homepage-featured-product-h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
}
.homepage-featured-product-head {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.homepage-featured-product-img {
  max-width: 600px;
  padding: 50px;
}
.homepage-featured-product-img img {
  position: relative;
  max-width: 600px;
  height: 330px;
}
.countdown-featured {
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.countdown-featured-item {
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 47%;
}
.countdown-featured-title-time {
  font-family: "Poppins", sans-serif;
  color: #000000;
  font-weight: 400;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.countdown-featured-item span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.homepage-featured-product-btn {
  border: none;
  background-color: #00ff66;
  width: 172px;
  height: 56px;
  color: #fafafa;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}
.homepage-featured-product-btn a {
  text-decoration: none;
  color: #fafafa;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}
.featured-opacity {
  position: absolute;
  width: 584px;
  height: 540px;
  left: 250px;
  border-radius: 50%;
}

@media only screen and (max-width: 1200px) {
  .homepage-featured-product {
    max-width: 800px;
  }
  .homepage-featured-product-img img {
    max-width: 350px;
    height: 200px;
  }
  .featured-opacity {
    width: 584px;
    height: 540px;
    left: 150px;
  }
}
@media only screen and (max-width: 824px) {
  .homepage-featured-product {
    max-width: 400px;
  }
  .homepage-featured-product-img img {
    display: none;
  }
  .featured-opacity {
    display: none;
  }
}
@media only screen and (max-width: 534px) {
  .homepage-featured-product {
    max-width: 295px;
  }
  .countdown-featured {
    max-width: 200px;
    width: 100%;
    flex-wrap: wrap;
  }
  .homepage-featured-product-h3 {
    font-size: 40px;
  }
}
/*<!--[AU-5-Homepage Featured Product] fatih - END-->*/
/*[AU-6] Esra - START*/

.homepage-our-products-container-details {
  border-radius: 4px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.homepage-explore-products {
  margin: auto;
  max-width: 1254px;
  text-align: center;
  justify-content: center;
  padding: 20px;
}
.he-explore-products {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.he-explore-products h2 {
  padding: 30px 0;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  text-align: left;
}
.homepage-our-products-details {
  align-items: center;
  gap: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.homepage-our-products-container-details {
  position: relative;
  width: 100%;
  max-width: 200px;
}
.homepage-our-products-container-details img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.homepage-our-products-img-container {
  width: 200px;
  height: 200px;
  align-items: center;
  padding: 0px 37px 0px 38px;
}
.homepage-our-products-details-container {
  width: 250px;
  align-items: center;
}
.our-products-price {
  font-weight: 500;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 24px);
  color: #db4444;
}

.he-explore-products-arrows {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  margin-left: auto;
  padding: 15px;
  max-width: 20px;
}

.he-explore-products-arrows button {
  background-color: #f5f5f5;
  border-radius: 200px;
  border: none;
  padding: 20px;
  cursor: pointer;
}

.our-products-details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.he-view-all-products {
  font-family: "Poppins", sans-serif;
  line-height: 24px;
  padding: 15px 20px;
  font-size: 16px;
  background-color: red;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}
.our-product-group {
  max-width: 1240px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/*[[AU-6] Esra - END*/
