.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #111a2d 0%, #15223a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.25;
  background: radial-gradient(circle at top, #263b77, #0f1728);
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3d6e, #ff8a00);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px 4px;
}

.product-price {
  color: #ff4f7b;
  font-size: 22px;
  font-weight: 1000;
}

.product-old-price {
  color: #8fa1c2;
  font-size: 15px;
  text-decoration: line-through;
  font-weight: 700;
}

.product-title {
  padding: 0 12px 14px;
  color: #d9e4fb;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.product-button {
  margin: 0 12px 12px;
  min-height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  background: linear-gradient(135deg, #8a40ff, #b43cff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 520px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-card {
    border-radius: 20px;
  }

  .product-price {
    font-size: 18px;
  }

  .product-old-price {
    font-size: 13px;
  }

  .product-title {
    font-size: 12px;
  }

  .product-button {
    min-height: 38px;
    font-size: 14px;
  }
}