/* Seller store — catalog + WhatsApp contact */
.seller-store-page .ss-store {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1rem 2.5rem;
}

.ss-store__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.ss-store__identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.ss-store__avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(28, 36, 48, 0.1);
}

.ss-store__avatar--fallback {
  display: grid;
  place-items: center;
  background: #2c3e50;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.ss-store__name {
  margin: 0 0 0.2rem;
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1c2430;
}

.ss-store__meta {
  margin: 0;
  font-size: 0.88rem;
  color: #667085;
}

.ss-store__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.ss-store__wa:hover { color: #fff; filter: brightness(0.95); }

.ss-store__about {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #4a5568;
}

.ss-store__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .ss-store__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}

@media (min-width: 900px) {
  .ss-store__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.ss-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(28, 36, 48, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.ss-card:hover { border-color: rgba(246, 139, 30, 0.45); }

.ss-card__media {
  aspect-ratio: 1;
  background: #eef1f4;
  overflow: hidden;
}

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

.ss-card__body { padding: 0.65rem 0.7rem 0.8rem; }

.ss-card__title {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1c2430;
}

.ss-card__price {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f68b1e;
}

.ss-store__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: #667085;
}

.ss-store__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.ss-store__pager a {
  font-weight: 600;
  color: #f68b1e;
  text-decoration: none;
}
