
.embosser-label, .emb-label { color:#000 !important; }

/* Layout */
.emb-wrap { margin: 16px 0 20px; }
.emb-section { margin-bottom: 14px; }
.emb-section-title { font-weight: 700; margin-bottom: 8px; color:#000 !important; }
.emb-required { color:#d63638; }

/* Design cards */
.emb-design-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 10px; }
.emb-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 1px solid #e6e6e6; border-radius: 10px; padding: 10px; background:#fff; cursor: pointer;
}
.emb-card-img { width: 120px; height: auto; border-radius: 8px; border: 1px solid #e5e5e5; }
.emb-card-title { font-weight: 600; color:#000 !important; text-align:center; font-size: 13px; }
.emb-card input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.emb-radio-ui { width: 14px; height: 14px; border:2px solid #777; border-radius: 50%; display:block; }
.emb-card input[type=radio]:checked ~ .emb-radio-ui { border-color:#1e8cbe; box-shadow: 0 0 0 3px rgba(30,140,190,.1); }

/* Fields */
.emb-form-row { margin-bottom: 10px; }
.emb-input, .emb-select { width: 100%; max-width: 520px; }
.emb-help { display:block; font-size: 12px; color:#555; margin-top: 4px; }

/* Errors */
.emb-error { color:#d63638; font-size:12.5px; margin-top: 4px; }
.emb-design-error, .emb-position-error { margin-top: 6px; }

/* Mini-cart / classic cart item-data thumbnail */

.emb-thumb{
  width: 56px;       
  height: auto;
  border-radius: 6px;
  border: 1px solid #eee;
  display: block;
  margin: 4px 0 6px;
}

/* Force white text in the Embosser Position select (override Kadence) */
.emb-wrap select#emb-position-select {
  color: #fff !important;
}

/* Editing notice */
.emb-edit-notice {
  padding: 12px 14px;
  border-radius: 10px;
  margin: 12px 0 16px !important; 
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fffbeb;          /* soft amber */
  border: 1px solid #f6c453;    /* warm accent */
  color: #5a3c00 !important;    /* override inline color */
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  font-weight: 500;
}

/* Add a small badge without changing HTML */
.emb-edit-notice::before {
  content: "Editing";
  display: inline-block;
  background: #f59e0b;          /* amber */
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 2px 8px;
}





