.wce-badge-container {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wce-product-meta {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wce-badge-empeno {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.wce-vendedor-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.wce-vendedor-label {
    font-weight: 600;
    color: #333;
}

.wce-vendedor-nombre {
    color: #e74c3c;
    font-weight: 600;
}

.wce-meta-detalles {
    font-size: 13px;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 8px;
}

.wce-meta-detalles span {
    display: inline-block;
    margin-right: 15px;
}

.wce-condicion {
    background: #e8f4f8;
    color: #31708f;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.wce-tiempo {
    color: #999;
    font-style: italic;
}

.wce-loop-vendedor {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.wce-loop-vendedor strong {
    color: #333;
}

.wce-vendedor {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.wce-meta {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

.wce-meta span {
    display: inline-block;
    margin-right: 15px;
}

.wce-loop-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}



.wce-form-container {
    margin: 0 auto;
    padding: 20px;
}

.wce-form-step {
    display: none;
}

.wce-form-step.active {
    display: block;
}

.wce-form-group {
    margin-bottom: 20px;
}

.wce-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.wce-form-group input,
.wce-form-group textarea,
.wce-form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.wce-form-group input:focus,
.wce-form-group textarea:focus,
.wce-form-group select:focus {
    outline: none;
    border-color: #e74c3c;
}

.wce-dropzone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s;
}

.wce-dropzone:hover,
.wce-dropzone.dragover {
    border-color: #e74c3c;
    background: #fff5f5;
}

.wce-dropzone-text {
    color: #666;
    font-size: 16px;
}

.wce-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.wce-image-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #ddd;
}

.wce-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wce-image-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

.wce-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wce-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.wce-btn-primary {
    background: #e74c3c;
    color: white;
}

.wce-btn-primary:hover {
    background: #c0392b;
}

.wce-btn-secondary {
    background: #95a5a6;
    color: white;
}

.wce-btn-secondary:hover {
    background: #7f8c8d;
}

.wce-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.wce-progress-bar::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.wce-progress-step {
    position: relative;
    z-index: 1;
    background: #f6f6f6;
    padding: 0 10px;
    text-align: center;
}

.wce-progress-step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
    font-size: 14px;
}

.wce-progress-step.active .step-number,
.wce-progress-step.completed .step-number {
    background: #fbb634;
    color: white;
}

.wce-progress-step .step-label {
    font-size: 12px;
    color: #666;
}

.wce-listado {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.wce-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.wce-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wce-item-image {
    position: relative;
    height: 200px;
    background: #f5f5f5;
}

.wce-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wce-item-content {
    padding: 15px;
}

.wce-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.wce-item-price {
    font-size: 18px;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 8px;
}

.wce-item-meta {
    font-size: 12px;
    color: #777;
}

.wce-mis-empenos {
    width: 100%;
    border-collapse: collapse;
}

.wce-mis-empenos th,
.wce-mis-empenos td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.wce-mis-empenos th {
    background: #f8f9fa;
    font-weight: 600;
}

.wce-estado-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.wce-vendedor-link {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted #e74c3c;
    transition: all 0.3s;
}

.wce-vendedor-link:hover {
    color: #c0392b;
    border-bottom-style: solid;
}

.wce-loop-vendedor a {
    color: #e74c3c;
    text-decoration: none;
}

.wce-loop-vendedor a:hover {
    text-decoration: underline;
}

.wce-vendedor-header {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #e74c3c;
}

.wce-vendedor-header h2 {
    margin: 0 0 10px 0;
    color: #333;
}

.wce-vendedor-stats {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.wce-listado-vendedor {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.wce-listado-vendedor .wce-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.wce-listado-vendedor .wce-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wce-listado-vendedor .wce-item-image {
    position: relative;
    height: 200px;
    background: #f5f5f5;
}

.wce-listado-vendedor .wce-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wce-listado-vendedor .wce-item-content {
    padding: 15px;
}

.wce-listado-vendedor .wce-item-title {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.wce-listado-vendedor .wce-item-title a {
    color: #333;
    text-decoration: none;
}

.wce-listado-vendedor .wce-item-title a:hover {
    color: #e74c3c;
}

.wce-listado-vendedor .wce-item-price {
    font-size: 18px;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 5px;
}

.wce-listado-vendedor .wce-item-meta {
    font-size: 12px;
    color: #777;
}

.wce-estado-disponible { background: #d4edda; color: #155724; }
.wce-estado-reservado { background: #fff3cd; color: #856404; }
.wce-estado-vendido { background: #cce5ff; color: #004085; }
.wce-estado-entregado { background: #e2e3e5; color: #383d41; }

@media (max-width: 768px) {
    .wce-form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .wce-btn {
        width: 100%;
    }
}

.wce-producto-celda {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wce-no-eliminable {
    color: #999;
    font-size: 12px;
    font-style: italic;
    margin-left: 10px;
}

.wce-imagen-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}

.wce-imagen-wrapper img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
    display: block;
}

.wce-sin-imagen {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #999;
    text-align: center;
    background: #f5f5f5;
}

.wce-producto-info {
    flex: 1;
}

.wce-producto-info strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.wce-producto-info small {
    color: #777;
    font-size: 12px;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .wce-producto-celda {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.wce-btn-ver {
    background: #f0ad4e !important;
    color: white !important;
    border-color: #eea236 !important;
}

.wce-btn-ver:hover {
    background: #ec971f !important;
    border-color: #d58512 !important;
}

.wce-btn-eliminar {
    background: #d9534f !important;
    color: white !important;
    border-color: #d43f3a !important;
    margin-left: 5px;
}

.wce-btn-eliminar:hover {
    background: #c9302c !important;
    border-color: #ac2925 !important;
}

@media (max-width: 768px) {
    .wce-btn-ver,
    .wce-btn-eliminar {
        display: inline-block;
        margin: 2px;
        padding: 8px 12px;
        font-size: 12px;
    }
}