/* Auto Product Insertion Styles */
.auto-product-insertion {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.api-product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.api-product-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.api-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.api-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #3498db;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 2;
    font-weight: bold;
}

.api-product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.api-product-content {
    padding: 15px;
}

.api-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: #333;
}

.api-product-rating {
    margin-bottom: 10px;
}

.api-stars {
    display: inline-block;
}

.api-star {
    color: #ffd700;
    font-size: 16px;
    margin-right: 2px;
}

.api-star-empty {
    color: #ddd;
}

.api-star-half {
    color: #ffd700;
    position: relative;
}

.api-rating-text {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}

.api-product-price {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
}

.api-add-to-cart {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.api-add-to-cart:hover {
    background: #27ae60;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .api-product-grid {
        flex-direction: column;
    }
    
    .api-product-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .auto-product-insertion {
        padding: 15px 0;
    }
    
    .api-product-content {
        padding: 12px;
    }
    
    .api-product-title {
        font-size: 14px;
    }
    
    .api-product-price {
        font-size: 16px;
    }
}