/* [project]/app/components/ImageProcessor.module.css [app-client] (css) */
.ImageProcessor-module__cjRhXW__main {
  background: var(--bg-base);
  min-height: 100vh;
  padding-bottom: 80px;
}

.ImageProcessor-module__cjRhXW__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ImageProcessor-module__cjRhXW__header {
  text-align: center;
  padding: 56px 24px 40px;
  position: relative;
}

.ImageProcessor-module__cjRhXW__header:before {
  content: "";
  background: radial-gradient(ellipse at center top, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ImageProcessor-module__cjRhXW__logoArea {
  z-index: 1;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  display: flex;
  position: relative;
}

.ImageProcessor-module__cjRhXW__logoIcon {
  filter: drop-shadow(0 0 12px var(--accent));
  font-size: 28px;
}

.ImageProcessor-module__cjRhXW__logoText {
  letter-spacing: -.5px;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 28px;
  font-weight: 800;
}

.ImageProcessor-module__cjRhXW__tagline {
  color: var(--text-secondary);
  z-index: 1;
  font-size: 15px;
  position: relative;
}

.ImageProcessor-module__cjRhXW__taglineAccent {
  color: var(--accent);
  font-weight: 700;
}

.ImageProcessor-module__cjRhXW__dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  cursor: pointer;
  margin-bottom: 20px;
  padding: 48px 32px;
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
  overflow: hidden;
}

.ImageProcessor-module__cjRhXW__dropzone:before {
  content: "";
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.ImageProcessor-module__cjRhXW__dropzone:hover, .ImageProcessor-module__cjRhXW__dropzone:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.ImageProcessor-module__cjRhXW__dropzone:hover:before, .ImageProcessor-module__cjRhXW__dropzoneDragging:before {
  opacity: 1;
}

.ImageProcessor-module__cjRhXW__dropzoneDragging {
  border-color: var(--accent);
  background: var(--accent-dim);
  border-style: solid;
  transform: scale(1.01);
}

.ImageProcessor-module__cjRhXW__hiddenInput {
  display: none;
}

.ImageProcessor-module__cjRhXW__dropzoneContent {
  pointer-events: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  display: flex;
}

.ImageProcessor-module__cjRhXW__dropzoneIcon {
  margin-bottom: 4px;
  font-size: 40px;
  transition: transform .2s;
}

.ImageProcessor-module__cjRhXW__dropzoneDragging .ImageProcessor-module__cjRhXW__dropzoneIcon {
  transform: scale(1.2);
}

.ImageProcessor-module__cjRhXW__dropzoneTitle {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 600;
}

.ImageProcessor-module__cjRhXW__dropzoneSub {
  color: var(--text-muted);
  font-size: 13px;
}

.ImageProcessor-module__cjRhXW__statsBar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  padding: 14px 24px;
  display: flex;
}

.ImageProcessor-module__cjRhXW__stat {
  align-items: baseline;
  gap: 6px;
  padding: 0 12px;
  display: flex;
}

.ImageProcessor-module__cjRhXW__statNum {
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 700;
}

.ImageProcessor-module__cjRhXW__statAccent {
  color: var(--accent);
}

.ImageProcessor-module__cjRhXW__statSuccess {
  color: var(--success);
}

.ImageProcessor-module__cjRhXW__statLabel {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
}

.ImageProcessor-module__cjRhXW__statDivider {
  background: var(--border);
  width: 1px;
  height: 24px;
}

.ImageProcessor-module__cjRhXW__actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  display: flex;
}

.ImageProcessor-module__cjRhXW__btnPrimary, .ImageProcessor-module__cjRhXW__btnSuccess, .ImageProcessor-module__cjRhXW__btnGhost {
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
  display: flex;
}

.ImageProcessor-module__cjRhXW__btnPrimary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.ImageProcessor-module__cjRhXW__btnPrimary:hover:not(:disabled) {
  box-shadow: 0 0 28px var(--accent-glow);
  background: #9080ff;
  transform: translateY(-1px);
}

.ImageProcessor-module__cjRhXW__btnSuccess {
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 20px #22c55e40;
}

.ImageProcessor-module__cjRhXW__btnSuccess:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 28px #22c55e66;
}

