/* AI Content Generator - Product Showcase Styles */

.aicg-product-showcase {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2271b1;
}

.aicg-showcase-title {
    margin: 0 0 25px 0;
    font-size: 24px;
    color: #2271b1;
    text-align: center;
    font-weight: 600;
}

.aicg-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.aicg-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.aicg-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.aicg-product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.aicg-product-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aicg-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aicg-product-card:hover .aicg-product-image img {
    transform: scale(1.05);
}

.aicg-product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aicg-product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
    min-height: 44px;
}

.aicg-product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aicg-product-title a:hover {
    color: #2271b1;
}

.aicg-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #2271b1;
    margin: 10px 0 15px 0;
}

.aicg-product-price del {
    font-size: 16px;
    color: #999;
    margin-right: 8px;
}

.aicg-product-price ins {
    text-decoration: none;
}

.aicg-product-button {
    display: inline-block;
    padding: 12px 24px;
    background: #2271b1;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.aicg-product-button:hover {
    background: #135e96;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(34, 113, 177, 0.3);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .aicg-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .aicg-product-showcase {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .aicg-showcase-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .aicg-product-info {
        padding: 15px;
    }
    
    .aicg-product-title {
        font-size: 14px;
        min-height: auto;
    }
    
    .aicg-product-price {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .aicg-product-grid {
        grid-template-columns: 1fr;
    }
}
