/* Карточка узи */
.uzi-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: rgba(var(--bg-main), 0.2);
  backdrop-filter: blur(2px);
  border: 2px solid rgba(var(--border-light), 0.2);
  border-radius: 5px;
}
.uzi-card__header {
  display: flex;
  gap: 20px;
  width: 100%;
}
.uzi-card__img-wrapper {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  border-radius: 5px;
  overflow: hidden;
}
.uzi-card__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uzi-card__info {
  display: flex;
  flex-direction: column;
}
.uzi-card__title {
  font-weight: 500;
  font-family: CeraRoundPro;
  padding-bottom: 10px;
}
.uzi-card__description {
  font-size: 14px;
  color: #353b4b99;
}
.uzi-card__price {
  font-weight: 500;
  font-family: CeraRoundPro;
  font-size: 14px;
}
.uzi-card__footer {
  display: flex;
  gap: 20px;
  align-items: center;
}
.uzi-card__button_popup,
.uzi-card__button_popup:visited {
  cursor: pointer;
  text-transform: uppercase;
  font-family: CeraRoundPro;
  font-size: 0.75em;
  line-height: 1.167;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  padding: 7px 10px;
  border-radius: 5px;
  color: #fff;
  background: rgb(102, 153, 255);
  border: 1px solid rgb(102, 153, 255);
  width: calc(50% - 10px);
  transition: 0.3s;
}
.uzi-card__button_popup:hover {
  background: #fff;
  color: rgb(102, 153, 255);
  transition: 0.3s;
}
.uzi-card__button_link,
.uzi-card__button_link:visited {
  cursor: pointer;
  text-transform: uppercase;
  font-family: CeraRoundPro;
  font-size: 0.75em;
  line-height: 1.167;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  padding: 7px 10px;
  border-radius: 5px;
  border: 1px solid rgb(53, 59, 75);
  color: #000;
  width: calc(50% - 10px);
  transition: 0.3s;
}
.uzi-card__button_link:hover {
  color: #fff;
  background: rgb(53, 59, 75);
  transition: 0.3s;
}
@media (max-width: 400px) {
  .uzi-card__img-wrapper {
    width: 75px;
    height: 75px;
    flex: 0 0 75px;
  }
}
