/**
 * Styles Frontend pour Elegant Product Image Upload
 */

.epiu-upload-wrapper {
    margin: 20px 0 30px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.epiu-upload-field {
    position: relative;
}

.epiu-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.epiu-label .required {
    color: #e74c3c;
    font-weight: bold;
}

.epiu-description {
    margin: 0 0 15px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.epiu-file-input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.epiu-file-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.epiu-file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #2c3e50;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    border: 2px solid #2c3e50;
}

.epiu-file-label:hover {
    background: #34495e;
    border-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.epiu-file-icon {
    font-size: 18px;
}

.epiu-file-text {
    display: inline-block;
}

.epiu-preview-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

.epiu-preview-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.epiu-remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #e74c3c;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.epiu-remove-image:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.epiu-messages {
    margin-top: 15px;
}

.epiu-message {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.epiu-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.epiu-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.epiu-message.info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Image dans le panier */
.epiu-cart-thumbnail {
    max-width: 100px;
    height: auto;
    display: block;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Loader */
.epiu-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: epiu-spin 1s ease-in-out infinite;
    margin-left: 10px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .epiu-upload-wrapper {
        padding: 15px;
    }

    .epiu-preview-image {
        max-width: 150px;
        max-height: 150px;
    }

    .epiu-file-label {
        width: 100%;
        justify-content: center;
    }
}
