.sco-card {
  --sco-accent: #cc0c39;

  max-width: 480px;
  border: 1px solid #e3e6e6;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  font-family: inherit;
  box-sizing: border-box;
}

.sco-card * {
  box-sizing: border-box;
}

.sco-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.sco-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.sco-name {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
}

.sco-desc {
  margin: 0;
  font-size: 13px;
  color: #565959;
}

.sco-infos {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.sco-infos li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #0f1111;
}

.sco-infos a {
  color: inherit;
  text-decoration: none;
}

.sco-infos a:hover {
  text-decoration: underline;
}

.sco-icon {
  flex-shrink: 0;
}

.sco-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sco-btn-primary {
  background: var(--sco-accent);
  color: #fff;
}

.sco-btn-primary:hover {
  opacity: .9;
}

.sco-btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.sco-btn-whatsapp:hover {
  opacity: .9;
}

/* Modal */
.sco-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sco-modal-overlay.is-open {
  display: flex;
}

.sco-modal {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.sco-modal h3 {
  margin: 0 0 6px 0;
}

.sco-modal-sub {
  margin: 0 0 18px 0;
  font-size: 13px;
  color: #565959;
}

.sco-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #565959;
}

.sco-order-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sco-order-form input,
.sco-order-form textarea {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 8px 10px;
  border: 1px solid #d5d9d9;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

.sco-submit {
  width: 100%;
  margin-top: 4px;
}

.sco-submit[disabled] {
  opacity: .6;
  cursor: default;
}

.sco-form-status {
  font-size: 13px;
  margin: 10px 0 0 0;
  min-height: 18px;
}

.sco-form-status.is-success { color: #067d62; }
.sco-form-status.is-error { color: #cc0c39; }
