.products-list {
    margin-top: 2rem;
}

.product-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s;
}

.product-item:hover::before {
    transform: scaleY(1);
}

.product-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.product-item-info {
    flex: 1;
    min-width: 250px;
}

.product-item-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-item-info .product-type {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.025em;
}

.product-item-info .product-type.bot {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.product-item-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0.5rem 0;
}

.product-item.expired {
    border-left: 4px solid #ef4444;
    background: rgba(254, 226, 226, 0.95);
}

.product-item.expiring-soon {
    border-left: 4px solid #f59e0b;
    background: rgba(254, 243, 199, 0.95);
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-item-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.instructions-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.instructions-box h3 {
    margin-bottom: 1.25rem;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructions-box ol {
    margin-left: 1.5rem;
    list-style: none;
    counter-reset: step-counter;
}

.instructions-box li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 2.5rem;
}

.instructions-box li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.instructions-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.empty-state h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* LP Editor Styles Modernos */
.lp-editor {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    margin-bottom: 2rem;
}

.lp-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.lp-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.lp-section h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.lp-section h5 {
    margin: 1.5rem 0 1rem 0;
    color: var(--dark-secondary);
    font-weight: 600;
    font-size: 1.125rem;
}

.lp-section input,
.lp-section textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.lp-section input:focus,
.lp-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.lp-section textarea {
    resize: vertical;
    min-height: 100px;
}

.lp-section input[type="color"] {
    width: 80px;
    height: 50px;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: var(--radius);
}

/* Botões de status do robô */
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsividade Dashboard */
@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1.25rem;
    }

    .product-item-info {
        min-width: auto;
    }

    .product-item-actions {
        width: 100%;
        justify-content: stretch;
    }

    .product-item-actions .btn {
        flex: 1;
        min-width: 100%;
    }

    .instructions-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .instructions-box h3 {
        font-size: 1.125rem;
    }

    .instructions-box li {
        font-size: 0.9375rem;
        padding-left: 2.25rem;
    }

    .lp-editor {
        padding: 1.5rem;
    }

    .lp-section {
        padding: 1.5rem;
    }

    .lp-section h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .product-item {
        padding: 1.5rem;
    }

    .product-item-info h3 {
        font-size: 1.5rem;
    }

    .product-item-info .product-type {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    .empty-state {
        padding: 3rem 1.5rem;
    }

    .empty-state h2 {
        font-size: 1.5rem;
    }

    .empty-state p {
        font-size: 1rem;
    }

    .instructions-box {
        padding: 1.25rem;
    }

    .instructions-box li {
        font-size: 0.875rem;
        padding-left: 2rem;
    }

    .instructions-box li::before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }

    .lp-editor {
        padding: 1.25rem;
    }

    .lp-section {
        padding: 1.25rem;
    }

    .lp-section h4 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .lp-section input,
    .lp-section textarea {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
}
