/* ─── Foto-Upload auf Produktseiten ─── */

.ak-photo-upload__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3em;
    font-size: 0.95em;
}

.ak-photo-upload__hint {
    color: #666;
    font-size: 0.85em;
    margin: 0 0 0.8em;
}

/* Dropzone */

.ak-photo-upload__dropzone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 2em;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fafafa;
}

.ak-photo-upload__dropzone:hover,
.ak-photo-upload__dropzone--active {
    border-color: #333;
    background: #f5f5f5;
}

.ak-photo-upload__dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
    color: #666;
}

.ak-photo-upload__dropzone-content svg {
    opacity: 0.5;
}

/* Vorschau */

.ak-photo-upload__preview {
    position: relative;
    display: inline-block;
    margin-top: 0.5em;
}

.ak-photo-upload__preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: block;
}

.ak-photo-upload__remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #e00;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.ak-photo-upload__remove:hover {
    background: #c00;
}

/* Ladeindikator */

.ak-photo-upload__loading {
    padding: 1em 0;
    color: #666;
    font-size: 0.9em;
}

.ak-photo-upload__spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: ak-photo-spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 0.4em;
}

@keyframes ak-photo-spin {
    to { transform: rotate(360deg); }
}

/* Fehlermeldung */

.ak-photo-upload__error {
    color: #e00;
    font-size: 0.9em;
    margin-top: 0.5em;
}
