/* Shared: placeholder styles, store buttons, utility classes */

.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.03) 0 10px,
      rgba(0,0,0,0.05) 10px 20px
    );
  border: 1px dashed rgba(0,0,0,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  padding: 24px;
  line-height: 1.6;
  overflow: hidden;
}
.placeholder.dark {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0 10px,
      rgba(255,255,255,0.07) 10px 20px
    );
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}
.placeholder .ph-kind {
  position: absolute; top: 10px; left: 12px;
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.placeholder .ph-caption {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  max-width: 80%;
  opacity: 0.85;
}

/* Store buttons */
.stores {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  min-width: 150px;
  transition: transform 0.15s, opacity 0.15s;
}
.store-btn:hover { transform: translateY(-1px); opacity: 0.92; }
.store-btn .store-icon { width: 22px; height: 22px; flex-shrink: 0; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn .store-top { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }
.store-btn .store-bot { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }

.store-btn.light { background: #fff; color: #000; border: 1px solid rgba(0,0,0,0.1); }
.store-btn.outline {
  background: transparent;
  border: 1px solid currentColor;
}
