/**
 * Product Showcase Styles
 * Provides styling for product showcase sections on homepage and product pages
 */

.product-showcase {
    background: #f9f9f9;
    padding: 60px 0;
}

.product-showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.product-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-showcase-image:hover img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-showcase-image:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    background: white;
    color: #0066cc;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-overlay .btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.product-showcase-content {
    padding: 20px;
}

.product-showcase-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-showcase-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-features h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-features .list-style-one {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-features .list-style-one li {
    padding: 8px 0;
    color: #666;
    font-size: 15px;
}

.product-features .list-style-one li:before {
    content: '✓';
    color: #0066cc;
    font-weight: bold;
    margin-right: 10px;
}

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

.product-actions .btn {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.product-actions .btn-primary {
    background: #0066cc;
    color: white;
}

.product-actions .btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.product-actions .btn-secondary {
    background: #f0f0f0;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.product-actions .btn-secondary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-showcase {
        padding: 40px 0;
    }

    .product-showcase-content {
        padding: 15px;
        margin-top: 30px;
    }

    .product-showcase-content h3 {
        font-size: 24px;
    }

    .product-showcase-content p {
        font-size: 15px;
    }

    .product-features {
        padding: 15px;
    }

    .product-features h4 {
        font-size: 16px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-showcase-content h3 {
        font-size: 20px;
    }

    .product-showcase-content p {
        font-size: 14px;
    }

    .product-features {
        padding: 12px;
    }

    .product-features h4 {
        font-size: 15px;
    }

    .product-features .list-style-one li {
        font-size: 14px;
        padding: 6px 0;
    }
}
