/* ABC-Products Addon - Frontend Styles */

/* Minimal list layout - customize as needed */
.abc-products-display {
    margin: 20px 0;
}

.abc-products-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.abc-product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
}

.abc-product-image {
    margin-right: 15px;
    flex-shrink: 0;
}

.abc-product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.abc-product-info {
    flex: 1;
}

.abc-product-title {
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .abc-product-item {
        padding: 12px;
    }

    .abc-product-image {
        margin-right: 12px;
    }

    .abc-product-image img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .abc-product-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .abc-product-image {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .abc-product-image img {
        width: 60px;
        height: 60px;
    }
}
