
/* Compact pin storefront cards: product details and Vinted links live on the product page. */
.storefront-product.pin-card {
  gap: 0.45rem;
  padding: 0.65rem;
  border-color: var(--accent, var(--store-accent, #fff));
}

.pin-card h2 {
  margin: 0;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  line-height: 1.2;
}

.storefront-title-link {
  color: inherit;
  text-decoration: none;
}

.storefront-title-link:hover,
.storefront-title-link:focus-visible {
  color: var(--accent, var(--store-accent, #fff));
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pin-card-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #bbb;
  font-size: 0.78rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pin-card .storefront-product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
}

.pin-card .storefront-stock {
  flex: 0 0 auto;
  color: #aaa;
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: right;
}

.pin-card .price-note {
  font-size: 0.6rem;
}

@media (max-width: 700px) {
  .storefront-product.pin-card {
    padding: 0.5rem;
  }

  .pin-card .storefront-product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .pin-card .storefront-stock {
    text-align: left;
  }
}
