/* SMM Connector Frontend */
.smm-cart-fields {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}
.smm-cart-fields .smm-field {
  margin-bottom: 14px;
}
.smm-cart-fields .smm-field:last-child { margin-bottom: 0; }
.smm-cart-fields label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e293b;
  font-size: 14px;
}
.smm-cart-fields input[type="url"],
.smm-cart-fields input[type="range"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  background: white;
}
.smm-cart-fields input[type="range"] {
  padding: 0;
  height: 6px;
  background: #cbd5e1;
  appearance: none;
  -webkit-appearance: none;
}
.smm-cart-fields input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #3b82f6;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.smm-cart-fields input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #3b82f6;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.smm-cart-fields .smm-slider-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
}
.smm-cart-fields .smm-total {
  background: #eff6ff;
  border-radius: 6px;
  padding: 12px;
  margin-top: 12px;
  text-align: center;
}
.smm-cart-fields .smm-total label {
  margin-bottom: 0;
  font-size: 13px;
  color: #1e40af;
}
.smm-cart-fields .smm-total strong {
  font-size: 22px;
  color: #1e3a8a;
  margin-left: 8px;
}
