.strand-shop { padding: 40px; }
.strand-shop__header { margin-bottom: 24px; }
.strand-shop__title { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em; }

.strand-shop__grid {
  padding: 0;
}

.strand-shop__grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.strand-shop__grid ul.products li.product,
.strand-shop__grid ul.products .strand-product-card {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.strand-product-card { position: relative; }
.strand-product-card__link { text-decoration: none; color: var(--strand-black); display: block; }
.strand-product-card__img { background: var(--strand-grey-bg); aspect-ratio: 3/4; overflow: hidden; }
.strand-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.strand-product-card:hover .strand-product-card__img img { transform: scale(1.03); }

.strand-product-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
}
.strand-product-card__swatches { display: flex; align-items: center; gap: 5px; }
.strand-swatch { width: 13px; height: 13px; border-radius: 50%; border: 1px solid var(--strand-grey-line); display: inline-block; }
.strand-swatch--more { border-radius: 0; width: auto; font-size: 10px; color: var(--strand-black); border: none; }
.strand-product-card__save { background: none; border: none; cursor: pointer; padding: 2px; color: var(--strand-black); }
.strand-product-card__save:hover { color: var(--strand-denim-mid); }

.strand-product-card__name { font-size: 12px; margin-top: 8px; margin-bottom: 4px; }
.strand-product-card__price { font-size: 12px; font-weight: 500; }
.strand-product-card__price del { opacity: 0.5; margin-right: 6px; font-weight: 400; }
.strand-product-card__price ins { text-decoration: none; color: var(--strand-sale-red); }

.strand-shop__load-more {
  text-align: center;
  padding: 40px 0 60px;
}
#strand-load-more {
  background: none;
  border: 1px solid var(--strand-black);
  padding: 14px 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
#strand-load-more:hover {
  background: var(--strand-black);
  color: var(--strand-white);
}
#strand-load-more:disabled {
  opacity: 0.5;
  cursor: default;
}

/* ===== RESPONSIVE TIENDA ===== */
@media (max-width: 1024px) {
  .strand-shop__grid ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .strand-shop { padding: 20px; }
  .strand-shop__grid ul.products { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
}