@import "variables.css";
@import "home.css";
@import "swiper.css";
@import "mode.css";
@import "fonts.css";
@import "subs.css";
@import "product_show.css";
@import "found.css";
@import "cart.css";
@import "profile.css";
@import "filter.css";
@import "history.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: system-ui;
}
a {
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 0;
}
a:link {
  text-decoration: none !important;
}
a:visited {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}
a:active {
  text-decoration: none !important;
}

.d-none {
  display: none;
}
.d-flex {
  display: flex;
}

.product_text_header {
display:flex;
justify-content: space-between;
align-items: center;
}
.favorite_icon .fa-solid.fa-heart{
color: #FF4033;

}
.favorite_icon i {
font-size: 22px;
}

 .pop {
 animation: pop 0.3s ease-in-out;
  }

 @keyframes pop {
 0% { transform: scale(1); }
 50% { transform: scale(1.3); }
 100% { transform: scale(1); }
  }


.product-image {
  width: 100%;
  height: 100%;
  max-width: 263px;
  max-height: 263px;
  border-radius: 10px;
  position: relative;
}

.relative {
    position: relative;
}
.favorites_remove_btn {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 99;
}

/* news card update*/
.news_card {
position: relative;
}
.news_card_text {
position: absolute;
bottom: 14px;
right: 10px;
background: #222;
border-radius: 4px;
color: white;
font-weight: 700;
text-transform: uppercase;
font-size: 11px;
padding: 0 8px 2px 8px;
display: flex;
justify-content: center;
align-items:center;
line-height: normal;
}
.text-11 {
font-size: 10.5px !important;
font-weight: bold !important;
 color: var(--black);
}
.dark_mode .text-11 {
 color: var(--white);

}