.weapon-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.weapon-card-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 6px;
  border-radius: 0 0 100px 100px;
}

.weapon-card-header {
  display: flex;
  flex-direction: column;
}

.weapon-card-image img {
  height: 100%;
  object-fit: none;
  position: absolute;
  width: 100%;
}

.weapon-card-details {
  position: relative;
  display: flex;
  height: 100%;
  padding: 2rem;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.weapon-card-title {
  font-size: 22px;
  font-weight: 700;
}

.weapon-card-subtitle {
  margin: 0 0 15px;
  color: #aaa;
  font-size: 14px;
}

.weapon-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weapon-card-price {
  border-radius: 10px;
  font-weight: 800;
  font-size: 17px;
  padding: 0.5rem 1rem;
  background: var(--bg);
  color: var(--money);
}

.weapon-card__button {
  background: var(--btn-black);
  color: var(--text-custom);
  padding: 10px 15px;
  font-weight: 500;
  border-radius: 10px;
  font-size: 14px;
  border: 2px solid #ffffff04;
  transition: all 0.25s;
  cursor: pointer;
}

.weapon-card__button:hover 
{
  background: var(--span-middle);
  border: 2px solid var(--span-middle);
}

.height_card {
  height: 100%;
}