.cttm-package-selection-form {
  --ct-primary: #FAA81A;
  --ct-secondary: #2C4E53;
  --ct-text: #464646;
  --ct-muted: #7A7A7A;
  --ct-border: #DCDCDE;
}
.cttm-package-templates-front {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 20px 0;
}
.cttm-package-template-section {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 18px;
  padding: 22px;
}
.cttm-package-template-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.cttm-package-template-section__header h3 {
  margin: 0;
  color: var(--ct-secondary);
  font-weight: 700;
}
.cttm-package-family-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 12px;
  color: #fff;
  background: var(--ct-secondary);
  font-size: 12px;
  font-weight: 700;
}
.cttm-package-template-section__content [data-ct-package-id],
.cttm-package-template-section__content [data-ct-user-package-id] {
  cursor: pointer;
}
.cttm-package-template-section__content .is-ct-package-selected,
.cttm-package-template-section__content [data-ct-package-id].is-ct-package-selected,
.cttm-package-template-section__content [data-ct-user-package-id].is-ct-package-selected {
  outline: 3px solid var(--ct-primary);
  outline-offset: 4px;
}
.cttm-package-template-status {
  min-height: 0;
  color: var(--ct-secondary);
  font-weight: 600;
}
.cttm-package-template-status.is-error {
  color: #B42318;
}
.cttm-package-template-radios {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}
.cttm-package-submit-page {
  margin-top: 20px;
}
.cttm-owned-packages-lite {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cttm-package-template-section {
    padding: 18px;
  }
  .cttm-package-template-section__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.cttm-package-guard-notice {
  background: #fff;
  border: 1px solid #DCDCDE;
  border-left: 6px solid #FAA81A;
  border-radius: 18px;
  padding: 22px;
  margin: 20px 0;
  color: #464646;
}
.cttm-package-guard-notice h3 {
  margin: 0 0 10px;
  color: #2C4E53;
  font-weight: 700;
}
.cttm-package-guard-notice p {
  margin: 0 0 14px;
  color: #464646;
}
.cttm-package-guard-button,
.cttm-package-guard-notice .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 20px;
  border-radius: 50px;
  border: 0;
  background: #FAA81A;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
}
.cttm-package-guard-button:hover,
.cttm-package-guard-notice .button:hover {
  background: #2C4E53;
  color: #fff !important;
}
