/* Основной контейнер */
.wc-sit-pro-upload-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* Поле выбора файла */
.wc-sit-pro-file-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.wc-sit-pro-file-input input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.wc-sit-pro-file-input label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed #E2A66E;
    border-radius: 10px;
    min-height: 150px;
    transition: all 0.3s;
}

.wc-sit-pro-file-input label.dragover {
    background: rgba(226, 166, 110, 0.1);
    transform: translateY(-2px);
}

.wc-sit-pro-file-label {
    font-size: 18px;
    color: #2D2D2D;
    margin-bottom: 15px;
    font-weight: 600;
}

.wc-sit-pro-file-preview {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
    display: none;
}

/* Подсказка */
.wc-sit-pro-hint {
    color: #B7B8C8;
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.6;
    text-align: center;
}

.wc-sit-pro-hint strong {
    color: #E2A66E;
    font-weight: 700;
}

/* Прогресс-бар */
.wc-sit-pro-progress {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
}

.wc-sit-pro-progress-bar {
    height: 100%;
    background: #E2A66E;
    width: 0%;
    transition: width 0.3s ease;
}

/* Сообщения */
.wc-sit-pro-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    text-align: center;
}

.wc-sit-pro-message.success {
    background: #e8f5e9;
    color: #1b5e20;
    display: block;
}

.wc-sit-pro-message.error {
    background: #ffebee;
    color: #b71c1c;
    display: block;
}

/* Миниатюра в списке заказов */
.wc-sit-pro-order-thumbnail-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.wc-sit-pro-order-thumbnail {
    display: block;
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
    border-radius: 4px;
    border: 1px solid #eee;
    object-fit: contain;
}

.wc-sit-pro-views-count {
    color: #2D2D2D;
    font-size: 14px;
    font-weight: normal;
}

.wc-sit-pro-no-image {
    color: #B7B8C8;
    font-size: 13px;
    line-height: 1.3;
    font-style: normal;
    display: block;
    text-align: center;
}

/* Стили для Dokan */
.wc-sit-pro-dokan-container {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.wc-sit-pro-dokan-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wc-sit-pro-dokan-thumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.wc-sit-pro-dokan-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wc-sit-pro-dokan-views {
    font-size: 14px;
    color: #555;
}

.wc-sit-pro-dokan-copy {
    padding: 8px 15px;
    background: #E2A66E;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.wc-sit-pro-dokan-copy:hover {
    background: #cc8f54;
}

/* Обновленный класс для отсутствующего изображения */
.wc-sit-pro-dokan-no-image {
    color: #888;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    margin: 0;
}