/* ============================================================
   FONT SELECTOR (CONTAINER)
============================================================ */
.ec-font-selector {
  margin: 20px 0;
  font-family: inherit;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.ec-font-selector label {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}

/* ============================================================
   INPUT TEXTE
============================================================ */
#ec-font-text-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f2f2f2;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}

#ec-font-text-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ============================================================
   FONT BUTTONS (IMAGES)
============================================================ */
.ec-font-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

/* Bouton image */
.ec-font-btn {
  width: 80%;
  height: auto;         
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #ccc;     
  background: #f2f2f2;
  object-fit: contain;        
  padding: 4px;
  display: block;             
  transition: border-color 0.15s;
}

/* Actif */
.ec-font-btn.ec-active {
  border-color: #000;         
}

/* ============================================================
   SWATCHS DE COULEUR
============================================================ */
.ec-font-color-swatches {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ec-font-color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  gap: 6px;
}

.ec-font-color-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.ec-font-color-swatch.active .ec-font-color-circle {
  border-color: #000;
}

.ec-font-color-name {
  font-size: 12px;
  text-transform: capitalize;
  color: #000;
  text-align: center;
}

/* ============================================================
   BOUTON "ADD TEXT"
============================================================ */
#ec-font-add {
  width: 100%;
  padding: 12px 18px;
  background: #89a9ba;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
}

#ec-font-add:hover {
  background: #6f8d9c;
}

#ec-font-add:focus,
#ec-font-add:active {
  outline: none !important;
  box-shadow: none !important;
}
