/*
.collectchem-user-products {
    padding: 30px;
    border-radius: 8px;
}

.collectchem-user-products h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #FF6B6B, #4ECDC4) 1;
    padding-bottom: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.product-content {
    padding: 20px;
}

.product-content h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.product-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.status-is-publish {
    background: #4CAF50;
    color: white;
}

.status-is-pending {
    background: #FF9800;
    color: white;
}

.status-is-draft {
    background: #9E9E9E;
    color: white;
}

.product-date {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

.btn-action {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #ca3ee7 0%, #7b2b81 100%);
    color: #fff;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.btn-create {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-create:hover {
    transform: scale(1.05);
}

@media (max-width: 738px){
    .collectchem-user-products {
    padding: 0px;
    border-radius: 8px;
    }

}
*/

