/* Dropzone — branded for LoveLensGallery */
.dropzone {
  border: 2px dashed #c4849a;
  border-radius: 1rem;
  background: #fdf6f8;
  min-height: 180px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.dropzone .dz-message {
  font-size: 1rem;
  font-weight: 500;
  color: #8B5A6E;
}

.dropzone.dz-drag-hover {
  border-color: #8B5A6E;
  background: #f9f0f3;
}

/* Uploaded file previews */
.dropzone .dz-preview .dz-image {
  border-radius: 0.5rem;
  overflow: hidden;
}

.dropzone .dz-preview .dz-success-mark svg path,
.dropzone .dz-preview .dz-success-mark svg polygon {
  fill: #8B5A6E;
}

@media screen and (max-width: 767px) {
  .dropzone {
    min-height: 140px;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
}
