body {
  font-family: 'Peralta', Geneva, Verdana, sans-serif;
}

.image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px;
}

.image-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.image-variant-box {
  align-items: center;
  width: auto;
  min-width: 32%;
  max-width: 48%;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 10px;
}


.drop-zone {
    border: 2px dashed #cfcfcf;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    background: #fafafa;
}

.drop-zone.dragover {
    border-color: #0d6efd;
    background: #eef5ff;
}

.drop-zone-text {
    color: #666;
    font-size: 15px;
}

#preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.preview-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 10px;
    background: white;
    position: relative;
}

.preview-image {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f8f8;
}

.preview-name {
    font-size: 12px;
    margin-top: 8px;
    word-break: break-word;
}

.remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background: #dc3545;
    color: white;
    cursor: pointer;
    font-size: 12px;
}

.stats {
    font-size: 14px;
    color: #666;
}
