/* Share card modal */
.sc1957-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 16px;
  box-sizing: border-box;
}

.sc1957-modal {
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(16, 16, 20, 0.4);
}

/* Header */
.sc1957-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 3px solid #101014;
}
.sc1957-head-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #101014;
}
.sc1957-close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #8a8a90;
  cursor: pointer;
  padding: 0 2px;
  font-family: inherit;
}
.sc1957-close:hover { color: #101014; }

/* Preview */
.sc1957-preview-wrap {
  background: #e8e8e4;
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 12px;
  gap: 8px;
}
.sc1957-preview-img {
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 24px rgba(16, 16, 20, 0.22);
  transition: opacity 0.15s ease;
}
.sc1957-preview-note {
  font-size: 11.5px;
  color: #8a8a90;
}

/* Side panel controls */
.sc1957-panel {
  padding: 14px 18px 0;
  border-top: 1px solid #e2e2de;
  flex-shrink: 0;
}
.sc1957-fl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.sc1957-fl-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8a90;
}
.sc1957-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sc1957-chip {
  border: 1px solid #d5d5d0;
  background: #ffffff;
  color: #54545d;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.sc1957-chip.on {
  background: #101014;
  border-color: #101014;
  color: #ffffff;
}

/* Action buttons */
.sc1957-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px 0;
  flex-shrink: 0;
}
.sc1957-dl {
  background: #CE1126;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.sc1957-dl:hover { background: #a80d1e; }
.sc1957-copy {
  border: 1px solid #d5d5d0;
  background: #ffffff;
  color: #101014;
  padding: 13px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.sc1957-copy:hover { background: #f4f4f0; }

/* Social links */
.sc1957-social {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  padding: 12px 18px 18px;
  gap: 8px;
}
.sc1957-soc {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 0;
  font-family: inherit;
}
.sc1957-soc:hover { opacity: 0.88; }
.sc1957-wa { background: #25D366; }
.sc1957-fb { background: #1877F2; }
.sc1957-x  { background: #000000; }

/* Mobile adjustments */
@media (max-width: 480px) {
  .sc1957-modal { max-height: 100vh; border-radius: 0; }
  .sc1957-overlay { padding: 0; align-items: flex-end; }
}
