/* plugin-styles.css */

/* Style for the products grid */
.app-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.app-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.app-product-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.app-thumb {
    text-align: center;
    margin-bottom: 15px;
}

.app-thumb img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.app-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0073aa;
    text-decoration: none;
}

.app-title:hover {
    text-decoration: underline;
}

.app-description {
    flex-grow: 1;
    margin-bottom: 10px;
    color: #444;
}

.app-free-html {
    margin-bottom: 15px;
    color: #222;
}

.app-review {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #f5a623;
    display: flex;
    align-items: center;
}

.app-review svg {
    width: 20px;
    height: 20px;
    margin-right: 3px;
}

.app-sales {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}