/* ─── Loja solidária ─────────────────────────────────────────────────────── */
.shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
}
.product-media {
  min-height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e3f2fd, #fff2e8);
}
.product-media a {
  display: block;
  width: 100%;
  height: 180px;
  cursor: zoom-in;
}
.product-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: opacity 0.2s;
}
.product-media a:hover img {
  opacity: 0.88;
}
.produto-emoji {
  font-size: 110px;
  line-height: 1;
}
.product-media--rotated img {
  transform: rotate(90deg);
  transform-origin: center center;
}
.product-body {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}
.product-body small { color: var(--laranja); font-weight: 900; text-transform: uppercase; }
.price { margin-top: auto; color: #5b2bbf; font-size: 19px; font-weight: 900; }

.aviso-loja {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.aviso-loja a {
  color: var(--verde);
  font-weight: 700;
  text-decoration: underline;
}

/* ─── Modal de imagem ────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.modal-overlay.ativo {
  display: flex;
}
.modal-box {
  position: relative;
  max-width: 520px;
  width: calc(100% - 32px);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.modal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background: #fff;
}
.modal-fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal-fechar:hover {
  background: rgba(0, 0, 0, 0.85);
}

@media (max-width: 860px) {
  .shop { grid-template-columns: 1fr; }
}
