.taobey-topcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.taobey-topcard {
  padding: 14px 16px;
  text-decoration: none;
  color: #101828;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 10px;
}

.taobey-topcard__title {
  font-weight: 500;
}

.taobey-topcard__meta {
	margin-top: 2px;
    font-size: 15px;
    color: rgb(0 52 156 / 55%);
}

.taobey-topcard__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgb(58 151 237 / 10%);
  color: #0064D2;
}

.taobey-title {
  color: #000;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 29px;
	margin: 30px 0;
}

.taobey-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.taobey-card {
	height:100%;
    padding: 24px 24px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
	    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .08);
}

.taobey-card__img {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  text-decoration: none;
  background: #f3f4f6;
}

.taobey-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.taobey-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  background: rgba(186, 222, 255, .95);
  color: #0b57d0;
  display: grid;
  place-items: center;
  font-weight: 900;
  line-height: 1;
}

.taobey-card__timer {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 10px;
  background: #ff3b30;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.taobey-card__body {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    height: 40%;
    flex-direction: column;
}

.taobey-card__title {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-decoration: none;
line-height:1.3;
}

.taobey-card__desc {
  font-size: 15px;
  color: rgba(16, 24, 40, .55);
	line-height:1.4;
}

.taobey-card__price {
  font-weight: 600;
  font-size: 16px;
  color: #101828;
	margin-top:auto;
}

.taobey-card__actions {
  display: grid;
  grid-template-columns: 1fr 47px;
  gap: 10px;
}

.taobey-card__buy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #0064D2;
  background: #C5DCF6;
}

.taobey-card__cart {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  background: #0064D2;
}

@media (max-width: 1024px) {
  .taobey-profile__grid { grid-template-columns: 280px 1fr; }
  .taobey-products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .taobey-profile__grid { grid-template-columns: 1fr; }
  .taobey-topcards { grid-template-columns: 1fr; }
  .taobey-products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .taobey-products { grid-template-columns: 1fr; }
}