.vtb-card__imgbox {
  position: relative;
  overflow: hidden;
}
.vtb-card__descr a

 {
    color: #ff8562;
    text-decoration: none;
}
.vtb-card__label {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f58220; /* оранжевый как на vtb-league */
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  letter-spacing: 0.5px;
}/* === СЕТКА === */
.vtb-grid--cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 40px;
  padding: 80px 0;
  box-sizing: border-box;
  align-items: stretch;
  justify-items: center;
}

/* === КАРТОЧКА === */
.vtb-card {
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    padding: 15px;
    transition: box-shadow 0.3s 
ease, transform 0.2s 
ease;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.vtb-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* === ИЗОБРАЖЕНИЕ === */
.vtb-card__pic {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.vtb-card__imgbox {
  width: 100%;
  padding-bottom: 120%;
  background: #fff;
  position: relative;
}
.vtb-card__imgbox img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* === КОНТЕНТ === */
.cont {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 140px;
  text-align: center;
}

.vtb-card__price {
  color: #0a287a;
  font-weight: 700;
  font-size: 18px;
  margin: 8px 0;
  font-family: "unitedleague", sans-serif;
  text-align: center;
}

.vtb-card__title {
  color: #1a1f5e;
  text-decoration: none;
  font-family: "unitedleague", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 36px;
  line-height: 1.2;
  margin-bottom: 5px;
  text-align: center;
}
.vtb-card__title:hover { text-decoration: underline; }

.vtb-card__articul {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
  text-align: center;
}

.vtb-card__descr {
  font-size: 12px;
  color: #333;
  opacity: 0.9;
  text-align: center;
  min-height: 32px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

}

/* === SELECT === */
.vtb-card__sizes {
  margin-top: auto;
  text-align: center;
}
.vtb-card__sizes select {
  border: 1px solid #000;
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 13px;
}

/* === КНОПКИ === */
.vtb-card__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.vtb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #111;
  border-radius: 6px;
  font-family: "unitedleague", sans-serif;
  transition: 0.3s ease;
}

.vtb-btn--primary {
  background: #010070;
  color: #fff;
  border-color: #010070;    width: 100%;
}
.vtb-btn--primary:hover {
  background-color: #db701f;
  color: #000;
  border-color: #000;
}

.vtb-btn--cart {
  background: #db701f;
  border-color: #111;
  color: #111;
}
.vtb-btn--cart:hover { box-shadow: 0 0 10px rgba(0,0,0,0.3); }

/* === КОЛИЧЕСТВО === */
.d1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.vtb-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #181616;
  border-radius: 10px;
  gap: 6px;
  padding: 2px 4px;
}
.vtb-qty__btn {
  width: 20px;
  height: 36px;
  border: none;
  background: #fff;
  font-weight: 600;
  font-size: 20px;
}
.vtb-qty__input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
}

/* === АДАПТИВ === */
@media (max-width: 1200px) {
  .vtb-grid--cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 900px) {
  .vtb-grid--cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    padding: 40px 10px;
  }

  .vtb-card {
    max-width: 100%;
  }

  .vtb-card__price { font-size: 16px; }
  .vtb-card__title { font-size: 14px; }
  .vtb-card__articul,
  .vtb-card__descr,
  .vtb-card__sizes { text-align: center; }
}

@media (max-width: 760px) {
  /* сетка */
  .vtb-grid--cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    padding: 20px 14px 40px;
    justify-items: center;
  }

  /* карточка */
  .vtb-card {
    padding: 10px;
    border-radius: 10px;

  }
.vtb-card {
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
   border: 0px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    transition: box-shadow 0.3s 
ease, transform 0.2s 
ease;
    text-align: center;
    width: 100%;
    max-width: 280px;
}
  /* контент */
  .cont {
    gap: 4px;
    margin-bottom: 6px;
  }

  .vtb-card__title {
    font-size: 12px;
    line-height: 1.1;
  }

  .vtb-card__price {
    font-size: 14px;
    margin-top: 2px;
  }

  /* кнопки */
  .vtb-card__actions {
    margin-top: 8px;
    margin-bottom: 6px;
  }

  .vtb-btn {
    height: 36px; /* ниже */
    font-size: 12px;
    padding: 0 12px;
    border-radius: 6px;
  }

  .vtb-btn--primary {
    background: #010070;
    color: #fff;
  }

  .vtb-btn--cart {
    background: #db701f;
    color: #111;
    font-size: 12px;
    height: 36px;
  }

  /* блок с количеством и корзиной */
  .d1 {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 8px;
  }

  .vtb-qty {
    max-width: 180px;
    margin: 0 auto;
    height: 34px;
  }

  .vtb-qty__btn {
    width: 20px;
    height: 32px;
    font-size: 18px;
  }

  .vtb-qty__input {
    width: 42px;
    height: 32px;
    font-size: 14px;
  }
}