@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";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  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);

}

.howGetBtn {
    background: url('/static/assets/icons/leftBtn.svg') top 0px left -2px no-repeat, url('/static/assets/icons/rightBtn.svg') top 0px right -2px no-repeat, url('/static/assets/icons/bgButton.png') center / 100% 100% no-repeat ;
    border-radius: 8px;
    overflow: hidden;
    height: 56px;
    width: calc(100vw - 32px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    max-width: 500px;
    margin-top: 10px;
    border: none;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
}