.ImageProcessor-module__cjRhXW__btnGhost {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.ImageProcessor-module__cjRhXW__btnGhost:hover:not(:disabled) {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.ImageProcessor-module__cjRhXW__btnPrimary:disabled, .ImageProcessor-module__cjRhXW__btnSuccess:disabled, .ImageProcessor-module__cjRhXW__btnGhost:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.ImageProcessor-module__cjRhXW__spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: .6s linear infinite ImageProcessor-module__cjRhXW__spin;
  display: inline-block;
}

.ImageProcessor-module__cjRhXW__spinnerLg {
  border: 3px solid #fff3;
  border-top-color: var(--accent);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: .7s linear infinite ImageProcessor-module__cjRhXW__spin;
  display: inline-block;
}

@keyframes ImageProcessor-module__cjRhXW__spin {
  to {
    transform: rotate(360deg);
  }
}

.ImageProcessor-module__cjRhXW__grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  display: grid;
}

.ImageProcessor-module__cjRhXW__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-direction: column;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.ImageProcessor-module__cjRhXW__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #0000004d;
}

.ImageProcessor-module__cjRhXW__card_done {
  border-color: #4ade8033;
}

.ImageProcessor-module__cjRhXW__card_done:hover {
  border-color: #4ade8066;
}

.ImageProcessor-module__cjRhXW__card_error {
  border-color: #f871714d;
}

.ImageProcessor-module__cjRhXW__card_processing {
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.ImageProcessor-module__cjRhXW__thumb {
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ImageProcessor-module__cjRhXW__thumbImg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  display: block;
}

.ImageProcessor-module__cjRhXW__card:hover .ImageProcessor-module__cjRhXW__thumbImg {
  transform: scale(1.04);
}

.ImageProcessor-module__cjRhXW__thumbOverlay {
  background: #0a0a0fb3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.ImageProcessor-module__cjRhXW__saveBadge {
  color: #052e16;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #4ade80e6;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  top: 8px;
  left: 8px;
}

.ImageProcessor-module__cjRhXW__errorOverlay {
  background: #0a0a0fb3;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: flex;
  position: absolute;
  inset: 0;
}

.ImageProcessor-module__cjRhXW__cardInfo {
  flex: 1;
  padding: 10px 12px 4px;
}

.ImageProcessor-module__cjRhXW__cardName {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
}

.ImageProcessor-module__cjRhXW__cardMeta {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  display: flex;
}

.ImageProcessor-module__cjRhXW__metaIdle {
  color: var(--text-muted);
  font-size: 11px;
}

.ImageProcessor-module__cjRhXW__metaProcessing {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
}

.ImageProcessor-module__cjRhXW__metaDone {
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
}

.ImageProcessor-module__cjRhXW__metaDivider {
  color: var(--text-muted);
  font-size: 11px;
}

.ImageProcessor-module__cjRhXW__metaError {
  color: #f87171;
  font-size: 11px;
  font-weight: 600;
}

.ImageProcessor-module__cjRhXW__cardActions {
  gap: 6px;
  padding: 8px 10px 10px;
  display: flex;
}

.ImageProcessor-module__cjRhXW__cardBtnDownload, .ImageProcessor-module__cjRhXW__cardBtnRemove {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  flex: 1;
  padding: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: all .15s;
}

.ImageProcessor-module__cjRhXW__cardBtnDownload {
  color: var(--success);
  border-color: #4ade8033;
}

.ImageProcessor-module__cjRhXW__cardBtnDownload:hover {
  background: var(--success-dim);
  border-color: var(--success);
}

.ImageProcessor-module__cjRhXW__cardBtnRemove:hover {
  color: #f87171;
  background: #f871711a;
  border-color: #f87171;
}

.ImageProcessor-module__cjRhXW__emptyHint {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .ImageProcessor-module__cjRhXW__header {
    padding: 36px 16px 28px;
  }

  .ImageProcessor-module__cjRhXW__statsBar {
    padding: 10px 12px;
  }

  .ImageProcessor-module__cjRhXW__grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .ImageProcessor-module__cjRhXW__actions {
    flex-direction: column;
  }

  .ImageProcessor-module__cjRhXW__btnPrimary, .ImageProcessor-module__cjRhXW__btnSuccess, .ImageProcessor-module__cjRhXW__btnGhost {
    justify-content: center;
  }
}

/*# sourceMappingURL=app_components_ImageProcessor_module_0enf~we.css.map*/